@aleph-alpha/ui-library 1.13.0 → 1.14.0

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 (120) hide show
  1. package/README.md +1 -1
  2. package/config.js +34 -1
  3. package/dist/system/index.d.ts +1728 -234
  4. package/dist/system/lib.js +19804 -16600
  5. package/package.json +1 -1
  6. package/src/components/UiKbd/UiKbd.stories.ts +1 -1
  7. package/src/components/UiNavigationMenu/UiNavigationMenu.stories.ts +1196 -0
  8. package/src/components/UiNavigationMenu/UiNavigationMenu.vue +39 -0
  9. package/src/components/UiNavigationMenu/UiNavigationMenuContent.vue +25 -0
  10. package/src/components/UiNavigationMenu/UiNavigationMenuIndicator.vue +14 -0
  11. package/src/components/UiNavigationMenu/UiNavigationMenuItem.vue +16 -0
  12. package/src/components/UiNavigationMenu/UiNavigationMenuLink.vue +27 -0
  13. package/src/components/UiNavigationMenu/UiNavigationMenuList.vue +16 -0
  14. package/src/components/UiNavigationMenu/UiNavigationMenuTrigger.vue +16 -0
  15. package/src/components/UiNavigationMenu/__tests__/UiNavigationMenu.test.ts +428 -0
  16. package/src/components/UiNavigationMenu/index.ts +11 -0
  17. package/src/components/UiNavigationMenu/types.ts +185 -0
  18. package/src/components/UiSheet/UiSheet.stories.ts +715 -0
  19. package/src/components/UiSheet/__tests__/UiSheet.test.ts +229 -0
  20. package/src/components/UiSheet/index.ts +12 -0
  21. package/src/components/UiSheet/types.ts +83 -0
  22. package/src/components/UiSidebar/UiSidebar.stories.ts +1010 -0
  23. package/src/components/UiSidebar/UiSidebar.vue +20 -0
  24. package/src/components/UiSidebar/UiSidebarGroupAction.vue +18 -0
  25. package/src/components/UiSidebar/UiSidebarGroupLabel.vue +18 -0
  26. package/src/components/UiSidebar/UiSidebarHeaderTrigger.vue +53 -0
  27. package/src/components/UiSidebar/UiSidebarInput.vue +14 -0
  28. package/src/components/UiSidebar/UiSidebarMenuAction.vue +19 -0
  29. package/src/components/UiSidebar/UiSidebarMenuButton.vue +27 -0
  30. package/src/components/UiSidebar/UiSidebarMenuSkeleton.vue +16 -0
  31. package/src/components/UiSidebar/UiSidebarMenuSubButton.vue +24 -0
  32. package/src/components/UiSidebar/UiSidebarProvider.vue +18 -0
  33. package/src/components/UiSidebar/UiSidebarSeparator.vue +13 -0
  34. package/src/components/UiSidebar/__tests__/UiSidebar.test.ts +221 -0
  35. package/src/components/UiSidebar/index.ts +34 -0
  36. package/src/components/UiSidebar/types.ts +168 -0
  37. package/src/components/UiStepper/UiStepper.stories.ts +425 -0
  38. package/src/components/UiStepper/UiStepper.vue +27 -0
  39. package/src/components/UiStepper/UiStepperDescription.vue +20 -0
  40. package/src/components/UiStepper/UiStepperIndicator.vue +13 -0
  41. package/src/components/UiStepper/UiStepperItem.vue +25 -0
  42. package/src/components/UiStepper/UiStepperSeparator.vue +17 -0
  43. package/src/components/UiStepper/UiStepperTitle.vue +19 -0
  44. package/src/components/UiStepper/UiStepperTrigger.vue +18 -0
  45. package/src/components/UiStepper/__tests__/UiStepper.test.ts +167 -0
  46. package/src/components/UiStepper/index.ts +9 -0
  47. package/src/components/UiStepper/types.ts +65 -0
  48. package/src/components/core/alert/index.ts +2 -2
  49. package/src/components/core/alert-dialog/AlertDialogContent.vue +1 -1
  50. package/src/components/core/card/Card.vue +1 -1
  51. package/src/components/core/drawer/DrawerContent.vue +1 -1
  52. package/src/components/core/dropdown-menu/DropdownMenuContent.vue +1 -1
  53. package/src/components/core/dropdown-menu/DropdownMenuSubContent.vue +1 -1
  54. package/src/components/core/input/Input.vue +1 -1
  55. package/src/components/core/native-select/NativeSelect.vue +1 -1
  56. package/src/components/core/native-select/NativeSelectOptGroup.vue +1 -1
  57. package/src/components/core/native-select/NativeSelectOption.vue +1 -1
  58. package/src/components/core/navigation-menu/NavigationMenu.vue +40 -0
  59. package/src/components/core/navigation-menu/NavigationMenuContent.vue +28 -0
  60. package/src/components/core/navigation-menu/NavigationMenuIndicator.vue +26 -0
  61. package/src/components/core/navigation-menu/NavigationMenuItem.vue +19 -0
  62. package/src/components/core/navigation-menu/NavigationMenuLink.vue +27 -0
  63. package/src/components/core/navigation-menu/NavigationMenuList.vue +21 -0
  64. package/src/components/core/navigation-menu/NavigationMenuTrigger.vue +27 -0
  65. package/src/components/core/navigation-menu/NavigationMenuViewport.vue +26 -0
  66. package/src/components/core/navigation-menu/index.ts +14 -0
  67. package/src/components/core/popover/PopoverContent.vue +1 -1
  68. package/src/components/core/select/SelectContent.vue +1 -1
  69. package/src/components/core/select/SelectTrigger.vue +1 -1
  70. package/src/components/core/sheet/Sheet.vue +15 -0
  71. package/src/components/core/sheet/SheetClose.vue +12 -0
  72. package/src/components/core/sheet/SheetContent.vue +56 -0
  73. package/src/components/core/sheet/SheetDescription.vue +19 -0
  74. package/src/components/core/sheet/SheetFooter.vue +9 -0
  75. package/src/components/core/sheet/SheetHeader.vue +9 -0
  76. package/src/components/core/sheet/SheetOverlay.vue +24 -0
  77. package/src/components/core/sheet/SheetTitle.vue +19 -0
  78. package/src/components/core/sheet/SheetTrigger.vue +12 -0
  79. package/src/components/core/sheet/index.ts +8 -0
  80. package/src/components/core/sidebar/Sidebar.vue +105 -0
  81. package/src/components/core/sidebar/SidebarContent.vue +21 -0
  82. package/src/components/core/sidebar/SidebarFooter.vue +16 -0
  83. package/src/components/core/sidebar/SidebarGroup.vue +16 -0
  84. package/src/components/core/sidebar/SidebarGroupAction.vue +25 -0
  85. package/src/components/core/sidebar/SidebarGroupContent.vue +16 -0
  86. package/src/components/core/sidebar/SidebarGroupLabel.vue +23 -0
  87. package/src/components/core/sidebar/SidebarHeader.vue +16 -0
  88. package/src/components/core/sidebar/SidebarInput.vue +17 -0
  89. package/src/components/core/sidebar/SidebarInset.vue +21 -0
  90. package/src/components/core/sidebar/SidebarMenu.vue +16 -0
  91. package/src/components/core/sidebar/SidebarMenuAction.vue +33 -0
  92. package/src/components/core/sidebar/SidebarMenuBadge.vue +26 -0
  93. package/src/components/core/sidebar/SidebarMenuButton.vue +49 -0
  94. package/src/components/core/sidebar/SidebarMenuButtonChild.vue +36 -0
  95. package/src/components/core/sidebar/SidebarMenuItem.vue +16 -0
  96. package/src/components/core/sidebar/SidebarMenuSkeleton.vue +32 -0
  97. package/src/components/core/sidebar/SidebarMenuSub.vue +22 -0
  98. package/src/components/core/sidebar/SidebarMenuSubButton.vue +38 -0
  99. package/src/components/core/sidebar/SidebarMenuSubItem.vue +16 -0
  100. package/src/components/core/sidebar/SidebarProvider.vue +102 -0
  101. package/src/components/core/sidebar/SidebarRail.vue +33 -0
  102. package/src/components/core/sidebar/SidebarSeparator.vue +17 -0
  103. package/src/components/core/sidebar/SidebarTrigger.vue +25 -0
  104. package/src/components/core/sidebar/index.ts +58 -0
  105. package/src/components/core/sidebar/utils.ts +19 -0
  106. package/src/components/core/stepper/Stepper.vue +20 -0
  107. package/src/components/core/stepper/StepperDescription.vue +23 -0
  108. package/src/components/core/stepper/StepperIndicator.vue +34 -0
  109. package/src/components/core/stepper/StepperItem.vue +23 -0
  110. package/src/components/core/stepper/StepperSeparator.vue +29 -0
  111. package/src/components/core/stepper/StepperTitle.vue +24 -0
  112. package/src/components/core/stepper/StepperTrigger.vue +22 -0
  113. package/src/components/core/stepper/index.ts +7 -0
  114. package/src/components/core/tabs/TabsTrigger.vue +1 -1
  115. package/src/components/core/tags-input/TagsInput.vue +1 -1
  116. package/src/components/core/textarea/Textarea.vue +1 -1
  117. package/src/components/index.ts +4 -0
  118. package/src/theme/Background.stories.ts +84 -35
  119. package/src/theme/Extended.stories.ts +4 -4
  120. package/tokens.json +145 -8
