@seed-design/figma 0.0.25 → 0.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -726,14 +726,14 @@ function createContainerLayoutPropsConverter(valueResolver) {
726
726
  justify: "flex-start",
727
727
  align: "stretch",
728
728
  wrap: "nowrap",
729
- gap: 0,
730
- p: 0,
731
- px: 0,
732
- py: 0,
733
- pb: 0,
734
- pl: 0,
735
- pr: 0,
736
- pt: 0
729
+ gap: "0px",
730
+ p: "0px",
731
+ px: "0px",
732
+ py: "0px",
733
+ pb: "0px",
734
+ pl: "0px",
735
+ pr: "0px",
736
+ pt: "0px"
737
737
  }
738
738
  });
739
739
  }
@@ -781,11 +781,11 @@ function createRadiusPropsConverter(valueResolver) {
781
781
  ]
782
782
  },
783
783
  defaults: {
784
- borderRadius: 0,
785
- borderTopLeftRadius: 0,
786
- borderTopRightRadius: 0,
787
- borderBottomLeftRadius: 0,
788
- borderBottomRightRadius: 0
784
+ borderRadius: "0px",
785
+ borderTopLeftRadius: "0px",
786
+ borderTopRightRadius: "0px",
787
+ borderBottomLeftRadius: "0px",
788
+ borderBottomRightRadius: "0px"
789
789
  }
790
790
  });
791
791
  }
@@ -726,14 +726,14 @@ function createContainerLayoutPropsConverter(valueResolver) {
726
726
  justify: "flex-start",
727
727
  align: "stretch",
728
728
  wrap: "nowrap",
729
- gap: 0,
730
- p: 0,
731
- px: 0,
732
- py: 0,
733
- pb: 0,
734
- pl: 0,
735
- pr: 0,
736
- pt: 0
729
+ gap: "0px",
730
+ p: "0px",
731
+ px: "0px",
732
+ py: "0px",
733
+ pb: "0px",
734
+ pl: "0px",
735
+ pr: "0px",
736
+ pt: "0px"
737
737
  }
738
738
  });
739
739
  }
@@ -781,11 +781,11 @@ function createRadiusPropsConverter(valueResolver) {
781
781
  ]
782
782
  },
783
783
  defaults: {
784
- borderRadius: 0,
785
- borderTopLeftRadius: 0,
786
- borderTopRightRadius: 0,
787
- borderBottomLeftRadius: 0,
788
- borderBottomRightRadius: 0
784
+ borderRadius: "0px",
785
+ borderTopLeftRadius: "0px",
786
+ borderTopRightRadius: "0px",
787
+ borderBottomLeftRadius: "0px",
788
+ borderBottomRightRadius: "0px"
789
789
  }
790
790
  });
791
791
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/figma",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
@@ -38,13 +38,13 @@
38
38
  "lint:publish": "bun publint"
39
39
  },
40
40
  "dependencies": {
41
- "@seed-design/css": "0.0.25",
41
+ "@seed-design/css": "0.0.27",
42
42
  "change-case": "^5.4.4",
43
43
  "ts-pattern": "^5.7.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@figma/plugin-typings": "^1.110.0",
47
- "@figma/rest-api-spec": "^0.30.0",
47
+ "@figma/rest-api-spec": "^0.31.0",
48
48
  "@seed-design/figma-extractor": "^0.0.4",
49
49
  "typescript": "^5.8.3"
50
50
  },
@@ -130,14 +130,14 @@ export function createContainerLayoutPropsConverter(
130
130
  justify: "flex-start",
131
131
  align: "stretch",
132
132
  wrap: "nowrap",
133
- gap: 0,
134
- p: 0,
135
- px: 0,
136
- py: 0,
137
- pb: 0,
138
- pl: 0,
139
- pr: 0,
140
- pt: 0,
133
+ gap: "0px",
134
+ p: "0px",
135
+ px: "0px",
136
+ py: "0px",
137
+ pb: "0px",
138
+ pl: "0px",
139
+ pr: "0px",
140
+ pt: "0px",
141
141
  },
142
142
  });
143
143
  }
@@ -248,11 +248,11 @@ export function createRadiusPropsConverter(valueResolver: ReactValueResolver) {
248
248
  ],
249
249
  },
250
250
  defaults: {
251
- borderRadius: 0,
252
- borderTopLeftRadius: 0,
253
- borderTopRightRadius: 0,
254
- borderBottomLeftRadius: 0,
255
- borderBottomRightRadius: 0,
251
+ borderRadius: "0px",
252
+ borderTopLeftRadius: "0px",
253
+ borderTopRightRadius: "0px",
254
+ borderBottomLeftRadius: "0px",
255
+ borderBottomRightRadius: "0px",
256
256
  },
257
257
  });
258
258
  }