@bitrix24/b24ui-nuxt 0.7.1 → 1.0.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 (260) hide show
  1. package/.nuxt/b24ui/accordion.ts +3 -3
  2. package/.nuxt/b24ui/advice.ts +6 -5
  3. package/.nuxt/b24ui/alert.ts +102 -49
  4. package/.nuxt/b24ui/avatar-group.ts +10 -10
  5. package/.nuxt/b24ui/avatar.ts +18 -18
  6. package/.nuxt/b24ui/badge.ts +167 -176
  7. package/.nuxt/b24ui/button-group.ts +3 -1
  8. package/.nuxt/b24ui/button.ts +179 -170
  9. package/.nuxt/b24ui/calendar.ts +48 -28
  10. package/.nuxt/b24ui/checkbox.ts +82 -85
  11. package/.nuxt/b24ui/chip.ts +121 -32
  12. package/.nuxt/b24ui/container.ts +1 -1
  13. package/.nuxt/b24ui/content/table-wrapper.ts +11 -11
  14. package/.nuxt/b24ui/countdown.ts +11 -11
  15. package/.nuxt/b24ui/description-list.ts +6 -6
  16. package/.nuxt/b24ui/dropdown-menu.ts +111 -183
  17. package/.nuxt/b24ui/form-field.ts +19 -19
  18. package/.nuxt/b24ui/index.ts +0 -1
  19. package/.nuxt/b24ui/input-menu.ts +294 -357
  20. package/.nuxt/b24ui/input-number.ts +111 -259
  21. package/.nuxt/b24ui/input.ts +136 -259
  22. package/.nuxt/b24ui/kbd.ts +15 -13
  23. package/.nuxt/b24ui/link.ts +5 -5
  24. package/.nuxt/b24ui/modal.ts +14 -12
  25. package/.nuxt/b24ui/navbar-divider.ts +1 -1
  26. package/.nuxt/b24ui/navbar-section.ts +1 -1
  27. package/.nuxt/b24ui/navbar.ts +1 -1
  28. package/.nuxt/b24ui/navigation-menu.ts +70 -754
  29. package/.nuxt/b24ui/popover.ts +2 -2
  30. package/.nuxt/b24ui/progress.ts +58 -68
  31. package/.nuxt/b24ui/prose/a.ts +1 -1
  32. package/.nuxt/b24ui/prose/blockquote.ts +1 -1
  33. package/.nuxt/b24ui/prose/code.ts +45 -9
  34. package/.nuxt/b24ui/prose/h1.ts +21 -2
  35. package/.nuxt/b24ui/prose/h2.ts +21 -12
  36. package/.nuxt/b24ui/prose/h3.ts +21 -12
  37. package/.nuxt/b24ui/prose/h4.ts +21 -12
  38. package/.nuxt/b24ui/prose/h5.ts +21 -12
  39. package/.nuxt/b24ui/prose/h6.ts +21 -12
  40. package/.nuxt/b24ui/prose/hr.ts +1 -1
  41. package/.nuxt/b24ui/prose/ol.ts +1 -1
  42. package/.nuxt/b24ui/prose/p.ts +26 -1
  43. package/.nuxt/b24ui/prose/thead.ts +1 -1
  44. package/.nuxt/b24ui/prose/ul.ts +1 -1
  45. package/.nuxt/b24ui/radio-group.ts +115 -155
  46. package/.nuxt/b24ui/range.ts +38 -26
  47. package/.nuxt/b24ui/select-menu.ts +251 -306
  48. package/.nuxt/b24ui/select.ts +246 -301
  49. package/.nuxt/b24ui/separator.ts +40 -85
  50. package/.nuxt/b24ui/sidebar-header.ts +1 -1
  51. package/.nuxt/b24ui/sidebar-heading.ts +1 -1
  52. package/.nuxt/b24ui/sidebar-layout.ts +130 -19
  53. package/.nuxt/b24ui/sidebar-section.ts +1 -1
  54. package/.nuxt/b24ui/skeleton.ts +19 -1
  55. package/.nuxt/b24ui/slideover.ts +35 -34
  56. package/.nuxt/b24ui/switch.ts +59 -48
  57. package/.nuxt/b24ui/tabs.ts +26 -239
  58. package/.nuxt/b24ui/textarea.ts +50 -236
  59. package/.nuxt/b24ui/toast.ts +38 -30
  60. package/.nuxt/b24ui/toaster.ts +1 -1
  61. package/.nuxt/b24ui/tooltip.ts +5 -5
  62. package/cli/templates.mjs +2 -1
  63. package/dist/meta.d.mts +18759 -5002
  64. package/dist/meta.mjs +18759 -5002
  65. package/dist/module.d.mts +1 -0
  66. package/dist/module.json +2 -2
  67. package/dist/module.mjs +3 -5
  68. package/dist/runtime/air-design-tokens/001_b24_global.css +1 -0
  69. package/dist/runtime/air-design-tokens/002_b24_context_utility.css +0 -0
  70. package/dist/runtime/air-design-tokens/003_b24_context_light.css +1 -0
  71. package/dist/runtime/air-design-tokens/004_b24_context_dark.css +1 -0
  72. package/dist/runtime/air-design-tokens/005_b24_context_edge-light.css +1 -0
  73. package/dist/runtime/air-design-tokens/006_b24_context_edge-dark.css +1 -0
  74. package/dist/runtime/air-design-tokens/007_b24_global.css +1 -0
  75. package/dist/runtime/air-design-tokens/008_ui_global.css +1 -0
  76. package/dist/runtime/air-design-tokens/009_b24_tools.css +1 -0
  77. package/dist/runtime/air-design-tokens/components/badge-counter.css +1 -0
  78. package/dist/runtime/air-design-tokens/components/button.css +1 -0
  79. package/dist/runtime/air-design-tokens/components/navigation-menu.css +1 -0
  80. package/dist/runtime/air-design-tokens/components/popup.css +1 -0
  81. package/dist/runtime/air-design-tokens/components/scrollbar.css +2 -0
  82. package/dist/runtime/air-design-tokens/index.css +1 -0
  83. package/dist/runtime/components/Accordion.vue.d.ts +1 -1
  84. package/dist/runtime/components/Advice.vue +1 -13
  85. package/dist/runtime/components/Advice.vue.d.ts +1 -1
  86. package/dist/runtime/components/Alert.vue +6 -4
  87. package/dist/runtime/components/Alert.vue.d.ts +11 -4
  88. package/dist/runtime/components/App.vue.d.ts +1 -1
  89. package/dist/runtime/components/Avatar.vue.d.ts +1 -1
  90. package/dist/runtime/components/AvatarGroup.vue.d.ts +1 -1
  91. package/dist/runtime/components/Badge.vue +7 -11
  92. package/dist/runtime/components/Badge.vue.d.ts +6 -8
  93. package/dist/runtime/components/Button.vue +18 -15
  94. package/dist/runtime/components/Button.vue.d.ts +5 -7
  95. package/dist/runtime/components/ButtonGroup.vue.d.ts +1 -1
  96. package/dist/runtime/components/Calendar.vue +8 -8
  97. package/dist/runtime/components/Calendar.vue.d.ts +14 -8
  98. package/dist/runtime/components/Checkbox.vue.d.ts +2 -2
  99. package/dist/runtime/components/Chip.vue +28 -7
  100. package/dist/runtime/components/Chip.vue.d.ts +22 -2
  101. package/dist/runtime/components/Collapsible.vue.d.ts +1 -1
  102. package/dist/runtime/components/Container.vue.d.ts +1 -1
  103. package/dist/runtime/components/Countdown.vue.d.ts +5 -3
  104. package/dist/runtime/components/DescriptionList.vue.d.ts +1 -1
  105. package/dist/runtime/components/DropdownMenu.vue +20 -9
  106. package/dist/runtime/components/DropdownMenu.vue.d.ts +1 -5
  107. package/dist/runtime/components/DropdownMenuContent.vue +29 -7
  108. package/dist/runtime/components/DropdownMenuContent.vue.d.ts +14 -6
  109. package/dist/runtime/components/Form.vue +3 -3
  110. package/dist/runtime/components/Form.vue.d.ts +6 -5
  111. package/dist/runtime/components/FormField.vue +2 -2
  112. package/dist/runtime/components/FormField.vue.d.ts +4 -4
  113. package/dist/runtime/components/Input.vue +8 -4
  114. package/dist/runtime/components/Input.vue.d.ts +9 -8
  115. package/dist/runtime/components/InputMenu.vue +44 -18
  116. package/dist/runtime/components/InputMenu.vue.d.ts +17 -223
  117. package/dist/runtime/components/InputNumber.vue +14 -11
  118. package/dist/runtime/components/InputNumber.vue.d.ts +13 -87
  119. package/dist/runtime/components/Kbd.vue +6 -3
  120. package/dist/runtime/components/Kbd.vue.d.ts +7 -3
  121. package/dist/runtime/components/Link.vue +6 -5
  122. package/dist/runtime/components/Link.vue.d.ts +1 -3
  123. package/dist/runtime/components/LinkBase.vue.d.ts +1 -1
  124. package/dist/runtime/components/Modal.vue +37 -33
  125. package/dist/runtime/components/Modal.vue.d.ts +2 -2
  126. package/dist/runtime/components/ModalDialogClose.vue.d.ts +1 -1
  127. package/dist/runtime/components/Navbar.vue.d.ts +1 -1
  128. package/dist/runtime/components/NavbarDivider.vue.d.ts +1 -1
  129. package/dist/runtime/components/NavbarSection.vue.d.ts +1 -1
  130. package/dist/runtime/components/NavbarSpacer.vue.d.ts +1 -1
  131. package/dist/runtime/components/NavigationMenu.vue +95 -84
  132. package/dist/runtime/components/NavigationMenu.vue.d.ts +31 -33
  133. package/dist/runtime/components/OverlayProvider.vue.d.ts +1 -1
  134. package/dist/runtime/components/Popover.vue +8 -2
  135. package/dist/runtime/components/Popover.vue.d.ts +9 -3
  136. package/dist/runtime/components/Progress.vue.d.ts +3 -3
  137. package/dist/runtime/components/RadioGroup.vue +1 -1
  138. package/dist/runtime/components/RadioGroup.vue.d.ts +6 -5
  139. package/dist/runtime/components/Range.vue.d.ts +6 -6
  140. package/dist/runtime/components/Select.vue +25 -11
  141. package/dist/runtime/components/Select.vue.d.ts +7 -7
  142. package/dist/runtime/components/SelectMenu.vue +38 -19
  143. package/dist/runtime/components/SelectMenu.vue.d.ts +11 -10
  144. package/dist/runtime/components/Separator.vue +4 -4
  145. package/dist/runtime/components/Separator.vue.d.ts +6 -3
  146. package/dist/runtime/components/Sidebar.vue.d.ts +4 -1
  147. package/dist/runtime/components/SidebarBody.vue.d.ts +4 -1
  148. package/dist/runtime/components/SidebarFooter.vue.d.ts +4 -1
  149. package/dist/runtime/components/SidebarHeader.vue.d.ts +4 -1
  150. package/dist/runtime/components/SidebarHeading.vue.d.ts +4 -1
  151. package/dist/runtime/components/SidebarLayout.vue +148 -63
  152. package/dist/runtime/components/SidebarLayout.vue.d.ts +61 -8
  153. package/dist/runtime/components/SidebarSection.vue.d.ts +4 -1
  154. package/dist/runtime/components/SidebarSpacer.vue.d.ts +4 -1
  155. package/dist/runtime/components/Skeleton.vue +7 -3
  156. package/dist/runtime/components/Skeleton.vue.d.ts +12 -1
  157. package/dist/runtime/components/Slideover.vue +120 -43
  158. package/dist/runtime/components/Slideover.vue.d.ts +22 -9
  159. package/dist/runtime/components/Switch.vue.d.ts +2 -2
  160. package/dist/runtime/components/Tabs.vue +11 -3
  161. package/dist/runtime/components/Tabs.vue.d.ts +8 -7
  162. package/dist/runtime/components/Textarea.vue +8 -4
  163. package/dist/runtime/components/Textarea.vue.d.ts +8 -7
  164. package/dist/runtime/components/Toast.vue +16 -8
  165. package/dist/runtime/components/Toast.vue.d.ts +16 -15
  166. package/dist/runtime/components/Toaster.vue.d.ts +2 -2
  167. package/dist/runtime/components/Tooltip.vue +9 -5
  168. package/dist/runtime/components/Tooltip.vue.d.ts +7 -1
  169. package/dist/runtime/components/content/TableWrapper.vue.d.ts +1 -1
  170. package/dist/runtime/composables/defineShortcuts.js +5 -3
  171. package/dist/runtime/composables/useAvatarGroup.d.ts +1 -1
  172. package/dist/runtime/composables/useButtonGroup.d.ts +1 -1
  173. package/dist/runtime/composables/useComponentIcons.d.ts +1 -1
  174. package/dist/runtime/composables/useFormField.d.ts +4 -7
  175. package/dist/runtime/composables/useFormField.js +6 -3
  176. package/dist/runtime/composables/useKbd.d.ts +1 -1
  177. package/dist/runtime/composables/useLocale.js +2 -2
  178. package/dist/runtime/composables/useOverlay.d.ts +29 -2
  179. package/dist/runtime/composables/useOverlay.js +8 -7
  180. package/dist/runtime/composables/usePortal.d.ts +1 -1
  181. package/dist/runtime/composables/useSidebarLayout.d.ts +20 -0
  182. package/dist/runtime/composables/useSidebarLayout.js +16 -0
  183. package/dist/runtime/dictionary/icons.js +7 -7
  184. package/dist/runtime/index.css +1 -1
  185. package/dist/runtime/inertia/components/Link.vue +3 -0
  186. package/dist/runtime/inertia/components/Link.vue.d.ts +1 -1
  187. package/dist/runtime/inertia/components/LinkBase.vue.d.ts +1 -1
  188. package/dist/runtime/inertia/stubs.d.ts +1 -0
  189. package/dist/runtime/inertia/stubs.js +4 -2
  190. package/dist/runtime/locale/ar.js +6 -0
  191. package/dist/runtime/locale/br.js +6 -0
  192. package/dist/runtime/locale/de.js +6 -0
  193. package/dist/runtime/locale/en.js +6 -0
  194. package/dist/runtime/locale/fr.js +6 -0
  195. package/dist/runtime/locale/id.js +6 -0
  196. package/dist/runtime/locale/it.js +6 -0
  197. package/dist/runtime/locale/ja.js +6 -0
  198. package/dist/runtime/locale/kz.js +6 -0
  199. package/dist/runtime/locale/la.js +6 -0
  200. package/dist/runtime/locale/ms.js +6 -0
  201. package/dist/runtime/locale/pl.js +6 -0
  202. package/dist/runtime/locale/ru.js +6 -0
  203. package/dist/runtime/locale/sc.js +6 -0
  204. package/dist/runtime/locale/tc.js +6 -0
  205. package/dist/runtime/locale/th.js +6 -0
  206. package/dist/runtime/locale/tr.js +6 -0
  207. package/dist/runtime/locale/ua.js +6 -0
  208. package/dist/runtime/locale/vn.js +6 -0
  209. package/dist/runtime/plugins/ui-version.d.ts +5 -0
  210. package/dist/runtime/plugins/ui-version.js +8 -0
  211. package/dist/runtime/prose/A.vue.d.ts +4 -1
  212. package/dist/runtime/prose/Blockquote.vue.d.ts +4 -1
  213. package/dist/runtime/prose/Code.vue.d.ts +4 -1
  214. package/dist/runtime/prose/Em.vue.d.ts +4 -1
  215. package/dist/runtime/prose/H1.vue +4 -1
  216. package/dist/runtime/prose/H1.vue.d.ts +7 -1
  217. package/dist/runtime/prose/H2.vue +4 -1
  218. package/dist/runtime/prose/H2.vue.d.ts +7 -1
  219. package/dist/runtime/prose/H3.vue +4 -1
  220. package/dist/runtime/prose/H3.vue.d.ts +7 -1
  221. package/dist/runtime/prose/H4.vue +4 -1
  222. package/dist/runtime/prose/H4.vue.d.ts +7 -1
  223. package/dist/runtime/prose/H5.vue +4 -1
  224. package/dist/runtime/prose/H5.vue.d.ts +7 -1
  225. package/dist/runtime/prose/H6.vue +4 -1
  226. package/dist/runtime/prose/H6.vue.d.ts +7 -1
  227. package/dist/runtime/prose/Hr.vue.d.ts +1 -1
  228. package/dist/runtime/prose/Img.vue.d.ts +1 -1
  229. package/dist/runtime/prose/Li.vue.d.ts +4 -1
  230. package/dist/runtime/prose/Ol.vue.d.ts +4 -1
  231. package/dist/runtime/prose/P.vue +6 -1
  232. package/dist/runtime/prose/P.vue.d.ts +12 -1
  233. package/dist/runtime/prose/Pre.vue.d.ts +4 -1
  234. package/dist/runtime/prose/Strong.vue.d.ts +4 -1
  235. package/dist/runtime/prose/Table.vue.d.ts +5 -2
  236. package/dist/runtime/prose/Tbody.vue.d.ts +4 -1
  237. package/dist/runtime/prose/Td.vue.d.ts +4 -1
  238. package/dist/runtime/prose/Th.vue.d.ts +4 -1
  239. package/dist/runtime/prose/Thead.vue.d.ts +4 -1
  240. package/dist/runtime/prose/Tr.vue.d.ts +4 -1
  241. package/dist/runtime/prose/Ul.vue.d.ts +4 -1
  242. package/dist/runtime/types/index.d.ts +1 -2
  243. package/dist/runtime/types/index.js +1 -2
  244. package/dist/runtime/types/locale.d.ts +6 -0
  245. package/dist/runtime/utils/index.d.ts +6 -0
  246. package/dist/runtime/utils/index.js +27 -0
  247. package/dist/runtime/utils/tv.js +66 -1
  248. package/dist/runtime/vue/components/Link.vue +3 -0
  249. package/dist/runtime/vue/components/Link.vue.d.ts +1 -1
  250. package/dist/runtime/vue/stubs.d.ts +1 -0
  251. package/dist/runtime/vue/stubs.js +3 -1
  252. package/dist/shared/b24ui-nuxt.dLc5H7ID.mjs +6100 -0
  253. package/dist/unplugin.mjs +1 -1
  254. package/dist/vite.mjs +1 -1
  255. package/package.json +40 -28
  256. package/.nuxt/b24ui/stacked-layout.ts +0 -34
  257. package/dist/runtime/air-design-tokens.css +0 -1
  258. package/dist/runtime/components/StackedLayout.vue +0 -117
  259. package/dist/runtime/components/StackedLayout.vue.d.ts +0 -44
  260. package/dist/shared/b24ui-nuxt.CxsFEY3M.mjs +0 -7895
