gladvn 0.2.36 → 0.2.37

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 (134) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/scripts/strip-comments.ts +79 -0
  4. package/src/blocks/auth-form.tsx +34 -30
  5. package/src/blocks/auth-recovery.tsx +9 -13
  6. package/src/blocks/auth-split.tsx +46 -36
  7. package/src/blocks/settings.tsx +84 -117
  8. package/src/components/macro/alert-preset.tsx +3 -1
  9. package/src/components/macro/carousel-preset.tsx +0 -1
  10. package/src/components/macro/checkbox-preset.test.tsx +2 -2
  11. package/src/components/macro/checkbox-preset.tsx +1 -2
  12. package/src/components/macro/command-preset.tsx +1 -1
  13. package/src/components/macro/date-picker.tsx +5 -18
  14. package/src/components/macro/dialog-preset.tsx +5 -3
  15. package/src/components/macro/input-preset.tsx +0 -1
  16. package/src/components/macro/select-preset.tsx +1 -1
  17. package/src/components/macro/switch-preset.test.tsx +1 -1
  18. package/src/components/micro/accordion.test.tsx +6 -12
  19. package/src/components/micro/alert-dialog.tsx +0 -2
  20. package/src/components/micro/alert.test.tsx +5 -8
  21. package/src/components/micro/alert.tsx +0 -2
  22. package/src/components/micro/badge.test.tsx +5 -7
  23. package/src/components/micro/badge.tsx +1 -3
  24. package/src/components/micro/button.test.tsx +19 -26
  25. package/src/components/micro/button.tsx +3 -11
  26. package/src/components/micro/calendar.tsx +12 -13
  27. package/src/components/micro/card.test.tsx +3 -5
  28. package/src/components/micro/carousel.tsx +0 -1
  29. package/src/components/micro/chart.tsx +3 -2
  30. package/src/components/micro/checkbox.test.tsx +9 -18
  31. package/src/components/micro/combobox.tsx +1 -3
  32. package/src/components/micro/command.tsx +23 -11
  33. package/src/components/micro/context-menu.tsx +0 -2
  34. package/src/components/micro/dialog.test.tsx +6 -14
  35. package/src/components/micro/dialog.tsx +0 -2
  36. package/src/components/micro/drawer.tsx +0 -3
  37. package/src/components/micro/dropdown-menu.test.tsx +8 -14
  38. package/src/components/micro/dropdown-menu.tsx +0 -2
  39. package/src/components/micro/field.tsx +3 -3
  40. package/src/components/micro/hover-card.tsx +0 -2
  41. package/src/components/micro/input-group.tsx +9 -42
  42. package/src/components/micro/input.test.tsx +15 -24
  43. package/src/components/micro/navigation-menu.tsx +0 -2
  44. package/src/components/micro/popover.test.tsx +5 -9
  45. package/src/components/micro/progress.tsx +5 -1
  46. package/src/components/micro/select.test.tsx +5 -18
  47. package/src/components/micro/select.tsx +3 -5
  48. package/src/components/micro/separator.tsx +1 -1
  49. package/src/components/micro/sheet.test.tsx +6 -14
  50. package/src/components/micro/sheet.tsx +0 -2
  51. package/src/components/micro/sidebar.tsx +5 -6
  52. package/src/components/micro/sonner.tsx +0 -1
  53. package/src/components/micro/switch.test.tsx +9 -18
  54. package/src/components/micro/switch.tsx +1 -1
  55. package/src/components/micro/tabs.test.tsx +5 -11
  56. package/src/components/micro/theme-provider.tsx +0 -12
  57. package/src/components/micro/toggle-group.tsx +1 -12
  58. package/src/components/micro/tooltip.test.tsx +7 -12
  59. package/src/dev/App.tsx +6 -6
  60. package/src/dev/components/BlockViewer.tsx +15 -4
  61. package/src/dev/components/Container.tsx +20 -0
  62. package/src/dev/components/GladvnLogo.tsx +3 -9
  63. package/src/dev/components/code-highlighter.tsx +5 -3
  64. package/src/dev/components/showcase.tsx +116 -168
  65. package/src/dev/sections/buttons.tsx +4 -9
  66. package/src/dev/sections/display.tsx +68 -72
  67. package/src/dev/sections/feedback.tsx +304 -314
  68. package/src/dev/sections/forms.tsx +10 -14
  69. package/src/dev/sections/interactive.tsx +32 -32
  70. package/src/dev/sections/overview.tsx +2 -10
  71. package/src/dev/showcase/accordion.tsx +512 -554
  72. package/src/dev/showcase/alert-dialog.tsx +525 -565
  73. package/src/dev/showcase/alert.tsx +352 -402
  74. package/src/dev/showcase/aspect-ratio.tsx +167 -193
  75. package/src/dev/showcase/avatar.tsx +231 -269
  76. package/src/dev/showcase/badge.tsx +92 -140
  77. package/src/dev/showcase/breadcrumb.tsx +113 -135
  78. package/src/dev/showcase/button.tsx +140 -173
  79. package/src/dev/showcase/calendar.tsx +187 -237
  80. package/src/dev/showcase/card.tsx +229 -261
  81. package/src/dev/showcase/carousel.tsx +288 -315
  82. package/src/dev/showcase/chart.tsx +44 -50
  83. package/src/dev/showcase/checkbox.tsx +286 -330
  84. package/src/dev/showcase/collapsible.tsx +143 -160
  85. package/src/dev/showcase/combobox.tsx +327 -369
  86. package/src/dev/showcase/command.tsx +106 -120
  87. package/src/dev/showcase/context-menu.tsx +93 -107
  88. package/src/dev/showcase/dialog.tsx +585 -630
  89. package/src/dev/showcase/drawer.tsx +176 -196
  90. package/src/dev/showcase/dropdown-menu.tsx +183 -201
  91. package/src/dev/showcase/empty.tsx +232 -274
  92. package/src/dev/showcase/hover-card.tsx +153 -180
  93. package/src/dev/showcase/input-group.tsx +221 -253
  94. package/src/dev/showcase/input-otp.tsx +204 -250
  95. package/src/dev/showcase/input.tsx +246 -325
  96. package/src/dev/showcase/item.tsx +134 -152
  97. package/src/dev/showcase/kbd.tsx +149 -172
  98. package/src/dev/showcase/label.tsx +50 -68
  99. package/src/dev/showcase/menubar.tsx +194 -213
  100. package/src/dev/showcase/navigation-menu.tsx +119 -133
  101. package/src/dev/showcase/overview-components/ArchitectureSection.tsx +126 -0
  102. package/src/dev/showcase/overview-components/CodeBlock.tsx +50 -0
  103. package/src/dev/showcase/overview-components/ColorPaletteSection.tsx +44 -0
  104. package/src/dev/showcase/overview-components/DashboardPreview.tsx +159 -0
  105. package/src/dev/showcase/overview-components/FeatureGridSection.tsx +535 -0
  106. package/src/dev/showcase/overview-components/FooterCTA.tsx +137 -0
  107. package/src/dev/showcase/overview-components/HeroSection.tsx +65 -0
  108. package/src/dev/showcase/overview-components/PrinciplesSection.tsx +128 -0
  109. package/src/dev/showcase/overview.tsx +21 -1163
  110. package/src/dev/showcase/pagination.tsx +144 -190
  111. package/src/dev/showcase/popover.tsx +181 -196
  112. package/src/dev/showcase/progress.tsx +141 -189
  113. package/src/dev/showcase/radio-group.tsx +272 -332
  114. package/src/dev/showcase/resizable.tsx +119 -141
  115. package/src/dev/showcase/scroll-area.tsx +21 -36
  116. package/src/dev/showcase/select.tsx +262 -322
  117. package/src/dev/showcase/separator.tsx +75 -73
  118. package/src/dev/showcase/sheet.tsx +333 -361
  119. package/src/dev/showcase/sidebar.tsx +53 -59
  120. package/src/dev/showcase/skeleton.tsx +93 -112
  121. package/src/dev/showcase/slider.tsx +244 -296
  122. package/src/dev/showcase/sonner.tsx +251 -258
  123. package/src/dev/showcase/spinner.tsx +46 -67
  124. package/src/dev/showcase/switch.tsx +298 -362
  125. package/src/dev/showcase/table.tsx +76 -80
  126. package/src/dev/showcase/tabs.tsx +302 -355
  127. package/src/dev/showcase/textarea.tsx +240 -293
  128. package/src/dev/showcase/toast.tsx +48 -54
  129. package/src/dev/showcase/toggle-group.tsx +104 -129
  130. package/src/dev/showcase/toggle.tsx +82 -102
  131. package/src/dev/showcase/tooltip.tsx +173 -192
  132. package/src/dev/showcase/why.tsx +6 -12
  133. package/src/hooks/use-mobile.test.ts +3 -2
  134. package/src/lib/utils.test.ts +5 -4
