@heymantle/litho 0.0.3 → 0.0.4

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 (353) hide show
  1. package/dist/cjs/components/ActionList.js +50 -16
  2. package/dist/cjs/components/AnnouncementBar.js +10 -3
  3. package/dist/cjs/components/AppProvider.js +10 -1
  4. package/dist/cjs/components/Autocomplete.js +33 -11
  5. package/dist/cjs/components/Badge.js +2 -1
  6. package/dist/cjs/components/Banner.js +35 -31
  7. package/dist/cjs/components/Box.js +5 -3
  8. package/dist/cjs/components/Button.js +34 -12
  9. package/dist/cjs/components/Card.js +5 -45
  10. package/dist/cjs/components/Checkbox.js +16 -6
  11. package/dist/cjs/components/ChoiceList.js +7 -4
  12. package/dist/cjs/components/ColorField.js +8 -3
  13. package/dist/cjs/components/DatePicker.js +13 -8
  14. package/dist/cjs/components/DropZone.js +33 -18
  15. package/dist/cjs/components/EmptyState.js +15 -7
  16. package/dist/cjs/components/Filters.js +32 -20
  17. package/dist/cjs/components/FooterHelp.js +7 -2
  18. package/dist/cjs/components/Form.js +18 -3
  19. package/dist/cjs/components/Frame.js +40 -15
  20. package/dist/cjs/components/FrameSaveBar.js +21 -12
  21. package/dist/cjs/components/Layout.js +3 -3
  22. package/dist/cjs/components/LayoutSection.js +2 -2
  23. package/dist/cjs/components/Link.js +6 -2
  24. package/dist/cjs/components/List.js +1 -0
  25. package/dist/cjs/components/Listbox.js +9 -4
  26. package/dist/cjs/components/Modal.js +26 -17
  27. package/dist/cjs/components/Navigation.js +30 -20
  28. package/dist/cjs/components/Page.js +8 -3
  29. package/dist/cjs/components/Pagination.js +11 -4
  30. package/dist/cjs/components/Pane.js +118 -35
  31. package/dist/cjs/components/Popover.js +59 -6
  32. package/dist/cjs/components/RangeSlider.js +11 -4
  33. package/dist/cjs/components/ResourceList.js +9 -3
  34. package/dist/cjs/components/Select.js +2 -0
  35. package/dist/cjs/components/Table.js +32 -19
  36. package/dist/cjs/components/Text.js +8 -5
  37. package/dist/cjs/components/TextField.js +23 -13
  38. package/dist/cjs/components/Thumbnail.js +7 -2
  39. package/dist/cjs/components/TimePicker.js +7 -2
  40. package/dist/cjs/components/Tip.js +10 -4
  41. package/dist/cjs/components/Tooltip.js +16 -8
  42. package/dist/cjs/components/TopBar.js +17 -9
  43. package/dist/cjs/dev/verify-publish.js +37 -4
  44. package/dist/cjs/postcss.config.js +21 -0
  45. package/dist/cjs/stories/ActionList.stories.js +365 -0
  46. package/dist/cjs/stories/AnnouncementBar.stories.js +244 -0
  47. package/dist/cjs/stories/Autocomplete.stories.js +871 -0
  48. package/dist/cjs/stories/Badge.stories.js +183 -0
  49. package/dist/cjs/stories/Banner.stories.js +201 -0
  50. package/dist/cjs/stories/Box.stories.js +599 -0
  51. package/dist/cjs/stories/Button.stories.js +325 -0
  52. package/dist/cjs/stories/ButtonGroup.stories.js +404 -0
  53. package/dist/cjs/stories/Card.stories.js +278 -0
  54. package/dist/cjs/stories/Checkbox.stories.js +266 -0
  55. package/dist/cjs/stories/ChoiceList.stories.js +884 -0
  56. package/dist/cjs/stories/Collapsible.stories.js +905 -0
  57. package/dist/cjs/stories/ColorField.stories.js +883 -0
  58. package/dist/cjs/stories/ContextualSaveBar.stories.js +970 -0
  59. package/dist/cjs/stories/DatePicker.stories.js +584 -0
  60. package/dist/cjs/stories/Divider.stories.js +759 -0
  61. package/dist/cjs/stories/DropZone.stories.js +1205 -0
  62. package/dist/cjs/stories/EmptyState.stories.js +296 -0
  63. package/dist/cjs/stories/Filters.stories.js +1353 -0
  64. package/dist/cjs/stories/FooterHelp.stories.js +869 -0
  65. package/dist/cjs/stories/Form.stories.js +940 -0
  66. package/dist/cjs/stories/Grid.stories.js +1199 -0
  67. package/dist/cjs/stories/HorizontalStack.stories.js +1064 -0
  68. package/dist/cjs/stories/Icon.stories.js +596 -0
  69. package/dist/cjs/stories/Image.stories.js +883 -0
  70. package/dist/cjs/stories/InlineError.stories.js +710 -0
  71. package/dist/cjs/stories/Label.stories.js +665 -0
  72. package/dist/cjs/stories/Layout.stories.js +685 -0
  73. package/dist/cjs/stories/LayoutSection.stories.js +1267 -0
  74. package/dist/cjs/stories/Link.stories.js +423 -0
  75. package/dist/cjs/stories/List.stories.js +1031 -0
  76. package/dist/cjs/stories/Listbox.stories.js +820 -0
  77. package/dist/cjs/stories/Loading.stories.js +900 -0
  78. package/dist/cjs/stories/Modal.stories.js +363 -0
  79. package/dist/cjs/stories/Navigation.stories.js +605 -0
  80. package/dist/cjs/stories/Page.stories.js +318 -0
  81. package/dist/cjs/stories/Pagination.stories.js +438 -0
  82. package/dist/cjs/stories/Pane.stories.js +1535 -0
  83. package/dist/cjs/stories/Popover.stories.js +637 -0
  84. package/dist/cjs/stories/PopoverManager.stories.js +1225 -0
  85. package/dist/cjs/stories/ProgressBar.stories.js +506 -0
  86. package/dist/cjs/stories/RadioButton.stories.js +642 -0
  87. package/dist/cjs/stories/RadioButtonCard.stories.js +816 -0
  88. package/dist/cjs/stories/RangeSlider.stories.js +892 -0
  89. package/dist/cjs/stories/ResourceList.stories.js +1067 -0
  90. package/dist/cjs/stories/Select.stories.js +413 -0
  91. package/dist/cjs/stories/SkeletonText.stories.js +776 -0
  92. package/dist/cjs/stories/Spinner.stories.js +396 -0
  93. package/dist/cjs/stories/Table.stories.js +628 -0
  94. package/dist/cjs/stories/Tabs.stories.js +723 -0
  95. package/dist/cjs/stories/Tag.stories.js +620 -0
  96. package/dist/cjs/stories/Text.stories.js +262 -0
  97. package/dist/cjs/stories/TextField.stories.js +377 -0
  98. package/dist/cjs/stories/Thumbnail.stories.js +859 -0
  99. package/dist/cjs/stories/TimePicker.stories.js +966 -0
  100. package/dist/cjs/stories/Tip.stories.js +753 -0
  101. package/dist/cjs/stories/Tooltip.stories.js +357 -0
  102. package/dist/cjs/stories/TopBar.stories.js +155 -0
  103. package/dist/cjs/stories/VerticalStack.stories.js +1287 -0
  104. package/dist/cjs/tailwind.config.js +17 -0
  105. package/dist/cjs/utilities/transformers.js +66 -0
  106. package/dist/cjs/vite.config.js +35 -0
  107. package/dist/esm/components/ActionList.js +41 -12
  108. package/dist/esm/components/AnnouncementBar.js +3 -1
  109. package/dist/esm/components/AppProvider.js +10 -1
  110. package/dist/esm/components/Autocomplete.js +21 -4
  111. package/dist/esm/components/Badge.js +2 -2
  112. package/dist/esm/components/Banner.js +20 -21
  113. package/dist/esm/components/Box.js +5 -4
  114. package/dist/esm/components/Button.js +24 -7
  115. package/dist/esm/components/Card.js +5 -4
  116. package/dist/esm/components/Checkbox.js +6 -1
  117. package/dist/esm/components/ChoiceList.js +7 -4
  118. package/dist/esm/components/ColorField.js +1 -1
  119. package/dist/esm/components/DatePicker.js +6 -1
  120. package/dist/esm/components/DropZone.js +14 -4
  121. package/dist/esm/components/EmptyState.js +4 -1
  122. package/dist/esm/components/Filters.js +10 -3
  123. package/dist/esm/components/FooterHelp.js +1 -1
  124. package/dist/esm/components/Form.js +18 -3
  125. package/dist/esm/components/Frame.js +18 -6
  126. package/dist/esm/components/FrameSaveBar.js +10 -6
  127. package/dist/esm/components/InlineError.js +1 -1
  128. package/dist/esm/components/Layout.js +4 -4
  129. package/dist/esm/components/LayoutSection.js +2 -2
  130. package/dist/esm/components/Link.js +6 -2
  131. package/dist/esm/components/List.js +1 -0
  132. package/dist/esm/components/Listbox.js +4 -4
  133. package/dist/esm/components/Modal.js +8 -4
  134. package/dist/esm/components/Navigation.js +16 -11
  135. package/dist/esm/components/Page.js +9 -4
  136. package/dist/esm/components/Pagination.js +3 -1
  137. package/dist/esm/components/Pane.js +114 -36
  138. package/dist/esm/components/Popover.js +18 -6
  139. package/dist/esm/components/RangeSlider.js +3 -1
  140. package/dist/esm/components/ResourceList.js +2 -1
  141. package/dist/esm/components/Select.js +2 -0
  142. package/dist/esm/components/Table.js +16 -3
  143. package/dist/esm/components/Text.js +8 -6
  144. package/dist/esm/components/TextField.js +6 -1
  145. package/dist/esm/components/Thumbnail.js +1 -1
  146. package/dist/esm/components/TimePicker.js +1 -1
  147. package/dist/esm/components/Tip.js +3 -2
  148. package/dist/esm/components/Tooltip.js +4 -1
  149. package/dist/esm/components/TopBar.js +7 -4
  150. package/dist/esm/dev/verify-publish.js +37 -4
  151. package/dist/esm/postcss.config.js +6 -0
  152. package/dist/esm/stories/ActionList.stories.js +327 -0
  153. package/dist/esm/stories/AnnouncementBar.stories.js +212 -0
  154. package/dist/esm/stories/Autocomplete.stories.js +833 -0
  155. package/dist/esm/stories/Badge.stories.js +138 -0
  156. package/dist/esm/stories/Banner.stories.js +159 -0
  157. package/dist/esm/stories/Box.stories.js +558 -0
  158. package/dist/esm/stories/Button.stories.js +277 -0
  159. package/dist/esm/stories/ButtonGroup.stories.js +357 -0
  160. package/dist/esm/stories/Card.stories.js +240 -0
  161. package/dist/esm/stories/Checkbox.stories.js +219 -0
  162. package/dist/esm/stories/ChoiceList.stories.js +834 -0
  163. package/dist/esm/stories/Collapsible.stories.js +867 -0
  164. package/dist/esm/stories/ColorField.stories.js +842 -0
  165. package/dist/esm/stories/ContextualSaveBar.stories.js +938 -0
  166. package/dist/esm/stories/DatePicker.stories.js +537 -0
  167. package/dist/esm/stories/Divider.stories.js +715 -0
  168. package/dist/esm/stories/DropZone.stories.js +1161 -0
  169. package/dist/esm/stories/EmptyState.stories.js +246 -0
  170. package/dist/esm/stories/Filters.stories.js +1315 -0
  171. package/dist/esm/stories/FooterHelp.stories.js +813 -0
  172. package/dist/esm/stories/Form.stories.js +905 -0
  173. package/dist/esm/stories/Grid.stories.js +1152 -0
  174. package/dist/esm/stories/HorizontalStack.stories.js +1011 -0
  175. package/dist/esm/stories/Icon.stories.js +555 -0
  176. package/dist/esm/stories/Image.stories.js +836 -0
  177. package/dist/esm/stories/InlineError.stories.js +666 -0
  178. package/dist/esm/stories/Label.stories.js +612 -0
  179. package/dist/esm/stories/Layout.stories.js +647 -0
  180. package/dist/esm/stories/LayoutSection.stories.js +1226 -0
  181. package/dist/esm/stories/Link.stories.js +379 -0
  182. package/dist/esm/stories/List.stories.js +975 -0
  183. package/dist/esm/stories/Listbox.stories.js +776 -0
  184. package/dist/esm/stories/Loading.stories.js +850 -0
  185. package/dist/esm/stories/Modal.stories.js +322 -0
  186. package/dist/esm/stories/Navigation.stories.js +567 -0
  187. package/dist/esm/stories/Page.stories.js +276 -0
  188. package/dist/esm/stories/Pagination.stories.js +394 -0
  189. package/dist/esm/stories/Pane.stories.js +1497 -0
  190. package/dist/esm/stories/Popover.stories.js +605 -0
  191. package/dist/esm/stories/PopoverManager.stories.js +1193 -0
  192. package/dist/esm/stories/ProgressBar.stories.js +465 -0
  193. package/dist/esm/stories/RadioButton.stories.js +598 -0
  194. package/dist/esm/stories/RadioButtonCard.stories.js +772 -0
  195. package/dist/esm/stories/RangeSlider.stories.js +845 -0
  196. package/dist/esm/stories/ResourceList.stories.js +1029 -0
  197. package/dist/esm/stories/Select.stories.js +363 -0
  198. package/dist/esm/stories/SkeletonText.stories.js +717 -0
  199. package/dist/esm/stories/Spinner.stories.js +355 -0
  200. package/dist/esm/stories/Table.stories.js +584 -0
  201. package/dist/esm/stories/Tabs.stories.js +685 -0
  202. package/dist/esm/stories/Tag.stories.js +573 -0
  203. package/dist/esm/stories/Text.stories.js +217 -0
  204. package/dist/esm/stories/TextField.stories.js +332 -0
  205. package/dist/esm/stories/Thumbnail.stories.js +806 -0
  206. package/dist/esm/stories/TimePicker.stories.js +910 -0
  207. package/dist/esm/stories/Tip.stories.js +706 -0
  208. package/dist/esm/stories/Tooltip.stories.js +313 -0
  209. package/dist/esm/stories/TopBar.stories.js +114 -0
  210. package/dist/esm/stories/VerticalStack.stories.js +1240 -0
  211. package/dist/esm/tailwind.config.js +7 -0
  212. package/dist/esm/utilities/transformers.js +47 -0
  213. package/dist/esm/vite.config.js +20 -0
  214. package/dist/types/components/ActionList.d.ts +122 -0
  215. package/dist/types/components/ActionList.d.ts.map +1 -0
  216. package/dist/types/components/AnnouncementBar.d.ts +21 -0
  217. package/dist/types/components/AnnouncementBar.d.ts.map +1 -0
  218. package/dist/types/components/AppProvider.d.ts +61 -0
  219. package/dist/types/components/AppProvider.d.ts.map +1 -0
  220. package/dist/types/components/Autocomplete.d.ts +130 -0
  221. package/dist/types/components/Autocomplete.d.ts.map +1 -0
  222. package/dist/types/components/Badge.d.ts +21 -0
  223. package/dist/types/components/Badge.d.ts.map +1 -0
  224. package/dist/types/components/Banner.d.ts +78 -0
  225. package/dist/types/components/Banner.d.ts.map +1 -0
  226. package/dist/types/components/Box.d.ts +70 -0
  227. package/dist/types/components/Box.d.ts.map +1 -0
  228. package/dist/types/components/Button.d.ts +123 -0
  229. package/dist/types/components/Button.d.ts.map +1 -0
  230. package/dist/types/components/ButtonGroup.d.ts +26 -0
  231. package/dist/types/components/ButtonGroup.d.ts.map +1 -0
  232. package/dist/types/components/Card.d.ts +139 -0
  233. package/dist/types/components/Card.d.ts.map +1 -0
  234. package/dist/types/components/Checkbox.d.ts +56 -0
  235. package/dist/types/components/Checkbox.d.ts.map +1 -0
  236. package/dist/types/components/ChoiceList.d.ts +69 -0
  237. package/dist/types/components/ChoiceList.d.ts.map +1 -0
  238. package/dist/types/components/Collapsible.d.ts +17 -0
  239. package/dist/types/components/Collapsible.d.ts.map +1 -0
  240. package/dist/types/components/ColorField.d.ts +36 -0
  241. package/dist/types/components/ColorField.d.ts.map +1 -0
  242. package/dist/types/components/ContextualSaveBar.d.ts +22 -0
  243. package/dist/types/components/ContextualSaveBar.d.ts.map +1 -0
  244. package/dist/types/components/DatePicker.d.ts +66 -0
  245. package/dist/types/components/DatePicker.d.ts.map +1 -0
  246. package/dist/types/components/Divider.d.ts +21 -0
  247. package/dist/types/components/Divider.d.ts.map +1 -0
  248. package/dist/types/components/DropZone.d.ts +108 -0
  249. package/dist/types/components/DropZone.d.ts.map +1 -0
  250. package/dist/types/components/EmptyState.d.ts +52 -0
  251. package/dist/types/components/EmptyState.d.ts.map +1 -0
  252. package/dist/types/components/Filters.d.ts +166 -0
  253. package/dist/types/components/Filters.d.ts.map +1 -0
  254. package/dist/types/components/FooterHelp.d.ts +21 -0
  255. package/dist/types/components/FooterHelp.d.ts.map +1 -0
  256. package/dist/types/components/Form.d.ts +39 -0
  257. package/dist/types/components/Form.d.ts.map +1 -0
  258. package/dist/types/components/Frame.d.ts +51 -0
  259. package/dist/types/components/Frame.d.ts.map +1 -0
  260. package/dist/types/components/FrameSaveBar.d.ts +8 -0
  261. package/dist/types/components/FrameSaveBar.d.ts.map +1 -0
  262. package/dist/types/components/Grid.d.ts +39 -0
  263. package/dist/types/components/Grid.d.ts.map +1 -0
  264. package/dist/types/components/HorizontalStack.d.ts +36 -0
  265. package/dist/types/components/HorizontalStack.d.ts.map +1 -0
  266. package/dist/types/components/Icon.d.ts +43 -0
  267. package/dist/types/components/Icon.d.ts.map +1 -0
  268. package/dist/types/components/Image.d.ts +45 -0
  269. package/dist/types/components/Image.d.ts.map +1 -0
  270. package/dist/types/components/InlineError.d.ts +22 -0
  271. package/dist/types/components/InlineError.d.ts.map +1 -0
  272. package/dist/types/components/Label.d.ts +28 -0
  273. package/dist/types/components/Label.d.ts.map +1 -0
  274. package/dist/types/components/Layout.d.ts +44 -0
  275. package/dist/types/components/Layout.d.ts.map +1 -0
  276. package/dist/types/components/LayoutSection.d.ts +24 -0
  277. package/dist/types/components/LayoutSection.d.ts.map +1 -0
  278. package/dist/types/components/Link.d.ts +38 -0
  279. package/dist/types/components/Link.d.ts.map +1 -0
  280. package/dist/types/components/List.d.ts +33 -0
  281. package/dist/types/components/List.d.ts.map +1 -0
  282. package/dist/types/components/Listbox.d.ts +34 -0
  283. package/dist/types/components/Listbox.d.ts.map +1 -0
  284. package/dist/types/components/Loading.d.ts +13 -0
  285. package/dist/types/components/Loading.d.ts.map +1 -0
  286. package/dist/types/components/Modal.d.ts +75 -0
  287. package/dist/types/components/Modal.d.ts.map +1 -0
  288. package/dist/types/components/Navigation.d.ts +105 -0
  289. package/dist/types/components/Navigation.d.ts.map +1 -0
  290. package/dist/types/components/Page.d.ts +59 -0
  291. package/dist/types/components/Page.d.ts.map +1 -0
  292. package/dist/types/components/Pagination.d.ts +39 -0
  293. package/dist/types/components/Pagination.d.ts.map +1 -0
  294. package/dist/types/components/Pane.d.ts +11 -0
  295. package/dist/types/components/Pane.d.ts.map +1 -0
  296. package/dist/types/components/Popover.d.ts +56 -0
  297. package/dist/types/components/Popover.d.ts.map +1 -0
  298. package/dist/types/components/PopoverManager.d.ts +3 -0
  299. package/dist/types/components/PopoverManager.d.ts.map +1 -0
  300. package/dist/types/components/ProgressBar.d.ts +24 -0
  301. package/dist/types/components/ProgressBar.d.ts.map +1 -0
  302. package/dist/types/components/RadioButton.d.ts +39 -0
  303. package/dist/types/components/RadioButton.d.ts.map +1 -0
  304. package/dist/types/components/RadioButtonCard.d.ts +41 -0
  305. package/dist/types/components/RadioButtonCard.d.ts.map +1 -0
  306. package/dist/types/components/RangeSlider.d.ts +44 -0
  307. package/dist/types/components/RangeSlider.d.ts.map +1 -0
  308. package/dist/types/components/ResourceList.d.ts +54 -0
  309. package/dist/types/components/ResourceList.d.ts.map +1 -0
  310. package/dist/types/components/Select.d.ts +48 -0
  311. package/dist/types/components/Select.d.ts.map +1 -0
  312. package/dist/types/components/SkeletonText.d.ts +28 -0
  313. package/dist/types/components/SkeletonText.d.ts.map +1 -0
  314. package/dist/types/components/Spinner.d.ts +18 -0
  315. package/dist/types/components/Spinner.d.ts.map +1 -0
  316. package/dist/types/components/Table.d.ts +197 -0
  317. package/dist/types/components/Table.d.ts.map +1 -0
  318. package/dist/types/components/Tabs.d.ts +41 -0
  319. package/dist/types/components/Tabs.d.ts.map +1 -0
  320. package/dist/types/components/Tag.d.ts +26 -0
  321. package/dist/types/components/Tag.d.ts.map +1 -0
  322. package/dist/types/components/Text.d.ts +32 -0
  323. package/dist/types/components/Text.d.ts.map +1 -0
  324. package/dist/types/components/TextField.d.ts +109 -0
  325. package/dist/types/components/TextField.d.ts.map +1 -0
  326. package/dist/types/components/Thumbnail.d.ts +18 -0
  327. package/dist/types/components/Thumbnail.d.ts.map +1 -0
  328. package/dist/types/components/TimePicker.d.ts +3 -0
  329. package/dist/types/components/TimePicker.d.ts.map +1 -0
  330. package/dist/types/components/Tip.d.ts +23 -0
  331. package/dist/types/components/Tip.d.ts.map +1 -0
  332. package/dist/types/components/Tooltip.d.ts +84 -0
  333. package/dist/types/components/Tooltip.d.ts.map +1 -0
  334. package/dist/types/components/TopBar.d.ts +43 -0
  335. package/dist/types/components/TopBar.d.ts.map +1 -0
  336. package/dist/types/components/VerticalStack.d.ts +27 -0
  337. package/dist/types/components/VerticalStack.d.ts.map +1 -0
  338. package/dist/types/index.d.ts +62 -0
  339. package/dist/types/index.d.ts.map +1 -0
  340. package/dist/types/styles/Table.d.ts +1570 -0
  341. package/dist/types/styles/Table.d.ts.map +1 -0
  342. package/dist/types/utilities/dates.d.ts +46 -0
  343. package/dist/types/utilities/dates.d.ts.map +1 -0
  344. package/dist/types/utilities/transformers.d.ts +4 -0
  345. package/dist/types/utilities/transformers.d.ts.map +1 -0
  346. package/dist/types/utilities/useIndexResourceState.d.ts +21 -0
  347. package/dist/types/utilities/useIndexResourceState.d.ts.map +1 -0
  348. package/dist/types/utilities/useMounted.d.ts +2 -0
  349. package/dist/types/utilities/useMounted.d.ts.map +1 -0
  350. package/dist/types/utilities/useTableScrollState.d.ts +29 -0
  351. package/dist/types/utilities/useTableScrollState.d.ts.map +1 -0
  352. package/index.css +6 -0
  353. package/package.json +37 -6