@@ -46,48 +46,97 @@ export const Surface: Story = {
46
46
  <script>${copyScript}</script>
47
47
 
48
48
  <div class="mb-6">
49
- <h2 class="text-xl font-bold text-content-on-surface-primary mb-1">surface</h2>
50
- <p class="text-sm text-content-on-surface-muted">Background colors for main application surfaces. Click class name to copy.</p>
49
+ <h2 class="text-xl font-bold text-content-on-surface-primary mb-1">Surface Backgrounds</h2>
50
+ <p class="text-sm text-content-on-surface-muted">Reference for surface-layer tokens used across app layouts, overlays, and dialogs.</p>
51
51
  </div>
52
-
53
- <div class="flex flex-wrap gap-6">
54
- <div class="flex flex-col items-center gap-1.5">
55
- <div class="w-16 h-16 rounded-md bg-background-surface-primary border border-border-surface-default"></div>
56
- <div class="text-center">
57
- <span class="text-xs text-content-on-surface-primary block font-medium">primary</span>
58
- <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-primary', this)">bg-background-surface-primary</code>
52
+
53
+ <div class="mb-8">
54
+ <h3 class="text-sm font-semibold text-content-on-surface-primary mb-1">Background Surfaces</h3>
55
+ <p class="text-xs text-content-on-surface-muted mb-3">Base and sheet-level surfaces for pages, panels, and subtle inner containers. Token group: <code>background.surface</code></p>
56
+ <div class="flex flex-wrap gap-6">
57
+ <div class="flex flex-col items-center gap-1.5">
58
+ <div class="w-16 h-16 rounded-md bg-background-surface-primary border border-border-surface-default"></div>
59
+ <div class="text-center">
60
+ <span class="text-xs text-content-on-surface-primary block font-medium">primary</span>
61
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-primary', this)">bg-background-surface-primary</code>
62
+ </div>
59
63
  </div>
60
- </div>
61
-
62
- <div class="flex flex-col items-center gap-1.5">
63
- <div class="w-16 h-16 rounded-md bg-background-surface-secondary border border-border-surface-default"></div>
64
- <div class="text-center">
65
- <span class="text-xs text-content-on-surface-primary block font-medium">secondary</span>
66
- <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-secondary', this)">bg-background-surface-secondary</code>
64
+
65
+ <div class="flex flex-col items-center gap-1.5">
66
+ <div class="w-16 h-16 rounded-md bg-background-surface-secondary border border-border-surface-default"></div>
67
+ <div class="text-center">
68
+ <span class="text-xs text-content-on-surface-primary block font-medium">secondary</span>
69
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-secondary', this)">bg-background-surface-secondary</code>
70
+ </div>
67
71
  </div>
68
- </div>
69
-
70
- <div class="flex flex-col items-center gap-1.5">
71
- <div class="w-16 h-16 rounded-md bg-background-surface-muted border border-border-surface-default"></div>
72
- <div class="text-center">
73
- <span class="text-xs text-content-on-surface-primary block font-medium">muted</span>
74
- <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-muted', this)">bg-background-surface-muted</code>
72
+
73
+ <div class="flex flex-col items-center gap-1.5">
74
+ <div class="w-16 h-16 rounded-md bg-background-surface-muted border border-border-surface-default"></div>
75
+ <div class="text-center">
76
+ <span class="text-xs text-content-on-surface-primary block font-medium">muted</span>
77
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-muted', this)">bg-background-surface-muted</code>
78
+ </div>
79
+ </div>
80
+
81
+ <div class="flex flex-col items-center gap-1.5">
82
+ <div class="w-16 h-16 rounded-md bg-background-surface-selected border border-border-surface-default"></div>
83
+ <div class="text-center">
84
+ <span class="text-xs text-content-on-surface-primary block font-medium">selected</span>
85
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-selected', this)">bg-background-surface-selected</code>
86
+ </div>
75
87
  </div>
88
+
89
+ <div class="flex flex-col items-center gap-1.5">
90
+ <div class="w-16 h-16 rounded-md bg-background-surface-inverse border border-border-surface-default"></div>
91
+ <div class="text-center">
92
+ <span class="text-xs text-content-on-surface-primary block font-medium">inverse</span>
93
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-inverse', this)">bg-background-surface-inverse</code>
94
+ </div>
95
+ </div>
96
+
76
97
  </div>
77
-
78
- <div class="flex flex-col items-center gap-1.5">
79
- <div class="w-16 h-16 rounded-md bg-background-surface-selected border border-border-surface-default"></div>
80
- <div class="text-center">
81
- <span class="text-xs text-content-on-surface-primary block font-medium">selected</span>
82
- <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-selected', this)">bg-background-surface-selected</code>
98
+ </div>
99
+
100
+ <div>
101
+ <h3 class="text-sm font-semibold text-content-on-surface-primary mb-1">Overlay Surfaces</h3>
102
+ <p class="text-xs text-content-on-surface-muted mb-3">Backdrop layers for transparent overlays and modal dimming. Token group: <code>overlay.surface</code></p>
103
+ <div class="flex flex-wrap gap-6">
104
+ <div class="flex flex-col items-center gap-1.5">
105
+ <div class="w-16 h-16 rounded-md bg-overlay-surface-transparent border border-border-surface-default"></div>
106
+ <div class="text-center">
107
+ <span class="text-xs text-content-on-surface-primary block font-medium">transparent</span>
108
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-overlay-surface-transparent', this)">bg-overlay-surface-transparent</code>
109
+ </div>
110
+ </div>
111
+
112
+ <div class="flex flex-col items-center gap-1.5">
113
+ <div class="w-16 h-16 rounded-md bg-overlay-surface-modal-overlay border border-border-surface-default"></div>
114
+ <div class="text-center">
115
+ <span class="text-xs text-content-on-surface-primary block font-medium">modal overlay</span>
116
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-overlay-surface-modal-overlay', this)">bg-overlay-surface-modal-overlay</code>
117
+ </div>
83
118
  </div>
84
119
  </div>
85
-
86
- <div class="flex flex-col items-center gap-1.5">
87
- <div class="w-16 h-16 rounded-md bg-background-surface-inverse border border-border-surface-default"></div>
88
- <div class="text-center">
89
- <span class="text-xs text-content-on-surface-primary block font-medium">inverse</span>
90
- <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-inverse', this)">bg-background-surface-inverse</code>
120
+ </div>
121
+
122
+ <div class="mt-8">
123
+ <h3 class="text-sm font-semibold text-content-on-surface-primary mb-1">Floating Surfaces</h3>
124
+ <p class="text-xs text-content-on-surface-muted mb-3">Top-layer containers for floating UI (menus, popovers) and modal/dialog surfaces.</p>
125
+ <div class="flex flex-wrap gap-6">
126
+ <div class="flex flex-col items-center gap-1.5">
127
+ <div class="w-16 h-16 rounded-md bg-background-surface-modal border border-border-surface-default shadow-lg"></div>
128
+ <div class="text-center">
129
+ <span class="text-xs text-content-on-surface-primary block font-medium">modal</span>
130
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-modal', this)">bg-background-surface-modal</code>
131
+ </div>
132
+ </div>
133
+
134
+ <div class="flex flex-col items-center gap-1.5">
135
+ <div class="w-16 h-16 rounded-md bg-background-surface-floating border border-border-surface-default shadow-xs"></div>
136
+ <div class="text-center">
137
+ <span class="text-xs text-content-on-surface-primary block font-medium">floating</span>
138
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-background-surface-floating', this)">bg-background-surface-floating</code>
139
+ </div>
91
140
  </div>
92
141
  </div>
93
142
  </div>
@@ -188,10 +188,10 @@ export const Extended5: Story = {
188
188
  </div>
189
189
 
190
190
  <div class="flex flex-col items-start gap-1.5">
191
- <div class="w-16 h-16 rounded-md bg-extended-extended-53 border border-border-surface-default"></div>
191
+ <div class="w-16 h-16 rounded-md bg-extended-extended-5 border border-border-surface-default"></div>
192
192
  <div class="text-left">
193
193
  <span class="text-xs text-content-on-surface-primary block font-medium">extended-5</span>
194
- <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-extended-extended-53', this)">bg-extended-extended-53</code>
194
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-extended-extended-5', this)">bg-extended-extended-5</code>
195
195
  </div>
196
196
  </div>
197
197
  </div>
@@ -255,10 +255,10 @@ export const AllExtended: Story = {
255
255
  </div>
256
256
 
257
257
  <div class="flex flex-col items-center gap-1.5">
258
- <div class="w-16 h-16 rounded-md bg-extended-extended-53 border border-border-surface-default"></div>
258
+ <div class="w-16 h-16 rounded-md bg-extended-extended-5 border border-border-surface-default"></div>
259
259
  <div class="text-center">
260
260
  <span class="text-xs text-content-on-surface-primary block font-medium">extended-5</span>
261
- <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-extended-extended-53', this)">bg-extended-extended-53</code>
261
+ <code class="copy-btn text-[10px] text-content-on-surface-muted block mt-0.5 px-1 py-0.5 rounded" onclick="copyToClipboard('bg-extended-extended-5', this)">bg-extended-extended-5</code>
262
262
  </div>
263
263
  </div>
264
264
  </div>
package/tokens.json CHANGED
@@ -5029,6 +5029,15 @@
5029
5029
  }
5030
5030
  },
5031
5031
  "sand": {
5032
+ "0": {
5033
+ "value": "#fdfdfa",
5034
+ "type": "color",
5035
+ "$extensions": {
5036
+ "com.figma.scopes": [
5037
+ "ALL_SCOPES"
5038
+ ]
5039
+ }
5040
+ },
5032
5041
  "25": {
5033
5042
  "value": "#f6f6f1",
5034
5043
  "type": "color",
@@ -5958,6 +5967,24 @@
5958
5967
  ]
5959
5968
  },
5960
5969
  "description": "Used in UI elements that have background color variable in light mode and input/30 variable in dark mode"
5970
+ },
5971
+ "floating": {
5972
+ "value": "{colors.background.surface.floating-light}",
5973
+ "type": "color",
5974
+ "$extensions": {
5975
+ "com.figma.scopes": [
5976
+ "ALL_SCOPES"
5977
+ ]
5978
+ }
5979
+ },
5980
+ "modal": {
5981
+ "value": "{colors.background.surface.modal-light}",
5982
+ "type": "color",
5983
+ "$extensions": {
5984
+ "com.figma.scopes": [
5985
+ "ALL_SCOPES"
5986
+ ]
5987
+ }
5961
5988
  }