@@ -1,11 +1,18 @@
1
1
  const size = [
2
+ "xss",
2
3
  "xs",
3
4
  "sm",
4
5
  "md",
5
- "lg"
6
+ "lg",
7
+ "xl"
6
8
  ] as const
7
9
 
8
10
  const color = [
11
+ "air-primary",
12
+ "air-primary-success",
13
+ "air-primary-alert",
14
+ "air-primary-copilot",
15
+ "air-primary-warning",
9
16
  "default",
10
17
  "danger",
11
18
  "success",
@@ -16,7 +23,16 @@ const color = [
16
23
  "ai"
17
24
  ] as const
18
25
 
19
- const tagColor = [
26
+ const type = [
27
+ "file"
28
+ ] as const
29
+
30
+ const colorItem = [
31
+ "air-primary",
32
+ "air-primary-success",
33
+ "air-primary-alert",
34
+ "air-primary-copilot",
35
+ "air-primary-warning",
20
36
  "default",
21
37
  "danger",
22
38
  "success",
@@ -27,40 +43,36 @@ const tagColor = [
27
43
  "ai"
28
44
  ] as const
29
45
 
30
- const type = [
31
- "file"
32
- ] as const
33
-
34
46
  export default {
35
47
  "slots": {
36
48
  "root": "isolate relative inline-flex items-center w-full",
37
- "base": "py-0 w-full border-0 focus:outline-none disabled:cursor-not-allowed disabled:bg-base-30/37 disabled:resize-none disabled:text-base-500 dark:disabled:bg-base-900/37 dark:disabled:text-base-800 appearance-none transition duration-300 ease-linear ring ring-inset ring-base-300 dark:ring-base-800 text-base-master bg-white placeholder:text-base-400 hover:text-base-900 focus:text-base-900 active:text-base-900 dark:text-base-150 dark:bg-transparent dark:placeholder:text-base-300 dark:hover:text-base-350 dark:focus:text-base-350 dark:active:text-base-350 font-b24-primary font-regular text-md leading-none align-middle transition-colors",
49
+ "base": "w-full py-0 border-0 focus:outline-none disabled:cursor-not-allowed disabled:pointer-events-none disabled:opacity-30 disabled:resize-none appearance-none transition duration-300 ease-linear transition-colors ring ring-inset ring-(--ui-color-design-outline-stroke) text-(--ui-color-base-1) style-blurred-bg-input hover:text-(--ui-color-base-1) focus:text-(--ui-color-base-1) active:text-(--ui-color-base-1) placeholder:text-(--ui-color-design-plain-na-content-secondary) font-[family-name:var(--ui-font-family-primary)] font-(--ui-font-weight-regular) align-middle focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-(--b24ui-border-color)",
38
50
  "leading": "absolute inset-y-0 start-0 flex items-center",
39
- "leadingIcon": "shrink-0 text-base-400",
51
+ "leadingIcon": "shrink-0 text-(--b24ui-icon-color)",
40
52
  "leadingAvatar": "shrink-0",
41
53
  "leadingAvatarSize": "",
42
- "trailing": "group absolute inset-y-0 end-0 flex items-center disabled:cursor-not-allowed disabled:opacity-75",
43
- "trailingIcon": "shrink-0 text-base-400",
44
- "tag": "pointer-events-none select-none absolute z-10 -top-1.5 right-3 h-sm px-1.5 flex flex-col justify-center items-center font-b24-primary font-bold text-6xs leading-none uppercase rounded-full",
45
- "arrow": "fill-base-master/10 dark:fill-base-100/20",
46
- "content": "w-(--reka-combobox-trigger-width) min-w-fit bg-white dark:bg-base-dark shadow-md rounded-2xs ring ring-base-300 dark:ring-base-800 overflow-hidden data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-combobox-content-transform-origin) flex flex-col pointer-events-auto",
47
- "viewport": "relative divide-y divide-base-master/10 dark:divide-base-100/20 scroll-py-1 overflow-y-auto flex-1",
48
- "group": "p-1 isolate",
49
- "empty": "py-2 text-center text-sm text-base-500 dark:text-base-600",
50
- "label": "flex items-center font-semibold text-base-900 dark:text-base-200",
51
- "separator": "-mx-1 my-1 h-px bg-base-master/10 dark:bg-base-100/20",
52
- "item": "group relative w-full flex items-center select-none outline-none before:absolute before:z-[-1] before:inset-px before:rounded-2xs cursor-pointer data-disabled:cursor-not-allowed data-disabled:opacity-75 text-base-master dark:text-base-150 data-highlighted:not-data-disabled:text-base-900 dark:data-highlighted:not-data-disabled:text-base-200 data-highlighted:not-data-disabled:before:bg-base-100/50 dark:data-highlighted:not-data-disabled:before:bg-base-900 data-[state=checked]:text-base-900 dark:data-[state=checked]:text-base-200 data-[state=checked]:before:bg-base-100/50 dark:data-[state=checked]:before:bg-base-900 transition-colors before:transition-colors",
53
- "itemLeadingIcon": "shrink-0 text-base-500 dark:text-base-700 group-data-highlighted:not-data-disabled:text-base-master dark:group-data-highlighted:not-data-disabled:text-base-150 group-data-[state=checked]:text-base-master dark:group-data-[state=checked]:text-base-150 transition-colors",
54
- "itemLeadingAvatar": "shrink-0",
55
- "itemLeadingAvatarSize": "",
56
- "itemLeadingChip": "shrink-0",
57
- "itemLeadingChipSize": "",
58
- "itemTrailing": "ms-auto inline-flex gap-1.5 items-center",
59
- "itemTrailingIcon": "shrink-0",
60
- "itemLabel": "truncate",
61
- "tagsItem": "px-2 rounded-2xs font-b24-secondary font-normal leading-normal inline-flex items-center gap-1 ring ring-inset data-disabled:cursor-not-allowed data-disabled:opacity-75 text-blue-700 bg-blue-250 ring-blue-250 dark:text-blue-700 dark:bg-blue-300 dark:ring-blue-300",
62
- "tagsItemText": "truncate",
63
- "tagsItemDelete": "cursor-pointer hover:rounded-full inline-flex items-center rounded-md disabled:pointer-events-none text-base-500 hover:text-base-master hover:bg-blue-300 dark:text-base-500 dark:text-base-700 dark:hover:text-base-master dark:hover:bg-blue-400 transition-colors",
54
+ "trailing": "group absolute inset-y-0 end-0 flex items-center disabled:cursor-not-allowed disabled:opacity-30",
55
+ "trailingIcon": "shrink-0 text-(--b24ui-icon-color)",
56
+ "tag": "pointer-events-none select-none absolute z-10 -top-[7px] right-[14px] flex flex-col justify-center items-center",
57
+ "content": "light bg-(--popup-window-background-color) shadow-(--popup-window-box-shadow) rounded-(--popup-window-border-radius) will-change-[opacity] motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in] origin-(--reka-dropdown-menu-content-transform-origin) font-[family-name:var(--ui-font-family-primary)] relative isolate px-0 py-(--menu-popup-padding) pointer-events-auto",
58
+ "viewport": "relative w-[240px] max-h-[40vh] overflow-x-hidden overflow-y-auto scrollbar-thin",
59
+ "arrow": "fill-(--popup-window-background-color)",
60
+ "group": "grid",
61
+ "empty": "h-(--popup-window-delimiter-section-height) py-[8px] select-none outline-none whitespace-nowrap text-center text-(length:--popup-window-delimiter-font-size)/(--ui-font-line-height-lg) text-(--popup-window-delimiter-text-color) font-(--popup-window-delimiter-font-weight)",
62
+ "label": "w-full min-w-[195px] h-(--popup-window-delimiter-section-height) px-[18px] mt-(--menu-item-block-stack-space) flex flex-row rtl:flex-row-reverse items-center select-none outline-none whitespace-nowrap text-start text-(length:--popup-window-delimiter-font-size) text-(--popup-window-delimiter-text-color) font-(--popup-window-delimiter-font-weight) after:ms-[10px] after:block after:flex-1 after:min-w-[15px] after:h-px after:bg-(--popup-window-delimiter-bg-color)",
63
+ "separator": "my-[8px] mx-[18px] h-[1px] bg-(--popup-window-delimiter-bg-color)",
64
+ "item": "group w-full min-w-[195px] h-[36px] px-[18px] mt-(--menu-item-block-stack-space) relative flex flex-row rtl:flex-row-reverse items-center select-none outline-none whitespace-nowrap cursor-pointer data-disabled:cursor-not-allowed data-disabled:opacity-30 text-start text-(length:--menu-popup-item-font-size) text-(--menu-popup-item-color) hover:text-(--menu-popup-item-color-hover) data-highlighted:not-data-disabled:text-(--menu-popup-item-color-hover) data-[state=open]:text-(--menu-popup-item-color-hover) data-[state=checked]:text-(--menu-popup-item-color-hover) hover:bg-(--menu-popup-item-bg-color-hover) data-highlighted:bg-(--menu-popup-item-bg-color-hover) data-[state=open]:bg-(--menu-popup-item-bg-color-hover) transition-colors",
65
+ "itemLeadingIcon": "shrink-0 size-[18px] text-(--ui-color-design-plain-content-icon-secondary) group-data-highlighted:not-data-disabled:text-(--ui-color-accent-main-primary) group-data-[state=open]:text-(--ui-color-accent-main-primary) group-data-[state=checked]:text-(--ui-color-accent-main-primary) transition-colors",
66
+ "itemLeadingAvatar": "shrink-0 size-[16px] mx-px",
67
+ "itemLeadingAvatarSize": "2xs",
68
+ "itemLeadingChip": "shrink-0 size-[16px] mx-px",
69
+ "itemLeadingChipSize": "sm",
70
+ "itemTrailing": "ml-auto rtl:ml-0 rtl:mr-auto inline-flex gap-1.5 items-center",
71
+ "itemTrailingIcon": "shrink-0 size-[24px] text-(--ui-color-design-plain-content-icon-secondary)",
72
+ "itemLabel": "truncate ms-[2px] -mt-px group-data-[state=checked]:text-(--ui-color-accent-main-primary)",
73
+ "tagsItem": "ps-[13px] pe-[6px] rounded-(--ui-border-radius-xs) h-(--main-ui-square-item-height) leading-(--main-ui-square-item-height) font-[family-name:var(--ui-font-family-primary)] font-(--ui-font-weight-regular) inline-flex items-center gap-1 data-disabled:cursor-not-allowed data-disabled:opacity-30 text-(--ui-color-design-tinted-content) bg-(--ui-color-design-tinted-bg-alt)",
74
+ "tagsItemText": "truncate max-w-[180px]",
75
+ "tagsItemDelete": "cursor-pointer inline-flex items-center disabled:pointer-events-none text-(--b24ui-icon-color-secondary) hover:text-(--b24ui-icon-color-secondary-hover) transition-none",
64
76
  "tagsItemDeleteIcon": "",
65
77
  "tagsInput": ""
66
78
  },
@@ -79,114 +91,118 @@ export default {
79
91
  "false": "group-not-only:not-first:after:content-[''] group-not-only:not-first:after:absolute group-not-only:not-first:after:top-[7px] group-not-only:not-first:after:bottom-[6px] group-not-only:not-first:after:left-0 group-not-only:not-first:after:w-px group-not-only:not-first:after:bg-current/30"
80
92
  },
81
93
  "size": {
94
+ "xss": {
95
+ "base": "[--main-ui-square-item-height:12px] h-[20px] gap-1 text-(length:--ui-font-size-4xs)/[normal]",
96
+ "leading": "px-1",
97
+ "trailing": "px-1",
98
+ "leadingIcon": "size-[12px]",
99
+ "leadingAvatarSize": "3xs",
100
+ "trailingIcon": "size-[12px]",
101
+ "tagsInput": "text-(length:--ui-font-size-4xs)/[normal]",
102
+ "tagsItem": "text-(length:--ui-font-size-5xs)/(--main-ui-square-item-height) gap-0.5",
103
+ "tagsItemDeleteIcon": "size-[10px]"
104
+ },
82
105
  "xs": {
83
- "base": "h-xl2 gap-1",
106
+ "base": "[--main-ui-square-item-height:16px] h-[24px] gap-1 text-(length:--ui-font-size-xs)/[normal]",
84
107
  "leading": "px-1",
85
108
  "trailing": "px-1",
86
- "leadingIcon": "size-lg2",
87
- "leadingAvatarSize": "2xs",
88
- "trailingIcon": "size-lg2",
89
- "tagsItem": "text-5xs h-[14px] gap-0.5",
90
- "tagsItemDeleteIcon": "size-sm",
91
- "label": "h-9 ps-2 pe-3 text-sm gap-2",
92
- "item": "h-9 ps-3 pe-3 text-sm gap-2",
93
- "itemLeadingIcon": "size-5",
94
- "itemLeadingAvatarSize": "2xs",
95
- "itemLeadingChip": "size-3 not-group-data-reka-collection-item:ps-2.5",
96
- "itemLeadingChipSize": "sm",
97
- "itemTrailingIcon": "size-3"
109
+ "leadingIcon": "size-[14px]",
110
+ "leadingAvatarSize": "3xs",
111
+ "trailingIcon": "size-[14px]",
112
+ "tagsInput": "text-(length:--ui-font-size-xs)/[normal]",
113
+ "tagsItem": "text-(length:--ui-font-size-5xs)/(--main-ui-square-item-height) gap-0.5",
114
+ "tagsItemDeleteIcon": "size-[10px]"
98
115
  },
99
116
  "sm": {
100
- "base": "h-8 gap-1.5",
117
+ "base": "[--main-ui-square-item-height:20px] h-[28px] gap-1.5 text-(length:--ui-font-size-sm)/[normal]",
101
118
  "leading": "px-1.5",
102
119
  "trailing": "px-1.5",
103
- "leadingIcon": "size-lg2",
104
- "leadingAvatarSize": "xs",
105
- "trailingIcon": "size-lg2",
106
- "tagsItem": "text-5xs h-[14px] gap-0.5",
107
- "tagsItemDeleteIcon": "size-3",
108
- "label": "h-9 ps-2 pe-3 text-sm gap-2",
109
- "item": "h-9 ps-3 pe-3 text-sm gap-2",
110
- "itemLeadingIcon": "size-5",
111
- "itemLeadingAvatarSize": "2xs",
112
- "itemLeadingChip": "size-3 not-group-data-reka-collection-item:ps-2.5",
113
- "itemLeadingChipSize": "sm",
114
- "itemTrailingIcon": "size-3"
120
+ "leadingIcon": "size-[16px]",
121
+ "leadingAvatar": "size-[16px]",
122
+ "leadingAvatarSize": "2xs",
123
+ "trailingIcon": "size-[16px]",
124
+ "tagsInput": "text-(length:--ui-font-size-sm)/[normal]",
125
+ "tagsItem": "text-(length:--ui-font-size-5xs)/(--main-ui-square-item-height) gap-0.5",
126
+ "tagsItemDeleteIcon": "size-[12px]"
115
127
  },
116
128
  "md": {
117
- "base": "h-10 gap-1.5",
129
+ "base": "[--main-ui-square-item-height:24px] h-[34px] gap-1.5 text-(length:--ui-font-size-lg)/[normal]",
118
130
  "leading": "px-2",
119
131
  "trailing": "px-2",
120
- "leadingIcon": "size-[24px]",
121
- "leadingAvatarSize": "sm",
122
- "trailingIcon": "size-lg2",
123
- "tagsItem": "text-md h-[31px] gap-1",
124
- "tagsItemDeleteIcon": "size-3.5",
125
- "label": "h-9 ps-2 pe-3 text-sm gap-2",
126
- "item": "h-9 ps-3 pe-3 text-sm gap-2",
127
- "itemLeadingIcon": "size-5",
128
- "itemLeadingAvatarSize": "2xs",
129
- "itemLeadingChip": "size-3 not-group-data-reka-collection-item:ps-2.5",
130
- "itemLeadingChipSize": "sm",
131
- "itemTrailingIcon": "size-3"
132
+ "leadingIcon": "size-[18px]",
133
+ "leadingAvatarSize": "2xs",
134
+ "trailingIcon": "size-[18px]",
135
+ "tagsInput": "text-(length:--ui-font-size-lg)/[normal]",
136
+ "tagsItem": "text-(length:--ui-font-size-sm)/(--main-ui-square-item-height) gap-[4px]",
137
+ "tagsItemDeleteIcon": "size-[18px]"
132
138
  },
133
139
  "lg": {
134
- "base": "h-12 gap-2",
140
+ "base": "[--main-ui-square-item-height:28px] h-[38px] gap-2 text-(length:--ui-font-size-lg)/[normal]",
141
+ "leading": "px-2",
142
+ "trailing": "px-2",
143
+ "leadingIcon": "size-[22px]",
144
+ "leadingAvatarSize": "2xs",
145
+ "trailingIcon": "size-[22px]",
146
+ "tagsInput": "text-(length:--ui-font-size-lg)/[normal]",
147
+ "tagsItem": "text-(length:--ui-font-size-md)/(--main-ui-square-item-height) gap-1",
148
+ "tagsItemDeleteIcon": "size-[22px]"
149
+ },
150
+ "xl": {
151
+ "base": "[--main-ui-square-item-height:32px] h-[46px] gap-2 text-(length:--ui-font-size-2xl)/[normal]",
135
152
  "leading": "px-2",
136
153
  "trailing": "px-2",
137
- "leadingIcon": "size-[24px]",
138
- "leadingAvatarSize": "md",
139
- "trailingIcon": "size-lg2",
140
- "tagsItem": "text-md h-[31px] gap-1",
141
- "tagsItemDeleteIcon": "size-3.5",
142
- "label": "h-9 ps-2 pe-3 text-sm gap-2",
143
- "item": "h-9 ps-3 pe-3 text-sm gap-2",
144
- "itemLeadingIcon": "size-5",
145
- "itemLeadingAvatarSize": "2xs",
146
- "itemLeadingChip": "size-3 not-group-data-reka-collection-item:ps-2.5",
147
- "itemLeadingChipSize": "sm",
148
- "itemTrailingIcon": "size-3"
154
+ "leadingIcon": "size-[22px]",
155
+ "leadingAvatarSize": "2xs",
156
+ "trailingIcon": "size-[22px]",
157
+ "tagsInput": "text-(length:--ui-font-size-2xl)/[normal]",
158
+ "tagsItem": "text-(length:--ui-font-size-xl)/(--main-ui-square-item-height) gap-1",
159
+ "tagsItemDeleteIcon": "size-[22px]"
149
160
  }
150
161
  },
151
162
  "color": {
152
- "default": "",
153
- "danger": "",
154
- "success": "",
155
- "warning": "",
156
- "primary": "",
157
- "secondary": "",
158
- "collab": "",
159
- "ai": ""
160
- },
161
- "tagColor": {
163
+ "air-primary": {
164
+ "base": "style-filled"
165
+ },
166
+ "air-primary-success": {
167
+ "base": "style-filled-success"
168
+ },
169
+ "air-primary-alert": {
170
+ "base": "style-filled-alert"
171
+ },
172
+ "air-primary-copilot": {
173
+ "base": "style-filled-copilot"
174
+ },
175
+ "air-primary-warning": {
176
+ "base": "style-filled-warning"
177
+ },
162
178
  "default": {
163
- "tag": "text-white bg-base-900 dark:text-base-150 dark:bg-base-900"
179
+ "base": "style-old-default"
164
180
  },
165
181
  "danger": {
166
- "tag": "text-white bg-red-500 dark:text-red-250 dark:bg-red-600"
182
+ "base": "style-old-danger"
167
183
  },
168
184
  "success": {
169
- "tag": "text-white bg-green-500 dark:text-green-250 dark:bg-green-600"
185
+ "base": "style-old-success"
170
186
  },
171
187
  "warning": {
172
- "tag": "text-white bg-orange-500 dark:text-orange-250 dark:bg-orange-600"
188
+ "base": "style-old-warning"
173
189
  },
174
190
  "primary": {
175
- "tag": "text-white bg-blue-500 dark:text-blue-250 dark:bg-blue-600"
191
+ "base": "style-old-primary"
176
192
  },
177
193
  "secondary": {
178
- "tag": "text-white bg-cyan-350 dark:text-base-150 dark:bg-cyan-500"
194
+ "base": "style-old-secondary"
179
195
  },
180
196
  "collab": {
181
- "tag": "text-white bg-collab-500 dark:text-collab-200 dark:bg-collab-800"
197
+ "base": "style-old-collab"
182
198
  },
183
199
  "ai": {
184
- "tag": "text-white bg-ai-500 dark:text-ai-200 dark:bg-ai-800"
200
+ "base": "style-old-ai"
185
201
  }
186
202
  },
187
203
  "rounded": {
188
- "true": "rounded-3xl",
189
- "false": "rounded-2xs"
204
+ "true": "rounded-(--ui-border-radius-3xl)",
205
+ "false": "rounded-(--ui-border-radius-sm)"
190
206
  },
191
207
  "noPadding": {
192
208
  "true": {
@@ -194,10 +210,10 @@ export default {
194
210
  }
195
211
  },
196
212
  "noBorder": {
197
- "true": "ring-0 focus-visible:ring-0"
213
+ "true": "ring-0 focus-visible:ring-0 style-transparent-bg"
198
214
  },
199
215
  "underline": {
200
- "true": "ring-0 focus-visible:ring-0 border-b border-b-base-300 rounded-none"
216
+ "true": "ring-0 focus-visible:ring-0 style-transparent-bg border-b-1 border-b-(--ui-color-design-outline-stroke) rounded-none"
201
217
  },
202
218
  "leading": {
203
219
  "true": ""
@@ -209,389 +225,311 @@ export default {
209
225
  "true": ""
210
226
  },
211
227
  "highlight": {
212
- "true": ""
228
+ "true": "ring ring-inset ring-(--b24ui-border-color)"
213
229
  },
214
230
  "type": {
215
- "file": "file:me-1.5 file:text-base-500 file:outline-none"
231
+ "file": [
232
+ "file:me-1.5",
233
+ "file:text-(--ui-color-design-plain-na-content-secondary)",
234
+ "file:outline-none"
235
+ ]
216
236
  },
217
237
  "addNew": {
218
238
  "true": {
219
- "group": "p-0 isolate -m-px",
220
- "item": "before:rounded-none text-base-master dark:text-base-150 before:bg-blue-200 dark:before:bg-blue-800 data-highlighted:text-base-900 dark:data-highlighted:text-base-200 data-highlighted:before:bg-blue-200 dark:data-highlighted:before:bg-blue-800 data-[state=checked]:text-base-900 dark:data-[state=checked]:text-base-200 data-[state=checked]:before:bg-blue-200 dark:data-[state=checked]:before:bg-blue-800",
239
+ "group": "",
240
+ "item": "text-(--menu-popup-item-color) data-highlighted:not-data-disabled:text-(--menu-popup-item-color-hover) data-[state=checked]:text-(--menu-popup-item-color-hover)",
221
241
  "itemLabel": "flex flex-row flex-nowrap items-center justify-start gap-2",
222
- "itemLeadingIcon": "size-5 rounded-full text-white dark:text-base-150 bg-blue-500 dark:bg-blue-600 group-data-highlighted:text-white dark:group-data-highlighted:text-base-150 group-data-highlighted:bg-blue-500 dark:group-data-highlighted:bg-blue-600 group-data-[state=checked]:text-white dark:group-data-[state=checked]:text-base-150 group-data-[state=checked]:bg-blue-500 dark:group-data-[state=checked]:bg-blue-600"
242
+ "itemLeadingIcon": "size-[20px] rounded-full text-(--ui-color-base-white-fixed) bg-(--ui-color-design-selection-content-icon-secondary) group-data-highlighted:not-data-disabled:text-(--ui-color-base-white-fixed) group-data-highlighted:not-data-disabled:bg-(--ui-color-design-selection-content-icon) group-data-[state=checked]:text-(--ui-color-base-white-fixed) group-data-[state=checked]:bg-(--ui-color-design-selection-content-icon)"
223
243
  }
224
244
  },
225
245
  "multiple": {
226
246
  "true": {
227
247
  "root": "flex-wrap",
228
- "base": "py-1.5 ps-1.5 pe-[39px]",
229
- "tagsInput": "w-2/5 border-0 bg-transparent ps-1.5 pe-3 py-0 placeholder:text-base-400 dark:placeholder:text-base-300 focus:outline-none disabled:cursor-not-allowed disabled:opacity-75 focus:ring-0 focus-visible:ring-0"
248
+ "base": "py-[6px] ps-[6px] pe-[39px]",
249
+ "tagsInput": "flex-1 border-0 bg-transparent ps-[6px] pe-[0px] py-0 placeholder:text-(--ui-color-design-plain-na-content-secondary) focus:outline-none disabled:cursor-not-allowed disabled:opacity-30 focus:ring-0 focus-visible:ring-0"
230
250
  },
231
251
  "false": {
232
- "base": "px-3 placeholder:text-base-400 dark:placeholder:text-base-300 focus:outline-none disabled:cursor-not-allowed disabled:opacity-75"
252
+ "base": "px-3 placeholder:text-(--ui-color-design-plain-na-content-secondary) focus:outline-none disabled:cursor-not-allowed disabled:opacity-30"
233
253
  }
234
254
  },
235
255
  "colorItem": {
236
- "default": "",
256
+ "air-primary": {
257
+ "item": "style-filled"
258
+ },
259
+ "air-primary-success": {
260
+ "item": "style-filled-success"
261
+ },
262
+ "air-primary-alert": {
263
+ "item": "style-filled-alert"
264
+ },
265
+ "air-primary-copilot": {
266
+ "item": "style-filled-copilot"
267
+ },
268
+ "air-primary-warning": {
269
+ "item": "style-filled-warning"
270
+ },
271
+ "default": {
272
+ "item": "style-old-default"
273
+ },
237
274
  "danger": {
238
- "item": "text-red-900 dark:text-red-150 data-highlighted:text-red-900 dark:data-highlighted:text-red-200 data-highlighted:before:bg-red-100 dark:data-highlighted:before:bg-red-900 data-[state=checked]:text-red-900 dark:data-[state=checked]:text-red-200 data-[state=checked]:before:bg-red-100 dark:data-[state=checked]:before:bg-red-900",
239
- "itemLeadingIcon": "text-red-600 dark:text-red-700 group-data-highlighted:text-red-900 dark:group-data-highlighted:text-red-150 group-data-[state=checked]:text-red-900 dark:group-data-[state=checked]:text-red-700"
275
+ "item": "style-old-danger"
240
276
  },
241
277
  "success": {
242
- "item": "text-green-900 dark:text-green-150 data-highlighted:text-green-900 dark:data-highlighted:text-green-200 data-highlighted:before:bg-green-100 dark:data-highlighted:before:bg-green-900 data-[state=checked]:text-green-900 dark:data-[state=checked]:text-green-200 data-[state=checked]:before:bg-green-100 dark:data-[state=checked]:before:bg-green-900",
243
- "itemLeadingIcon": "text-green-600 dark:text-green-700 group-data-highlighted:text-green-900 dark:group-data-highlighted:text-green-150 group-data-[state=checked]:text-green-900 dark:group-data-[state=checked]:text-green-700"
278
+ "item": "style-old-success"
244
279
  },
245
280
  "warning": {
246
- "item": "text-orange-900 dark:text-orange-150 data-highlighted:text-orange-900 dark:data-highlighted:text-orange-200 data-highlighted:before:bg-orange-100 dark:data-highlighted:before:bg-orange-900 data-[state=checked]:text-orange-900 dark:data-[state=checked]:text-orange-200 data-[state=checked]:before:bg-orange-100 dark:data-[state=checked]:before:bg-orange-900",
247
- "itemLeadingIcon": "text-orange-600 dark:text-orange-700 group-data-highlighted:text-orange-900 dark:group-data-highlighted:text-orange-150 group-data-[state=checked]:text-orange-900 dark:group-data-[state=checked]:text-orange-700"
281
+ "item": "style-old-warning"
248
282
  },
249
283
  "primary": {
250
- "item": "text-blue-900 dark:text-blue-150 data-highlighted:text-blue-900 dark:data-highlighted:text-blue-200 data-highlighted:before:bg-blue-100 dark:data-highlighted:before:bg-blue-900 data-[state=checked]:text-blue-900 dark:data-[state=checked]:text-blue-200 data-[state=checked]:before:bg-blue-100 dark:data-[state=checked]:before:bg-blue-900",
251
- "itemLeadingIcon": "text-blue-600 dark:text-blue-700 group-data-highlighted:text-blue-900 dark:group-data-highlighted:text-blue-150 group-data-[state=checked]:text-blue-900 dark:group-data-[state=checked]:text-blue-700"
284
+ "item": "style-old-primary"
252
285
  },
253
286
  "secondary": {
254
- "item": "text-cyan-900 dark:text-cyan-150 data-highlighted:text-cyan-900 dark:data-highlighted:text-cyan-200 data-highlighted:before:bg-cyan-100 dark:data-highlighted:before:bg-cyan-900 data-[state=checked]:text-cyan-900 dark:data-[state=checked]:text-cyan-200 data-[state=checked]:before:bg-cyan-100 dark:data-[state=checked]:before:bg-cyan-900",
255
- "itemLeadingIcon": "text-cyan-600 dark:text-cyan-700 group-data-highlighted:text-cyan-900 dark:group-data-highlighted:text-cyan-150 group-data-[state=checked]:text-cyan-900 dark:group-data-[state=checked]:text-cyan-700"
287
+ "item": "style-old-secondary"
256
288
  },
257
289
  "collab": {
258
- "item": "text-collab-900 dark:text-collab-150 data-highlighted:text-collab-900 dark:data-highlighted:text-collab-200 data-highlighted:before:bg-collab-100 dark:data-highlighted:before:bg-collab-900 data-[state=checked]:text-collab-900 dark:data-[state=checked]:text-collab-200 data-[state=checked]:before:bg-collab-100 dark:data-[state=checked]:before:bg-collab-900",
259
- "itemLeadingIcon": "text-collab-600 dark:text-collab-700 group-data-highlighted:text-collab-900 dark:group-data-highlighted:text-collab-150 group-data-[state=checked]:text-collab-900 dark:group-data-[state=checked]:text-collab-700"
290
+ "item": "style-old-collab"
260
291
  },
261
292
  "ai": {
262
- "item": "text-ai-900 dark:text-ai-150 data-highlighted:text-ai-900 dark:data-highlighted:text-ai-200 data-highlighted:before:bg-ai-100 dark:data-highlighted:before:bg-ai-900 data-[state=checked]:text-ai-900 dark:data-[state=checked]:text-ai-200 data-[state=checked]:before:bg-ai-100 dark:data-[state=checked]:before:bg-ai-900",
263
- "itemLeadingIcon": "text-ai-600 dark:text-ai-700 group-data-highlighted:text-ai-900 dark:group-data-highlighted:text-ai-150 group-data-[state=checked]:text-ai-900 dark:group-data-[state=checked]:text-ai-700"
293
+ "item": "style-old-ai"
264
294
  }
265
295
  }
266
296
  },
267
297
  "compoundVariants": [
268
298
  {
269
- "color": "default" as typeof color[number],
270
- "multiple": true,
271
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-base-900 dark:has-focus-visible:ring-base-700"
272
- },
273
- {
274
- "color": "danger" as typeof color[number],
275
- "multiple": true,
276
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-red-500 dark:has-focus-visible:ring-red-600"
299
+ "colorItem": [
300
+ "air-primary" as typeof colorItem[number],
301
+ "air-primary-success" as typeof colorItem[number],
302
+ "air-primary-alert" as typeof colorItem[number],
303
+ "air-primary-copilot" as typeof colorItem[number],
304
+ "air-primary-warning" as typeof colorItem[number]
305
+ ],
306
+ "active": false,
307
+ "class": {
308
+ "item": "text-(--b24ui-background) data-highlighted:text-(--b24ui-background-hover) data-[state=open]:text-(--b24ui-background-hover)",
309
+ "itemLeadingIcon": "text-(--b24ui-background) group-data-highlighted:text-(--b24ui-background-hover) group-data-[state=open]:text-(--b24ui-background-hover)"
310
+ }
277
311
  },
278
312
  {
279
- "color": "success" as typeof color[number],
280
- "multiple": true,
281
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-green-500 dark:has-focus-visible:ring-green-600"
313
+ "colorItem": [
314
+ "air-primary" as typeof colorItem[number],
315
+ "air-primary-success" as typeof colorItem[number],
316
+ "air-primary-alert" as typeof colorItem[number],
317
+ "air-primary-copilot" as typeof colorItem[number],
318
+ "air-primary-warning" as typeof colorItem[number]
319
+ ],
320
+ "active": true,
321
+ "class": {
322
+ "item": "text-(--b24ui-background-active)",
323
+ "itemLeadingIcon": "text-(--b24ui-background-active) group-data-[state=open]:text-(--b24ui-background-active)"
324
+ }
282
325
  },
283
326
  {
284
- "color": "warning" as typeof color[number],
285
- "multiple": true,
286
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-orange-500 dark:has-focus-visible:ring-orange-600"
327
+ "colorItem": "default" as typeof colorItem[number],
328
+ "active": false,
329
+ "class": ""
287
330
  },
288
331
  {
289
- "color": "primary" as typeof color[number],
290
- "multiple": true,
291
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-blue-500 dark:has-focus-visible:ring-blue-600"
332
+ "colorItem": "default" as typeof colorItem[number],
333
+ "active": true,
334
+ "class": ""
292
335
  },
293
336
  {
294
- "color": "secondary" as typeof color[number],
295
- "multiple": true,
296
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-cyan-500 dark:has-focus-visible:ring-cyan-600"
337
+ "colorItem": [
338
+ "danger" as typeof colorItem[number],
339
+ "success" as typeof colorItem[number],
340
+ "warning" as typeof colorItem[number],
341
+ "primary" as typeof colorItem[number],
342
+ "secondary" as typeof colorItem[number],
343
+ "collab" as typeof colorItem[number],
344
+ "ai" as typeof colorItem[number]
345
+ ],
346
+ "active": false,
347
+ "class": {
348
+ "item": "text-(--b24ui-background-active) data-highlighted:text-(--b24ui-background-hover) data-[state=open]:text-(--b24ui-background-hover)",
349
+ "itemLeadingIcon": "text-(--b24ui-icon) group-data-highlighted:text-(--b24ui-icon) group-data-[state=open]:text-(--b24ui-icon)"
350
+ }
297
351
  },
298
352
  {
299
- "color": "collab" as typeof color[number],
300
- "multiple": true,
301
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-collab-500 dark:has-focus-visible:ring-collab-600"
353
+ "colorItem": [
354
+ "danger" as typeof colorItem[number],
355
+ "success" as typeof colorItem[number],
356
+ "warning" as typeof colorItem[number],
357
+ "primary" as typeof colorItem[number],
358
+ "secondary" as typeof colorItem[number],
359
+ "collab" as typeof colorItem[number],
360
+ "ai" as typeof colorItem[number]
361
+ ],
362
+ "active": true,
363
+ "class": {
364
+ "item": "text-(--b24ui-background-active)",
365
+ "itemLeadingIcon": "text-(--b24ui-background-active) group-data-[state=open]:text-(--b24ui-background-active)"
366
+ }
302
367
  },
303
368
  {
304
- "color": "ai" as typeof color[number],
369
+ "size": "xss" as typeof size[number],
305
370
  "multiple": true,
306
- "class": "has-focus-visible:ring-1 has-focus-visible:ring-ai-500 dark:has-focus-visible:ring-ai-600"
371
+ "class": {
372
+ "base": "min-h-[20px] h-auto py-[2px] ps-[4px]"
373
+ }
307
374
  },
308
375
  {
309
376
  "size": "xs" as typeof size[number],
310
377
  "multiple": true,
311
- "class": "min-h-xl2 h-auto"
378
+ "class": {
379
+ "base": "min-h-[24px] h-auto py-[2px] ps-[4px]"
380
+ }
312
381
  },
313
382
  {
314
383
  "size": "sm" as typeof size[number],
315
384
  "multiple": true,
316
- "class": "min-h-8 h-auto"
385
+ "class": {
386
+ "base": "min-h-[28px] h-auto py-[4px] ps-[4px]"
387
+ }
317
388
  },
318
389
  {
319
390
  "size": "md" as typeof size[number],
320
391
  "multiple": true,
321
- "class": "min-h-10 h-auto"
392
+ "class": {
393
+ "base": "min-h-[34px] h-auto py-[4px] ps-[4px]"
394
+ }
322
395
  },
323
396
  {
324
397
  "size": "lg" as typeof size[number],
325
398
  "multiple": true,
326
- "class": "min-h-12 h-auto"
327
- },
328
- {
329
- "color": "default" as typeof color[number],
330
- "noBorder": false,
331
- "underline": false,
332
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-base-900 dark:focus-visible:ring-base-350"
333
- },
334
- {
335
- "color": "default" as typeof color[number],
336
- "highlight": true,
337
- "noBorder": false,
338
- "underline": false,
339
- "class": "ring ring-inset ring-base-900 dark:ring-base-350"
340
- },
341
- {
342
- "color": "default" as typeof color[number],
343
- "noBorder": false,
344
- "underline": true,
345
- "class": "focus-visible:border-base-900 dark:focus-visible:border-b-base-350"
346
- },
347
- {
348
- "color": "default" as typeof color[number],
349
- "highlight": true,
350
- "noBorder": false,
351
- "underline": true,
352
- "class": "border-b-base-900 dark:border-b-base-350"
353
- },
354
- {
355
- "color": "danger" as typeof color[number],
356
- "noBorder": false,
357
- "underline": false,
358
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-red-500 dark:focus-visible:ring-red-600"
359
- },
360
- {
361
- "color": "danger" as typeof color[number],
362
- "highlight": true,
363
- "noBorder": false,
364
- "underline": false,
365
- "class": "ring ring-inset ring-red-500 dark:ring-red-600"
366
- },
367
- {
368
- "color": "danger" as typeof color[number],
369
- "noBorder": false,
370
- "underline": true,
371
- "class": "focus-visible:border-b-red-500 dark:focus-visible:border-b-red-600"
372
- },
373
- {
374
- "color": "danger" as typeof color[number],
375
- "highlight": true,
376
- "noBorder": false,
377
- "underline": true,
378
- "class": "border-b-red-500 dark:border-b-red-600"
379
- },
380
- {
381
- "color": "success" as typeof color[number],
382
- "noBorder": false,
383
- "underline": false,
384
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-green-500 dark:focus-visible:ring-green-600"
385
- },
386
- {
387
- "color": "success" as typeof color[number],
388
- "highlight": true,
389
- "noBorder": false,
390
- "underline": false,
391
- "class": "ring ring-inset ring-green-500 dark:ring-green-600"
392
- },
393
- {
394
- "color": "success" as typeof color[number],
395
- "noBorder": false,
396
- "underline": true,
397
- "class": "focus-visible:border-b-green-500 dark:focus-visible:border-b-green-600"
398
- },
399
- {
400
- "color": "success" as typeof color[number],
401
- "highlight": true,
402
- "noBorder": false,
403
- "underline": true,
404
- "class": "border-b-green-500 dark:border-b-green-600"
405
- },
406
- {
407
- "color": "warning" as typeof color[number],
408
- "noBorder": false,
409
- "underline": false,
410
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-orange-500 dark:focus-visible:ring-orange-600"
411
- },
412
- {
413
- "color": "warning" as typeof color[number],
414
- "highlight": true,
415
- "noBorder": false,
416
- "underline": false,
417
- "class": "ring ring-inset ring-orange-500 dark:ring-orange-600"
418
- },
419
- {
420
- "color": "warning" as typeof color[number],
421
- "noBorder": false,
422
- "underline": true,
423
- "class": "focus-visible:border-b-orange-500 dark:focus-visible:border-b-orange-600"
424
- },
425
- {
426
- "color": "warning" as typeof color[number],
427
- "highlight": true,
428
- "noBorder": false,
429
- "underline": true,
430
- "class": "border-b-orange-500 dark:border-b-orange-600"
431
- },
432
- {
433
- "color": "primary" as typeof color[number],
434
- "noBorder": false,
435
- "underline": false,
436
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-blue-500 dark:focus-visible:ring-blue-600"
437
- },
438
- {
439
- "color": "primary" as typeof color[number],
440
- "highlight": true,
441
- "noBorder": false,
442
- "underline": false,
443
- "class": "ring ring-inset ring-blue-500 dark:ring-blue-600"
444
- },
445
- {
446
- "color": "primary" as typeof color[number],
447
- "noBorder": false,
448
- "underline": true,
449
- "class": "focus-visible:border-b-blue-500 dark:focus-visible:border-b-blue-600"
450
- },
451
- {
452
- "color": "primary" as typeof color[number],
453
- "highlight": true,
454
- "noBorder": false,
455
- "underline": true,
456
- "class": "border-b-blue-500 dark:border-b-blue-600"
457
- },
458
- {
459
- "color": "secondary" as typeof color[number],
460
- "noBorder": false,
461
- "underline": false,
462
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-cyan-350 dark:focus-visible:ring-cyan-500"
463
- },
464
- {
465
- "color": "secondary" as typeof color[number],
466
- "highlight": true,
467
- "noBorder": false,
468
- "underline": false,
469
- "class": "ring ring-inset ring-cyan-350 dark:ring-cyan-500"
470
- },
471
- {
472
- "color": "secondary" as typeof color[number],
473
- "noBorder": false,
474
- "underline": true,
475
- "class": "focus-visible:border-b-cyan-350 dark:focus-visible:border-b-cyan-500"
399
+ "class": {
400
+ "base": "min-h-[38px] h-auto py-[4px] ps-[4px]"
401
+ }
476
402
  },
477
403
  {
478
- "color": "secondary" as typeof color[number],
479
- "highlight": true,
480
- "noBorder": false,
481
- "underline": true,
482
- "class": "border-b-cyan-350 dark:border-b-cyan-500"
404
+ "size": "xl" as typeof size[number],
405
+ "multiple": true,
406
+ "class": {
407
+ "base": "min-h-[46px] h-auto"
408
+ }
483
409
  },
484
410
  {
485
- "color": "collab" as typeof color[number],
486
411
  "noBorder": false,
487
412
  "underline": false,
488
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-collab-500 dark:focus-visible:ring-collab-600"
413
+ "class": ""
489
414
  },
490
415
  {
491
- "color": "collab" as typeof color[number],
492
416
  "highlight": true,
493
417
  "noBorder": false,
494
418
  "underline": false,
495
- "class": "ring ring-inset ring-collab-500 dark:ring-collab-600"
496
- },
497
- {
498
- "color": "collab" as typeof color[number],
499
- "noBorder": false,
500
- "underline": true,
501
- "class": "focus-visible:border-b-collab-500 dark:focus-visible:border-b-collab-600"
419
+ "class": "ring ring-inset ring-(--b24ui-border-color)"
502
420
  },
503
421
  {
504
- "color": "collab" as typeof color[number],
505
- "highlight": true,
506
422
  "noBorder": false,
507
423
  "underline": true,
508
- "class": "border-b-collab-500 dark:border-b-collab-600"
509
- },
510
- {
511
- "color": "ai" as typeof color[number],
512
- "noBorder": false,
513
- "underline": false,
514
- "class": "focus-visible:ring-1 focus-visible:ring-inset focus-visible:ring-ai-500 dark:focus-visible:ring-ai-600"
424
+ "class": "focus-visible:border-(--b24ui-border-color)"
515
425
  },
516
426
  {
517
- "color": "ai" as typeof color[number],
518
427
  "highlight": true,
519
428
  "noBorder": false,
520
- "underline": false,
521
- "class": "ring ring-inset ring-ai-500 dark:ring-ai-600"
522
- },
523
- {
524
- "color": "ai" as typeof color[number],
525
- "noBorder": false,
526
429
  "underline": true,
527
- "class": "focus-visible:border-b-ai-500 dark:focus-visible:border-b-ai-600"
430
+ "class": "border-b-(--b24ui-border-color)"
528
431
  },
529
432
  {
530
- "color": "ai" as typeof color[number],
531
- "highlight": true,
532
- "noBorder": false,
533
- "underline": true,
534
- "class": "border-b-ai-500 dark:border-b-ai-600"
433
+ "type": "file" as typeof type[number],
434
+ "size": "xss" as typeof size[number],
435
+ "class": "py-[2px]"
535
436
  },
536
437
  {
537
438
  "type": "file" as typeof type[number],
538
439
  "size": "xs" as typeof size[number],
539
- "class": "py-1.5"
440
+ "class": "py-[4px]"
540
441
  },
541
442
  {
542
443
  "type": "file" as typeof type[number],
543
444
  "size": "sm" as typeof size[number],
544
- "class": "py-2.5"
445
+ "class": "py-[5px]"
545
446
  },
546
447
  {
547
448
  "type": "file" as typeof type[number],
548
449
  "size": "md" as typeof size[number],
549
- "class": "py-3"
450
+ "class": "py-[7px]"
550
451
  },
551
452
  {
552
453
  "type": "file" as typeof type[number],
553
454
  "size": "lg" as typeof size[number],
554
- "class": "py-4"
455
+ "class": "py-[9px]"
456
+ },
457
+ {
458
+ "type": "file" as typeof type[number],
459
+ "size": "xl" as typeof size[number],
460
+ "class": "py-[11px]"
555
461
  },
556
462
  {
557
463
  "leading": true,
464
+ "noPadding": false,
465
+ "size": "xss" as typeof size[number],
466
+ "class": "ps-[20px]"
467
+ },
468
+ {
469
+ "leading": true,
470
+ "noPadding": false,
558
471
  "size": "xs" as typeof size[number],
559
- "class": "ps-7"
472
+ "class": "ps-[22px]"
560
473
  },
561
474
  {
562
475
  "leading": true,
476
+ "noPadding": false,
563
477
  "size": "sm" as typeof size[number],
564
- "class": "ps-8"
478
+ "class": "ps-[28px]"
565
479
  },
566
480
  {
567
481
  "leading": true,
482
+ "noPadding": false,
568
483
  "size": "md" as typeof size[number],
569
- "class": "ps-[39px]"
484
+ "class": "ps-[34px]"
570
485
  },
571
486
  {
572
487
  "leading": true,
488
+ "noPadding": false,
573
489
  "size": "lg" as typeof size[number],
574
- "class": "ps-[42px]"
490
+ "class": "ps-[38px]"
491
+ },
492
+ {
493
+ "leading": true,
494
+ "noPadding": false,
495
+ "size": "xl" as typeof size[number],
496
+ "class": "ps-[38px]"
575
497
  },
576
498
  {
577
499
  "trailing": true,
500
+ "noPadding": false,
501
+ "size": "xss" as typeof size[number],
502
+ "class": "pe-[20px]"
503
+ },
504
+ {
505
+ "trailing": true,
506
+ "noPadding": false,
578
507
  "size": "xs" as typeof size[number],
579
- "class": "pe-7"
508
+ "class": "pe-[22px]"
580
509
  },
581
510
  {
582
511
  "trailing": true,
512
+ "noPadding": false,
583
513
  "size": "sm" as typeof size[number],
584
- "class": "pe-8"
514
+ "class": "pe-[28px]"
585
515
  },
586
516
  {
587
517
  "trailing": true,
518
+ "noPadding": false,
588
519
  "size": "md" as typeof size[number],
589
- "class": "pe-[39px]"
520
+ "class": "pe-[34px]"
590
521
  },
591
522
  {
592
523
  "trailing": true,
524
+ "noPadding": false,
593
525
  "size": "lg" as typeof size[number],
594
- "class": "pe-[39px]"
526
+ "class": "pe-[38px]"
527
+ },
528
+ {
529
+ "trailing": true,
530
+ "noPadding": false,
531
+ "size": "xl" as typeof size[number],
532
+ "class": "pe-[38px]"
595
533
  },
596
534
  {
597
535
  "loading": true,
@@ -610,8 +548,7 @@ export default {
610
548
  }
611
549
  ],
612
550
  "defaultVariants": {
613
- "size": "md" as typeof size[number],
614
- "color": "primary" as typeof color[number],
615
- "tagColor": "primary" as typeof tagColor[number]
551
+ "color": "air-primary" as typeof color[number],
552
+ "size": "md" as typeof size[number]
616
553
  }
617
554
  }