Arpita Jaiswal
Arpita Jaiswal
Consider a file `pages/create-site.ftd` ```ftd -- import: /actions/create-site -- component page: module create-site: create-site ... -- ftd.text: $page.create-site.site-error ... -- end: page ``` This throw error saying `/pages/create-site/#site-error` not found....
```ftd -- or-type kind: -- constant integer special: 0 -- constant integer regular: 1 -- end: kind -- foo: Hello -- component foo: caption title: kind kind: -- end: foo...
```ftd -- ftd.image: $square-button.icon width.fixed.px: 30 height.fixed.px: 30 border-radius.px: 5 background.solid: $inherited.colors.background.step-1 background.solid if { square-button.hover }: $inherited.colors.background.step-2 padding.px: 5 ;; link: $square-button.link $on-mouse-enter$: $ftd.set-bool($a = $square-button.hover, v = true)...
For inline text in a container, there's no space. So let's add space between two divs. ```ftd -- ftd.container: -- ftd.text: Hello. color: red display: inline -- ftd.text: World is...
Check this commit https://github.com/fastn-community/design-system/commit/29ce447ba384f18eca5bee0acbe33798c24917d9 `/layout/page/` page is breaking In a.ftd ```ftd -- import b: export: foo -- component bar: -- a.foo: -- end: bar ``` In c.ftd ```ftd -- a.bar:...
Check this commit: https://github.com/fastn-community/design-system/commit/8b76f940e1d32e298627c1a0231f111d871eab1b ```ftd -- section-grid: -- component section-grid: module design-system: ds integer flush: $hack-flush-to-header children content: optional ds.gap spacing: -- ftd.column: width: fill-container align-content: center -- ftd.row: width...
Currently, assets look at the entire file system and it creates a record which has all files and fonts. This is an issue for a package which has a large...
## Issue 1: Not accepting values passed in children/subsection area while initialising variable record. ```ftd -- record bar: caption title: children uis: -- bar b: Hello b -- ftd.text: Hello...