5962
5989
  },
5963
5990
  "button": {
@@ -6297,6 +6324,16 @@
6297
6324
  ]
6298
6325
  },
6299
6326
  "description": "Data visualization colors"
6327
+ },
6328
+ "extended-5": {
6329
+ "value": "{colors.extended.extended-5-light}",
6330
+ "type": "color",
6331
+ "$extensions": {
6332
+ "com.figma.scopes": [
6333
+ "ALL_SCOPES"
6334
+ ]
6335
+ },
6336
+ "description": "Data visualization colors"
6300
6337
  }
6301
6338
  },
6302
6339
  "overlay": {
@@ -6430,6 +6467,24 @@
6430
6467
  ]
6431
6468
  },
6432
6469
  "description": "Used in UI elements that have background color variable in light mode and input/30 variable in dark mode"
6470
+ },
6471
+ "floating": {
6472
+ "value": "{colors.background.surface.floating-dark}",
6473
+ "type": "color",
6474
+ "$extensions": {
6475
+ "com.figma.scopes": [
6476
+ "ALL_SCOPES"
6477
+ ]
6478
+ }
6479
+ },
6480
+ "modal": {
6481
+ "value": "{colors.background.surface.modal-dark}",
6482
+ "type": "color",
6483
+ "$extensions": {
6484
+ "com.figma.scopes": [
6485
+ "ALL_SCOPES"
6486
+ ]
6487
+ }
6433
6488
  }