@@ -0,0 +1,1267 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: Object.getOwnPropertyDescriptor(all, name).get
9
+ });
10
+ }
11
+ _export(exports, {
12
+ get DashboardLayout () {
13
+ return DashboardLayout;
14
+ },
15
+ get Default () {
16
+ return Default;
17
+ },
18
+ get ResponsiveBehavior () {
19
+ return ResponsiveBehavior;
20
+ },
21
+ get SettingsLayout () {
22
+ return SettingsLayout;
23
+ },
24
+ get SlimSidebar () {
25
+ return SlimSidebar;
26
+ },
27
+ get StickySection () {
28
+ return StickySection;
29
+ },
30
+ get WithSidebar () {
31
+ return WithSidebar;
32
+ },
33
+ get default () {
34
+ return _default;
35
+ }
36
+ });
37
+ var _jsxruntime = require("react/jsx-runtime");
38
+ var _transformers = require("../utilities/transformers.js");
39
+ var _LayoutSection = /*#__PURE__*/ _interop_require_default(require("../components/LayoutSection.js"));
40
+ var _Layout = /*#__PURE__*/ _interop_require_default(require("../components/Layout.js"));
41
+ var _Text = /*#__PURE__*/ _interop_require_default(require("../components/Text.js"));
42
+ var _Card = /*#__PURE__*/ _interop_require_default(require("../components/Card.js"));
43
+ var _Button = /*#__PURE__*/ _interop_require_default(require("../components/Button.js"));
44
+ var _Page = /*#__PURE__*/ _interop_require_default(require("../components/Page.js"));
45
+ var _VerticalStack = /*#__PURE__*/ _interop_require_default(require("../components/VerticalStack.js"));
46
+ var _HorizontalStack = /*#__PURE__*/ _interop_require_default(require("../components/HorizontalStack.js"));
47
+ var _Box = /*#__PURE__*/ _interop_require_default(require("../components/Box.js"));
48
+ var _Grid = /*#__PURE__*/ _interop_require_default(require("../components/Grid.js"));
49
+ function _define_property(obj, key, value) {
50
+ if (key in obj) {
51
+ Object.defineProperty(obj, key, {
52
+ value: value,
53
+ enumerable: true,
54
+ configurable: true,
55
+ writable: true
56
+ });
57
+ } else {
58
+ obj[key] = value;
59
+ }
60
+ return obj;
61
+ }
62
+ function _interop_require_default(obj) {
63
+ return obj && obj.__esModule ? obj : {
64
+ default: obj
65
+ };
66
+ }
67
+ function _object_spread(target) {
68
+ for(var i = 1; i < arguments.length; i++){
69
+ var source = arguments[i] != null ? arguments[i] : {};
70
+ var ownKeys = Object.keys(source);
71
+ if (typeof Object.getOwnPropertySymbols === "function") {
72
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
73
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
74
+ }));
75
+ }
76
+ ownKeys.forEach(function(key) {
77
+ _define_property(target, key, source[key]);
78
+ });
79
+ }
80
+ return target;
81
+ }
82
+ function ownKeys(object, enumerableOnly) {
83
+ var keys = Object.keys(object);
84
+ if (Object.getOwnPropertySymbols) {
85
+ var symbols = Object.getOwnPropertySymbols(object);
86
+ if (enumerableOnly) {
87
+ symbols = symbols.filter(function(sym) {
88
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
89
+ });
90
+ }
91
+ keys.push.apply(keys, symbols);
92
+ }
93
+ return keys;
94
+ }
95
+ function _object_spread_props(target, source) {
96
+ source = source != null ? source : {};
97
+ if (Object.getOwnPropertyDescriptors) {
98
+ Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
99
+ } else {
100
+ ownKeys(Object(source)).forEach(function(key) {
101
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
102
+ });
103
+ }
104
+ return target;
105
+ }
106
+ var _default = {
107
+ title: 'Litho/LayoutSection',
108
+ component: _LayoutSection.default,
109
+ parameters: {
110
+ layout: 'fullscreen',
111
+ docs: {
112
+ description: {
113
+ component: "A Layout Section component for flexible content grouping within layouts. It supports sidebar configurations, sticky positioning, and responsive behavior. Must be used within a Layout component."
114
+ },
115
+ source: {
116
+ transform: _transformers.transformStorySource
117
+ }
118
+ }
119
+ },
120
+ tags: [
121
+ 'autodocs'
122
+ ],
123
+ argTypes: {
124
+ sidebar: {
125
+ control: 'select',
126
+ options: [
127
+ false,
128
+ true,
129
+ 'slim'
130
+ ],
131
+ description: 'Configures the section layout - true for sidebar, "slim" for slim sidebar, false for full width'
132
+ },
133
+ sticky: {
134
+ control: 'boolean',
135
+ description: 'Whether the section becomes sticky'
136
+ },
137
+ children: {
138
+ control: false,
139
+ description: 'Content to render inside the section'
140
+ }
141
+ }
142
+ };
143
+ var Default = {
144
+ render: function(args) {
145
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Page.default, {
146
+ title: "Layout Section Demo",
147
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Layout.default, {
148
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, _object_spread_props(_object_spread({}, args), {
149
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
150
+ title: "Main Content",
151
+ padded: true,
152
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
153
+ children: "This is the main content area. It will take up the full width unless there's a sidebar section present."
154
+ })
155
+ })
156
+ }))
157
+ })
158
+ });
159
+ },
160
+ args: {
161
+ sidebar: false,
162
+ sticky: false
163
+ }
164
+ };
165
+ var WithSidebar = {
166
+ render: function() {
167
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Page.default, {
168
+ title: "Sidebar Layout",
169
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Layout.default, {
170
+ children: [
171
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
172
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
173
+ title: "Main Content",
174
+ padded: true,
175
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
176
+ gap: "4",
177
+ children: [
178
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
179
+ children: "This is the main content area. It automatically adjusts its width when a sidebar is present."
180
+ }),
181
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
182
+ children: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
183
+ }),
184
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
185
+ children: "Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
186
+ }),
187
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
188
+ gap: "4",
189
+ children: [
190
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
191
+ primary: true,
192
+ children: "Save Changes"
193
+ }),
194
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
195
+ children: "Cancel"
196
+ })
197
+ ]
198
+ })
199
+ ]
200
+ })
201
+ })
202
+ }),
203
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
204
+ sidebar: true,
205
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
206
+ title: "Sidebar",
207
+ padded: true,
208
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
209
+ gap: "4",
210
+ children: [
211
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
212
+ variant: "headingSm",
213
+ children: "Navigation"
214
+ }),
215
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
216
+ gap: "2",
217
+ children: [
218
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
219
+ size: "slim",
220
+ plain: true,
221
+ textAlign: "left",
222
+ children: "Overview"
223
+ }),
224
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
225
+ size: "slim",
226
+ plain: true,
227
+ textAlign: "left",
228
+ children: "Settings"
229
+ }),
230
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
231
+ size: "slim",
232
+ plain: true,
233
+ textAlign: "left",
234
+ children: "Team"
235
+ }),
236
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
237
+ size: "slim",
238
+ plain: true,
239
+ textAlign: "left",
240
+ children: "Billing"
241
+ })
242
+ ]
243
+ }),
244
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
245
+ paddingBlockStart: "4",
246
+ padding: "4",
247
+ background: "bg-surface-neutral-subdued",
248
+ borderRadius: "1",
249
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
250
+ gap: "2",
251
+ children: [
252
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
253
+ variant: "headingSm",
254
+ children: "Quick Stats"
255
+ }),
256
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
257
+ gap: "1",
258
+ children: [
259
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
260
+ variant: "bodySm",
261
+ children: "Active Users: 1,234"
262
+ }),
263
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
264
+ variant: "bodySm",
265
+ children: "Revenue: $45,678"
266
+ }),
267
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
268
+ variant: "bodySm",
269
+ children: "Growth: +12.5%"
270
+ })
271
+ ]
272
+ })
273
+ ]
274
+ })
275
+ })
276
+ ]
277
+ })
278
+ })
279
+ })
280
+ ]
281
+ })
282
+ });
283
+ },
284
+ parameters: {
285
+ docs: {
286
+ description: {
287
+ story: 'Layout with main content and a sidebar section.'
288
+ }
289
+ }
290
+ }
291
+ };
292
+ var SlimSidebar = {
293
+ render: function() {
294
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Page.default, {
295
+ title: "Slim Sidebar Layout",
296
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Layout.default, {
297
+ children: [
298
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
299
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
300
+ title: "Article Content",
301
+ padded: true,
302
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
303
+ gap: "6",
304
+ children: [
305
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
306
+ variant: "headingLg",
307
+ children: "Understanding Layout Sections"
308
+ }),
309
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
310
+ children: "Layout sections provide a flexible way to organize content within your application. The slim sidebar variant is perfect for navigation or supplementary information that doesn't need as much space as a full sidebar."
311
+ }),
312
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
313
+ children: "This main content area automatically adjusts to accommodate the slim sidebar, ensuring optimal use of screen space while maintaining readability and usability."
314
+ }),
315
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
316
+ children: "The responsive behavior ensures that on smaller screens, the layout adapts appropriately to provide the best user experience across all device sizes."
317
+ }),
318
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
319
+ paddingBlockStart: "8",
320
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Grid.default, {
321
+ columns: {
322
+ xs: 1,
323
+ md: 3
324
+ },
325
+ gap: "4",
326
+ children: [
327
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
328
+ padding: "4",
329
+ borderWidth: "1",
330
+ borderColor: "border",
331
+ borderRadius: "1",
332
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
333
+ gap: "2",
334
+ children: [
335
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
336
+ variant: "headingSm",
337
+ children: "Feature 1"
338
+ }),
339
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
340
+ variant: "bodySm",
341
+ children: "Description of feature"
342
+ })
343
+ ]
344
+ })
345
+ }),
346
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
347
+ padding: "4",
348
+ borderWidth: "1",
349
+ borderColor: "border",
350
+ borderRadius: "1",
351
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
352
+ gap: "2",
353
+ children: [
354
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
355
+ variant: "headingSm",
356
+ children: "Feature 2"
357
+ }),
358
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
359
+ variant: "bodySm",
360
+ children: "Description of feature"
361
+ })
362
+ ]
363
+ })
364
+ }),
365
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
366
+ padding: "4",
367
+ borderWidth: "1",
368
+ borderColor: "border",
369
+ borderRadius: "1",
370
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
371
+ gap: "2",
372
+ children: [
373
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
374
+ variant: "headingSm",
375
+ children: "Feature 3"
376
+ }),
377
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
378
+ variant: "bodySm",
379
+ children: "Description of feature"
380
+ })
381
+ ]
382
+ })
383
+ })
384
+ ]
385
+ })
386
+ })
387
+ ]
388
+ })
389
+ })
390
+ }),
391
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
392
+ sidebar: "slim",
393
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
394
+ title: "Tools",
395
+ padded: true,
396
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
397
+ gap: "4",
398
+ children: [
399
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("div", {
400
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
401
+ gap: "2",
402
+ children: [
403
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
404
+ variant: "headingSm",
405
+ children: "Actions"
406
+ }),
407
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
408
+ gap: "2",
409
+ children: [
410
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
411
+ size: "slim",
412
+ children: "Edit"
413
+ }),
414
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
415
+ size: "slim",
416
+ children: "Share"
417
+ }),
418
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
419
+ size: "slim",
420
+ children: "Export"
421
+ })
422
+ ]
423
+ })
424
+ ]
425
+ })
426
+ }),
427
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
428
+ borderBlockStartWidth: "1",
429
+ borderColor: "border",
430
+ paddingBlockStart: "4",
431
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
432
+ gap: "2",
433
+ children: [
434
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
435
+ variant: "headingSm",
436
+ children: "Info"
437
+ }),
438
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
439
+ gap: "1",
440
+ children: [
441
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
442
+ variant: "caption",
443
+ children: "Created: 2 days ago"
444
+ }),
445
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
446
+ variant: "caption",
447
+ children: "Modified: 1 hour ago"
448
+ }),
449
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
450
+ variant: "caption",
451
+ children: "Views: 156"
452
+ })
453
+ ]
454
+ })
455
+ ]
456
+ })
457
+ })
458
+ ]
459
+ })
460
+ })
461
+ })
462
+ ]
463
+ })
464
+ });
465
+ },
466
+ parameters: {
467
+ docs: {
468
+ description: {
469
+ story: 'Layout with main content and a slim sidebar for tools and metadata.'
470
+ }
471
+ }
472
+ }
473
+ };
474
+ var StickySection = {
475
+ render: function() {
476
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Page.default, {
477
+ title: "Sticky Sidebar Demo",
478
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Layout.default, {
479
+ children: [
480
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
481
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
482
+ title: "Long Article",
483
+ padded: true,
484
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
485
+ gap: "6",
486
+ children: [
487
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
488
+ variant: "headingLg",
489
+ children: "Scroll to See Sticky Behavior"
490
+ }),
491
+ Array.from({
492
+ length: 20
493
+ }, function(_, i) {
494
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)("div", {
495
+ children: [
496
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
497
+ paddingBlockEnd: "2",
498
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Text.default, {
499
+ variant: "headingSm",
500
+ children: [
501
+ "Section ",
502
+ i + 1
503
+ ]
504
+ })
505
+ }),
506
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Text.default, {
507
+ children: [
508
+ "This is paragraph ",
509
+ i + 1,
510
+ ". Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur."
511
+ ]
512
+ })
513
+ ]
514
+ }, i);
515
+ })
516
+ ]
517
+ })
518
+ })
519
+ }),
520
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
521
+ sidebar: true,
522
+ sticky: true,
523
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
524
+ title: "Sticky Navigation",
525
+ padded: true,
526
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
527
+ gap: "4",
528
+ children: [
529
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
530
+ variant: "headingSm",
531
+ children: "Table of Contents"
532
+ }),
533
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_VerticalStack.default, {
534
+ gap: "2",
535
+ children: Array.from({
536
+ length: 10
537
+ }, function(_, i) {
538
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Button.default, {
539
+ size: "slim",
540
+ plain: true,
541
+ textAlign: "left",
542
+ onClick: function() {
543
+ var element = document.querySelector("h3:nth-of-type(".concat(i + 1, ")"));
544
+ element === null || element === void 0 ? void 0 : element.scrollIntoView({
545
+ behavior: 'smooth'
546
+ });
547
+ },
548
+ children: [
549
+ "Section ",
550
+ i + 1
551
+ ]
552
+ }, i);
553
+ })
554
+ }),
555
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
556
+ paddingBlockStart: "4",
557
+ borderBlockStartWidth: "1",
558
+ borderColor: "border",
559
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
560
+ gap: "2",
561
+ children: [
562
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
563
+ variant: "headingSm",
564
+ children: "Reading Progress"
565
+ }),
566
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
567
+ style: {
568
+ width: '100%',
569
+ height: '8px',
570
+ backgroundColor: '#e1e1e1',
571
+ borderRadius: '4px',
572
+ overflow: 'hidden'
573
+ },
574
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
575
+ style: {
576
+ width: '35%',
577
+ height: '100%',
578
+ backgroundColor: '#007bff',
579
+ transition: 'width 0.3s ease'
580
+ }
581
+ })
582
+ })
583
+ ]
584
+ })
585
+ })
586
+ ]
587
+ })
588
+ })
589
+ })
590
+ ]
591
+ })
592
+ });
593
+ },
594
+ parameters: {
595
+ docs: {
596
+ description: {
597
+ story: 'Layout with sticky sidebar that remains in view while scrolling through long content.'
598
+ }
599
+ }
600
+ }
601
+ };
602
+ var SettingsLayout = {
603
+ render: function() {
604
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Page.default, {
605
+ title: "Account Settings",
606
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Layout.default, {
607
+ children: [
608
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
609
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
610
+ gap: "8",
611
+ children: [
612
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
613
+ title: "Profile Information",
614
+ padded: true,
615
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
616
+ gap: "4",
617
+ children: [
618
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Grid.default, {
619
+ columns: 2,
620
+ gap: "4",
621
+ children: [
622
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
623
+ gap: "2",
624
+ children: [
625
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
626
+ variant: "bodySm",
627
+ children: "First Name"
628
+ }),
629
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
630
+ type: "text",
631
+ defaultValue: "John",
632
+ style: {
633
+ width: '100%',
634
+ padding: '0.5rem',
635
+ border: '1px solid #ccc',
636
+ borderRadius: '4px'
637
+ }
638
+ })
639
+ ]
640
+ }),
641
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
642
+ gap: "2",
643
+ children: [
644
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
645
+ variant: "bodySm",
646
+ children: "Last Name"
647
+ }),
648
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
649
+ type: "text",
650
+ defaultValue: "Doe",
651
+ style: {
652
+ width: '100%',
653
+ padding: '0.5rem',
654
+ border: '1px solid #ccc',
655
+ borderRadius: '4px'
656
+ }
657
+ })
658
+ ]
659
+ })
660
+ ]
661
+ }),
662
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
663
+ gap: "2",
664
+ children: [
665
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
666
+ variant: "bodySm",
667
+ children: "Email Address"
668
+ }),
669
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
670
+ type: "email",
671
+ defaultValue: "john.doe@example.com",
672
+ style: {
673
+ width: '100%',
674
+ padding: '0.5rem',
675
+ border: '1px solid #ccc',
676
+ borderRadius: '4px'
677
+ }
678
+ })
679
+ ]
680
+ })
681
+ ]
682
+ })
683
+ }),
684
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
685
+ title: "Password & Security",
686
+ padded: true,
687
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
688
+ gap: "4",
689
+ children: [
690
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
691
+ gap: "2",
692
+ children: [
693
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
694
+ variant: "bodySm",
695
+ children: "Current Password"
696
+ }),
697
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
698
+ type: "password",
699
+ placeholder: "Enter current password",
700
+ style: {
701
+ width: '100%',
702
+ padding: '0.5rem',
703
+ border: '1px solid #ccc',
704
+ borderRadius: '4px'
705
+ }
706
+ })
707
+ ]
708
+ }),
709
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Grid.default, {
710
+ columns: 2,
711
+ gap: "4",
712
+ children: [
713
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
714
+ gap: "2",
715
+ children: [
716
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
717
+ variant: "bodySm",
718
+ children: "New Password"
719
+ }),
720
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
721
+ type: "password",
722
+ placeholder: "New password",
723
+ style: {
724
+ width: '100%',
725
+ padding: '0.5rem',
726
+ border: '1px solid #ccc',
727
+ borderRadius: '4px'
728
+ }
729
+ })
730
+ ]
731
+ }),
732
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
733
+ gap: "2",
734
+ children: [
735
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
736
+ variant: "bodySm",
737
+ children: "Confirm Password"
738
+ }),
739
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
740
+ type: "password",
741
+ placeholder: "Confirm password",
742
+ style: {
743
+ width: '100%',
744
+ padding: '0.5rem',
745
+ border: '1px solid #ccc',
746
+ borderRadius: '4px'
747
+ }
748
+ })
749
+ ]
750
+ })
751
+ ]
752
+ })
753
+ ]
754
+ })
755
+ }),
756
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
757
+ gap: "4",
758
+ children: [
759
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
760
+ primary: true,
761
+ children: "Save Changes"
762
+ }),
763
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
764
+ children: "Cancel"
765
+ })
766
+ ]
767
+ })
768
+ ]
769
+ })
770
+ }),
771
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
772
+ sidebar: true,
773
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
774
+ gap: "4",
775
+ children: [
776
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
777
+ title: "Settings Menu",
778
+ padded: true,
779
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
780
+ gap: "2",
781
+ children: [
782
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
783
+ size: "slim",
784
+ plain: true,
785
+ textAlign: "left",
786
+ children: "Profile"
787
+ }),
788
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
789
+ size: "slim",
790
+ plain: true,
791
+ textAlign: "left",
792
+ children: "Security"
793
+ }),
794
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
795
+ size: "slim",
796
+ plain: true,
797
+ textAlign: "left",
798
+ children: "Notifications"
799
+ }),
800
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
801
+ size: "slim",
802
+ plain: true,
803
+ textAlign: "left",
804
+ children: "Privacy"
805
+ }),
806
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
807
+ size: "slim",
808
+ plain: true,
809
+ textAlign: "left",
810
+ children: "Billing"
811
+ }),
812
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
813
+ size: "slim",
814
+ plain: true,
815
+ textAlign: "left",
816
+ children: "Team"
817
+ })
818
+ ]
819
+ })
820
+ }),
821
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
822
+ title: "Account Status",
823
+ padded: true,
824
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
825
+ gap: "2",
826
+ children: [
827
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
828
+ align: "space-between",
829
+ children: [
830
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
831
+ variant: "bodySm",
832
+ children: "Plan:"
833
+ }),
834
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
835
+ variant: "bodySm",
836
+ children: "Pro"
837
+ })
838
+ ]
839
+ }),
840
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
841
+ align: "space-between",
842
+ children: [
843
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
844
+ variant: "bodySm",
845
+ children: "Status:"
846
+ }),
847
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
848
+ variant: "bodySm",
849
+ style: {
850
+ color: '#28a745'
851
+ },
852
+ children: "Active"
853
+ })
854
+ ]
855
+ }),
856
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
857
+ align: "space-between",
858
+ children: [
859
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
860
+ variant: "bodySm",
861
+ children: "Renewal:"
862
+ }),
863
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
864
+ variant: "bodySm",
865
+ children: "Dec 15, 2024"
866
+ })
867
+ ]
868
+ })
869
+ ]
870
+ })
871
+ })
872
+ ]
873
+ })
874
+ })
875
+ ]
876
+ })
877
+ });
878
+ },
879
+ parameters: {
880
+ docs: {
881
+ description: {
882
+ story: 'Settings page layout with form content and navigation sidebar.'
883
+ }
884
+ }
885
+ }
886
+ };
887
+ var DashboardLayout = {
888
+ render: function() {
889
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Page.default, {
890
+ title: "Analytics Dashboard",
891
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Layout.default, {
892
+ children: [
893
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
894
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
895
+ gap: "8",
896
+ children: [
897
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Grid.default, {
898
+ columns: {
899
+ xs: 1,
900
+ md: 3
901
+ },
902
+ gap: "4",
903
+ children: [
904
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
905
+ padded: true,
906
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
907
+ gap: "1",
908
+ inlineAlign: "center",
909
+ children: [
910
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
911
+ variant: "headingLg",
912
+ children: "1,234"
913
+ }),
914
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
915
+ variant: "bodySm",
916
+ color: "subdued",
917
+ children: "Total Users"
918
+ })
919
+ ]
920
+ })
921
+ }),
922
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
923
+ padded: true,
924
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
925
+ gap: "1",
926
+ inlineAlign: "center",
927
+ children: [
928
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
929
+ variant: "headingLg",
930
+ children: "$45.2K"
931
+ }),
932
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
933
+ variant: "bodySm",
934
+ color: "subdued",
935
+ children: "Revenue"
936
+ })
937
+ ]
938
+ })
939
+ }),
940
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
941
+ padded: true,
942
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
943
+ gap: "1",
944
+ inlineAlign: "center",
945
+ children: [
946
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
947
+ variant: "headingLg",
948
+ children: "89.5%"
949
+ }),
950
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
951
+ variant: "bodySm",
952
+ color: "subdued",
953
+ children: "Conversion"
954
+ })
955
+ ]
956
+ })
957
+ })
958
+ ]
959
+ }),
960
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
961
+ title: "Performance Over Time",
962
+ padded: true,
963
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_VerticalStack.default, {
964
+ blockAlign: "center",
965
+ inlineAlign: "center",
966
+ as: _Box.default,
967
+ padding: "12",
968
+ background: "bg-surface-neutral-subdued",
969
+ borderRadius: "1",
970
+ style: {
971
+ height: '300px'
972
+ },
973
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
974
+ color: "subdued",
975
+ children: "Chart would be rendered here"
976
+ })
977
+ })
978
+ }),
979
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
980
+ title: "Recent Activity",
981
+ padded: true,
982
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_VerticalStack.default, {
983
+ gap: "2",
984
+ children: Array.from({
985
+ length: 5
986
+ }, function(_, i) {
987
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
988
+ padding: "2",
989
+ borderWidth: "1",
990
+ borderColor: "border",
991
+ borderRadius: "1",
992
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
993
+ align: "space-between",
994
+ children: [
995
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Text.default, {
996
+ children: [
997
+ "User action ",
998
+ i + 1
999
+ ]
1000
+ }),
1001
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1002
+ variant: "bodySm",
1003
+ color: "subdued",
1004
+ children: "2 hours ago"
1005
+ })
1006
+ ]
1007
+ })
1008
+ }, i);
1009
+ })
1010
+ })
1011
+ })
1012
+ ]
1013
+ })
1014
+ }),
1015
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
1016
+ sidebar: "slim",
1017
+ sticky: true,
1018
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1019
+ gap: "4",
1020
+ children: [
1021
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
1022
+ title: "Filters",
1023
+ padded: true,
1024
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1025
+ gap: "2",
1026
+ children: [
1027
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1028
+ variant: "bodySm",
1029
+ children: "Date Range"
1030
+ }),
1031
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)("select", {
1032
+ style: {
1033
+ padding: '0.5rem',
1034
+ border: '1px solid #ccc',
1035
+ borderRadius: '4px'
1036
+ },
1037
+ children: [
1038
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("option", {
1039
+ children: "Last 7 days"
1040
+ }),
1041
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("option", {
1042
+ children: "Last 30 days"
1043
+ }),
1044
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("option", {
1045
+ children: "Last 90 days"
1046
+ })
1047
+ ]
1048
+ }),
1049
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
1050
+ paddingBlockStart: "4",
1051
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1052
+ variant: "bodySm",
1053
+ children: "Source"
1054
+ })
1055
+ }),
1056
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1057
+ gap: "1",
1058
+ children: [
1059
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
1060
+ gap: "2",
1061
+ blockAlign: "center",
1062
+ children: [
1063
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
1064
+ type: "checkbox",
1065
+ defaultChecked: true
1066
+ }),
1067
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1068
+ variant: "bodySm",
1069
+ children: "Organic"
1070
+ })
1071
+ ]
1072
+ }),
1073
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
1074
+ gap: "2",
1075
+ blockAlign: "center",
1076
+ children: [
1077
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
1078
+ type: "checkbox",
1079
+ defaultChecked: true
1080
+ }),
1081
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1082
+ variant: "bodySm",
1083
+ children: "Paid"
1084
+ })
1085
+ ]
1086
+ }),
1087
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_HorizontalStack.default, {
1088
+ gap: "2",
1089
+ blockAlign: "center",
1090
+ children: [
1091
+ /*#__PURE__*/ (0, _jsxruntime.jsx)("input", {
1092
+ type: "checkbox"
1093
+ }),
1094
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1095
+ variant: "bodySm",
1096
+ children: "Social"
1097
+ })
1098
+ ]
1099
+ })
1100
+ ]
1101
+ })
1102
+ ]
1103
+ })
1104
+ }),
1105
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
1106
+ title: "Export",
1107
+ padded: true,
1108
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1109
+ gap: "2",
1110
+ children: [
1111
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
1112
+ size: "slim",
1113
+ children: "Export PDF"
1114
+ }),
1115
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
1116
+ size: "slim",
1117
+ children: "Export CSV"
1118
+ }),
1119
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
1120
+ size: "slim",
1121
+ children: "Share Report"
1122
+ })
1123
+ ]
1124
+ })
1125
+ })
1126
+ ]
1127
+ })
1128
+ })
1129
+ ]
1130
+ })
1131
+ });
1132
+ },
1133
+ parameters: {
1134
+ docs: {
1135
+ description: {
1136
+ story: 'Dashboard layout with main analytics content and sticky filter sidebar.'
1137
+ }
1138
+ }
1139
+ }
1140
+ };
1141
+ var ResponsiveBehavior = {
1142
+ render: function() {
1143
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Page.default, {
1144
+ title: "Responsive Layout Demo",
1145
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Layout.default, {
1146
+ children: [
1147
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
1148
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
1149
+ title: "Main Content Area",
1150
+ padded: true,
1151
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1152
+ gap: "4",
1153
+ children: [
1154
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1155
+ children: "This layout demonstrates responsive behavior. On larger screens, you'll see the sidebar alongside this main content. On smaller screens, the layout automatically stacks vertically for better mobile experience."
1156
+ }),
1157
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1158
+ children: "Resize your browser window to see how the layout adapts to different screen sizes. The sidebar will reposition and resize appropriately."
1159
+ }),
1160
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
1161
+ paddingBlockStart: "4",
1162
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Grid.default, {
1163
+ columns: {
1164
+ xs: 1,
1165
+ sm: 2,
1166
+ md: 3,
1167
+ lg: 6
1168
+ },
1169
+ gap: "4",
1170
+ children: Array.from({
1171
+ length: 6
1172
+ }, function(_, i) {
1173
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
1174
+ padding: "4",
1175
+ background: "bg-surface-info-subdued",
1176
+ borderRadius: "1",
1177
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_VerticalStack.default, {
1178
+ inlineAlign: "center",
1179
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_Text.default, {
1180
+ children: [
1181
+ "Item ",
1182
+ i + 1
1183
+ ]
1184
+ })
1185
+ })
1186
+ }, i);
1187
+ })
1188
+ })
1189
+ })
1190
+ ]
1191
+ })
1192
+ })
1193
+ }),
1194
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_LayoutSection.default, {
1195
+ sidebar: true,
1196
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_Card.default, {
1197
+ title: "Responsive Sidebar",
1198
+ padded: true,
1199
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1200
+ gap: "4",
1201
+ children: [
1202
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1203
+ variant: "headingSm",
1204
+ children: "Breakpoint Info"
1205
+ }),
1206
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1207
+ gap: "1",
1208
+ children: [
1209
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1210
+ variant: "bodySm",
1211
+ children: "• Large screens: Sidebar at 1/3 width"
1212
+ }),
1213
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1214
+ variant: "bodySm",
1215
+ children: "• Medium screens: Stacked layout"
1216
+ }),
1217
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1218
+ variant: "bodySm",
1219
+ children: "• Small screens: Full width sections"
1220
+ })
1221
+ ]
1222
+ }),
1223
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Box.default, {
1224
+ paddingBlockStart: "4",
1225
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1226
+ gap: "2",
1227
+ children: [
1228
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Text.default, {
1229
+ variant: "headingSm",
1230
+ children: "Test Actions"
1231
+ }),
1232
+ /*#__PURE__*/ (0, _jsxruntime.jsxs)(_VerticalStack.default, {
1233
+ gap: "2",
1234
+ children: [
1235
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
1236
+ size: "slim",
1237
+ children: "Resize Window"
1238
+ }),
1239
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
1240
+ size: "slim",
1241
+ children: "View on Mobile"
1242
+ }),
1243
+ /*#__PURE__*/ (0, _jsxruntime.jsx)(_Button.default, {
1244
+ size: "slim",
1245
+ children: "Test Tablet View"
1246
+ })
1247
+ ]
1248
+ })
1249
+ ]
1250
+ })
1251
+ })
1252
+ ]
1253
+ })
1254
+ })
1255
+ })
1256
+ ]
1257
+ })
1258
+ });
1259
+ },
1260
+ parameters: {
1261
+ docs: {
1262
+ description: {
1263
+ story: 'Demonstrates responsive behavior of layout sections across different screen sizes.'
1264
+ }
1265
+ }
1266
+ }
1267
+ };