@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.
Files changed (117) hide show
  1. package/lib/codegen/index.cjs +12280 -190
  2. package/lib/codegen/index.d.ts +9 -1
  3. package/lib/codegen/index.d.ts.map +1 -1
  4. package/lib/codegen/index.js +12280 -190
  5. package/lib/codegen/targets/react/index.cjs +17286 -3116
  6. package/lib/codegen/targets/react/index.d.ts.map +1 -1
  7. package/lib/codegen/targets/react/index.js +17286 -3116
  8. package/lib/index.cjs +12286 -196
  9. package/lib/index.d.ts.map +1 -1
  10. package/lib/index.js +12286 -196
  11. package/package.json +4 -4
  12. package/src/codegen/component-properties.archive.ts +1019 -0
  13. package/src/codegen/component-properties.ts +191 -885
  14. package/src/codegen/index.ts +1 -1
  15. package/src/codegen/targets/react/component/handlers/action-button.ts +69 -66
  16. package/src/codegen/targets/react/component/handlers/alert-dialog.ts +2 -4
  17. package/src/codegen/targets/react/component/handlers/app-bar.ts +90 -87
  18. package/src/codegen/targets/react/component/handlers/archive/action-button.ts +144 -0
  19. package/src/codegen/targets/react/component/handlers/archive/alert-dialog.ts +122 -0
  20. package/src/codegen/targets/react/component/handlers/archive/app-bar.ts +149 -0
  21. package/src/codegen/targets/react/component/handlers/archive/avatar-stack.ts +35 -0
  22. package/src/codegen/targets/react/component/handlers/archive/avatar.ts +55 -0
  23. package/src/codegen/targets/react/component/handlers/archive/badge.ts +18 -0
  24. package/src/codegen/targets/react/component/handlers/archive/bottom-sheet.ts +70 -0
  25. package/src/codegen/targets/react/component/handlers/archive/callout.ts +88 -0
  26. package/src/codegen/targets/react/component/handlers/archive/checkbox.ts +41 -0
  27. package/src/codegen/targets/react/component/handlers/archive/checkmark.ts +29 -0
  28. package/src/codegen/targets/react/component/handlers/archive/chip.ts +90 -0
  29. package/src/codegen/targets/react/component/handlers/archive/contextual-floating-button.ts +52 -0
  30. package/src/codegen/targets/react/component/handlers/archive/divider.ts +25 -0
  31. package/src/codegen/targets/react/component/handlers/archive/field-button.ts +197 -0
  32. package/src/codegen/targets/react/component/handlers/archive/field.ts +167 -0
  33. package/src/codegen/targets/react/component/handlers/archive/floating-action-button.ts +48 -0
  34. package/src/codegen/targets/react/component/handlers/archive/help-bubble.ts +73 -0
  35. package/src/codegen/targets/react/component/handlers/archive/identity-placeholder.ts +21 -0
  36. package/src/codegen/targets/react/component/handlers/archive/index.ts +41 -0
  37. package/src/codegen/targets/react/component/handlers/archive/legacy-select-box.ts +89 -0
  38. package/src/codegen/targets/react/component/handlers/archive/legacy-text-field.ts +198 -0
  39. package/src/codegen/targets/react/component/handlers/archive/list-header.ts +20 -0
  40. package/src/codegen/targets/react/component/handlers/archive/list-item.ts +162 -0
  41. package/src/codegen/targets/react/component/handlers/archive/manner-temp-badge.ts +21 -0
  42. package/src/codegen/targets/react/component/handlers/archive/manner-temp.ts +18 -0
  43. package/src/codegen/targets/react/component/handlers/archive/menu-sheet.ts +108 -0
  44. package/src/codegen/targets/react/component/handlers/archive/page-banner.ts +101 -0
  45. package/src/codegen/targets/react/component/handlers/archive/progress-circle.ts +55 -0
  46. package/src/codegen/targets/react/component/handlers/archive/radio-group.ts +31 -0
  47. package/src/codegen/targets/react/component/handlers/archive/radiomark.ts +27 -0
  48. package/src/codegen/targets/react/component/handlers/archive/reaction-button.ts +37 -0
  49. package/src/codegen/targets/react/component/handlers/archive/result-section.ts +67 -0
  50. package/src/codegen/targets/react/component/handlers/archive/segmented-control.ts +64 -0
  51. package/src/codegen/targets/react/component/handlers/archive/skeleton.ts +26 -0
  52. package/src/codegen/targets/react/component/handlers/archive/slider.ts +114 -0
  53. package/src/codegen/targets/react/component/handlers/archive/snackbar.ts +25 -0
  54. package/src/codegen/targets/react/component/handlers/archive/switch.ts +39 -0
  55. package/src/codegen/targets/react/component/handlers/archive/switchmark.ts +26 -0
  56. package/src/codegen/targets/react/component/handlers/archive/tabs.ts +297 -0
  57. package/src/codegen/targets/react/component/handlers/archive/tag-group.ts +86 -0
  58. package/src/codegen/targets/react/component/handlers/archive/text-field.ts +264 -0
  59. package/src/codegen/targets/react/component/handlers/archive/toggle-button.ts +43 -0
  60. package/src/codegen/targets/react/component/handlers/avatar-stack.ts +5 -2
  61. package/src/codegen/targets/react/component/handlers/avatar.ts +42 -39
  62. package/src/codegen/targets/react/component/handlers/badge.ts +1 -1
  63. package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +56 -49
  64. package/src/codegen/targets/react/component/handlers/callout.ts +1 -1
  65. package/src/codegen/targets/react/component/handlers/checkbox.ts +1 -1
  66. package/src/codegen/targets/react/component/handlers/checkmark.ts +1 -1
  67. package/src/codegen/targets/react/component/handlers/chip.ts +8 -5
  68. package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +1 -1
  69. package/src/codegen/targets/react/component/handlers/divider.ts +1 -1
  70. package/src/codegen/targets/react/component/handlers/field-button.ts +18 -16
  71. package/src/codegen/targets/react/component/handlers/field.ts +71 -74
  72. package/src/codegen/targets/react/component/handlers/floating-action-button.ts +3 -6
  73. package/src/codegen/targets/react/component/handlers/help-bubble.ts +1 -1
  74. package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +10 -2
  75. package/src/codegen/targets/react/component/handlers/index.ts +41 -0
  76. package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +3 -5
  77. package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +3 -5
  78. package/src/codegen/targets/react/component/handlers/list-header.ts +1 -1
  79. package/src/codegen/targets/react/component/handlers/list-item.ts +22 -21
  80. package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +1 -1
  81. package/src/codegen/targets/react/component/handlers/manner-temp.ts +1 -1
  82. package/src/codegen/targets/react/component/handlers/menu-sheet.ts +59 -54
  83. package/src/codegen/targets/react/component/handlers/page-banner.ts +77 -72
  84. package/src/codegen/targets/react/component/handlers/progress-circle.ts +1 -1
  85. package/src/codegen/targets/react/component/handlers/radio-group.ts +1 -1
  86. package/src/codegen/targets/react/component/handlers/radiomark.ts +2 -2
  87. package/src/codegen/targets/react/component/handlers/reaction-button.ts +1 -1
  88. package/src/codegen/targets/react/component/handlers/result-section.ts +1 -1
  89. package/src/codegen/targets/react/component/handlers/segmented-control.ts +2 -3
  90. package/src/codegen/targets/react/component/handlers/skeleton.ts +1 -1
  91. package/src/codegen/targets/react/component/handlers/slider.ts +11 -8
  92. package/src/codegen/targets/react/component/handlers/snackbar.ts +1 -1
  93. package/src/codegen/targets/react/component/handlers/switch.ts +2 -2
  94. package/src/codegen/targets/react/component/handlers/switchmark.ts +2 -2
  95. package/src/codegen/targets/react/component/handlers/tabs.ts +39 -42
  96. package/src/codegen/targets/react/component/handlers/tag-group.ts +57 -59
  97. package/src/codegen/targets/react/component/handlers/text-field.ts +11 -22
  98. package/src/codegen/targets/react/component/handlers/toggle-button.ts +1 -1
  99. package/src/codegen/targets/react/component/index.ts +5 -115
  100. package/src/entities/data/__generated__/archive/component-sets/index.d.ts +2074 -0
  101. package/src/entities/data/__generated__/archive/component-sets/index.mjs +2074 -0
  102. package/src/entities/data/__generated__/archive/components/index.d.ts +116 -0
  103. package/src/entities/data/__generated__/archive/components/index.mjs +116 -0
  104. package/src/entities/data/__generated__/archive/styles/index.d.ts +3 -0
  105. package/src/entities/data/__generated__/archive/styles/index.mjs +429 -0
  106. package/src/entities/data/__generated__/archive/variable-collections/index.d.ts +3 -0
  107. package/src/entities/data/__generated__/archive/variable-collections/index.mjs +501 -0
  108. package/src/entities/data/__generated__/archive/variables/index.d.ts +3 -0
  109. package/src/entities/data/__generated__/archive/variables/index.mjs +7019 -0
  110. package/src/entities/data/__generated__/component-sets/index.d.ts +3442 -1306
  111. package/src/entities/data/__generated__/component-sets/index.mjs +3442 -1306
  112. package/src/entities/data/__generated__/components/index.d.ts +87 -85
  113. package/src/entities/data/__generated__/components/index.mjs +87 -85
  114. package/src/entities/data/__generated__/styles/index.mjs +9 -2
  115. package/src/entities/data/__generated__/variable-collections/index.mjs +150 -173
  116. package/src/entities/data/__generated__/variables/index.mjs +0 -74
  117. package/src/entities/index.ts +21 -7