6434
6489
  },
6435
6490
  "button": {
@@ -6769,6 +6824,16 @@
6769
6824
  ]
6770
6825
  },
6771
6826
  "description": "Data visualization colors"
6827
+ },
6828
+ "extended-5": {
6829
+ "value": "{colors.extended.extended-5-dark}",
6830
+ "type": "color",
6831
+ "$extensions": {
6832
+ "com.figma.scopes": [
6833
+ "ALL_SCOPES"
6834
+ ]
6835
+ },
6836
+ "description": "Data visualization colors"
6772
6837
  }
6773
6838
  },
6774
6839
  "overlay": {
@@ -7035,6 +7100,42 @@
7035
7100
  "SHAPE_FILL"
7036
7101
  ]
7037
7102
  }
7103
+ },
7104
+ "floating-light": {
7105
+ "value": "{tailwind.colors.base.white}",
7106
+ "type": "color",
7107
+ "$extensions": {
7108
+ "com.figma.scopes": [
7109
+ "ALL_SCOPES"
7110
+ ]
7111
+ }
7112
+ },
7113
+ "floating-dark": {
7114
+ "value": "{tailwind.colors.neutral.700}",
7115
+ "type": "color",
7116
+ "$extensions": {
7117
+ "com.figma.scopes": [
7118
+ "ALL_SCOPES"
7119
+ ]
7120
+ }
7121
+ },
7122
+ "modal-light": {
7123
+ "value": "{tailwind.colors.neutral.50}",
7124
+ "type": "color",
7125
+ "$extensions": {
7126
+ "com.figma.scopes": [
7127
+ "ALL_SCOPES"
7128
+ ]
7129
+ }
7130
+ },
7131
+ "modal-dark": {
7132
+ "value": "{tailwind.colors.neutral.800}",
7133
+ "type": "color",
7134
+ "$extensions": {
7135
+ "com.figma.scopes": [
7136
+ "ALL_SCOPES"
7137
+ ]
7138
+ }
7038
7139
  }
