@for-the-people-initiative/design-system 1.3.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 (342) hide show
  1. package/README.md +80 -0
  2. package/dist/css/theme-dark.css +7 -0
  3. package/dist/css/tokens.css +2315 -0
  4. package/dist/scss/_tokens.scss +2521 -0
  5. package/dist/ts/tokens.ts +2441 -0
  6. package/package.json +80 -0
  7. package/src/components/Accordion/Accordion.scss +118 -0
  8. package/src/components/Accordion/Accordion.vue +105 -0
  9. package/src/components/Accordion/AccordionTab.vue +79 -0
  10. package/src/components/Alert/Alert.scss +109 -0
  11. package/src/components/Alert/Alert.vue +79 -0
  12. package/src/components/AppBar/AppBar.scss +73 -0
  13. package/src/components/AppBar/AppBar.vue +49 -0
  14. package/src/components/AtmosphericBackground/AtmosphericBackground.vue +198 -0
  15. package/src/components/AutoComplete/AutoComplete.scss +282 -0
  16. package/src/components/AutoComplete/AutoComplete.vue +398 -0
  17. package/src/components/Avatar/Avatar.scss +191 -0
  18. package/src/components/Avatar/Avatar.vue +44 -0
  19. package/src/components/Badge/Badge.scss +84 -0
  20. package/src/components/Badge/Badge.vue +41 -0
  21. package/src/components/BlockUI/BlockUI.scss +85 -0
  22. package/src/components/BlockUI/BlockUI.vue +90 -0
  23. package/src/components/Breadcrumb/Breadcrumb.scss +84 -0
  24. package/src/components/Breadcrumb/Breadcrumb.vue +141 -0
  25. package/src/components/Button/Button.scss +254 -0
  26. package/src/components/Button/Button.vue +68 -0
  27. package/src/components/CTA/CTA.scss +92 -0
  28. package/src/components/CTA/CTA.vue +33 -0
  29. package/src/components/Calendar/Calendar.scss +330 -0
  30. package/src/components/Calendar/Calendar.vue +455 -0
  31. package/src/components/Card/Card.scss +66 -0
  32. package/src/components/Card/Card.vue +48 -0
  33. package/src/components/Carousel/Carousel.scss +121 -0
  34. package/src/components/Carousel/Carousel.vue +191 -0
  35. package/src/components/Chart/Chart.scss +109 -0
  36. package/src/components/Chart/Chart.vue +209 -0
  37. package/src/components/Checkbox/Checkbox.scss +148 -0
  38. package/src/components/Checkbox/Checkbox.vue +75 -0
  39. package/src/components/Chip/Chip.scss +83 -0
  40. package/src/components/Chip/Chip.vue +73 -0
  41. package/src/components/ColorPicker/ColorPicker.scss +244 -0
  42. package/src/components/ColorPicker/ColorPicker.vue +411 -0
  43. package/src/components/Column/Column.scss +87 -0
  44. package/src/components/Column/Column.vue +45 -0
  45. package/src/components/ColumnGroup/ColumnGroup.scss +41 -0
  46. package/src/components/ColumnGroup/ColumnGroup.vue +27 -0
  47. package/src/components/ColumnGroup/ColumnGroupRow.vue +18 -0
  48. package/src/components/CommandPalette/CommandPalette.scss +143 -0
  49. package/src/components/CommandPalette/CommandPalette.vue +165 -0
  50. package/src/components/ConfirmDialog/ConfirmDialog.scss +177 -0
  51. package/src/components/ConfirmDialog/ConfirmDialog.vue +162 -0
  52. package/src/components/ConfirmPopup/ConfirmPopup.scss +180 -0
  53. package/src/components/ConfirmPopup/ConfirmPopup.vue +185 -0
  54. package/src/components/ContextMenu/ContextMenu.scss +171 -0
  55. package/src/components/ContextMenu/ContextMenu.vue +383 -0
  56. package/src/components/DataTable/DataTable.scss +162 -0
  57. package/src/components/DataTable/DataTable.vue +225 -0
  58. package/src/components/DataView/DataView.scss +149 -0
  59. package/src/components/DataView/DataView.vue +172 -0
  60. package/src/components/DatePicker/DatePicker.scss +71 -0
  61. package/src/components/DatePicker/DatePicker.vue +121 -0
  62. package/src/components/Dialog/Dialog.scss +161 -0
  63. package/src/components/Dialog/Dialog.vue +245 -0
  64. package/src/components/Divider/Divider.scss +147 -0
  65. package/src/components/Divider/Divider.vue +49 -0
  66. package/src/components/Dock/Dock.scss +221 -0
  67. package/src/components/Dock/Dock.vue +107 -0
  68. package/src/components/Drawer/Drawer.scss +220 -0
  69. package/src/components/Drawer/Drawer.vue +137 -0
  70. package/src/components/Dropdown/Dropdown.scss +218 -0
  71. package/src/components/Dropdown/Dropdown.vue +313 -0
  72. package/src/components/Editor/Editor.scss +156 -0
  73. package/src/components/Editor/Editor.vue +253 -0
  74. package/src/components/FAQ/FAQ.scss +24 -0
  75. package/src/components/FAQ/FAQ.vue +28 -0
  76. package/src/components/FeatureGrid/FeatureGrid.scss +92 -0
  77. package/src/components/FeatureGrid/FeatureGrid.vue +39 -0
  78. package/src/components/FieldSet/FieldSet.scss +97 -0
  79. package/src/components/FieldSet/FieldSet.vue +70 -0
  80. package/src/components/FileUpload/FileUpload.scss +137 -0
  81. package/src/components/FileUpload/FileUpload.vue +183 -0
  82. package/src/components/Footer/Footer.scss +95 -0
  83. package/src/components/Footer/Footer.vue +59 -0
  84. package/src/components/Form/Form.scss +72 -0
  85. package/src/components/Form/Form.vue +30 -0
  86. package/src/components/Form/FormField.vue +42 -0
  87. package/src/components/Galleria/Galleria.scss +295 -0
  88. package/src/components/Galleria/Galleria.vue +274 -0
  89. package/src/components/Hero/Hero.scss +116 -0
  90. package/src/components/Hero/Hero.vue +57 -0
  91. package/src/components/Image/Image.scss +129 -0
  92. package/src/components/Image/Image.vue +117 -0
  93. package/src/components/ImageCompare/ImageCompare.scss +97 -0
  94. package/src/components/ImageCompare/ImageCompare.vue +66 -0
  95. package/src/components/InPlace/InPlace.scss +97 -0
  96. package/src/components/InPlace/InPlace.vue +107 -0
  97. package/src/components/InlineMessage/InlineMessage.scss +69 -0
  98. package/src/components/InlineMessage/InlineMessage.vue +47 -0
  99. package/src/components/InputChips/InputChips.scss +165 -0
  100. package/src/components/InputChips/InputChips.vue +169 -0
  101. package/src/components/InputGroup/InputGroup.scss +57 -0
  102. package/src/components/InputGroup/InputGroup.vue +22 -0
  103. package/src/components/InputGroupAddon/InputGroupAddon.scss +28 -0
  104. package/src/components/InputGroupAddon/InputGroupAddon.vue +22 -0
  105. package/src/components/InputIcon/InputIcon.scss +58 -0
  106. package/src/components/InputIcon/InputIcon.vue +28 -0
  107. package/src/components/InputMask/InputMask.scss +65 -0
  108. package/src/components/InputMask/InputMask.vue +268 -0
  109. package/src/components/InputNumber/InputNumber.scss +122 -0
  110. package/src/components/InputNumber/InputNumber.vue +150 -0
  111. package/src/components/InputOtp/InputOtp.scss +88 -0
  112. package/src/components/InputOtp/InputOtp.vue +230 -0
  113. package/src/components/InputSwitch/InputSwitch.scss +131 -0
  114. package/src/components/InputSwitch/InputSwitch.vue +49 -0
  115. package/src/components/InputText/InputText.scss +61 -0
  116. package/src/components/InputText/InputText.vue +71 -0
  117. package/src/components/Knob/Knob.scss +92 -0
  118. package/src/components/Knob/Knob.vue +252 -0
  119. package/src/components/ListBox/ListBox.scss +152 -0
  120. package/src/components/ListBox/ListBox.vue +198 -0
  121. package/src/components/LogoCloud/LogoCloud.scss +64 -0
  122. package/src/components/LogoCloud/LogoCloud.vue +35 -0
  123. package/src/components/MegaMenu/MegaMenu.scss +280 -0
  124. package/src/components/MegaMenu/MegaMenu.vue +218 -0
  125. package/src/components/Menu/Menu.scss +102 -0
  126. package/src/components/Menu/Menu.vue +221 -0
  127. package/src/components/MenuBar/MenuBar.scss +208 -0
  128. package/src/components/MenuBar/MenuBar.vue +306 -0
  129. package/src/components/Message/Message.scss +126 -0
  130. package/src/components/Message/Message.vue +99 -0
  131. package/src/components/MeterGroup/MeterGroup.scss +105 -0
  132. package/src/components/MeterGroup/MeterGroup.vue +73 -0
  133. package/src/components/MultiSelect/MultiSelect.scss +239 -0
  134. package/src/components/MultiSelect/MultiSelect.vue +296 -0
  135. package/src/components/OrderList/OrderList.scss +133 -0
  136. package/src/components/OrderList/OrderList.vue +267 -0
  137. package/src/components/OrganizationChart/OrganizationChart.scss +145 -0
  138. package/src/components/OrganizationChart/OrganizationChart.vue +220 -0
  139. package/src/components/OverlayPanel/OverlayPanel.scss +69 -0
  140. package/src/components/OverlayPanel/OverlayPanel.vue +180 -0
  141. package/src/components/Paginator/Paginator.scss +130 -0
  142. package/src/components/Paginator/Paginator.vue +212 -0
  143. package/src/components/Panel/Panel.scss +113 -0
  144. package/src/components/Panel/Panel.vue +89 -0
  145. package/src/components/PanelMenu/PanelMenu.scss +211 -0
  146. package/src/components/PanelMenu/PanelMenu.vue +295 -0
  147. package/src/components/ParticleBackground/ParticleBackground.vue +310 -0
  148. package/src/components/PickList/PickList.scss +126 -0
  149. package/src/components/PickList/PickList.vue +249 -0
  150. package/src/components/PopOver/PopOver.scss +112 -0
  151. package/src/components/PopOver/PopOver.vue +254 -0
  152. package/src/components/PricingTable/PricingCard.vue +33 -0
  153. package/src/components/PricingTable/PricingTable.scss +133 -0
  154. package/src/components/PricingTable/PricingTable.vue +21 -0
  155. package/src/components/ProgressBar/ProgressBar.scss +58 -0
  156. package/src/components/ProgressBar/ProgressBar.vue +48 -0
  157. package/src/components/ProgressSpinner/ProgressSpinner.scss +48 -0
  158. package/src/components/ProgressSpinner/ProgressSpinner.vue +53 -0
  159. package/src/components/RadioButton/RadioButton.scss +148 -0
  160. package/src/components/RadioButton/RadioButton.vue +52 -0
  161. package/src/components/Rating/Rating.scss +109 -0
  162. package/src/components/Rating/Rating.vue +136 -0
  163. package/src/components/Row/Row.scss +38 -0
  164. package/src/components/Row/Row.vue +30 -0
  165. package/src/components/ScrollPanel/ScrollPanel.scss +90 -0
  166. package/src/components/ScrollPanel/ScrollPanel.vue +284 -0
  167. package/src/components/ScrollTop/ScrollTop.scss +59 -0
  168. package/src/components/ScrollTop/ScrollTop.vue +99 -0
  169. package/src/components/Section/Section.scss +58 -0
  170. package/src/components/Section/Section.vue +39 -0
  171. package/src/components/Select/Select.scss +98 -0
  172. package/src/components/Select/Select.vue +92 -0
  173. package/src/components/SelectButton/SelectButton.scss +65 -0
  174. package/src/components/SelectButton/SelectButton.vue +144 -0
  175. package/src/components/Sidebar/Sidebar.scss +170 -0
  176. package/src/components/Sidebar/Sidebar.vue +137 -0
  177. package/src/components/Skeleton/Skeleton.scss +43 -0
  178. package/src/components/Skeleton/Skeleton.vue +57 -0
  179. package/src/components/Slider/Slider.scss +103 -0
  180. package/src/components/Slider/Slider.vue +65 -0
  181. package/src/components/SpeedDial/SpeedDial.scss +217 -0
  182. package/src/components/SpeedDial/SpeedDial.vue +196 -0
  183. package/src/components/SplitButton/SplitButton.scss +264 -0
  184. package/src/components/SplitButton/SplitButton.vue +172 -0
  185. package/src/components/Splitter/Splitter.scss +95 -0
  186. package/src/components/Splitter/Splitter.vue +191 -0
  187. package/src/components/Splitter/SplitterPanel.vue +125 -0
  188. package/src/components/Stats/Stats.scss +54 -0
  189. package/src/components/Stats/Stats.vue +28 -0
  190. package/src/components/Steps/Steps.scss +164 -0
  191. package/src/components/Steps/Steps.vue +100 -0
  192. package/src/components/TabMenu/TabMenu.scss +106 -0
  193. package/src/components/TabMenu/TabMenu.vue +174 -0
  194. package/src/components/Tabs/TabPanel.vue +41 -0
  195. package/src/components/Tabs/Tabs.scss +82 -0
  196. package/src/components/Tabs/Tabs.vue +162 -0
  197. package/src/components/Tag/Tag.scss +73 -0
  198. package/src/components/Tag/Tag.vue +37 -0
  199. package/src/components/Terminal/Terminal.scss +80 -0
  200. package/src/components/Terminal/Terminal.vue +113 -0
  201. package/src/components/Testimonial/Testimonial.scss +80 -0
  202. package/src/components/Testimonial/Testimonial.vue +29 -0
  203. package/src/components/Textarea/Textarea.scss +65 -0
  204. package/src/components/Textarea/Textarea.vue +101 -0
  205. package/src/components/TieredMenu/TieredMenu.scss +146 -0
  206. package/src/components/TieredMenu/TieredMenu.vue +270 -0
  207. package/src/components/TieredMenu/TieredMenuSub.vue +132 -0
  208. package/src/components/Timeline/Timeline.scss +190 -0
  209. package/src/components/Timeline/Timeline.vue +79 -0
  210. package/src/components/Toast/Toast.scss +284 -0
  211. package/src/components/Toast/Toast.vue +162 -0
  212. package/src/components/ToggleButton/ToggleButton.scss +99 -0
  213. package/src/components/ToggleButton/ToggleButton.vue +65 -0
  214. package/src/components/ToggleSwitch/ToggleSwitch.scss +68 -0
  215. package/src/components/ToggleSwitch/ToggleSwitch.vue +44 -0
  216. package/src/components/Toolbar/Toolbar.scss +37 -0
  217. package/src/components/Toolbar/Toolbar.vue +23 -0
  218. package/src/components/Tooltip/Tooltip.scss +114 -0
  219. package/src/components/Tooltip/Tooltip.vue +169 -0
  220. package/src/components/Tree/Tree.scss +164 -0
  221. package/src/components/Tree/Tree.vue +273 -0
  222. package/src/components/TreeSelect/TreeSelect.scss +238 -0
  223. package/src/components/TreeSelect/TreeSelect.vue +401 -0
  224. package/src/components/TreeTable/TreeTable.scss +172 -0
  225. package/src/components/TreeTable/TreeTable.vue +285 -0
  226. package/src/components/VirtualScroller/VirtualScroller.scss +107 -0
  227. package/src/components/VirtualScroller/VirtualScroller.vue +234 -0
  228. package/src/scss/fonts.scss +63 -0
  229. package/src/scss/mixins/accent-gradient.scss +43 -0
  230. package/src/scss/mixins/border.scss +28 -0
  231. package/src/scss/mixins/breakpoint.scss +80 -0
  232. package/src/scss/mixins/container.scss +33 -0
  233. package/src/scss/mixins/elevation.scss +43 -0
  234. package/src/scss/mixins/grid.scss +23 -0
  235. package/src/scss/mixins/levitation.scss +15 -0
  236. package/src/scss/mixins/list.scss +5 -0
  237. package/src/scss/mixins/surface-atmospheric.scss +93 -0
  238. package/src/scss/mixins/surface.scss +19 -0
  239. package/src/scss/mixins/typography.scss +91 -0
  240. package/src/scss/utility-classes/utility-classes-spacing.scss +34 -0
  241. package/src/scss/utility-classes/utility-classes-typography.scss +114 -0
  242. package/tokens/components/accordion.json +127 -0
  243. package/tokens/components/autocomplete.json +238 -0
  244. package/tokens/components/avatar.json +220 -0
  245. package/tokens/components/badge.json +119 -0
  246. package/tokens/components/block-ui.json +40 -0
  247. package/tokens/components/breadcrumb.json +57 -0
  248. package/tokens/components/button.json +395 -0
  249. package/tokens/components/calendar.json +260 -0
  250. package/tokens/components/card.json +157 -0
  251. package/tokens/components/carousel.json +154 -0
  252. package/tokens/components/chart.json +132 -0
  253. package/tokens/components/checkbox.json +130 -0
  254. package/tokens/components/chip.json +100 -0
  255. package/tokens/components/color-picker.json +196 -0
  256. package/tokens/components/column-group.json +45 -0
  257. package/tokens/components/column.json +109 -0
  258. package/tokens/components/confirm-dialog.json +141 -0
  259. package/tokens/components/confirm-popup.json +101 -0
  260. package/tokens/components/context-menu.json +168 -0
  261. package/tokens/components/data-table.json +157 -0
  262. package/tokens/components/data-view.json +172 -0
  263. package/tokens/components/dialog.json +151 -0
  264. package/tokens/components/divider.json +45 -0
  265. package/tokens/components/dock.json +173 -0
  266. package/tokens/components/drawer.json +163 -0
  267. package/tokens/components/dropdown.json +230 -0
  268. package/tokens/components/editor.json +170 -0
  269. package/tokens/components/field-set.json +115 -0
  270. package/tokens/components/file-upload.json +193 -0
  271. package/tokens/components/galleria.json +235 -0
  272. package/tokens/components/image-compare.json +74 -0
  273. package/tokens/components/image.json +71 -0
  274. package/tokens/components/in-place.json +100 -0
  275. package/tokens/components/inline-message.json +107 -0
  276. package/tokens/components/input-chips.json +187 -0
  277. package/tokens/components/input-group-addon.json +47 -0
  278. package/tokens/components/input-group.json +21 -0
  279. package/tokens/components/input-icon.json +38 -0
  280. package/tokens/components/input-mask.json +136 -0
  281. package/tokens/components/input-number.json +144 -0
  282. package/tokens/components/input-otp.json +138 -0
  283. package/tokens/components/input-switch.json +108 -0
  284. package/tokens/components/input-text.json +136 -0
  285. package/tokens/components/knob.json +119 -0
  286. package/tokens/components/listbox.json +166 -0
  287. package/tokens/components/mega-menu.json +283 -0
  288. package/tokens/components/menu.json +145 -0
  289. package/tokens/components/menubar.json +152 -0
  290. package/tokens/components/message.json +151 -0
  291. package/tokens/components/meter-group.json +108 -0
  292. package/tokens/components/multi-select.json +244 -0
  293. package/tokens/components/order-list.json +193 -0
  294. package/tokens/components/organization-chart.json +188 -0
  295. package/tokens/components/overlay-panel.json +94 -0
  296. package/tokens/components/paginator.json +186 -0
  297. package/tokens/components/panel.json +120 -0
  298. package/tokens/components/panelmenu.json +190 -0
  299. package/tokens/components/picklist.json +187 -0
  300. package/tokens/components/popover.json +65 -0
  301. package/tokens/components/progress-bar.json +33 -0
  302. package/tokens/components/progress-spinner.json +38 -0
  303. package/tokens/components/radio.json +125 -0
  304. package/tokens/components/rating.json +76 -0
  305. package/tokens/components/row.json +62 -0
  306. package/tokens/components/scroll-panel.json +69 -0
  307. package/tokens/components/scroll-top.json +84 -0
  308. package/tokens/components/select-button.json +145 -0
  309. package/tokens/components/select.json +190 -0
  310. package/tokens/components/sidebar.json +146 -0
  311. package/tokens/components/skeleton.json +26 -0
  312. package/tokens/components/slider.json +82 -0
  313. package/tokens/components/speed-dial.json +144 -0
  314. package/tokens/components/split-button.json +316 -0
  315. package/tokens/components/splitter.json +88 -0
  316. package/tokens/components/steps.json +154 -0
  317. package/tokens/components/tabmenu.json +103 -0
  318. package/tokens/components/tabs.json +97 -0
  319. package/tokens/components/tag.json +122 -0
  320. package/tokens/components/terminal.json +100 -0
  321. package/tokens/components/textarea.json +96 -0
  322. package/tokens/components/tieredmenu.json +142 -0
  323. package/tokens/components/timeline.json +129 -0
  324. package/tokens/components/toast.json +281 -0
  325. package/tokens/components/toggle-button.json +220 -0
  326. package/tokens/components/toggle-switch.json +95 -0
  327. package/tokens/components/toolbar.json +41 -0
  328. package/tokens/components/tooltip.json +60 -0
  329. package/tokens/components/tree-select.json +224 -0
  330. package/tokens/components/tree.json +153 -0
  331. package/tokens/components/treetable.json +155 -0
  332. package/tokens/components/virtualscroller.json +95 -0
  333. package/tokens/primitives/color.json +137 -0
  334. package/tokens/primitives/radius.json +12 -0
  335. package/tokens/primitives/shadow.json +29 -0
  336. package/tokens/primitives/spacing.json +15 -0
  337. package/tokens/semantics/color.json +81 -0
  338. package/tokens/semantics/radius.json +10 -0
  339. package/tokens/semantics/shadow.json +9 -0
  340. package/tokens/semantics/spacing.json +24 -0
  341. package/tokens/themes/dark.json +7 -0
  342. package/tokens/themes/light.json +7 -0
