@seed-design/figma 1.2.0 → 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.map +1 -1
- package/lib/codegen/index.js +12280 -190
- package/lib/codegen/targets/react/index.cjs +17366 -3198
- package/lib/codegen/targets/react/index.d.ts.map +1 -1
- package/lib/codegen/targets/react/index.js +17366 -3198
- 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 -893
- 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 +19 -18
- 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 +45 -42
- 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 +1 -1
- 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 +1 -1
- package/src/codegen/targets/react/component/handlers/switchmark.ts +1 -1
- package/src/codegen/targets/react/component/handlers/tabs.ts +39 -42
- package/src/codegen/targets/react/component/handlers/tag-group.ts +45 -41
- 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
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
export declare const templateAddressPickerField: {
|
|
2
|
+
"name": "templateAddressPickerField",
|
|
3
|
+
"key": "a6cb0e888094d95ca0e9862f4775b34407b3611d"
|
|
4
|
+
};
|
|
5
|
+
|
|
6
|
+
export declare const templateDatePickerField: {
|
|
7
|
+
"name": "templateDatePickerField",
|
|
8
|
+
"key": "9fac6c04140c81cdb2e446979952381f1afc0e1a"
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export declare const templateFilterBar: {
|
|
12
|
+
"name": "templateFilterBar",
|
|
13
|
+
"key": "52ffefa44ac247120a69d1787278d1d90b7f370d",
|
|
14
|
+
"componentPropertyDefinitions": {
|
|
15
|
+
"Show Clear Button#32562:362": {
|
|
16
|
+
"type": "BOOLEAN"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export declare const templateInformationList: {
|
|
22
|
+
"name": "templateInformationList",
|
|
23
|
+
"key": "a111395555825f77d152f84e047e5e798fb53023"
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export declare const templateSelectField: {
|
|
27
|
+
"name": "templateSelectField",
|
|
28
|
+
"key": "a43d16a5c3cbb5fe22ca230d6a28338da21c7562"
|
|
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"
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export declare const skeletonPreSetItemCarousel: {
|
|
72
|
+
"name": "skeletonPreSetItemCarousel",
|
|
73
|
+
"key": "d92b2942bc9e079cb31fa055a1628e497a8cda8c"
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export declare const skeletonPreSetList: {
|
|
77
|
+
"name": "skeletonPreSetList",
|
|
78
|
+
"key": "e03cc22ade0cf5db55d0ecea0a51c8424f05410c"
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export declare const skeletonPreSetProfileLarge: {
|
|
82
|
+
"name": "skeletonPreSetProfileLarge",
|
|
83
|
+
"key": "36103a3dedc41b788a381dc362e90cb19fa907ce"
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export declare const skeletonPreSetProfileSmall: {
|
|
87
|
+
"name": "skeletonPreSetProfileSmall",
|
|
88
|
+
"key": "090506ac39352cfb1bee415a404fd3d306744c27"
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export declare const skeletonPreSetReview: {
|
|
92
|
+
"name": "skeletonPreSetReview",
|
|
93
|
+
"key": "faf975727deaeab9e16ddd915e6a1bc48ddb5bca"
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
export declare const field: {
|
|
97
|
+
"name": "field",
|
|
98
|
+
"key": "115bf75562fd6e434a8e22026f86bbc450902f18",
|
|
99
|
+
"componentPropertyDefinitions": {
|
|
100
|
+
"Input#40606:0": {
|
|
101
|
+
"type": "INSTANCE_SWAP",
|
|
102
|
+
"preferredValues": []
|
|
103
|
+
},
|
|
104
|
+
"Show Header#40606:1": {
|
|
105
|
+
"type": "BOOLEAN"
|
|
106
|
+
},
|
|
107
|
+
"Show Footer#40606:2": {
|
|
108
|
+
"type": "BOOLEAN"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export declare const icon: {
|
|
114
|
+
"name": "icon",
|
|
115
|
+
"key": "598895dbeb853cbfff37bd50ddc65874375fc1b1"
|
|
116
|
+
};
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
export const templateAddressPickerField = {
|
|
2
|
+
"name": "templateAddressPickerField",
|
|
3
|
+
"key": "a6cb0e888094d95ca0e9862f4775b34407b3611d"
|
|
4
|
+
};
|
|
5
|
+
|
|
6
|
+
export const templateDatePickerField = {
|
|
7
|
+
"name": "templateDatePickerField",
|
|
8
|
+
"key": "9fac6c04140c81cdb2e446979952381f1afc0e1a"
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const templateFilterBar = {
|
|
12
|
+
"name": "templateFilterBar",
|
|
13
|
+
"key": "52ffefa44ac247120a69d1787278d1d90b7f370d",
|
|
14
|
+
"componentPropertyDefinitions": {
|
|
15
|
+
"Show Clear Button#32562:362": {
|
|
16
|
+
"type": "BOOLEAN"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export const templateInformationList = {
|
|
22
|
+
"name": "templateInformationList",
|
|
23
|
+
"key": "a111395555825f77d152f84e047e5e798fb53023"
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export const templateSelectField = {
|
|
27
|
+
"name": "templateSelectField",
|
|
28
|
+
"key": "a43d16a5c3cbb5fe22ca230d6a28338da21c7562"
|
|
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"
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export const skeletonPreSetItemCarousel = {
|
|
72
|
+
"name": "skeletonPreSetItemCarousel",
|
|
73
|
+
"key": "d92b2942bc9e079cb31fa055a1628e497a8cda8c"
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export const skeletonPreSetList = {
|
|
77
|
+
"name": "skeletonPreSetList",
|
|
78
|
+
"key": "e03cc22ade0cf5db55d0ecea0a51c8424f05410c"
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const skeletonPreSetProfileLarge = {
|
|
82
|
+
"name": "skeletonPreSetProfileLarge",
|
|
83
|
+
"key": "36103a3dedc41b788a381dc362e90cb19fa907ce"
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const skeletonPreSetProfileSmall = {
|
|
87
|
+
"name": "skeletonPreSetProfileSmall",
|
|
88
|
+
"key": "090506ac39352cfb1bee415a404fd3d306744c27"
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export const skeletonPreSetReview = {
|
|
92
|
+
"name": "skeletonPreSetReview",
|
|
93
|
+
"key": "faf975727deaeab9e16ddd915e6a1bc48ddb5bca"
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
export const field = {
|
|
97
|
+
"name": "field",
|
|
98
|
+
"key": "115bf75562fd6e434a8e22026f86bbc450902f18",
|
|
99
|
+
"componentPropertyDefinitions": {
|
|
100
|
+
"Input#40606:0": {
|
|
101
|
+
"type": "INSTANCE_SWAP",
|
|
102
|
+
"preferredValues": []
|
|
103
|
+
},
|
|
104
|
+
"Show Header#40606:1": {
|
|
105
|
+
"type": "BOOLEAN"
|
|
106
|
+
},
|
|
107
|
+
"Show Footer#40606:2": {
|
|
108
|
+
"type": "BOOLEAN"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export const icon = {
|
|
114
|
+
"name": "icon",
|
|
115
|
+
"key": "598895dbeb853cbfff37bd50ddc65874375fc1b1"
|
|
116
|
+
};
|
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
export const FIGMA_STYLES = [
|
|
2
|
+
{
|
|
3
|
+
"styleType": "FILL",
|
|
4
|
+
"key": "353baa82e0440385eb121cd0ae98d2fcb1a70b18",
|
|
5
|
+
"name": "gradient/glow/magic",
|
|
6
|
+
"description": "반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러입니다.",
|
|
7
|
+
"remote": false
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"styleType": "FILL",
|
|
11
|
+
"key": "f83f54c1840aaf26742629e2c696c363b8df0a82",
|
|
12
|
+
"name": "gradient/glow/magic-pressed",
|
|
13
|
+
"description": "반짝이는 것처럼 느껴지는 배경에 쓰이는 ai 컬러의 pressed컬러입니다.",
|
|
14
|
+
"remote": false
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"styleType": "FILL",
|
|
18
|
+
"key": "1101a7c6a505d97904c3a0ce6a9ee17fe15de879",
|
|
19
|
+
"name": "gradient/highlight/magic",
|
|
20
|
+
"description": "아이콘 및 shape 영역에서 AI 기능을 표현할 때 사용하는 컬러입니다.",
|
|
21
|
+
"remote": false
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"styleType": "FILL",
|
|
25
|
+
"key": "528a3808331ad87aacb47430a59cd32d4410b822",
|
|
26
|
+
"name": "gradient/highlight/magic-pressed",
|
|
27
|
+
"description": "",
|
|
28
|
+
"remote": false
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"styleType": "FILL",
|
|
32
|
+
"key": "2ed61bff1a187f39389698cf63b74d6997aed609",
|
|
33
|
+
"name": "gradient/shimmer/magic",
|
|
34
|
+
"description": "Skeleton AI shimmer",
|
|
35
|
+
"remote": false
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"styleType": "FILL",
|
|
39
|
+
"key": "71971dde923a11c615296a16f8172c0671d5a3a6",
|
|
40
|
+
"name": "gradient/shimmer/neutral",
|
|
41
|
+
"description": "Skeleton shimmer",
|
|
42
|
+
"remote": false
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"styleType": "TEXT",
|
|
46
|
+
"key": "af24f9e7cc90af3bf2a18029dd59ae0646966486",
|
|
47
|
+
"name": "scale/legacy-13-150",
|
|
48
|
+
"description": "13",
|
|
49
|
+
"remote": false
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"styleType": "TEXT",
|
|
53
|
+
"key": "2fec4e47f53f75ea46bee4d740795e099af5472f",
|
|
54
|
+
"name": "scale/legacy-14-150",
|
|
55
|
+
"description": "14",
|
|
56
|
+
"remote": false
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"styleType": "TEXT",
|
|
60
|
+
"key": "337e113e2fafc22ccd5423b3fc7a7da69a6c917c",
|
|
61
|
+
"name": "scale/t1-bold",
|
|
62
|
+
"description": "11",
|
|
63
|
+
"remote": false
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"styleType": "TEXT",
|
|
67
|
+
"key": "49735ed4693e2f7e9d98b6b6e3818f38e2fe77a8",
|
|
68
|
+
"name": "scale/t1-medium",
|
|
69
|
+
"description": "11",
|
|
70
|
+
"remote": false
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"styleType": "TEXT",
|
|
74
|
+
"key": "4d54fb58fa4a63a6ddec973099b4babfbe502849",
|
|
75
|
+
"name": "scale/t1-regular",
|
|
76
|
+
"description": "11",
|
|
77
|
+
"remote": false
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"styleType": "TEXT",
|
|
81
|
+
"key": "ab6db5fae979eef82d7eece9237bd04c02707f57",
|
|
82
|
+
"name": "scale/t1-static-bold",
|
|
83
|
+
"description": "11",
|
|
84
|
+
"remote": false
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"styleType": "TEXT",
|
|
88
|
+
"key": "16c25fb788efbfe8f6d042820e342077a461f9bf",
|
|
89
|
+
"name": "scale/t1-static-medium",
|
|
90
|
+
"description": "11",
|
|
91
|
+
"remote": false
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"styleType": "TEXT",
|
|
95
|
+
"key": "5579ed6f529f5e97049e0842212b4958437eea34",
|
|
96
|
+
"name": "scale/t1-static-regular",
|
|
97
|
+
"description": "11",
|
|
98
|
+
"remote": false
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"styleType": "TEXT",
|
|
102
|
+
"key": "6ea6b06312771259d59de265a5ef12cd1dae9102",
|
|
103
|
+
"name": "scale/t10-bold",
|
|
104
|
+
"description": "26",
|
|
105
|
+
"remote": false
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"styleType": "TEXT",
|
|
109
|
+
"key": "08861e25c3f74a29c2ae4ce007fe50b63e302392",
|
|
110
|
+
"name": "scale/t10-static-bold",
|
|
111
|
+
"description": "26",
|
|
112
|
+
"remote": false
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"styleType": "TEXT",
|
|
116
|
+
"key": "8378bd59b14f5682dcaf20110efde4b7a1fb18e3",
|
|
117
|
+
"name": "scale/t2-bold",
|
|
118
|
+
"description": "12",
|
|
119
|
+
"remote": false
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"styleType": "TEXT",
|
|
123
|
+
"key": "2aff06b0ad8be136acbfb3090fa4dde1f9eac48e",
|
|
124
|
+
"name": "scale/t2-medium",
|
|
125
|
+
"description": "12",
|
|
126
|
+
"remote": false
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"styleType": "TEXT",
|
|
130
|
+
"key": "711eaf0bd91b906e108f3508cf7845fc82294b1a",
|
|
131
|
+
"name": "scale/t2-regular",
|
|
132
|
+
"description": "12",
|
|
133
|
+
"remote": false
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"styleType": "TEXT",
|
|
137
|
+
"key": "4c6e5c31b949694aa08bf8d4d5cc445e22cf301f",
|
|
138
|
+
"name": "scale/t2-static-bold",
|
|
139
|
+
"description": "12",
|
|
140
|
+
"remote": false
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"styleType": "TEXT",
|
|
144
|
+
"key": "7d4bb16ddefb735fd197123b013864e7c412a934",
|
|
145
|
+
"name": "scale/t2-static-medium",
|
|
146
|
+
"description": "12",
|
|
147
|
+
"remote": false
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"styleType": "TEXT",
|
|
151
|
+
"key": "e05fbcacd044da0c9e6b73c7382bc4562a4a5d30",
|
|
152
|
+
"name": "scale/t2-static-regular",
|
|
153
|
+
"description": "12",
|
|
154
|
+
"remote": false
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"styleType": "TEXT",
|
|
158
|
+
"key": "f749d659a689cbbecbdbb1b559056731234332a3",
|
|
159
|
+
"name": "scale/t3-bold",
|
|
160
|
+
"description": "13",
|
|
161
|
+
"remote": false
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"styleType": "TEXT",
|
|
165
|
+
"key": "96a2f248d201c246587d63eb4d00cb7610897400",
|
|
166
|
+
"name": "scale/t3-medium",
|
|
167
|
+
"description": "13",
|
|
168
|
+
"remote": false
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"styleType": "TEXT",
|
|
172
|
+
"key": "22ead16ee07b342df4a26952bc987f3155988779",
|
|
173
|
+
"name": "scale/t3-regular",
|
|
174
|
+
"description": "13",
|
|
175
|
+
"remote": false
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"styleType": "TEXT",
|
|
179
|
+
"key": "3174e2a628cf75bc8f906af35b9b5d04595267c8",
|
|
180
|
+
"name": "scale/t3-static-bold",
|
|
181
|
+
"description": "13",
|
|
182
|
+
"remote": false
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"styleType": "TEXT",
|
|
186
|
+
"key": "c19d7f5ec3290802216aa3b0993931835d8fa3b5",
|
|
187
|
+
"name": "scale/t3-static-medium",
|
|
188
|
+
"description": "13",
|
|
189
|
+
"remote": false
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"styleType": "TEXT",
|
|
193
|
+
"key": "0cda3e483e52409e3ca59a019f29c16be078355f",
|
|
194
|
+
"name": "scale/t3-static-regular",
|
|
195
|
+
"description": "13",
|
|
196
|
+
"remote": false
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"styleType": "TEXT",
|
|
200
|
+
"key": "a85ea49c1625319427c047bc206c26e708012030",
|
|
201
|
+
"name": "scale/t4-bold",
|
|
202
|
+
"description": "14",
|
|
203
|
+
"remote": false
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"styleType": "TEXT",
|
|
207
|
+
"key": "2c143ba862b3c1af10a0bd5d2e723bd12e7878ef",
|
|
208
|
+
"name": "scale/t4-medium",
|
|
209
|
+
"description": "14",
|
|
210
|
+
"remote": false
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"styleType": "TEXT",
|
|
214
|
+
"key": "b23d3e206b0244690c19472fd78bfc33b9b46d06",
|
|
215
|
+
"name": "scale/t4-regular",
|
|
216
|
+
"description": "14",
|
|
217
|
+
"remote": false
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"styleType": "TEXT",
|
|
221
|
+
"key": "35fd98a75610254f7c8c15c6e7b71d67fccd9eed",
|
|
222
|
+
"name": "scale/t4-static-bold",
|
|
223
|
+
"description": "14",
|
|
224
|
+
"remote": false
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"styleType": "TEXT",
|
|
228
|
+
"key": "c785ba7fed186bd4c98295bdc2292933faed98ef",
|
|
229
|
+
"name": "scale/t4-static-medium",
|
|
230
|
+
"description": "14",
|
|
231
|
+
"remote": false
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"styleType": "TEXT",
|
|
235
|
+
"key": "51a90741bcc1a7dc81293eae0f085a8d5fb01855",
|
|
236
|
+
"name": "scale/t4-static-regular",
|
|
237
|
+
"description": "14",
|
|
238
|
+
"remote": false
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"styleType": "TEXT",
|
|
242
|
+
"key": "8eff229c53f06eeb418f39ad1cb3dbe12480f12b",
|
|
243
|
+
"name": "scale/t5-bold",
|
|
244
|
+
"description": "16",
|
|
245
|
+
"remote": false
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"styleType": "TEXT",
|
|
249
|
+
"key": "bc8bcf3caa904cdc2e1c2983d0f12d32832d7374",
|
|
250
|
+
"name": "scale/t5-medium",
|
|
251
|
+
"description": "16",
|
|
252
|
+
"remote": false
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"styleType": "TEXT",
|
|
256
|
+
"key": "54a5a4c2bfc09573fba3a8efe0dafff067cf53bd",
|
|
257
|
+
"name": "scale/t5-regular",
|
|
258
|
+
"description": "16",
|
|
259
|
+
"remote": false
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"styleType": "TEXT",
|
|
263
|
+
"key": "37a672b087c5d72461b75c679924245ad89bcb06",
|
|
264
|
+
"name": "scale/t5-static-bold",
|
|
265
|
+
"description": "16",
|
|
266
|
+
"remote": false
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"styleType": "TEXT",
|
|
270
|
+
"key": "8b295f9759faed27b6a03cc50a8b257bf3af5cd0",
|
|
271
|
+
"name": "scale/t5-static-medium",
|
|
272
|
+
"description": "16",
|
|
273
|
+
"remote": false
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"styleType": "TEXT",
|
|
277
|
+
"key": "2011f31d265d6bb4535da4f16eb4f5d68f48d56e",
|
|
278
|
+
"name": "scale/t5-static-regular",
|
|
279
|
+
"description": "16",
|
|
280
|
+
"remote": false
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"styleType": "TEXT",
|
|
284
|
+
"key": "adf921a56e89b5737a6b626034cfea184e828370",
|
|
285
|
+
"name": "scale/t6-bold",
|
|
286
|
+
"description": "18",
|
|
287
|
+
"remote": false
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"styleType": "TEXT",
|
|
291
|
+
"key": "02ee25a9050a9c78dbaa03ea006aa4d1db593e99",
|
|
292
|
+
"name": "scale/t6-medium",
|
|
293
|
+
"description": "18",
|
|
294
|
+
"remote": false
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"styleType": "TEXT",
|
|
298
|
+
"key": "6608eaab965859080a5effa6e23eb857d888057f",
|
|
299
|
+
"name": "scale/t6-regular",
|
|
300
|
+
"description": "18",
|
|
301
|
+
"remote": false
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"styleType": "TEXT",
|
|
305
|
+
"key": "122ff9fd500bc63517b01a103a399b26130e7f0b",
|
|
306
|
+
"name": "scale/t6-static-bold",
|
|
307
|
+
"description": "18",
|
|
308
|
+
"remote": false
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"styleType": "TEXT",
|
|
312
|
+
"key": "0de548c3afd5c31e8b1c42a0170d44beba400a55",
|
|
313
|
+
"name": "scale/t6-static-medium",
|
|
314
|
+
"description": "18",
|
|
315
|
+
"remote": false
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"styleType": "TEXT",
|
|
319
|
+
"key": "c6d683f532e80c0c04e05057674e92265541a231",
|
|
320
|
+
"name": "scale/t6-static-regular",
|
|
321
|
+
"description": "18",
|
|
322
|
+
"remote": false
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"styleType": "TEXT",
|
|
326
|
+
"key": "182d9252d7f7380075915a89e6160d7595124bc3",
|
|
327
|
+
"name": "scale/t7-bold",
|
|
328
|
+
"description": "20",
|
|
329
|
+
"remote": false
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"styleType": "TEXT",
|
|
333
|
+
"key": "b2e24640e7dc1264fc638434511c9f994e1e149c",
|
|
334
|
+
"name": "scale/t7-medium",
|
|
335
|
+
"description": "20",
|
|
336
|
+
"remote": false
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"styleType": "TEXT",
|
|
340
|
+
"key": "eb1c0409582609a51fe9afc9e31301d529e3d12f",
|
|
341
|
+
"name": "scale/t7-regular",
|
|
342
|
+
"description": "20",
|
|
343
|
+
"remote": false
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"styleType": "TEXT",
|
|
347
|
+
"key": "2454dff78b9ac153728a2cff00ca1d28f234e3a0",
|
|
348
|
+
"name": "scale/t7-static-bold",
|
|
349
|
+
"description": "20",
|
|
350
|
+
"remote": false
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"styleType": "TEXT",
|
|
354
|
+
"key": "f0da131559e6b466810b06343f94c551a0593bb4",
|
|
355
|
+
"name": "scale/t7-static-medium",
|
|
356
|
+
"description": "20",
|
|
357
|
+
"remote": false
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"styleType": "TEXT",
|
|
361
|
+
"key": "07ef3b8fcb31319d1d83100957eb06fc0e37c1e9",
|
|
362
|
+
"name": "scale/t7-static-regular",
|
|
363
|
+
"description": "20",
|
|
364
|
+
"remote": false
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"styleType": "TEXT",
|
|
368
|
+
"key": "b7f864e3f64524a863d38729e2cea18f44c7ebaa",
|
|
369
|
+
"name": "scale/t8-bold",
|
|
370
|
+
"description": "22",
|
|
371
|
+
"remote": false
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"styleType": "TEXT",
|
|
375
|
+
"key": "37821f18bc4416d7a81fa429d89240317a8f17e6",
|
|
376
|
+
"name": "scale/t8-static-bold",
|
|
377
|
+
"description": "22",
|
|
378
|
+
"remote": false
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"styleType": "TEXT",
|
|
382
|
+
"key": "b146e1317c67db787834f1890493225bdbba4e48",
|
|
383
|
+
"name": "scale/t9-bold",
|
|
384
|
+
"description": "24",
|
|
385
|
+
"remote": false
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"styleType": "TEXT",
|
|
389
|
+
"key": "c06e147e98440109199e2e3fa2a63390d19afb0c",
|
|
390
|
+
"name": "scale/t9-static-bold",
|
|
391
|
+
"description": "24",
|
|
392
|
+
"remote": false
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"styleType": "TEXT",
|
|
396
|
+
"key": "85422ef9f0230f821f1a9e6d2f8f86b3ba87f20d",
|
|
397
|
+
"name": "semantic/article-body",
|
|
398
|
+
"description": "16",
|
|
399
|
+
"remote": false
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"styleType": "TEXT",
|
|
403
|
+
"key": "d918eb7069e10c8dd745abf40bc375004c1badb8",
|
|
404
|
+
"name": "semantic/screen-title",
|
|
405
|
+
"description": "26",
|
|
406
|
+
"remote": false
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"styleType": "EFFECT",
|
|
410
|
+
"key": "4717150d124a52434b2777609b046aa73a94c7ba",
|
|
411
|
+
"name": "shadow/s1",
|
|
412
|
+
"description": "",
|
|
413
|
+
"remote": false
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"styleType": "EFFECT",
|
|
417
|
+
"key": "906bc739e1b77bc1719762826f6d1154893c8266",
|
|
418
|
+
"name": "shadow/s2",
|
|
419
|
+
"description": "",
|
|
420
|
+
"remote": false
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"styleType": "EFFECT",
|
|
424
|
+
"key": "56f376d9146d9e158ba127ee8347c3cbf8329f19",
|
|
425
|
+
"name": "shadow/s3",
|
|
426
|
+
"description": "화면의 다른 요소들보다 가장 높은 계층에 위치할 때 사용됩니다.",
|
|
427
|
+
"remote": false
|
|
428
|
+
}
|
|
429
|
+
];
|