7039
7140
  },
7040
7141
  "input": {
@@ -9240,11 +9341,47 @@
9240
9341
  "SHAPE_FILL"
9241
9342
  ]
9242
9343
  }
9344
+ },
9345
+ "floating-light": {
9346
+ "value": "{aa.colors.sand.0}",
9347
+ "type": "color",
9348
+ "$extensions": {
9349
+ "com.figma.scopes": [
9350
+ "ALL_SCOPES"
9351
+ ]
9352
+ }
9353
+ },
9354
+ "floating-dark": {
9355
+ "value": "{aa.colors.basalt.700}",
9356
+ "type": "color",
9357
+ "$extensions": {
9358
+ "com.figma.scopes": [
9359
+ "ALL_SCOPES"
9360
+ ]
9361
+ }
9362
+ },
9363
+ "modal-light": {
9364
+ "value": "{aa.colors.sand.25}",
9365
+ "type": "color",
9366
+ "$extensions": {
9367
+ "com.figma.scopes": [
9368
+ "ALL_SCOPES"
9369
+ ]
9370
+ }
9371
+ },
9372
+ "modal-dark": {
9373
+ "value": "{aa.colors.basalt.800}",
9374
+ "type": "color",
9375
+ "$extensions": {
9376
+ "com.figma.scopes": [
9377
+ "ALL_SCOPES"
9378
+ ]
9379
+ }
9243
9380
  }