@@ -0,0 +1,172 @@
1
+ {
2
+ "dataView": {
3
+ "background": {
4
+ "value": "{surface.panel}",
5
+ "type": "color",
6
+ "description": "DataView container background"
7
+ },
8
+ "border": {
9
+ "color": {
10
+ "value": "{border.subtle}",
11
+ "type": "color",
12
+ "description": "Container border color"
13
+ },
14
+ "width": {
15
+ "value": "1px",
16
+ "type": "dimension",
17
+ "description": "Container border width"
18
+ }
19
+ },
20
+ "radius": {
21
+ "value": "{radius.default}",
22
+ "type": "dimension",
23
+ "description": "Container border radius"
24
+ },
25
+ "header": {
26
+ "background": {
27
+ "value": "{surface.muted}",
28
+ "type": "color",
29
+ "description": "Header background color"
30
+ },
31
+ "padding": {
32
+ "value": "{space.m}",
33
+ "type": "dimension",
34
+ "description": "Header padding"
35
+ },
36
+ "borderColor": {
37
+ "value": "{border.subtle}",
38
+ "type": "color",
39
+ "description": "Header border color"
40
+ }
41
+ },
42
+ "content": {
43
+ "padding": {
44
+ "value": "{space.m}",
45
+ "type": "dimension",
46
+ "description": "Content area padding"
47
+ }
48
+ },
49
+ "grid": {
50
+ "gap": {
51
+ "value": "{space.m}",
52
+ "type": "dimension",
53
+ "description": "Gap between grid items"
54
+ }
55
+ },
56
+ "list": {
57
+ "gap": {
58
+ "value": "{space.s}",
59
+ "type": "dimension",
60
+ "description": "Gap between list items"
61
+ },
62
+ "item": {
63
+ "padding": {
64
+ "value": "{space.m}",
65
+ "type": "dimension",
66
+ "description": "List item padding"
67
+ },
68
+ "background": {
69
+ "default": {
70
+ "value": "transparent",
71
+ "type": "color",
72
+ "description": "List item background"
73
+ },
74
+ "hover": {
75
+ "value": "{surface.muted}",
76
+ "type": "color",
77
+ "description": "List item hover background"
78
+ }
79
+ },
80
+ "borderColor": {
81
+ "value": "{border.subtle}",
82
+ "type": "color",
83
+ "description": "List item border color"
84
+ },
85
+ "radius": {
86
+ "value": "{radius.subtle}",
87
+ "type": "dimension",
88
+ "description": "List item border radius"
89
+ }
90
+ }
91
+ },
92
+ "layoutSwitcher": {
93
+ "gap": {
94
+ "value": "{space.2xs}",
95
+ "type": "dimension",
96
+ "description": "Gap between layout buttons"
97
+ },
98
+ "button": {
99
+ "size": {
100
+ "value": "32px",
101
+ "type": "dimension",
102
+ "description": "Layout button size"
103
+ },
104
+ "background": {
105
+ "default": {
106
+ "value": "transparent",
107
+ "type": "color",
108
+ "description": "Button default background"
109
+ },
110
+ "active": {
111
+ "value": "{surface.muted}",
112
+ "type": "color",
113
+ "description": "Button active background"
114
+ },
115
+ "hover": {
116
+ "value": "{neutral.100}",
117
+ "type": "color",
118
+ "description": "Button hover background"
119
+ }
120
+ },
121
+ "color": {
122
+ "default": {
123
+ "value": "{text.muted}",
124
+ "type": "color",
125
+ "description": "Button icon default color"
126
+ },
127
+ "active": {
128
+ "value": "{text.default}",
129
+ "type": "color",
130
+ "description": "Button icon active color"
131
+ }
132
+ },
133
+ "radius": {
134
+ "value": "{radius.subtle}",
135
+ "type": "dimension",
136
+ "description": "Button border radius"
137
+ }
138
+ }
139
+ },
140
+ "pagination": {
141
+ "padding": {
142
+ "value": "{space.m}",
143
+ "type": "dimension",
144
+ "description": "Pagination padding"
145
+ },
146
+ "borderColor": {
147
+ "value": "{border.subtle}",
148
+ "type": "color",
149
+ "description": "Pagination border color"
150
+ }
151
+ },
152
+ "empty": {
153
+ "padding": {
154
+ "value": "{space.xl}",
155
+ "type": "dimension",
156
+ "description": "Empty state padding"
157
+ },
158
+ "color": {
159
+ "value": "{text.muted}",
160
+ "type": "color",
161
+ "description": "Empty state text color"
162
+ }
163
+ },
164
+ "transition": {
165
+ "duration": {
166
+ "value": "150ms",
167
+ "type": "duration",
168
+ "description": "Animation duration"
169
+ }
170
+ }
171
+ }
172
+ }
@@ -0,0 +1,151 @@
1
+ {
2
+ "dialog": {
3
+ "padding": {
4
+ "header": {
5
+ "value": "{space.l}",
6
+ "type": "dimension",
7
+ "description": "Header section padding"
8
+ },
9
+ "content": {
10
+ "value": "{space.l}",
11
+ "type": "dimension",
12
+ "description": "Content area padding"
13
+ },
14
+ "footer": {
15
+ "value": "{space.l}",
16
+ "type": "dimension",
17
+ "description": "Footer section padding"
18
+ }
19
+ },
20
+ "background": {
21
+ "default": {
22
+ "value": "{surface.canvas}",
23
+ "type": "color",
24
+ "description": "Dialog background color"
25
+ }
26
+ },
27
+ "radius": {
28
+ "value": "{radius.large}",
29
+ "type": "dimension",
30
+ "description": "Dialog border radius"
31
+ },
32
+ "shadow": {
33
+ "value": "{shadow.l}",
34
+ "type": "shadow",
35
+ "description": "Dialog elevation shadow"
36
+ },
37
+ "border": {
38
+ "color": {
39
+ "value": "{border.subtle}",
40
+ "type": "color",
41
+ "description": "Dialog border color"
42
+ },
43
+ "width": {
44
+ "value": "1px",
45
+ "type": "dimension",
46
+ "description": "Dialog border width"
47
+ }
48
+ },
49
+ "header": {
50
+ "background": {
51
+ "value": "{surface.canvas}",
52
+ "type": "color",
53
+ "description": "Header background"
54
+ },
55
+ "borderColor": {
56
+ "value": "{border.subtle}",
57
+ "type": "color",
58
+ "description": "Header bottom border color"
59
+ },
60
+ "title": {
61
+ "color": {
62
+ "value": "{text.heading}",
63
+ "type": "color",
64
+ "description": "Header title text color"
65
+ }
66
+ }
67
+ },
68
+ "closeButton": {
69
+ "size": {
70
+ "value": "32px",
71
+ "type": "dimension",
72
+ "description": "Close button size"
73
+ },
74
+ "iconSize": {
75
+ "value": "16px",
76
+ "type": "dimension",
77
+ "description": "Close icon size"
78
+ },
79
+ "color": {
80
+ "default": {
81
+ "value": "{text.muted}",
82
+ "type": "color",
83
+ "description": "Close button icon color"
84
+ },
85
+ "hover": {
86
+ "value": "{text.default}",
87
+ "type": "color",
88
+ "description": "Close button hover color"
89
+ }
90
+ },
91
+ "background": {
92
+ "hover": {
93
+ "value": "{surface.muted}",
94
+ "type": "color",
95
+ "description": "Close button hover background"
96
+ }
97
+ },
98
+ "radius": {
99
+ "value": "{radius.default}",
100
+ "type": "dimension",
101
+ "description": "Close button border radius"
102
+ }
103
+ },
104
+ "overlay": {
105
+ "background": {
106
+ "value": "{surface.overlay}",
107
+ "type": "color",
108
+ "description": "Modal overlay backdrop color"
109
+ }
110
+ },
111
+ "width": {
112
+ "sm": {
113
+ "value": "400px",
114
+ "type": "dimension",
115
+ "description": "Small dialog width"
116
+ },
117
+ "md": {
118
+ "value": "560px",
119
+ "type": "dimension",
120
+ "description": "Medium dialog width (default)"
121
+ },
122
+ "lg": {
123
+ "value": "720px",
124
+ "type": "dimension",
125
+ "description": "Large dialog width"
126
+ },
127
+ "xl": {
128
+ "value": "960px",
129
+ "type": "dimension",
130
+ "description": "Extra large dialog width"
131
+ }
132
+ },
133
+ "maxHeight": {
134
+ "value": "90vh",
135
+ "type": "dimension",
136
+ "description": "Maximum dialog height"
137
+ },
138
+ "zIndex": {
139
+ "overlay": {
140
+ "value": "1000",
141
+ "type": "number",
142
+ "description": "Overlay z-index"
143
+ },
144
+ "dialog": {
145
+ "value": "1001",
146
+ "type": "number",
147
+ "description": "Dialog z-index"
148
+ }
149
+ }
150
+ }
151
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "divider": {
3
+ "border": {
4
+ "color": {
5
+ "value": "{neutral.200}",
6
+ "type": "color",
7
+ "description": "Default divider border color"
8
+ },
9
+ "width": {
10
+ "value": "1px",
11
+ "type": "dimension",
12
+ "description": "Default divider border width"
13
+ }
14
+ },
15
+ "margin": {
16
+ "horizontal": {
17
+ "value": "{space.m}",
18
+ "type": "dimension",
19
+ "description": "Vertical margin for horizontal dividers"
20
+ },
21
+ "vertical": {
22
+ "value": "{space.m}",
23
+ "type": "dimension",
24
+ "description": "Horizontal margin for vertical dividers"
25
+ }
26
+ },
27
+ "content": {
28
+ "gap": {
29
+ "value": "{space.m}",
30
+ "type": "dimension",
31
+ "description": "Gap between divider line and content"
32
+ },
33
+ "color": {
34
+ "value": "{neutral.500}",
35
+ "type": "color",
36
+ "description": "Color of content text within divider"
37
+ },
38
+ "background": {
39
+ "value": "{neutral.0}",
40
+ "type": "color",
41
+ "description": "Background behind content to cover the line"
42
+ }
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,173 @@
1
+ {
2
+ "dock": {
3
+ "background": {
4
+ "value": "{surface.elevated}",
5
+ "type": "color",
6
+ "description": "Dock background"
7
+ },
8
+ "border": {
9
+ "color": {
10
+ "value": "{border.subtle}",
11
+ "type": "color",
12
+ "description": "Dock border color"
13
+ },
14
+ "width": {
15
+ "value": "1px",
16
+ "type": "dimension",
17
+ "description": "Dock border width"
18
+ }
19
+ },
20
+ "radius": {
21
+ "value": "{radius.large}",
22
+ "type": "dimension",
23
+ "description": "Dock border radius"
24
+ },
25
+ "shadow": {
26
+ "value": "{shadow.l}",
27
+ "type": "shadow",
28
+ "description": "Dock elevation shadow"
29
+ },
30
+ "padding": {
31
+ "value": "{space.s}",
32
+ "type": "dimension",
33
+ "description": "Dock inner padding"
34
+ },
35
+ "gap": {
36
+ "value": "{space.2xs}",
37
+ "type": "dimension",
38
+ "description": "Gap between dock items"
39
+ },
40
+ "zIndex": {
41
+ "value": "1000",
42
+ "type": "number",
43
+ "description": "Z-index for stacking"
44
+ },
45
+ "position": {
46
+ "offset": {
47
+ "value": "{space.m}",
48
+ "type": "dimension",
49
+ "description": "Distance from screen edge"
50
+ }
51
+ },
52
+ "item": {
53
+ "size": {
54
+ "default": {
55
+ "value": "48px",
56
+ "type": "dimension",
57
+ "description": "Default item size"
58
+ },
59
+ "magnified": {
60
+ "value": "72px",
61
+ "type": "dimension",
62
+ "description": "Magnified item size on hover"
63
+ }
64
+ },
65
+ "radius": {
66
+ "value": "{radius.rounded}",
67
+ "type": "dimension",
68
+ "description": "Item border radius"
69
+ },
70
+ "background": {
71
+ "default": {
72
+ "value": "transparent",
73
+ "type": "color",
74
+ "description": "Item background"
75
+ },
76
+ "hover": {
77
+ "value": "{surface.muted}",
78
+ "type": "color",
79
+ "description": "Item hover background"
80
+ },
81
+ "active": {
82
+ "value": "{surface.muted}",
83
+ "type": "color",
84
+ "description": "Active item background"
85
+ }
86
+ },
87
+ "icon": {
88
+ "size": {
89
+ "default": {
90
+ "value": "28px",
91
+ "type": "dimension",
92
+ "description": "Default icon size"
93
+ },
94
+ "magnified": {
95
+ "value": "42px",
96
+ "type": "dimension",
97
+ "description": "Magnified icon size"
98
+ }
99
+ },
100
+ "color": {
101
+ "default": {
102
+ "value": "{text.default}",
103
+ "type": "color",
104
+ "description": "Icon color"
105
+ },
106
+ "hover": {
107
+ "value": "{brand.primary}",
108
+ "type": "color",
109
+ "description": "Icon hover color"
110
+ }
111
+ }
112
+ }
113
+ },
114
+ "tooltip": {
115
+ "offset": {
116
+ "value": "{space.xs}",
117
+ "type": "dimension",
118
+ "description": "Tooltip distance from dock"
119
+ },
120
+ "background": {
121
+ "value": "{surface.inverse}",
122
+ "type": "color",
123
+ "description": "Tooltip background"
124
+ },
125
+ "text": {
126
+ "color": {
127
+ "value": "{text.inverse}",
128
+ "type": "color",
129
+ "description": "Tooltip text color"
130
+ },
131
+ "fontSize": {
132
+ "value": "12px",
133
+ "type": "dimension",
134
+ "description": "Tooltip font size"
135
+ }
136
+ },
137
+ "padding": {
138
+ "x": {
139
+ "value": "{space.s}",
140
+ "type": "dimension",
141
+ "description": "Tooltip horizontal padding"
142
+ },
143
+ "y": {
144
+ "value": "{space.2xs}",
145
+ "type": "dimension",
146
+ "description": "Tooltip vertical padding"
147
+ }
148
+ },
149
+ "radius": {
150
+ "value": "{radius.subtle}",
151
+ "type": "dimension",
152
+ "description": "Tooltip border radius"
153
+ }
154
+ },
155
+ "indicator": {
156
+ "size": {
157
+ "value": "4px",
158
+ "type": "dimension",
159
+ "description": "Active indicator dot size"
160
+ },
161
+ "color": {
162
+ "value": "{brand.primary}",
163
+ "type": "color",
164
+ "description": "Active indicator color"
165
+ },
166
+ "gap": {
167
+ "value": "{space.2xs}",
168
+ "type": "dimension",
169
+ "description": "Gap between item and indicator"
170
+ }
171
+ }
172
+ }
173
+ }
@@ -0,0 +1,163 @@
1
+ {
2
+ "drawer": {
3
+ "background": {
4
+ "value": "{surface.canvas}",
5
+ "type": "color",
6
+ "description": "Drawer background color"
7
+ },
8
+ "border": {
9
+ "color": {
10
+ "value": "{border.subtle}",
11
+ "type": "color",
12
+ "description": "Drawer border color"
13
+ },
14
+ "width": {
15
+ "value": "1px",
16
+ "type": "dimension",
17
+ "description": "Drawer border width"
18
+ }
19
+ },
20
+ "shadow": {
21
+ "value": "{shadow.l}",
22
+ "type": "shadow",
23
+ "description": "Drawer shadow"
24
+ },
25
+ "header": {
26
+ "padding": {
27
+ "value": "{space.l}",
28
+ "type": "dimension",
29
+ "description": "Header section padding"
30
+ },
31
+ "background": {
32
+ "value": "{surface.canvas}",
33
+ "type": "color",
34
+ "description": "Header background"
35
+ },
36
+ "borderColor": {
37
+ "value": "{border.subtle}",
38
+ "type": "color",
39
+ "description": "Header bottom border color"
40
+ },
41
+ "title": {
42
+ "color": {
43
+ "value": "{text.heading}",
44
+ "type": "color",
45
+ "description": "Header title text color"
46
+ },
47
+ "fontSize": {
48
+ "value": "18px",
49
+ "type": "dimension",
50
+ "description": "Header title font size"
51
+ },
52
+ "fontWeight": {
53
+ "value": "600",
54
+ "type": "fontWeight",
55
+ "description": "Header title font weight"
56
+ }
57
+ }
58
+ },
59
+ "content": {
60
+ "padding": {
61
+ "value": "{space.l}",
62
+ "type": "dimension",
63
+ "description": "Content area padding"
64
+ }
65
+ },
66
+ "footer": {
67
+ "padding": {
68
+ "value": "{space.l}",
69
+ "type": "dimension",
70
+ "description": "Footer section padding"
71
+ },
72
+ "borderColor": {
73
+ "value": "{border.subtle}",
74
+ "type": "color",
75
+ "description": "Footer top border color"
76
+ }
77
+ },
78
+ "closeButton": {
79
+ "size": {
80
+ "value": "32px",
81
+ "type": "dimension",
82
+ "description": "Close button size"
83
+ },
84
+ "iconSize": {
85
+ "value": "16px",
86
+ "type": "dimension",
87
+ "description": "Close icon size"
88
+ },
89
+ "color": {
90
+ "default": {
91
+ "value": "{text.muted}",
92
+ "type": "color",
93
+ "description": "Close button icon color"
94
+ },
95
+ "hover": {
96
+ "value": "{text.default}",
97
+ "type": "color",
98
+ "description": "Close button hover color"
99
+ }
100
+ },
101
+ "background": {
102
+ "hover": {
103
+ "value": "{surface.muted}",
104
+ "type": "color",
105
+ "description": "Close button hover background"
106
+ }
107
+ },
108
+ "radius": {
109
+ "value": "{radius.default}",
110
+ "type": "dimension",
111
+ "description": "Close button border radius"
112
+ }
113
+ },
114
+ "overlay": {
115
+ "background": {
116
+ "value": "{surface.overlay}",
117
+ "type": "color",
118
+ "description": "Overlay backdrop color"
119
+ }
120
+ },
121
+ "size": {
122
+ "sm": {
123
+ "value": "280px",
124
+ "type": "dimension",
125
+ "description": "Small drawer size"
126
+ },
127
+ "md": {
128
+ "value": "400px",
129
+ "type": "dimension",
130
+ "description": "Medium drawer size (default)"
131
+ },
132
+ "lg": {
133
+ "value": "560px",
134
+ "type": "dimension",
135
+ "description": "Large drawer size"
136
+ },
137
+ "xl": {
138
+ "value": "720px",
139
+ "type": "dimension",
140
+ "description": "Extra large drawer size"
141
+ }
142
+ },
143
+ "zIndex": {
144
+ "overlay": {
145
+ "value": "1000",
146
+ "type": "number",
147
+ "description": "Overlay z-index"
148
+ },
149
+ "drawer": {
150
+ "value": "1001",
151
+ "type": "number",
152
+ "description": "Drawer z-index"
153
+ }
154
+ },
155
+ "transition": {
156
+ "duration": {
157
+ "value": "300ms",
158
+ "type": "duration",
159
+ "description": "Slide animation duration"
160
+ }
161
+ }
162
+ }
163
+ }