@@ -1,16 +1,32 @@
1
- export declare const templateAddressPickerField: {
2
- "name": "templateAddressPickerField",
3
- "key": "a6cb0e888094d95ca0e9862f4775b34407b3611d"
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 templateDatePickerField: {
7
- "name": "templateDatePickerField",
8
- "key": "9fac6c04140c81cdb2e446979952381f1afc0e1a"
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": "52ffefa44ac247120a69d1787278d1d90b7f370d",
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 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"
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 skeletonPreSetItemCarousel: {
72
- "name": "skeletonPreSetItemCarousel",
73
- "key": "d92b2942bc9e079cb31fa055a1628e497a8cda8c"
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 skeletonPreSetList: {
77
- "name": "skeletonPreSetList",
78
- "key": "e03cc22ade0cf5db55d0ecea0a51c8424f05410c"
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 skeletonPreSetProfileLarge: {
82
- "name": "skeletonPreSetProfileLarge",
83
- "key": "36103a3dedc41b788a381dc362e90cb19fa907ce"
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 skeletonPreSetProfileSmall: {
87
- "name": "skeletonPreSetProfileSmall",
88
- "key": "090506ac39352cfb1bee415a404fd3d306744c27"
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 skeletonPreSetReview: {
92
- "name": "skeletonPreSetReview",
93
- "key": "faf975727deaeab9e16ddd915e6a1bc48ddb5bca"
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 field: {
97
- "name": "field",
98
- "key": "115bf75562fd6e434a8e22026f86bbc450902f18",
100
+ export declare const componentListItemSuffixIcon: {
101
+ "name": "componentListItemSuffixIcon",
102
+ "key": "b7582e74a4bae29df8bc3f81368e528701a75855",
99
103
  "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"
104
+ "Icon#28347:9": {
105
+ "type": "INSTANCE_SWAP"
109
106
  }
110
107
  }
111
108
  };
112
109
 
113
- export declare const icon: {
114
- "name": "icon",
115
- "key": "598895dbeb853cbfff37bd50ddc65874375fc1b1"
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 templateAddressPickerField = {
2
- "name": "templateAddressPickerField",
3
- "key": "a6cb0e888094d95ca0e9862f4775b34407b3611d"
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 templateDatePickerField = {
7
- "name": "templateDatePickerField",
8
- "key": "9fac6c04140c81cdb2e446979952381f1afc0e1a"
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": "52ffefa44ac247120a69d1787278d1d90b7f370d",
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 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"
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 skeletonPreSetItemCarousel = {
72
- "name": "skeletonPreSetItemCarousel",
73
- "key": "d92b2942bc9e079cb31fa055a1628e497a8cda8c"
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 skeletonPreSetList = {
77
- "name": "skeletonPreSetList",
78
- "key": "e03cc22ade0cf5db55d0ecea0a51c8424f05410c"
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 skeletonPreSetProfileLarge = {
82
- "name": "skeletonPreSetProfileLarge",
83
- "key": "36103a3dedc41b788a381dc362e90cb19fa907ce"
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 skeletonPreSetProfileSmall = {
87
- "name": "skeletonPreSetProfileSmall",
88
- "key": "090506ac39352cfb1bee415a404fd3d306744c27"
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 skeletonPreSetReview = {
92
- "name": "skeletonPreSetReview",
93
- "key": "faf975727deaeab9e16ddd915e6a1bc48ddb5bca"
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 field = {
97
- "name": "field",
98
- "key": "115bf75562fd6e434a8e22026f86bbc450902f18",
100
+ export const componentListItemSuffixIcon = {
101
+ "name": "componentListItemSuffixIcon",
102
+ "key": "b7582e74a4bae29df8bc3f81368e528701a75855",
99
103
  "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"
104
+ "Icon#28347:9": {
105
+ "type": "INSTANCE_SWAP"
109
106
  }
110
107
  }
111
108
  };
112
109
 
113
- export const icon = {
114
- "name": "icon",
115
- "key": "598895dbeb853cbfff37bd50ddc65874375fc1b1"
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
  {