@seed-design/figma 1.1.19 → 1.2.1
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.cjs +12280 -190
- package/lib/codegen/index.d.ts +9 -1
- package/lib/codegen/index.d.ts.map +1 -1
- package/lib/codegen/index.js +12280 -190
- package/lib/codegen/targets/react/index.cjs +17286 -3116
- package/lib/codegen/targets/react/index.d.ts.map +1 -1
- package/lib/codegen/targets/react/index.js +17286 -3116
- package/lib/index.cjs +12286 -196
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +12286 -196
- package/package.json +4 -4
- package/src/codegen/component-properties.archive.ts +1019 -0
- package/src/codegen/component-properties.ts +191 -885
- package/src/codegen/index.ts +1 -1
- package/src/codegen/targets/react/component/handlers/action-button.ts +69 -66
- package/src/codegen/targets/react/component/handlers/alert-dialog.ts +2 -4
- package/src/codegen/targets/react/component/handlers/app-bar.ts +90 -87
- package/src/codegen/targets/react/component/handlers/archive/action-button.ts +144 -0
- package/src/codegen/targets/react/component/handlers/archive/alert-dialog.ts +122 -0
- package/src/codegen/targets/react/component/handlers/archive/app-bar.ts +149 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar-stack.ts +35 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/badge.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/bottom-sheet.ts +70 -0
- package/src/codegen/targets/react/component/handlers/archive/callout.ts +88 -0
- package/src/codegen/targets/react/component/handlers/archive/checkbox.ts +41 -0
- package/src/codegen/targets/react/component/handlers/archive/checkmark.ts +29 -0
- package/src/codegen/targets/react/component/handlers/archive/chip.ts +90 -0
- package/src/codegen/targets/react/component/handlers/archive/contextual-floating-button.ts +52 -0
- package/src/codegen/targets/react/component/handlers/archive/divider.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/field-button.ts +197 -0
- package/src/codegen/targets/react/component/handlers/archive/field.ts +167 -0
- package/src/codegen/targets/react/component/handlers/archive/floating-action-button.ts +48 -0
- package/src/codegen/targets/react/component/handlers/archive/help-bubble.ts +73 -0
- package/src/codegen/targets/react/component/handlers/archive/identity-placeholder.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/index.ts +41 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-select-box.ts +89 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-text-field.ts +198 -0
- package/src/codegen/targets/react/component/handlers/archive/list-header.ts +20 -0
- package/src/codegen/targets/react/component/handlers/archive/list-item.ts +162 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp-badge.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/menu-sheet.ts +108 -0
- package/src/codegen/targets/react/component/handlers/archive/page-banner.ts +101 -0
- package/src/codegen/targets/react/component/handlers/archive/progress-circle.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/radio-group.ts +31 -0
- package/src/codegen/targets/react/component/handlers/archive/radiomark.ts +27 -0
- package/src/codegen/targets/react/component/handlers/archive/reaction-button.ts +37 -0
- package/src/codegen/targets/react/component/handlers/archive/result-section.ts +67 -0
- package/src/codegen/targets/react/component/handlers/archive/segmented-control.ts +64 -0
- package/src/codegen/targets/react/component/handlers/archive/skeleton.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/slider.ts +114 -0
- package/src/codegen/targets/react/component/handlers/archive/snackbar.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/switch.ts +39 -0
- package/src/codegen/targets/react/component/handlers/archive/switchmark.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/tabs.ts +297 -0
- package/src/codegen/targets/react/component/handlers/archive/tag-group.ts +86 -0
- package/src/codegen/targets/react/component/handlers/archive/text-field.ts +264 -0
- package/src/codegen/targets/react/component/handlers/archive/toggle-button.ts +43 -0
- package/src/codegen/targets/react/component/handlers/avatar-stack.ts +5 -2
- package/src/codegen/targets/react/component/handlers/avatar.ts +42 -39
- package/src/codegen/targets/react/component/handlers/badge.ts +1 -1
- package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +56 -49
- package/src/codegen/targets/react/component/handlers/callout.ts +1 -1
- package/src/codegen/targets/react/component/handlers/checkbox.ts +1 -1
- package/src/codegen/targets/react/component/handlers/checkmark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/chip.ts +8 -5
- package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +1 -1
- package/src/codegen/targets/react/component/handlers/divider.ts +1 -1
- package/src/codegen/targets/react/component/handlers/field-button.ts +18 -16
- package/src/codegen/targets/react/component/handlers/field.ts +71 -74
- package/src/codegen/targets/react/component/handlers/floating-action-button.ts +3 -6
- package/src/codegen/targets/react/component/handlers/help-bubble.ts +1 -1
- package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +10 -2
- package/src/codegen/targets/react/component/handlers/index.ts +41 -0
- package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +3 -5
- package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +3 -5
- package/src/codegen/targets/react/component/handlers/list-header.ts +1 -1
- package/src/codegen/targets/react/component/handlers/list-item.ts +22 -21
- package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +1 -1
- package/src/codegen/targets/react/component/handlers/manner-temp.ts +1 -1
- package/src/codegen/targets/react/component/handlers/menu-sheet.ts +59 -54
- package/src/codegen/targets/react/component/handlers/page-banner.ts +77 -72
- package/src/codegen/targets/react/component/handlers/progress-circle.ts +1 -1
- package/src/codegen/targets/react/component/handlers/radio-group.ts +1 -1
- package/src/codegen/targets/react/component/handlers/radiomark.ts +2 -2
- package/src/codegen/targets/react/component/handlers/reaction-button.ts +1 -1
- package/src/codegen/targets/react/component/handlers/result-section.ts +1 -1
- package/src/codegen/targets/react/component/handlers/segmented-control.ts +2 -3
- package/src/codegen/targets/react/component/handlers/skeleton.ts +1 -1
- package/src/codegen/targets/react/component/handlers/slider.ts +11 -8
- package/src/codegen/targets/react/component/handlers/snackbar.ts +1 -1
- package/src/codegen/targets/react/component/handlers/switch.ts +2 -2
- package/src/codegen/targets/react/component/handlers/switchmark.ts +2 -2
- package/src/codegen/targets/react/component/handlers/tabs.ts +39 -42
- package/src/codegen/targets/react/component/handlers/tag-group.ts +57 -59
- package/src/codegen/targets/react/component/handlers/text-field.ts +11 -22
- package/src/codegen/targets/react/component/handlers/toggle-button.ts +1 -1
- package/src/codegen/targets/react/component/index.ts +5 -115
- package/src/entities/data/__generated__/archive/component-sets/index.d.ts +2074 -0
- package/src/entities/data/__generated__/archive/component-sets/index.mjs +2074 -0
- package/src/entities/data/__generated__/archive/components/index.d.ts +116 -0
- package/src/entities/data/__generated__/archive/components/index.mjs +116 -0
- package/src/entities/data/__generated__/archive/styles/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/styles/index.mjs +429 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.mjs +501 -0
- package/src/entities/data/__generated__/archive/variables/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variables/index.mjs +7019 -0
- package/src/entities/data/__generated__/component-sets/index.d.ts +3442 -1306
- package/src/entities/data/__generated__/component-sets/index.mjs +3442 -1306
- package/src/entities/data/__generated__/components/index.d.ts +87 -85
- package/src/entities/data/__generated__/components/index.mjs +87 -85
- package/src/entities/data/__generated__/styles/index.mjs +9 -2
- package/src/entities/data/__generated__/variable-collections/index.mjs +150 -173
- package/src/entities/data/__generated__/variables/index.mjs +0 -74
- package/src/entities/index.ts +21 -7
|
@@ -1,16 +1,32 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
"name": "
|
|
3
|
-
"key": "
|
|
1
|
+
export declare const privateComponentField: {
|
|
2
|
+
"name": "privateComponentField",
|
|
3
|
+
"key": "96f0d114c3ec7826b22531502f05e82404835df4",
|
|
4
|
+
"componentPropertyDefinitions": {
|
|
5
|
+
"Input#40606:0": {
|
|
6
|
+
"type": "INSTANCE_SWAP"
|
|
7
|
+
},
|
|
8
|
+
"Show Header#40606:1": {
|
|
9
|
+
"type": "BOOLEAN"
|
|
10
|
+
},
|
|
11
|
+
"Show Footer#40606:2": {
|
|
12
|
+
"type": "BOOLEAN"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
4
15
|
};
|
|
5
16
|
|
|
6
|
-
export declare const
|
|
7
|
-
"name": "
|
|
8
|
-
"key": "
|
|
17
|
+
export declare const privateComponentTopNavigationLeftIconButton: {
|
|
18
|
+
"name": "privateComponentTopNavigationLeftIconButton",
|
|
19
|
+
"key": "c3e708bab11d8ea90a909b4539b6ba6b2a4e7b9c",
|
|
20
|
+
"componentPropertyDefinitions": {
|
|
21
|
+
"Icon#33580:0": {
|
|
22
|
+
"type": "INSTANCE_SWAP"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
9
25
|
};
|
|
10
26
|
|
|
11
27
|
export declare const templateFilterBar: {
|
|
12
28
|
"name": "templateFilterBar",
|
|
13
|
-
"key": "
|
|
29
|
+
"key": "325dcf7b1fb8354463fd3ed04f4ec77359311f19",
|
|
14
30
|
"componentPropertyDefinitions": {
|
|
15
31
|
"Show Clear Button#32562:362": {
|
|
16
32
|
"type": "BOOLEAN"
|
|
@@ -18,99 +34,85 @@ export declare const templateFilterBar: {
|
|
|
18
34
|
}
|
|
19
35
|
};
|
|
20
36
|
|
|
21
|
-
export declare const
|
|
22
|
-
"name": "
|
|
23
|
-
"key": "
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export declare const templateTimePickerField: {
|
|
32
|
-
"name": "templateTimePickerField",
|
|
33
|
-
"key": "0ee0729eb92d55acfa557e8fe3f0a21a0e43f117"
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
export declare const bottomSheetContentsAgreement: {
|
|
37
|
-
"name": "bottomSheetContentsAgreement",
|
|
38
|
-
"key": "8670afb7520ac44dfed003e3e9c7cce359897d0c"
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export declare const bottomSheetContentsFilter: {
|
|
42
|
-
"name": "bottomSheetContentsFilter",
|
|
43
|
-
"key": "e3d337e6eddbe9ec025fe69520c1cff0bd697b60"
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
export declare const bottomSheetContentsImage: {
|
|
47
|
-
"name": "bottomSheetContentsImage",
|
|
48
|
-
"key": "5c5369d9c22115fd240d7b75ac2a334e9163ea57"
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
export declare const bottomSheetContentsRange: {
|
|
52
|
-
"name": "bottomSheetContentsRange",
|
|
53
|
-
"key": "088624580ee501efed377bb4f42561a387db5699"
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
export declare const bottomSheetContentsSorting: {
|
|
57
|
-
"name": "bottomSheetContentsSorting",
|
|
58
|
-
"key": "0c6c58d5b7a159e7db1a0c1ccf32916ca8a51164"
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
export declare const skeletonPreSetArticle: {
|
|
62
|
-
"name": "skeletonPreSetArticle",
|
|
63
|
-
"key": "b2eb24c235dbb3ceea3a13cc018a083e0707fe6b"
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
export declare const skeletonPreSetItemCard: {
|
|
67
|
-
"name": "skeletonPreSetItemCard",
|
|
68
|
-
"key": "72da2ecdc0f5f17fc0c59eac16ccf82960c70db9"
|
|
37
|
+
export declare const componentChipSuffixIcon: {
|
|
38
|
+
"name": "componentChipSuffixIcon",
|
|
39
|
+
"key": "2f79e3c5a78315c854d7bd4499d142cfcc94548f",
|
|
40
|
+
"componentPropertyDefinitions": {
|
|
41
|
+
"Icon#33203:0": {
|
|
42
|
+
"type": "INSTANCE_SWAP"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
69
45
|
};
|
|
70
46
|
|
|
71
|
-
export declare const
|
|
72
|
-
"name": "
|
|
73
|
-
"key": "
|
|
47
|
+
export declare const componentImageFrameIcon: {
|
|
48
|
+
"name": "componentImageFrameIcon",
|
|
49
|
+
"key": "4f495448eeda5d10f41e6195e16b4eff49aaec17",
|
|
50
|
+
"componentPropertyDefinitions": {
|
|
51
|
+
"Icon#58686:297": {
|
|
52
|
+
"type": "INSTANCE_SWAP"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
74
55
|
};
|
|
75
56
|
|
|
76
|
-
export declare const
|
|
77
|
-
"name": "
|
|
78
|
-
"key": "
|
|
57
|
+
export declare const componentImageFrameOverlayIndicator: {
|
|
58
|
+
"name": "componentImageFrameOverlayIndicator",
|
|
59
|
+
"key": "e3e3596f8c535facae4d23c21bc1d62dd721fe23",
|
|
60
|
+
"componentPropertyDefinitions": {
|
|
61
|
+
"Text#58708:0": {
|
|
62
|
+
"type": "TEXT"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
79
65
|
};
|
|
80
66
|
|
|
81
|
-
export declare const
|
|
82
|
-
"name": "
|
|
83
|
-
"key": "
|
|
67
|
+
export declare const componentListItemPrefixIcon: {
|
|
68
|
+
"name": "componentListItemPrefixIcon",
|
|
69
|
+
"key": "6c03690f1ce9f6c8b2fcdf4a7c57784f6cca12b9",
|
|
70
|
+
"componentPropertyDefinitions": {
|
|
71
|
+
"Icon#28452:111": {
|
|
72
|
+
"type": "INSTANCE_SWAP"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
84
75
|
};
|
|
85
76
|
|
|
86
|
-
export declare const
|
|
87
|
-
"name": "
|
|
88
|
-
"key": "
|
|
77
|
+
export declare const componentListItemSuffixChevron: {
|
|
78
|
+
"name": "componentListItemSuffixChevron",
|
|
79
|
+
"key": "259054ad63bb89ca119c7f45ddad6452acc731f2",
|
|
80
|
+
"componentPropertyDefinitions": {
|
|
81
|
+
"Chevron#28217:9": {
|
|
82
|
+
"type": "INSTANCE_SWAP"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
89
85
|
};
|
|
90
86
|
|
|
91
|
-
export declare const
|
|
92
|
-
"name": "
|
|
93
|
-
"key": "
|
|
87
|
+
export declare const componentListItemSuffixChevronWithText: {
|
|
88
|
+
"name": "componentListItemSuffixChevronWithText",
|
|
89
|
+
"key": "7bd907ab44dff56fb07317c7b74d7ad9377994f0",
|
|
90
|
+
"componentPropertyDefinitions": {
|
|
91
|
+
"Text#28469:0": {
|
|
92
|
+
"type": "TEXT"
|
|
93
|
+
},
|
|
94
|
+
"Chevron#28477:0": {
|
|
95
|
+
"type": "INSTANCE_SWAP"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
94
98
|
};
|
|
95
99
|
|
|
96
|
-
export declare const
|
|
97
|
-
"name": "
|
|
98
|
-
"key": "
|
|
100
|
+
export declare const componentListItemSuffixIcon: {
|
|
101
|
+
"name": "componentListItemSuffixIcon",
|
|
102
|
+
"key": "b7582e74a4bae29df8bc3f81368e528701a75855",
|
|
99
103
|
"componentPropertyDefinitions": {
|
|
100
|
-
"
|
|
101
|
-
"type": "INSTANCE_SWAP"
|
|
102
|
-
"preferredValues": []
|
|
103
|
-
},
|
|
104
|
-
"Show Header#40606:1": {
|
|
105
|
-
"type": "BOOLEAN"
|
|
106
|
-
},
|
|
107
|
-
"Show Footer#40606:2": {
|
|
108
|
-
"type": "BOOLEAN"
|
|
104
|
+
"Icon#28347:9": {
|
|
105
|
+
"type": "INSTANCE_SWAP"
|
|
109
106
|
}
|
|
110
107
|
}
|
|
111
108
|
};
|
|
112
109
|
|
|
113
|
-
export declare const
|
|
114
|
-
"name": "
|
|
115
|
-
"key": "
|
|
110
|
+
export declare const componentPageBannerSuffixAction: {
|
|
111
|
+
"name": "componentPageBannerSuffixAction",
|
|
112
|
+
"key": "1bbd6fff9a32b4211bbe3eeb09fde4e12e87caed",
|
|
113
|
+
"componentPropertyDefinitions": {
|
|
114
|
+
"Label#39890:0": {
|
|
115
|
+
"type": "TEXT"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
116
118
|
};
|
|
@@ -1,16 +1,32 @@
|
|
|
1
|
-
export const
|
|
2
|
-
"name": "
|
|
3
|
-
"key": "
|
|
1
|
+
export const privateComponentField = {
|
|
2
|
+
"name": "privateComponentField",
|
|
3
|
+
"key": "96f0d114c3ec7826b22531502f05e82404835df4",
|
|
4
|
+
"componentPropertyDefinitions": {
|
|
5
|
+
"Input#40606:0": {
|
|
6
|
+
"type": "INSTANCE_SWAP"
|
|
7
|
+
},
|
|
8
|
+
"Show Header#40606:1": {
|
|
9
|
+
"type": "BOOLEAN"
|
|
10
|
+
},
|
|
11
|
+
"Show Footer#40606:2": {
|
|
12
|
+
"type": "BOOLEAN"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
4
15
|
};
|
|
5
16
|
|
|
6
|
-
export const
|
|
7
|
-
"name": "
|
|
8
|
-
"key": "
|
|
17
|
+
export const privateComponentTopNavigationLeftIconButton = {
|
|
18
|
+
"name": "privateComponentTopNavigationLeftIconButton",
|
|
19
|
+
"key": "c3e708bab11d8ea90a909b4539b6ba6b2a4e7b9c",
|
|
20
|
+
"componentPropertyDefinitions": {
|
|
21
|
+
"Icon#33580:0": {
|
|
22
|
+
"type": "INSTANCE_SWAP"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
9
25
|
};
|
|
10
26
|
|
|
11
27
|
export const templateFilterBar = {
|
|
12
28
|
"name": "templateFilterBar",
|
|
13
|
-
"key": "
|
|
29
|
+
"key": "325dcf7b1fb8354463fd3ed04f4ec77359311f19",
|
|
14
30
|
"componentPropertyDefinitions": {
|
|
15
31
|
"Show Clear Button#32562:362": {
|
|
16
32
|
"type": "BOOLEAN"
|
|
@@ -18,99 +34,85 @@ export const templateFilterBar = {
|
|
|
18
34
|
}
|
|
19
35
|
};
|
|
20
36
|
|
|
21
|
-
export const
|
|
22
|
-
"name": "
|
|
23
|
-
"key": "
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export const templateTimePickerField = {
|
|
32
|
-
"name": "templateTimePickerField",
|
|
33
|
-
"key": "0ee0729eb92d55acfa557e8fe3f0a21a0e43f117"
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
export const bottomSheetContentsAgreement = {
|
|
37
|
-
"name": "bottomSheetContentsAgreement",
|
|
38
|
-
"key": "8670afb7520ac44dfed003e3e9c7cce359897d0c"
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export const bottomSheetContentsFilter = {
|
|
42
|
-
"name": "bottomSheetContentsFilter",
|
|
43
|
-
"key": "e3d337e6eddbe9ec025fe69520c1cff0bd697b60"
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
export const bottomSheetContentsImage = {
|
|
47
|
-
"name": "bottomSheetContentsImage",
|
|
48
|
-
"key": "5c5369d9c22115fd240d7b75ac2a334e9163ea57"
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
export const bottomSheetContentsRange = {
|
|
52
|
-
"name": "bottomSheetContentsRange",
|
|
53
|
-
"key": "088624580ee501efed377bb4f42561a387db5699"
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
export const bottomSheetContentsSorting = {
|
|
57
|
-
"name": "bottomSheetContentsSorting",
|
|
58
|
-
"key": "0c6c58d5b7a159e7db1a0c1ccf32916ca8a51164"
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
export const skeletonPreSetArticle = {
|
|
62
|
-
"name": "skeletonPreSetArticle",
|
|
63
|
-
"key": "b2eb24c235dbb3ceea3a13cc018a083e0707fe6b"
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
export const skeletonPreSetItemCard = {
|
|
67
|
-
"name": "skeletonPreSetItemCard",
|
|
68
|
-
"key": "72da2ecdc0f5f17fc0c59eac16ccf82960c70db9"
|
|
37
|
+
export const componentChipSuffixIcon = {
|
|
38
|
+
"name": "componentChipSuffixIcon",
|
|
39
|
+
"key": "2f79e3c5a78315c854d7bd4499d142cfcc94548f",
|
|
40
|
+
"componentPropertyDefinitions": {
|
|
41
|
+
"Icon#33203:0": {
|
|
42
|
+
"type": "INSTANCE_SWAP"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
69
45
|
};
|
|
70
46
|
|
|
71
|
-
export const
|
|
72
|
-
"name": "
|
|
73
|
-
"key": "
|
|
47
|
+
export const componentImageFrameIcon = {
|
|
48
|
+
"name": "componentImageFrameIcon",
|
|
49
|
+
"key": "4f495448eeda5d10f41e6195e16b4eff49aaec17",
|
|
50
|
+
"componentPropertyDefinitions": {
|
|
51
|
+
"Icon#58686:297": {
|
|
52
|
+
"type": "INSTANCE_SWAP"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
74
55
|
};
|
|
75
56
|
|
|
76
|
-
export const
|
|
77
|
-
"name": "
|
|
78
|
-
"key": "
|
|
57
|
+
export const componentImageFrameOverlayIndicator = {
|
|
58
|
+
"name": "componentImageFrameOverlayIndicator",
|
|
59
|
+
"key": "e3e3596f8c535facae4d23c21bc1d62dd721fe23",
|
|
60
|
+
"componentPropertyDefinitions": {
|
|
61
|
+
"Text#58708:0": {
|
|
62
|
+
"type": "TEXT"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
79
65
|
};
|
|
80
66
|
|
|
81
|
-
export const
|
|
82
|
-
"name": "
|
|
83
|
-
"key": "
|
|
67
|
+
export const componentListItemPrefixIcon = {
|
|
68
|
+
"name": "componentListItemPrefixIcon",
|
|
69
|
+
"key": "6c03690f1ce9f6c8b2fcdf4a7c57784f6cca12b9",
|
|
70
|
+
"componentPropertyDefinitions": {
|
|
71
|
+
"Icon#28452:111": {
|
|
72
|
+
"type": "INSTANCE_SWAP"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
84
75
|
};
|
|
85
76
|
|
|
86
|
-
export const
|
|
87
|
-
"name": "
|
|
88
|
-
"key": "
|
|
77
|
+
export const componentListItemSuffixChevron = {
|
|
78
|
+
"name": "componentListItemSuffixChevron",
|
|
79
|
+
"key": "259054ad63bb89ca119c7f45ddad6452acc731f2",
|
|
80
|
+
"componentPropertyDefinitions": {
|
|
81
|
+
"Chevron#28217:9": {
|
|
82
|
+
"type": "INSTANCE_SWAP"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
89
85
|
};
|
|
90
86
|
|
|
91
|
-
export const
|
|
92
|
-
"name": "
|
|
93
|
-
"key": "
|
|
87
|
+
export const componentListItemSuffixChevronWithText = {
|
|
88
|
+
"name": "componentListItemSuffixChevronWithText",
|
|
89
|
+
"key": "7bd907ab44dff56fb07317c7b74d7ad9377994f0",
|
|
90
|
+
"componentPropertyDefinitions": {
|
|
91
|
+
"Text#28469:0": {
|
|
92
|
+
"type": "TEXT"
|
|
93
|
+
},
|
|
94
|
+
"Chevron#28477:0": {
|
|
95
|
+
"type": "INSTANCE_SWAP"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
94
98
|
};
|
|
95
99
|
|
|
96
|
-
export const
|
|
97
|
-
"name": "
|
|
98
|
-
"key": "
|
|
100
|
+
export const componentListItemSuffixIcon = {
|
|
101
|
+
"name": "componentListItemSuffixIcon",
|
|
102
|
+
"key": "b7582e74a4bae29df8bc3f81368e528701a75855",
|
|
99
103
|
"componentPropertyDefinitions": {
|
|
100
|
-
"
|
|
101
|
-
"type": "INSTANCE_SWAP"
|
|
102
|
-
"preferredValues": []
|
|
103
|
-
},
|
|
104
|
-
"Show Header#40606:1": {
|
|
105
|
-
"type": "BOOLEAN"
|
|
106
|
-
},
|
|
107
|
-
"Show Footer#40606:2": {
|
|
108
|
-
"type": "BOOLEAN"
|
|
104
|
+
"Icon#28347:9": {
|
|
105
|
+
"type": "INSTANCE_SWAP"
|
|
109
106
|
}
|
|
110
107
|
}
|
|
111
108
|
};
|
|
112
109
|
|
|
113
|
-
export const
|
|
114
|
-
"name": "
|
|
115
|
-
"key": "
|
|
110
|
+
export const componentPageBannerSuffixAction = {
|
|
111
|
+
"name": "componentPageBannerSuffixAction",
|
|
112
|
+
"key": "1bbd6fff9a32b4211bbe3eeb09fde4e12e87caed",
|
|
113
|
+
"componentPropertyDefinitions": {
|
|
114
|
+
"Label#39890:0": {
|
|
115
|
+
"type": "TEXT"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
116
118
|
};
|
|
@@ -395,14 +395,21 @@ export const FIGMA_STYLES = [
|
|
|
395
395
|
"styleType": "TEXT",
|
|
396
396
|
"key": "85422ef9f0230f821f1a9e6d2f8f86b3ba87f20d",
|
|
397
397
|
"name": "semantic/article-body",
|
|
398
|
-
"description": "16",
|
|
398
|
+
"description": "16\n게시물이나 콘텐츠 중심 섹션의 본문 텍스트에 사용합니다.",
|
|
399
|
+
"remote": false
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"styleType": "TEXT",
|
|
403
|
+
"key": "39219dc61cbc77e1c057e34e985edd55295751af",
|
|
404
|
+
"name": "semantic/article-note",
|
|
405
|
+
"description": "14\n주석, 참고 사항 및 상세 리스트 등 부가 정보에 사용하며, 일반 본문 텍스트에는 사용하지 않습니다.",
|
|
399
406
|
"remote": false
|
|
400
407
|
},
|
|
401
408
|
{
|
|
402
409
|
"styleType": "TEXT",
|
|
403
410
|
"key": "d918eb7069e10c8dd745abf40bc375004c1badb8",
|
|
404
411
|
"name": "semantic/screen-title",
|
|
405
|
-
"description": "26",
|
|
412
|
+
"description": "26\n화면에 크게 표시되는 주요 제목이나 타이틀에 사용합니다.",
|
|
406
413
|
"remote": false
|
|
407
414
|
},
|
|
408
415
|
{
|