@seed-design/figma 1.1.19 → 1.2.0
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.
- package/lib/codegen/index.d.ts +9 -1
- package/lib/codegen/index.d.ts.map +1 -1
- package/lib/codegen/targets/react/index.cjs +135 -133
- package/lib/codegen/targets/react/index.js +135 -133
- package/package.json +2 -2
- package/src/codegen/component-properties.ts +9 -1
- package/src/codegen/targets/react/component/handlers/list-item.ts +5 -5
- package/src/codegen/targets/react/component/handlers/menu-sheet.ts +14 -12
- package/src/codegen/targets/react/component/handlers/radiomark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/switch.ts +1 -1
- package/src/codegen/targets/react/component/handlers/switchmark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/tag-group.ts +17 -23
package/lib/codegen/index.d.ts
CHANGED
|
@@ -2042,6 +2042,14 @@ type MenuSheetItemProperties = InferComponentDefinition<{
|
|
|
2042
2042
|
type: "BOOLEAN";
|
|
2043
2043
|
defaultValue: true;
|
|
2044
2044
|
};
|
|
2045
|
+
"Sub Text#51411:0": {
|
|
2046
|
+
type: "TEXT";
|
|
2047
|
+
defaultValue: "설명을 입력해주세요.";
|
|
2048
|
+
};
|
|
2049
|
+
"Show Item Description#51411:19": {
|
|
2050
|
+
type: "BOOLEAN";
|
|
2051
|
+
defaultValue: false;
|
|
2052
|
+
};
|
|
2045
2053
|
"Label#55905:8": {
|
|
2046
2054
|
type: "TEXT";
|
|
2047
2055
|
defaultValue: "라벨";
|
|
@@ -2064,7 +2072,7 @@ type MenuSheetItemProperties = InferComponentDefinition<{
|
|
|
2064
2072
|
Layout: {
|
|
2065
2073
|
type: "VARIANT";
|
|
2066
2074
|
defaultValue: "Text Only";
|
|
2067
|
-
variantOptions: ["Text
|
|
2075
|
+
variantOptions: ["Text Only", "Text with Icon"];
|
|
2068
2076
|
};
|
|
2069
2077
|
}>;
|
|
2070
2078
|
type FloatingActionButtonProperties = InferComponentDefinition<typeof floatingActionButton.componentPropertyDefinitions>;
|