9244
9381
  },
9245
9382
  "input": {
9246
9383
  "default-light": {
9247
- "value": "{aa.colors.alpha.white.50}",
9384
+ "value": "{aa.colors.alpha.white.80}",
9248
9385
  "type": "color",
9249
9386
  "$extensions": {
9250
9387
  "com.figma.scopes": [
@@ -9254,7 +9391,7 @@
9254
9391
  }
9255
9392
  },
9256
9393
  "default-dark": {
9257
- "value": "{aa.colors.alpha.black.10}",
9394
+ "value": "{aa.colors.alpha.black.20}",
9258
9395
  "type": "color",
9259
9396
  "$extensions": {
9260
9397
  "com.figma.scopes": [
@@ -9526,7 +9663,7 @@
9526
9663
  }
9527
9664
  },
9528
9665
  "error-dark": {
9529
- "value": "{aa.colors.red.100}",
9666
+ "value": "{aa.colors.red.200}",
9530
9667
  "type": "color",
9531
9668
  "$extensions": {
9532
9669
  "com.figma.scopes": [
@@ -9535,7 +9672,7 @@
9535
9672
  }
9536
9673
  },
9537
9674
  "error-light": {
9538
- "value": "{aa.colors.red.800}",
9675
+ "value": "{aa.colors.red.700}",
9539
9676
  "type": "color",
9540
9677
  "$extensions": {
9541
9678
  "com.figma.scopes": [
@@ -9658,7 +9795,7 @@
9658
9795
  }
9659
9796
  },
9660
9797
  "error-dark": {
9661
- "value": "{aa.colors.red.300}",
9798
+ "value": "{aa.colors.red.200}",
9662
9799
  "type": "color",
9663
9800
  "$extensions": {
9664
9801
  "com.figma.scopes": [
@@ -9667,7 +9804,7 @@
9667
9804
  }
9668
9805
  },
9669
9806
  "error-light": {
9670
- "value": "{aa.colors.red.600}",
9807
+ "value": "{aa.colors.red.700}",
9671
9808
  "type": "color",
9672
9809
  "$extensions": {
9673
9810
  "com.figma.scopes": [
@@ -9894,7 +10031,7 @@
9894
10031
  }
9895
10032
  },
9896
10033
  "modal-overlay-light": {
9897
- "value": "{aa.colors.sand.900}",
10034
+ "value": "{aa.colors.alpha.black.60}",
9898
10035
  "type": "color",
9899
10036
  "$extensions": {
9900
10037
  "com.figma.scopes": [
@@ -9904,7 +10041,7 @@
9904
10041
  }
9905
10042
  },
9906
10043
  "modal-overlay-dark": {
9907
- "value": "{aa.colors.basalt.900}",
10044
+ "value": "{aa.colors.alpha.black.60}",
9908
10045
  "type": "color",
9909
10046
  "$extensions": {
9910
10047
  "com.figma.scopes": [