@@ -8,7 +8,7 @@ import { useDevContext } from "../../dev/components/dev-context";
8
8
  import {
9
9
  DocsP,
10
10
  ExampleGrid,
11
- ExampleSection,
11
+ ShowcaseExample,
12
12
  Showcase,
13
13
  ShowcaseDocs
14
14
  } from "../../dev/components/showcase";
@@ -29,39 +29,31 @@ function ButtonMicroShowcase({ globalSize }: { globalSize: Size }) {
29
29
  };
30
30
 
31
31
  return (
32
- <div className="space-y-10 mt-6">
33
- {/* ── Variants ── */}
34
- <ExampleSection
35
- label="Variants"
36
- description="Tất cả các kiểu hiển thị hiện có."
37
- codeString={`<Button variant="solid">Solid</Button>
32
+ <div className="space-y-10">
33
+ <ShowcaseExample title="Variants" description="Tất cả các kiểu hiển thị hiện có." code={`<div className="flex flex-wrap items-center gap-4">
34
+ <Button variant="solid">Solid</Button>
38
35
  <Button variant="outline">Outline</Button>
39
36
  <Button variant="soft">Soft</Button>
40
37
  <Button variant="ghost">Ghost</Button>
41
- <Button variant="link">Link</Button>`}
42
- >
43
- <Button size={globalSize} variant="solid">
44
- Solid
45
- </Button>
46
- <Button size={globalSize} variant="outline">
47
- Outline
48
- </Button>
49
- <Button size={globalSize} variant="soft">
50
- Soft
51
- </Button>
52
- <Button size={globalSize} variant="ghost">
53
- Ghost
54
- </Button>
55
- <Button size={globalSize} variant="link">
56
- Link
57
- </Button>
58
- </ExampleSection>
38
+ <Button variant="link">Link</Button>
39
+ </div>`} preview={
40
+ <div className="flex flex-wrap items-center gap-4">
41
+ <Button size={globalSize} variant="solid">
42
+ Solid
43
+ </Button><Button size={globalSize} variant="outline">
44
+ Outline
45
+ </Button><Button size={globalSize} variant="soft">
46
+ Soft
47
+ </Button><Button size={globalSize} variant="ghost">
48
+ Ghost
49
+ </Button><Button size={globalSize} variant="link">
50
+ Link
51
+ </Button>
52
+ </div>
53
+ } />
59
54
 
60
- {/* ── Colors ── */}
61
- <ExampleSection
62
- label="Colors"
63
- description="Các màu semantic đi kèm variant solid."
64
- codeString={`<Button color="primary">Primary</Button>
55
+ <ShowcaseExample title="Colors" description="Các màu semantic đi kèm variant solid." code={`<div className="flex flex-wrap items-center gap-4">
56
+ <Button color="primary">Primary</Button>
65
57
  <Button color="secondary">Secondary</Button>
66
58
  <Button color="destructive">Destructive</Button>
67
59
  <Button color="warning">Warning</Button>
@@ -69,65 +61,55 @@ function ButtonMicroShowcase({ globalSize }: { globalSize: Size }) {
69
61
  <Button color="info">Info</Button>
70
62
  <Button color="tertiary">Tertiary</Button>
71
63
  <Button color="muted">Muted</Button>
72
- <Button color="accent">Accent</Button>`}
73
- >
74
- <Button size={globalSize} color="primary">
75
- Primary
76
- </Button>
77
- <Button size={globalSize} color="secondary">
78
- Secondary
79
- </Button>
80
- <Button size={globalSize} color="destructive">
81
- Destructive
82
- </Button>
83
- <Button size={globalSize} color="warning">
84
- Warning
85
- </Button>
86
- <Button size={globalSize} color="success">
87
- Success
88
- </Button>
89
- <Button size={globalSize} color="info">
90
- Info
91
- </Button>
92
- <Button size={globalSize} color="tertiary">
93
- Tertiary
94
- </Button>
95
- <Button size={globalSize} color="muted">
96
- Muted
97
- </Button>
98
- <Button size={globalSize} color="accent">
99
- Accent
100
- </Button>
101
- </ExampleSection>
64
+ <Button color="accent">Accent</Button>
65
+ </div>`} preview={
66
+ <div className="flex flex-wrap items-center gap-4">
67
+ <Button size={globalSize} color="primary">
68
+ Primary
69
+ </Button><Button size={globalSize} color="secondary">
70
+ Secondary
71
+ </Button><Button size={globalSize} color="destructive">
72
+ Destructive
73
+ </Button><Button size={globalSize} color="warning">
74
+ Warning
75
+ </Button><Button size={globalSize} color="success">
76
+ Success
77
+ </Button><Button size={globalSize} color="info">
78
+ Info
79
+ </Button><Button size={globalSize} color="tertiary">
80
+ Tertiary
81
+ </Button><Button size={globalSize} color="muted">
82
+ Muted
83
+ </Button><Button size={globalSize} color="accent">
84
+ Accent
85
+ </Button>
86
+ </div>
87
+ } />
102
88
 
103
- {/* ── With Icon ── */}
104
89
  <ExampleGrid>
105
- <ExampleSection
106
- label="With Icon"
107
- description="Button kèm icon ở đầu hoặc cuối."
108
- codeString={`<Button variant="outline">
90
+ <ShowcaseExample title="With Icon" description="Button kèm icon ở đầu hoặc cuối." code={`<div className="flex flex-wrap items-center gap-4">
91
+ <Button variant="outline">
109
92
  <ButtonIcon render={<MailIcon />} />
110
93
  Login with Email
111
94
  </Button>
112
95
  <Button>
113
96
  <ButtonIcon render={<DownloadIcon />} />
114
97
  Download
115
- </Button>`}
116
- >
117
- <Button size={globalSize} variant="outline">
118
- <ButtonIcon render={<MailIcon />} />
119
- Login with Email
120
- </Button>
121
- <Button size={globalSize}>
122
- <ButtonIcon render={<DownloadIcon />} />
123
- Download
124
- </Button>
125
- </ExampleSection>
98
+ </Button>
99
+ </div>`} preview={
100
+ <div className="flex flex-wrap items-center gap-4">
101
+ <Button size={globalSize} variant="outline">
102
+ <ButtonIcon render={<MailIcon />} />
103
+ Login with Email
104
+ </Button><Button size={globalSize}>
105
+ <ButtonIcon render={<DownloadIcon />} />
106
+ Download
107
+ </Button>
108
+ </div>
109
+ } />
126
110
 
127
- <ExampleSection
128
- label="Icon Only"
129
- description="Button vuông chỉ chứa icon."
130
- codeString={`<Button variant="outline" iconOnly={true}>
111
+ <ShowcaseExample title="Icon Only" description="Button vuông chỉ chứa icon." code={`<div className="flex flex-wrap items-center gap-4">
112
+ <Button variant="outline" iconOnly={true}>
131
113
  <ButtonIcon render={<PlusIcon />} />
132
114
  </Button>
133
115
  <Button variant="ghost" iconOnly={true}>
@@ -135,25 +117,22 @@ function ButtonMicroShowcase({ globalSize }: { globalSize: Size }) {
135
117
  </Button>
136
118
  <Button variant="soft" iconOnly={true}>
137
119
  <ButtonIcon render={<DownloadIcon />} />
138
- </Button>`}
139
- >
140
- <Button size={globalSize} variant="outline" iconOnly={true}>
141
- <ButtonIcon render={<PlusIcon />} />
142
- </Button>
143
- <Button size={globalSize} variant="ghost" iconOnly={true}>
144
- <ButtonIcon render={<MailIcon />} />
145
- </Button>
146
- <Button size={globalSize} variant="soft" iconOnly={true}>
147
- <ButtonIcon render={<DownloadIcon />} />
148
- </Button>
149
- </ExampleSection>
120
+ </Button>
121
+ </div>`} preview={
122
+ <div className="flex flex-wrap items-center gap-4">
123
+ <Button size={globalSize} variant="outline" iconOnly={true}>
124
+ <ButtonIcon render={<PlusIcon />} />
125
+ </Button><Button size={globalSize} variant="ghost" iconOnly={true}>
126
+ <ButtonIcon render={<MailIcon />} />
127
+ </Button><Button size={globalSize} variant="soft" iconOnly={true}>
128
+ <ButtonIcon render={<DownloadIcon />} />
129
+ </Button>
130
+ </div>
131
+ } />
150
132
  </ExampleGrid>
151
133
 
152
- {/* ── Disabled ── */}
153
- <ExampleSection
154
- label="Disabled"
155
- description="Button không thể tương tác, hiển thị mờ."
156
- codeString={`<Button disabled>Solid Disabled</Button>
134
+ <ShowcaseExample title="Disabled" description="Button không thể tương tác, hiển thị mờ." code={`<div className="flex flex-wrap items-center gap-4">
135
+ <Button disabled>Solid Disabled</Button>
157
136
  <Button variant="outline" disabled>
158
137
  Outline Disabled
159
138
  </Button>
@@ -165,32 +144,26 @@ function ButtonMicroShowcase({ globalSize }: { globalSize: Size }) {
165
144
  </Button>
166
145
  <Button variant="link" disabled>
167
146
  Link Disabled
168
- </Button>`}
169
- >
170
- <Button size={globalSize} disabled>
171
- Solid Disabled
172
- </Button>
173
- <Button size={globalSize} variant="outline" disabled>
174
- Outline Disabled
175
- </Button>
176
- <Button size={globalSize} variant="soft" disabled>
177
- Soft Disabled
178
- </Button>
179
- <Button size={globalSize} variant="ghost" disabled>
180
- Ghost Disabled
181
- </Button>
182
- <Button size={globalSize} variant="link" disabled>
183
- Link Disabled
184
- </Button>
185
- </ExampleSection>
147
+ </Button>
148
+ </div>`} preview={
149
+ <div className="flex flex-wrap items-center gap-4">
150
+ <Button size={globalSize} disabled>
151
+ Solid Disabled
152
+ </Button><Button size={globalSize} variant="outline" disabled>
153
+ Outline Disabled
154
+ </Button><Button size={globalSize} variant="soft" disabled>
155
+ Soft Disabled
156
+ </Button><Button size={globalSize} variant="ghost" disabled>
157
+ Ghost Disabled
158
+ </Button><Button size={globalSize} variant="link" disabled>
159
+ Link Disabled
160
+ </Button>
161
+ </div>
162
+ } />
186
163
 
187
- {/* ── Real-world examples ── */}
188
164
  <ExampleGrid>
189
- <ExampleSection
190
- label="Loading State"
191
- description="Button kèm Spinner khi đang xử lý async."
192
- fullWidth
193
- codeString={`<Button
165
+ <ShowcaseExample title="Loading State" description="Button kèm Spinner khi đang xử lý async." code={`<div className="flex flex-col gap-3 w-full max-w-xs mx-auto">
166
+ <Button
194
167
  color="primary"
195
168
  className="w-full"
196
169
  disabled={isSending}
@@ -201,71 +174,69 @@ function ButtonMicroShowcase({ globalSize }: { globalSize: Size }) {
201
174
  </Button>
202
175
  <Button variant="outline" className="w-full">
203
176
  Save Draft
204
- </Button>`}
205
- >
206
- <div className="flex flex-col gap-3 w-full max-w-xs mx-auto">
207
- <Button
208
- size={globalSize}
209
- color="primary"
210
- className="w-full"
211
- disabled={isSending}
212
- onClick={handleSend}
213
- >
214
- {isSending && <Spinner />}
215
- {isSending ? "Sending..." : "Send Message"}
216
- </Button>
217
- <Button size={globalSize} variant="outline" className="w-full">
218
- Save Draft
219
- </Button>
220
- </div>
221
- </ExampleSection>
177
+ </Button>
178
+ </div>`} preview={
179
+ <div className="flex flex-col gap-3 w-full max-w-xs mx-auto">
180
+ <Button
181
+ size={globalSize}
182
+ color="primary"
183
+ className="w-full"
184
+ disabled={isSending}
185
+ onClick={handleSend}
186
+ >
187
+ {isSending && <Spinner />}
188
+ {isSending ? "Sending..." : "Send Message"}
189
+ </Button>
190
+ <Button size={globalSize} variant="outline" className="w-full">
191
+ Save Draft
192
+ </Button>
193
+ </div>
194
+ } />
222
195
 
223
- <ExampleSection
224
- label="Destructive"
225
- description="Xác nhận hành động nguy hiểm (xoá dữ liệu, huỷ tài khoản...)."
226
- fullWidth
227
- codeString={`<Button
196
+ <ShowcaseExample title="Destructive" description="Xác nhận hành động nguy hiểm (xoá dữ liệu, huỷ tài khoản...)." code={`<div className="w-full max-w-xs mx-auto rounded-lg border border-destructive/20 bg-destructive/5 p-4 flex flex-col gap-2">
197
+ <p className="text-sm font-medium">Xoá Workspace</p>
198
+ <p className="text-xs text-muted-foreground">
199
+ Hành động này không thể hoàn tác. Tất cả dữ liệu sẽ bị mất.
200
+ </p>
201
+ <Button
228
202
  color="destructive"
229
203
  className="w-full mt-1"
230
204
  disabled={isDeleting}
231
205
  onClick={handleDelete}
232
206
  >
233
207
  {isDeleting && <Spinner />}
234
- {isDeleting ? "Deleting..." : "Delete Permanently"}
235
- </Button>`}
236
- >
237
- <div className="w-full max-w-xs mx-auto rounded-lg border border-destructive/20 bg-destructive/5 p-4 flex flex-col gap-2">
238
- <p className="text-sm font-medium">Delete Workspace</p>
239
- <p className="text-xs text-muted-foreground">
240
- This action cannot be undone. All data will be lost.
241
- </p>
242
- <Button
243
- size={globalSize}
244
- color="destructive"
245
- className="w-full mt-1"
246
- disabled={isDeleting}
247
- onClick={handleDelete}
248
- >
249
- {isDeleting && <Spinner />}
250
- {isDeleting ? "Deleting..." : "Delete Permanently"}
251
- </Button>
252
- </div>
253
- </ExampleSection>
208
+ {isDeleting ? "Đang xoá..." : "Xoá Vĩnh viễn"}
209
+ </Button>
210
+ </div>`} preview={
211
+ <div className="w-full max-w-xs mx-auto rounded-lg border border-destructive/20 bg-destructive/5 p-4 flex flex-col gap-2">
212
+ <p className="text-sm font-medium">Xoá Workspace</p>
213
+ <p className="text-xs text-muted-foreground">
214
+ Hành động này không thể hoàn tác. Tất cả dữ liệu sẽ bị mất.
215
+ </p>
216
+ <Button
217
+ size={globalSize}
218
+ color="destructive"
219
+ className="w-full mt-1"
220
+ disabled={isDeleting}
221
+ onClick={handleDelete}
222
+ >
223
+ {isDeleting && <Spinner />}
224
+ {isDeleting ? "Đang xoá..." : "Xoá Vĩnh viễn"}
225
+ </Button>
226
+ </div>
227
+ } />
254
228
  </ExampleGrid>
255
229
  </div>
256
230
  );
257
231
  }
258
232
 
259
- // ──────────────────────────────────────────────────────────
260
- // SECTION 3: Entry point
261
- // ──────────────────────────────────────────────────────────
262
233
  export default function ButtonShowcase() {
263
234
  const { size: globalSize } = useDevContext();
264
235
  return (
265
236
  <Showcase
266
237
  title="Button"
267
238
  description="Kích hoạt hành động hoặc sự kiện — ví dụ: submit form, mở dialog."
268
- generalConcept={
239
+ guideline={
269
240
  <ShowcaseDocs>
270
241
  <DocsP>
271
242
  Thành phần cơ bản để người dùng tương tác. Hỗ trợ nhiều variant, màu
@@ -274,11 +245,7 @@ export default function ButtonShowcase() {
274
245
  </DocsP>
275
246
  </ShowcaseDocs>
276
247
  }
277
- tabs={[
278
- {
279
- label: "Micro (Primitive)",
280
- content: <ButtonMicroShowcase globalSize={globalSize} /> },
281
- ]}
248
+ micro={{ content: <ButtonMicroShowcase globalSize={globalSize} /> }}
282
249
  />
283
250
  );
284
251
  }