@app-studio/web 0.9.84 → 0.9.85

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 (67) hide show
  1. package/dist/components/Button/Button/Button.view.d.ts +1 -1
  2. package/dist/components/Formik/Formik.ColorInput.d.ts +1 -1
  3. package/dist/components/Gradient/Gradient.d.ts +4 -4
  4. package/dist/components/Title/Title/Title.props.d.ts +3 -3
  5. package/dist/components/Title/Title/Title.type.d.ts +1 -1
  6. package/dist/web.cjs.development.js +752 -781
  7. package/dist/web.cjs.development.js.map +1 -1
  8. package/dist/web.cjs.production.min.js +1 -1
  9. package/dist/web.cjs.production.min.js.map +1 -1
  10. package/dist/web.esm.js +752 -781
  11. package/dist/web.esm.js.map +1 -1
  12. package/dist/web.umd.development.js +752 -781
  13. package/dist/web.umd.development.js.map +1 -1
  14. package/dist/web.umd.production.min.js +1 -1
  15. package/dist/web.umd.production.min.js.map +1 -1
  16. package/docs/app-studio/Components.md +8 -8
  17. package/docs/app-studio/Design.md +2 -2
  18. package/docs/app-studio/Events.md +31 -31
  19. package/docs/app-studio/Hooks.md +6 -6
  20. package/docs/app-studio/Providers.md +2 -2
  21. package/docs/app-studio/README.md +30 -30
  22. package/docs/app-studio/Responsive.md +3 -3
  23. package/docs/app-studio/Theming.md +114 -113
  24. package/docs/app-studio.md +2 -2
  25. package/docs/component-development/guide.md +10 -10
  26. package/docs/components/Background.mdx +2 -2
  27. package/docs/components/Badge.mdx +1 -1
  28. package/docs/components/Button.mdx +2 -2
  29. package/docs/components/Carousel.mdx +15 -15
  30. package/docs/components/Center.mdx +40 -40
  31. package/docs/components/Checkbox.mdx +5 -5
  32. package/docs/components/ColorInput.mdx +13 -13
  33. package/docs/components/ColorPicker.mdx +17 -17
  34. package/docs/components/ContextMenu.mdx +1 -1
  35. package/docs/components/DatePicker.mdx +6 -6
  36. package/docs/components/DragAndDrop.mdx +8 -8
  37. package/docs/components/Drawer.mdx +3 -3
  38. package/docs/components/Form.mdx +2 -2
  39. package/docs/components/Formik.mdx +3 -3
  40. package/docs/components/Gradient.mdx +32 -32
  41. package/docs/components/Horizontal.mdx +3 -3
  42. package/docs/components/HoverCard.mdx +3 -3
  43. package/docs/components/Icon.mdx +14 -14
  44. package/docs/components/Label.mdx +28 -28
  45. package/docs/components/Link.mdx +2 -2
  46. package/docs/components/Loader.mdx +16 -16
  47. package/docs/components/OTPInput.mdx +9 -9
  48. package/docs/components/Password.mdx +1 -1
  49. package/docs/components/ProgressBar.mdx +9 -9
  50. package/docs/components/Resizable.mdx +6 -6
  51. package/docs/components/Selector.mdx +4 -4
  52. package/docs/components/Sidebar.mdx +2 -2
  53. package/docs/components/Slider.mdx +10 -10
  54. package/docs/components/StatusIndicator.mdx +5 -5
  55. package/docs/components/Switch.mdx +1 -1
  56. package/docs/components/TagInput.mdx +8 -8
  57. package/docs/components/Text.mdx +1 -1
  58. package/docs/components/TextArea.mdx +2 -2
  59. package/docs/components/TextField.mdx +2 -2
  60. package/docs/components/Title.mdx +1 -1
  61. package/docs/components/Vertical.mdx +64 -64
  62. package/docs/components.md +4 -4
  63. package/docs/conventions.md +1 -1
  64. package/docs/design-system/theming.md +19 -19
  65. package/docs/tutorials/README.md +1 -1
  66. package/docs/tutorials/basic/creating-a-simple-form.md +2 -2
  67. package/package.json +2 -2
@@ -200,17 +200,17 @@ var AccordionVariants = {
200
200
  outline: {
201
201
  borderWidth: 1,
202
202
  borderStyle: 'solid',
203
- borderColor: 'color.gray.200',
203
+ borderColor: 'color-gray-200',
204
204
  transition: 'border-color 0.15s ease, background-color 0.15s ease',
205
205
  _hover: {
206
- borderColor: 'color.gray.300'
206
+ borderColor: 'color-gray-300'
207
207
  }
208
208
  },
209
209
  filled: {
210
- backgroundColor: 'color.gray.50',
210
+ backgroundColor: 'color-gray-50',
211
211
  transition: 'background-color 0.15s ease',
212
212
  _hover: {
213
- backgroundColor: 'color.gray.100'
213
+ backgroundColor: 'color-gray-100'
214
214
  }
215
215
  }
216
216
  };
@@ -266,7 +266,7 @@ var AccordionItem = _ref2 => {
266
266
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
267
267
  borderWidth: 1,
268
268
  borderStyle: "solid",
269
- borderColor: "color.gray.200",
269
+ borderColor: "color-gray-200",
270
270
  marginBottom: 8,
271
271
  overflow: "hidden",
272
272
  opacity: isDisabled ? 0.5 : 1,
@@ -320,7 +320,7 @@ var AccordionTrigger = _ref3 => {
320
320
  cursor: isDisabled ? 'not-allowed' : 'pointer',
321
321
  alignItems: 'center',
322
322
  justifyContent: 'space-between',
323
- backgroundColor: 'color.white',
323
+ backgroundColor: 'color-white',
324
324
  width: '100%'
325
325
  }, views == null ? void 0 : views.container, props);
326
326
  // If asChild is true, clone the child element and merge props
@@ -366,7 +366,7 @@ var AccordionContent = _ref4 => {
366
366
  role: "region",
367
367
  "aria-labelledby": triggerId,
368
368
  padding: 16,
369
- backgroundColor: "color.white",
369
+ backgroundColor: "color-white",
370
370
  maxHeight: isExpanded ? '1000px' : '0',
371
371
  transition: "max-height 0.3s ease-in-out, opacity 0.3s ease-in-out",
372
372
  opacity: 1,
@@ -836,67 +836,67 @@ var getThemes = themeMode => {
836
836
  return {
837
837
  default: {
838
838
  container: {
839
- backgroundColor: 'color.gray.50',
840
- borderColor: 'color.gray.200',
839
+ backgroundColor: 'color-gray-50',
840
+ borderColor: 'color-gray-200',
841
841
  boxShadow: '0 1px 2px rgba(0, 0, 0, 0.05)'
842
842
  },
843
843
  content: {
844
- color: 'color.gray.700'
844
+ color: 'color-gray-700'
845
845
  },
846
846
  icon: {
847
- color: 'color.gray.500'
847
+ color: 'color-gray-500'
848
848
  }
849
849
  },
850
850
  info: {
851
851
  container: {
852
- backgroundColor: 'color.blue.50',
853
- borderColor: 'color.blue.200',
852
+ backgroundColor: 'color-blue-50',
853
+ borderColor: 'color-blue-200',
854
854
  boxShadow: '0 1px 2px rgba(59, 130, 246, 0.05)'
855
855
  },
856
856
  content: {
857
- color: 'color.blue.700'
857
+ color: 'color-blue-700'
858
858
  },
859
859
  icon: {
860
- color: 'color.blue.500'
860
+ color: 'color-blue-500'
861
861
  }
862
862
  },
863
863
  success: {
864
864
  container: {
865
- backgroundColor: 'color.green.50',
866
- borderColor: 'color.green.200',
865
+ backgroundColor: 'color-green-50',
866
+ borderColor: 'color-green-200',
867
867
  boxShadow: '0 1px 2px rgba(34, 197, 94, 0.05)'
868
868
  },
869
869
  content: {
870
- color: 'color.green.700'
870
+ color: 'color-green-700'
871
871
  },
872
872
  icon: {
873
- color: 'color.green.500'
873
+ color: 'color-green-500'
874
874
  }
875
875
  },
876
876
  error: {
877
877
  container: {
878
- backgroundColor: 'color.red.50',
879
- borderColor: 'color.red.200',
878
+ backgroundColor: 'color-red-50',
879
+ borderColor: 'color-red-200',
880
880
  boxShadow: '0 1px 2px rgba(239, 68, 68, 0.05)'
881
881
  },
882
882
  content: {
883
- color: 'color.red.700'
883
+ color: 'color-red-700'
884
884
  },
885
885
  icon: {
886
- color: 'color.red.500'
886
+ color: 'color-red-500'
887
887
  }
888
888
  },
889
889
  warning: {
890
890
  container: {
891
- backgroundColor: 'color.orange.50',
892
- borderColor: 'color.orange.200',
891
+ backgroundColor: 'color-orange-50',
892
+ borderColor: 'color-orange-200',
893
893
  boxShadow: '0 1px 2px rgba(249, 115, 22, 0.05)'
894
894
  },
895
895
  content: {
896
- color: 'color.orange.700'
896
+ color: 'color-orange-700'
897
897
  },
898
898
  icon: {
899
- color: 'color.orange.500'
899
+ color: 'color-orange-500'
900
900
  }
901
901
  }
902
902
  };
@@ -1053,7 +1053,7 @@ var AudioWaveformView = _ref => {
1053
1053
  }, viewProps), bars.map((amplitude, index) => (/*#__PURE__*/React__default.createElement(appStudio.View, {
1054
1054
  key: index,
1055
1055
  width: 2,
1056
- backgroundColor: isPaused ? 'color.gray.200' : amplitude >= 0 ? 'color.gray.900' : 'color.gray.500',
1056
+ backgroundColor: isPaused ? 'color-gray-200' : amplitude >= 0 ? 'color-gray-900' : 'color-gray-500',
1057
1057
  style: {
1058
1058
  height: clamp(amplitude * scalingFactor, 2, 32) + "px"
1059
1059
  }
@@ -1155,69 +1155,69 @@ var hideMessage = () => {
1155
1155
  var Themes = {
1156
1156
  info: {
1157
1157
  container: {
1158
- backgroundColor: 'color.blue.200',
1159
- border: 'color.blue.400'
1158
+ backgroundColor: 'color-blue-200',
1159
+ border: 'color-blue-400'
1160
1160
  },
1161
1161
  icon: {
1162
- color: 'color.blue.500',
1162
+ color: 'color-blue-500',
1163
1163
  name: 'InformationIcon'
1164
1164
  },
1165
1165
  content: {
1166
- color: 'color.blue.500'
1166
+ color: 'color-blue-500'
1167
1167
  },
1168
1168
  close: {
1169
- color: 'color.blue.500',
1169
+ color: 'color-blue-500',
1170
1170
  name: 'CloseIcon'
1171
1171
  }
1172
1172
  },
1173
1173
  success: {
1174
1174
  container: {
1175
- backgroundColor: 'color.green.200',
1176
- border: 'color.green.400'
1175
+ backgroundColor: 'color-green-200',
1176
+ border: 'color-green-400'
1177
1177
  },
1178
1178
  icon: {
1179
- color: 'color.green.500',
1179
+ color: 'color-green-500',
1180
1180
  name: 'SuccessIcon'
1181
1181
  },
1182
1182
  content: {
1183
- color: 'color.green.500'
1183
+ color: 'color-green-500'
1184
1184
  },
1185
1185
  close: {
1186
- color: 'color.green.500',
1186
+ color: 'color-green-500',
1187
1187
  name: 'CloseIcon'
1188
1188
  }
1189
1189
  },
1190
1190
  error: {
1191
1191
  container: {
1192
- backgroundColor: 'color.red.200',
1193
- border: 'color.red.400'
1192
+ backgroundColor: 'color-red-200',
1193
+ border: 'color-red-400'
1194
1194
  },
1195
1195
  icon: {
1196
- color: 'color.red.500',
1196
+ color: 'color-red-500',
1197
1197
  name: 'ErrrorIcon'
1198
1198
  },
1199
1199
  content: {
1200
- color: 'color.red.500'
1200
+ color: 'color-red-500'
1201
1201
  },
1202
1202
  close: {
1203
- color: 'color.red.500',
1203
+ color: 'color-red-500',
1204
1204
  name: 'CloseIcon'
1205
1205
  }
1206
1206
  },
1207
1207
  warning: {
1208
1208
  container: {
1209
- backgroundColor: 'color.orange.200',
1210
- border: 'color.orange.400'
1209
+ backgroundColor: 'color-orange-200',
1210
+ border: 'color-orange-400'
1211
1211
  },
1212
1212
  icon: {
1213
- color: 'color.orange.500',
1213
+ color: 'color-orange-500',
1214
1214
  name: 'ErrrorIcon'
1215
1215
  },
1216
1216
  content: {
1217
- color: 'color.orange.500'
1217
+ color: 'color-orange-500'
1218
1218
  },
1219
1219
  close: {
1220
- color: 'color.orange.500',
1220
+ color: 'color-orange-500',
1221
1221
  name: 'CloseIcon'
1222
1222
  }
1223
1223
  }
@@ -1626,7 +1626,7 @@ var UploadView = _ref => {
1626
1626
  height: 4,
1627
1627
  width: progress + "%",
1628
1628
  borderRadius: 2,
1629
- backgroundColor: "color.dark.50"
1629
+ backgroundColor: "color-dark-50"
1630
1630
  }, views == null ? void 0 : views.view))), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
1631
1631
  fontSize: 12
1632
1632
  }, views == null ? void 0 : views.text), progress, "%"));
@@ -1806,7 +1806,7 @@ function AudioInputView(_ref) {
1806
1806
  height: '36px',
1807
1807
  cursor: 'pointer',
1808
1808
  _hover: {
1809
- backgroundColor: 'color.gray.100'
1809
+ backgroundColor: 'color-gray-100'
1810
1810
  }
1811
1811
  }
1812
1812
  },
@@ -1820,7 +1820,7 @@ function AudioInputView(_ref) {
1820
1820
  },
1821
1821
  textProps: {
1822
1822
  fontSize: '14px',
1823
- color: 'color.gray.600'
1823
+ color: 'color-gray-600'
1824
1824
  },
1825
1825
  validateFile: file => {
1826
1826
  if (file.size > 100 * 1024 * 1024) {
@@ -1840,13 +1840,13 @@ function AudioInputView(_ref) {
1840
1840
  display: "flex",
1841
1841
  alignItems: "center",
1842
1842
  justifyContent: "center",
1843
- backgroundColor: 'color.gray.100',
1844
- color: 'color.gray.600',
1843
+ backgroundColor: 'color-gray-100',
1844
+ color: 'color-gray-600',
1845
1845
  borderRadius: '50%',
1846
1846
  border: "none",
1847
1847
  cursor: "pointer",
1848
1848
  _hover: {
1849
- backgroundColor: 'color.gray.200'
1849
+ backgroundColor: 'color-gray-200'
1850
1850
  }
1851
1851
  }, /*#__PURE__*/React__default.createElement(MicrophoneIcon, {
1852
1852
  widthHeight: 16,
@@ -1864,13 +1864,13 @@ function AudioInputView(_ref) {
1864
1864
  display: "flex",
1865
1865
  alignItems: "center",
1866
1866
  justifyContent: "center",
1867
- backgroundColor: 'color.gray.100',
1868
- color: 'color.gray.600',
1867
+ backgroundColor: 'color-gray-100',
1868
+ color: 'color-gray-600',
1869
1869
  borderRadius: '50%',
1870
1870
  border: "none",
1871
1871
  cursor: "pointer",
1872
1872
  _hover: {
1873
- backgroundColor: 'color.gray.200'
1873
+ backgroundColor: 'color-gray-200'
1874
1874
  }
1875
1875
  }, paused ? (/*#__PURE__*/React__default.createElement(PlayIcon, {
1876
1876
  widthHeight: 16,
@@ -1889,13 +1889,13 @@ function AudioInputView(_ref) {
1889
1889
  display: "flex",
1890
1890
  alignItems: "center",
1891
1891
  justifyContent: "center",
1892
- backgroundColor: 'theme.error',
1893
- color: 'color.white',
1892
+ backgroundColor: 'theme-error',
1893
+ color: 'color-white',
1894
1894
  borderRadius: '50%',
1895
1895
  border: "none",
1896
1896
  cursor: "pointer",
1897
1897
  _hover: {
1898
- backgroundColor: 'color.red.600'
1898
+ backgroundColor: 'color-red-600'
1899
1899
  }
1900
1900
  }, /*#__PURE__*/React__default.createElement(StopIcon, {
1901
1901
  widthHeight: 16,
@@ -2148,13 +2148,13 @@ var DefaultAvatarStyles = {
2148
2148
  borderWidth: '1px',
2149
2149
  borderStyle: 'solid',
2150
2150
  borderColor: 'transparent',
2151
- backgroundColor: 'color.gray.100',
2151
+ backgroundColor: 'color-gray-100',
2152
2152
  boxShadow: '0px 2px 4px rgba(0, 0, 0, 0.1)',
2153
2153
  transition: 'all 0.2s ease'
2154
2154
  },
2155
2155
  fallback: {
2156
2156
  fontWeight: '500',
2157
- color: 'color.gray.600'
2157
+ color: 'color-gray-600'
2158
2158
  },
2159
2159
  image: {
2160
2160
  objectFit: 'cover',
@@ -2184,7 +2184,7 @@ var AvatarView = _ref => {
2184
2184
  width: avatarSize,
2185
2185
  height: avatarSize
2186
2186
  }, DefaultAvatarStyles.container, {
2187
- borderColor: imageError ? 'color.gray.400' : 'transparent',
2187
+ borderColor: imageError ? 'color-gray-400' : 'transparent',
2188
2188
  onClick: onClick
2189
2189
  }, views == null ? void 0 : views.container), !imageError && src ? (/*#__PURE__*/React__default.createElement(appStudio.Image, {
2190
2190
  alt: "IM",
@@ -2332,8 +2332,8 @@ var PositionStyles = {
2332
2332
  var getBadgeVariants = themeMode => {
2333
2333
  return {
2334
2334
  filled: {
2335
- backgroundColor: 'theme.primary',
2336
- color: 'color.white',
2335
+ backgroundColor: 'theme-primary',
2336
+ color: 'color-white',
2337
2337
  borderWidth: '1px',
2338
2338
  borderStyle: 'solid',
2339
2339
  borderColor: 'transparent',
@@ -2343,8 +2343,8 @@ var getBadgeVariants = themeMode => {
2343
2343
  backgroundColor: 'transparent',
2344
2344
  borderWidth: '1px',
2345
2345
  borderStyle: 'solid',
2346
- borderColor: 'theme.primary',
2347
- color: 'theme.primary',
2346
+ borderColor: 'theme-primary',
2347
+ color: 'theme-primary',
2348
2348
  transition: 'all 0.2s ease'
2349
2349
  },
2350
2350
  link: {
@@ -2352,14 +2352,14 @@ var getBadgeVariants = themeMode => {
2352
2352
  borderWidth: '1px',
2353
2353
  borderStyle: 'solid',
2354
2354
  borderColor: 'transparent',
2355
- color: 'theme.primary',
2355
+ color: 'theme-primary',
2356
2356
  textDecoration: 'underline',
2357
2357
  textUnderlineOffset: '2px',
2358
2358
  transition: 'all 0.2s ease'
2359
2359
  },
2360
2360
  ghost: {
2361
2361
  backgroundColor: 'transparent',
2362
- color: 'color.gray.500',
2362
+ color: 'color-gray-500',
2363
2363
  borderWidth: '1px',
2364
2364
  borderStyle: 'solid',
2365
2365
  borderColor: 'transparent',
@@ -2521,7 +2521,7 @@ var DefaultSpinner = _ref => {
2521
2521
  var {
2522
2522
  size = 'md',
2523
2523
  speed = 'normal',
2524
- color = 'theme.loading',
2524
+ color = 'theme-loading',
2525
2525
  themeMode: elementMode
2526
2526
  } = _ref,
2527
2527
  props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
@@ -2570,7 +2570,7 @@ var Dotted = _ref2 => {
2570
2570
  var {
2571
2571
  size = 'md',
2572
2572
  speed = 'normal',
2573
- color = 'theme.loading',
2573
+ color = 'theme-loading',
2574
2574
  themeMode: elementMode
2575
2575
  } = _ref2,
2576
2576
  props = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
@@ -2618,7 +2618,7 @@ var Quarter = _ref3 => {
2618
2618
  var {
2619
2619
  size = 'md',
2620
2620
  speed = 'normal',
2621
- color = 'theme.loading',
2621
+ color = 'theme-loading',
2622
2622
  themeMode: elementMode
2623
2623
  } = _ref3,
2624
2624
  props = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
@@ -2670,8 +2670,8 @@ var LoaderView = _ref4 => {
2670
2670
  var {
2671
2671
  getColor
2672
2672
  } = appStudio.useTheme();
2673
- loaderColor = getColor(loaderColor || props.color || 'theme.loading');
2674
- textColor = getColor(textColor || props.color || 'theme.loading');
2673
+ loaderColor = getColor(loaderColor || props.color || 'theme-loading');
2674
+ textColor = getColor(textColor || props.color || 'theme-loading');
2675
2675
  var style = {
2676
2676
  size,
2677
2677
  speed,
@@ -3319,22 +3319,22 @@ var ButtonView = _ref5 => {
3319
3319
  getColorHex
3320
3320
  } = appStudio.useTheme();
3321
3321
  /* MAIN COLOR – determines the entire palette */
3322
- // Priority: explicit backgroundColor/color prop -> theme.button.background -> theme.primary
3323
- var mainColorKey = (_ref6 = backgroundColor != null ? backgroundColor : color) != null ? _ref6 : 'theme.button.background';
3322
+ // Priority: explicit backgroundColor/color prop -> theme-button.background -> theme-primary
3323
+ var mainColorKey = (_ref6 = backgroundColor != null ? backgroundColor : color) != null ? _ref6 : 'theme-button-background';
3324
3324
  // Decide which theme token to resolve based on state
3325
- var stateColorKey = isDisabled ? 'theme.disabled' : isLoading ? 'theme.loading' : mainColorKey;
3326
- // Resolve to actual hex color.
3327
- // If 'theme.button.background' isn't defined, it falls back to 'theme.primary'
3325
+ var stateColorKey = isDisabled ? 'theme-disabled' : isLoading ? 'theme-loading' : mainColorKey;
3326
+ // Resolve to actual hex color-
3327
+ // If 'theme-button-background' isn't defined, it falls back to 'theme-primary'
3328
3328
  var mainTone = getColorHex(stateColorKey);
3329
- if (mainTone === 'theme.button.background' || mainTone === 'theme.loading') {
3330
- mainTone = getColorHex(isLoading ? 'color.dark.500' : 'theme.primary');
3329
+ if (mainTone === 'theme-button-background' || mainTone === 'theme-loading') {
3330
+ mainTone = getColorHex(isLoading ? 'color-dark-500' : 'theme-primary');
3331
3331
  }
3332
3332
  /* text color - explicitly provided or default to white */
3333
- // Priority: explicit textColor prop -> theme.button.text -> color.white
3334
- var resolvedTextColorKey = textColor != null ? textColor : 'theme.button.text';
3333
+ // Priority: explicit textColor prop -> theme-button.text -> color-white
3334
+ var resolvedTextColorKey = textColor != null ? textColor : 'theme-button-text';
3335
3335
  var resolvedTextColor = getColorHex(resolvedTextColorKey);
3336
- if (resolvedTextColor === 'theme.button.text') {
3337
- resolvedTextColor = getColorHex('color.white');
3336
+ if (resolvedTextColor === 'theme-button-text') {
3337
+ resolvedTextColor = getColorHex('color-white');
3338
3338
  }
3339
3339
  /* variant palette */
3340
3340
  var palette = React.useMemo(() => getButtonVariants(mainTone, resolvedTextColor, reversed), [mainTone, resolvedTextColor, reversed]);
@@ -3437,23 +3437,23 @@ var getCardVariants = themeMode => {
3437
3437
  var isDark = themeMode === 'dark';
3438
3438
  return {
3439
3439
  default: {
3440
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3440
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3441
3441
  border: 'none',
3442
3442
  transition: 'background-color 0.2s ease, box-shadow 0.2s ease'
3443
3443
  },
3444
3444
  outlined: {
3445
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3445
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3446
3446
  borderWidth: '1px',
3447
3447
  borderStyle: 'solid',
3448
- borderColor: isDark ? 'color.gray.700' : 'color.gray.200',
3448
+ borderColor: isDark ? 'color-gray-700' : 'color-gray-200',
3449
3449
  transition: 'border-color 0.2s ease, box-shadow 0.2s ease',
3450
3450
  _hover: {
3451
- borderColor: isDark ? 'color.gray.600' : 'color.gray.300',
3451
+ borderColor: isDark ? 'color-gray-600' : 'color-gray-300',
3452
3452
  boxShadow: '0px 1px 3px rgba(0, 0, 0, 0.05)'
3453
3453
  }
3454
3454
  },
3455
3455
  elevated: {
3456
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3456
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3457
3457
  boxShadow: isDark ? '0px 4px 12px rgba(0, 0, 0, 0.3)' : '0px 1px 3px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.06)',
3458
3458
  border: 'none',
3459
3459
  transition: 'box-shadow 0.2s ease',
@@ -3471,8 +3471,8 @@ var getDefaultCardStyles = theme => {
3471
3471
  var isDark = theme.themeMode === 'dark';
3472
3472
  return {
3473
3473
  container: {
3474
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3475
- color: isDark ? 'color.white' : 'color.black',
3474
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3475
+ color: isDark ? 'color-white' : 'color-black',
3476
3476
  borderRadius: '8px',
3477
3477
  overflow: 'hidden',
3478
3478
  transition: 'all 0.2s ease'
@@ -3481,18 +3481,18 @@ var getDefaultCardStyles = theme => {
3481
3481
  padding: '16px',
3482
3482
  borderBottomWidth: '1px',
3483
3483
  borderBottomStyle: 'solid',
3484
- borderBottomColor: isDark ? 'color.gray.800' : 'color.gray.100',
3485
- color: 'theme.primary'
3484
+ borderBottomColor: isDark ? 'color-gray-800' : 'color-gray-100',
3485
+ color: 'theme-primary'
3486
3486
  },
3487
3487
  content: {
3488
3488
  padding: '16px',
3489
- color: isDark ? 'color.gray.300' : 'color.gray.600'
3489
+ color: isDark ? 'color-gray-300' : 'color-gray-600'
3490
3490
  },
3491
3491
  footer: {
3492
3492
  padding: '16px',
3493
3493
  borderTopWidth: '1px',
3494
3494
  borderTopStyle: 'solid',
3495
- borderTopColor: isDark ? 'color.gray.800' : 'color.gray.100'
3495
+ borderTopColor: isDark ? 'color-gray-800' : 'color-gray-100'
3496
3496
  }
3497
3497
  };
3498
3498
  };
@@ -3820,7 +3820,7 @@ var IndicatorStyles = {
3820
3820
  width: '10px',
3821
3821
  height: '10px',
3822
3822
  borderRadius: '50%',
3823
- backgroundColor: 'color.gray.300',
3823
+ backgroundColor: 'color-gray-300',
3824
3824
  margin: '0 4px',
3825
3825
  cursor: 'pointer',
3826
3826
  transition: 'background-color 0.3s ease'
@@ -3829,7 +3829,7 @@ var IndicatorStyles = {
3829
3829
  width: '20px',
3830
3830
  height: '4px',
3831
3831
  borderRadius: '2px',
3832
- backgroundColor: 'color.gray.300',
3832
+ backgroundColor: 'color-gray-300',
3833
3833
  margin: '0 4px',
3834
3834
  cursor: 'pointer',
3835
3835
  transition: 'background-color 0.3s ease'
@@ -3838,7 +3838,7 @@ var IndicatorStyles = {
3838
3838
  minWidth: '24px',
3839
3839
  height: '24px',
3840
3840
  borderRadius: '50%',
3841
- backgroundColor: 'color.gray.300',
3841
+ backgroundColor: 'color-gray-300',
3842
3842
  margin: '0 4px',
3843
3843
  cursor: 'pointer',
3844
3844
  display: 'flex',
@@ -3850,22 +3850,22 @@ var IndicatorStyles = {
3850
3850
  };
3851
3851
  var ActiveIndicatorStyles = {
3852
3852
  dot: {
3853
- backgroundColor: 'theme.primary'
3853
+ backgroundColor: 'theme-primary'
3854
3854
  },
3855
3855
  line: {
3856
- backgroundColor: 'theme.primary'
3856
+ backgroundColor: 'theme-primary'
3857
3857
  },
3858
3858
  number: {
3859
- backgroundColor: 'theme.primary',
3860
- color: 'color.white'
3859
+ backgroundColor: 'theme-primary',
3860
+ color: 'color-white'
3861
3861
  }
3862
3862
  };
3863
3863
  var NavigationButtonStyles = {
3864
3864
  width: '40px',
3865
3865
  height: '40px',
3866
3866
  borderRadius: '50%',
3867
- backgroundColor: 'color.white',
3868
- color: 'color.gray.800',
3867
+ backgroundColor: 'color-white',
3868
+ color: 'color-gray-800',
3869
3869
  display: 'flex',
3870
3870
  alignItems: 'center',
3871
3871
  justifyContent: 'center',
@@ -3874,7 +3874,7 @@ var NavigationButtonStyles = {
3874
3874
  zIndex: 1,
3875
3875
  transition: 'background-color 0.3s ease',
3876
3876
  _hover: {
3877
- backgroundColor: 'color.gray.100'
3877
+ backgroundColor: 'color-gray-100'
3878
3878
  }
3879
3879
  };
3880
3880
  // Default styles for the compound component pattern
@@ -4242,17 +4242,17 @@ Carousel.Next = CarouselNextComponent; // Compound component pattern
4242
4242
  */
4243
4243
  var CHART_COLORS = {
4244
4244
  // Primary colors for all charts
4245
- blue: 'color.blue.500',
4246
- green: 'color.green.500',
4247
- purple: 'color.purple.500',
4248
- orange: 'color.orange.500',
4249
- red: 'color.red.500',
4245
+ blue: 'color-blue-500',
4246
+ green: 'color-green-500',
4247
+ purple: 'color-purple-500',
4248
+ orange: 'color-orange-500',
4249
+ red: 'color-red-500',
4250
4250
  // Additional colors if needed
4251
- teal: 'color.teal.500',
4252
- pink: 'color.pink.500',
4253
- indigo: 'color.indigo.500',
4254
- yellow: 'color.yellow.500',
4255
- cyan: 'color.cyan.500'
4251
+ teal: 'color-teal-500',
4252
+ pink: 'color-pink-500',
4253
+ indigo: 'color-indigo-500',
4254
+ yellow: 'color-yellow-500',
4255
+ cyan: 'color-cyan-500'
4256
4256
  };
4257
4257
  // Default color array for consistent ordering
4258
4258
  var DEFAULT_CHART_COLORS = [CHART_COLORS.blue, CHART_COLORS.green, CHART_COLORS.purple, CHART_COLORS.orange, CHART_COLORS.red, CHART_COLORS.teal, CHART_COLORS.pink, CHART_COLORS.indigo, CHART_COLORS.yellow, CHART_COLORS.cyan];
@@ -4301,18 +4301,18 @@ var LegendTextStyles = {
4301
4301
  };
4302
4302
  // Default styles for chart grid
4303
4303
  var GridStyles = {
4304
- stroke: 'color.gray.200',
4304
+ stroke: 'color-gray-200',
4305
4305
  strokeWidth: '1px'
4306
4306
  };
4307
4307
  // Default styles for chart axis
4308
4308
  var AxisStyles = {
4309
- stroke: 'color.gray.300',
4309
+ stroke: 'color-gray-300',
4310
4310
  strokeWidth: '1px'
4311
4311
  };
4312
4312
  // Default styles for axis labels
4313
4313
  var AxisLabelStyles = {
4314
4314
  fontSize: '12px',
4315
- fill: 'color.gray.600'
4315
+ fill: 'color-gray-600'
4316
4316
  };
4317
4317
  // Default styles for bar chart bars
4318
4318
  var BarStyles = {
@@ -4368,12 +4368,12 @@ var LoadingOverlayStyles = /*#__PURE__*/Object.assign({}, OverlayBaseStyles);
4368
4368
  // Default styles for error overlay
4369
4369
  var ErrorOverlayStyles = /*#__PURE__*/Object.assign({}, OverlayBaseStyles, {
4370
4370
  backgroundColor: 'rgba(255, 235, 238, 0.9)',
4371
- color: 'color.red.700'
4371
+ color: 'color-red-700'
4372
4372
  });
4373
4373
  // Default styles for no data overlay
4374
4374
  var NoDataOverlayStyles = /*#__PURE__*/Object.assign({}, OverlayBaseStyles, {
4375
4375
  backgroundColor: 'rgba(245, 245, 245, 0.8)',
4376
- color: 'color.gray.600'
4376
+ color: 'color-gray-600'
4377
4377
  });
4378
4378
 
4379
4379
  var useChartState = _ref => {
@@ -4609,7 +4609,7 @@ var BarChart = _ref => {
4609
4609
  backgroundColor: fillColor
4610
4610
  })), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4611
4611
  marginTop: "4px",
4612
- color: "color.gray.500",
4612
+ color: "color-gray-500",
4613
4613
  fontSize: "12px"
4614
4614
  }, categoryLabel), /*#__PURE__*/React__default.createElement(appStudio.View, {
4615
4615
  marginTop: "8px",
@@ -4619,7 +4619,7 @@ var BarChart = _ref => {
4619
4619
  display: "flex",
4620
4620
  justifyContent: "space-between"
4621
4621
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4622
- color: "color.gray.500"
4622
+ color: "color-gray-500"
4623
4623
  }, "Value"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4624
4624
  fontWeight: "medium"
4625
4625
  }, value.toLocaleString())), sharePercentage !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4627,7 +4627,7 @@ var BarChart = _ref => {
4627
4627
  display: "flex",
4628
4628
  justifyContent: "space-between"
4629
4629
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4630
- color: "color.gray.500"
4630
+ color: "color-gray-500"
4631
4631
  }, "Share"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4632
4632
  fontWeight: "medium"
4633
4633
  }, sharePercentage + "%"))), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4635,7 +4635,7 @@ var BarChart = _ref => {
4635
4635
  display: "flex",
4636
4636
  justifyContent: "space-between"
4637
4637
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4638
- color: "color.gray.500"
4638
+ color: "color-gray-500"
4639
4639
  }, "Category total"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4640
4640
  fontWeight: "medium"
4641
4641
  }, categoryTotal.toLocaleString()))));
@@ -4815,7 +4815,7 @@ var LineChart = _ref => {
4815
4815
  backgroundColor: lineColor
4816
4816
  })), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4817
4817
  marginTop: "4px",
4818
- color: "color.gray.500",
4818
+ color: "color-gray-500",
4819
4819
  fontSize: "12px"
4820
4820
  }, categoryLabel), /*#__PURE__*/React__default.createElement(appStudio.View, {
4821
4821
  marginTop: "8px",
@@ -4825,7 +4825,7 @@ var LineChart = _ref => {
4825
4825
  display: "flex",
4826
4826
  justifyContent: "space-between"
4827
4827
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4828
- color: "color.gray.500"
4828
+ color: "color-gray-500"
4829
4829
  }, "Value"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4830
4830
  fontWeight: "medium"
4831
4831
  }, value.toLocaleString())), formattedDelta !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4833,7 +4833,7 @@ var LineChart = _ref => {
4833
4833
  display: "flex",
4834
4834
  justifyContent: "space-between"
4835
4835
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4836
- color: "color.gray.500"
4836
+ color: "color-gray-500"
4837
4837
  }, "Change"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4838
4838
  fontWeight: "medium"
4839
4839
  }, formattedDelta))), sharePercentage !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4841,7 +4841,7 @@ var LineChart = _ref => {
4841
4841
  display: "flex",
4842
4842
  justifyContent: "space-between"
4843
4843
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4844
- color: "color.gray.500"
4844
+ color: "color-gray-500"
4845
4845
  }, "Share"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4846
4846
  fontWeight: "medium"
4847
4847
  }, sharePercentage + "%"))), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4849,7 +4849,7 @@ var LineChart = _ref => {
4849
4849
  display: "flex",
4850
4850
  justifyContent: "space-between"
4851
4851
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4852
- color: "color.gray.500"
4852
+ color: "color-gray-500"
4853
4853
  }, "Category total"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4854
4854
  fontWeight: "medium"
4855
4855
  }, categoryTotal.toLocaleString()))));
@@ -5024,7 +5024,7 @@ var PieChart = _ref => {
5024
5024
  backgroundColor: slice.color
5025
5025
  })), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5026
5026
  marginTop: "4px",
5027
- color: "color.gray.500",
5027
+ color: "color-gray-500",
5028
5028
  fontSize: "12px"
5029
5029
  }, "Slice ", slice.index + 1, " of ", dataPoints.length), /*#__PURE__*/React__default.createElement(appStudio.View, {
5030
5030
  marginTop: "8px",
@@ -5034,7 +5034,7 @@ var PieChart = _ref => {
5034
5034
  display: "flex",
5035
5035
  justifyContent: "space-between"
5036
5036
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
5037
- color: "color.gray.500"
5037
+ color: "color-gray-500"
5038
5038
  }, "Value"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5039
5039
  fontWeight: "medium"
5040
5040
  }, slice.value.toLocaleString())), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -5042,7 +5042,7 @@ var PieChart = _ref => {
5042
5042
  display: "flex",
5043
5043
  justifyContent: "space-between"
5044
5044
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
5045
- color: "color.gray.500"
5045
+ color: "color-gray-500"
5046
5046
  }, "Share"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5047
5047
  fontWeight: "medium"
5048
5048
  }, slice.percentage)), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -5050,7 +5050,7 @@ var PieChart = _ref => {
5050
5050
  display: "flex",
5051
5051
  justifyContent: "space-between"
5052
5052
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
5053
- color: "color.gray.500"
5053
+ color: "color-gray-500"
5054
5054
  }, "Total"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5055
5055
  fontWeight: "medium"
5056
5056
  }, total.toLocaleString())), remainingShare !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -5058,7 +5058,7 @@ var PieChart = _ref => {
5058
5058
  display: "flex",
5059
5059
  justifyContent: "space-between"
5060
5060
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
5061
- color: "color.gray.500"
5061
+ color: "color-gray-500"
5062
5062
  }, "Remaining"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5063
5063
  fontWeight: "medium"
5064
5064
  }, remainingShare.toFixed(1) + "%")))));
@@ -5186,11 +5186,11 @@ var ChartTooltip = _ref => {
5186
5186
  position: "fixed",
5187
5187
  left: position.left + "px",
5188
5188
  top: position.top + "px",
5189
- backgroundColor: "color.white",
5189
+ backgroundColor: "color-white",
5190
5190
  padding: "12px 16px",
5191
5191
  borderRadius: "8px",
5192
5192
  boxShadow: "0px 12px 24px rgba(15, 23, 42, 0.18)",
5193
- border: "1px solid color.gray.200",
5193
+ border: "1px solid color-gray-200",
5194
5194
  fontSize: "14px",
5195
5195
  display: "flex",
5196
5196
  flexDirection: "column",
@@ -5583,10 +5583,10 @@ var CookieConsentView = _ref => {
5583
5583
  }, title && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
5584
5584
  fontWeight: "bold",
5585
5585
  fontSize: 18,
5586
- color: "color.black"
5586
+ color: "color-black"
5587
5587
  }, views == null ? void 0 : views.title), title)), description && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
5588
5588
  fontSize: 14,
5589
- color: "color.black"
5589
+ color: "color-black"
5590
5590
  }, views == null ? void 0 : views.description), typeof description === 'string' ? description : description)), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
5591
5591
  gap: 12,
5592
5592
  justifyContent: "flex-end",
@@ -5635,8 +5635,8 @@ var CookieConsentView = _ref => {
5635
5635
  * onAccept={() => console.log('Cookies accepted')}
5636
5636
  * onCustomize={() => openPreferencesModal()}
5637
5637
  * views={{
5638
- * container: { backgroundColor: 'color.blue.50' },
5639
- * title: { color: 'color.blue.800' }
5638
+ * container: { backgroundColor: 'color-blue-50' },
5639
+ * title: { color: 'color-blue-800' }
5640
5640
  * }}
5641
5641
  * />
5642
5642
  */
@@ -5740,27 +5740,27 @@ var ContextMenuSizes = {
5740
5740
  };
5741
5741
  var ContextMenuVariants = {
5742
5742
  default: {
5743
- backgroundColor: 'color.white',
5744
- color: 'color.gray.800'
5743
+ backgroundColor: 'color-white',
5744
+ color: 'color-gray-800'
5745
5745
  },
5746
5746
  filled: {
5747
- backgroundColor: 'color.gray.100',
5748
- color: 'color.gray.800'
5747
+ backgroundColor: 'color-gray-100',
5748
+ color: 'color-gray-800'
5749
5749
  },
5750
5750
  outline: {
5751
- backgroundColor: 'color.white',
5751
+ backgroundColor: 'color-white',
5752
5752
  borderWidth: '1px',
5753
5753
  borderStyle: 'solid',
5754
- borderColor: 'color.gray.200',
5755
- color: 'color.gray.800'
5754
+ borderColor: 'color-gray-200',
5755
+ color: 'color-gray-800'
5756
5756
  }
5757
5757
  };
5758
5758
  var ContextMenuItemStates = {
5759
5759
  hover: {
5760
- backgroundColor: 'color.gray.100'
5760
+ backgroundColor: 'color-gray-100'
5761
5761
  },
5762
5762
  active: {
5763
- backgroundColor: 'color.gray.200'
5763
+ backgroundColor: 'color-gray-200'
5764
5764
  },
5765
5765
  disabled: {
5766
5766
  opacity: 0.5,
@@ -6077,7 +6077,7 @@ var ContextMenuItem = _ref4 => {
6077
6077
  "data-disabled": disabled ? '' : undefined
6078
6078
  }, ContextMenuSizes[size], {
6079
6079
  _hover: !disabled ? ContextMenuItemStates.hover : {},
6080
- backgroundColor: isHovered && !disabled ? 'color.gray.100' : 'transparent',
6080
+ backgroundColor: isHovered && !disabled ? 'color-gray-100' : 'transparent',
6081
6081
  onMouseEnter: handleMouseEnter,
6082
6082
  onMouseLeave: handleMouseLeave,
6083
6083
  onClick: _handleClick
@@ -6127,7 +6127,7 @@ var ContextMenuDivider = _ref5 => {
6127
6127
  props = _objectWithoutPropertiesLoose(_ref5, _excluded4$5);
6128
6128
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
6129
6129
  height: "1px",
6130
- backgroundColor: "color.gray.200",
6130
+ backgroundColor: "color-gray-200",
6131
6131
  margin: "4px 0",
6132
6132
  role: "separator",
6133
6133
  "aria-orientation": "horizontal"
@@ -6141,7 +6141,7 @@ var ContextMenuSeparator = _ref6 => {
6141
6141
  props = _objectWithoutPropertiesLoose(_ref6, _excluded5$1);
6142
6142
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
6143
6143
  height: "1px",
6144
- backgroundColor: "color.gray.200",
6144
+ backgroundColor: "color-gray-200",
6145
6145
  margin: "4px 0",
6146
6146
  role: "separator",
6147
6147
  "aria-orientation": "horizontal"
@@ -6349,7 +6349,7 @@ var HelperText = _ref => {
6349
6349
  marginVertical: 0,
6350
6350
  marginHorizontal: 0,
6351
6351
  // Color properties
6352
- color: "color.gray.500" // Muted color for helper text
6352
+ color: "color-gray-500" // Muted color for helper text
6353
6353
  ,
6354
6354
 
6355
6355
  // Animation
@@ -6381,7 +6381,7 @@ var FieldContainer = /*#__PURE__*/React__default.forwardRef((_ref, ref) => {
6381
6381
  marginHorizontal: 0,
6382
6382
  fontWeight: "500" // Medium weight for better readability
6383
6383
  ,
6384
- color: "color.red.500",
6384
+ color: "color-red-500",
6385
6385
  transition: "all 0.2s ease"
6386
6386
  }, views == null ? void 0 : views.error), error)));
6387
6387
  });
@@ -6441,19 +6441,19 @@ var InputVariants = {
6441
6441
  outline: {
6442
6442
  borderWidth: '1px',
6443
6443
  borderStyle: 'solid',
6444
- borderColor: 'color.gray.200',
6445
- backgroundColor: 'color.white',
6444
+ borderColor: 'color-gray-200',
6445
+ backgroundColor: 'color-white',
6446
6446
  transition: 'border-color 0.2s ease, box-shadow 0.2s ease',
6447
6447
  _hover: {
6448
- borderColor: 'color.gray.300'
6448
+ borderColor: 'color-gray-300'
6449
6449
  },
6450
6450
  _focus: {
6451
- borderColor: 'theme.primary',
6451
+ borderColor: 'theme-primary',
6452
6452
  outline: 'none',
6453
6453
  boxShadow: '0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 4px rgba(66, 153, 225, 0.2)'
6454
6454
  },
6455
6455
  _focusVisible: {
6456
- borderColor: 'theme.primary',
6456
+ borderColor: 'theme-primary',
6457
6457
  outline: 'none',
6458
6458
  boxShadow: '0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 4px rgba(66, 153, 225, 0.2)'
6459
6459
  }
@@ -6462,19 +6462,19 @@ var InputVariants = {
6462
6462
  borderWidth: 0,
6463
6463
  borderBottomWidth: '1px',
6464
6464
  borderBottomStyle: 'solid',
6465
- borderBottomColor: 'color.gray.200',
6465
+ borderBottomColor: 'color-gray-200',
6466
6466
  borderRadius: 0,
6467
- backgroundColor: 'color.white',
6467
+ backgroundColor: 'color-white',
6468
6468
  transition: 'border-color 0.2s ease',
6469
6469
  _hover: {
6470
- borderBottomColor: 'color.gray.300'
6470
+ borderBottomColor: 'color-gray-300'
6471
6471
  },
6472
6472
  _focus: {
6473
- borderBottomColor: 'theme.primary',
6473
+ borderBottomColor: 'theme-primary',
6474
6474
  outline: 'none'
6475
6475
  },
6476
6476
  _focusVisible: {
6477
- borderBottomColor: 'theme.primary',
6477
+ borderBottomColor: 'theme-primary',
6478
6478
  outline: 'none'
6479
6479
  }
6480
6480
  },
@@ -6547,7 +6547,7 @@ var FieldContent = _ref => {
6547
6547
  // Determine if the field is in an interactive state
6548
6548
  var isInteractive = (isHovered || isFocused) && !isDisabled;
6549
6549
  // Set the appropriate color based on state
6550
- var color = error ? 'color.red.500' : isInteractive ? 'theme.primary' : 'color.gray.300';
6550
+ var color = error ? 'color-red-500' : isInteractive ? 'theme-primary' : 'color-gray-300';
6551
6551
  return /*#__PURE__*/React__default.createElement(appStudio.Horizontal
6552
6552
  // Layout properties
6553
6553
  , Object.assign({
@@ -6562,7 +6562,7 @@ var FieldContent = _ref => {
6562
6562
  // Visual properties
6563
6563
  borderStyle: "solid",
6564
6564
  borderColor: color,
6565
- backgroundColor: "color.white",
6565
+ backgroundColor: "color-white",
6566
6566
  fontSize: appStudio.Typography.fontSizes[size],
6567
6567
  // State properties
6568
6568
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'text',
@@ -6682,7 +6682,7 @@ var FieldLabel = _ref => {
6682
6682
  children,
6683
6683
  size = 'md',
6684
6684
  error = false,
6685
- color = 'theme.primary',
6685
+ color = 'theme-primary',
6686
6686
  views = {
6687
6687
  label: {}
6688
6688
  }
@@ -6702,7 +6702,7 @@ var FieldLabel = _ref => {
6702
6702
  ,
6703
6703
  whiteSpace: "nowrap",
6704
6704
  // Color properties
6705
- color: error ? 'color.red.500' : color,
6705
+ color: error ? 'color-red-500' : color,
6706
6706
  // Animation
6707
6707
  transition: "all 0.2s ease"
6708
6708
  }, views['label'], props), children);
@@ -6788,7 +6788,7 @@ var Item = _ref => {
6788
6788
  onMouseLeave: handleHover,
6789
6789
  onClick: e => handleOptionClick(e, option.value),
6790
6790
  // Visual properties
6791
- backgroundColor: isHovered ? 'color.gray.100' : 'transparent',
6791
+ backgroundColor: isHovered ? 'color-gray-100' : 'transparent',
6792
6792
  borderRadius: "4px" // Subtle rounded corners for items
6793
6793
  ,
6794
6794
 
@@ -6841,7 +6841,7 @@ var SelectBox = _ref2 => {
6841
6841
  letterSpacing: '-0.01em',
6842
6842
  // Visual properties
6843
6843
  backgroundColor: 'transparent',
6844
- color: isDisabled ? 'color.gray.400' : 'color.gray.900',
6844
+ color: isDisabled ? 'color-gray-400' : 'color-gray-900',
6845
6845
  // State properties
6846
6846
  cursor: isDisabled ? 'not-allowed' : 'pointer',
6847
6847
  // Animation
@@ -6919,7 +6919,7 @@ var DropDown = _ref5 => {
6919
6919
  width: "100%",
6920
6920
  display: "flex",
6921
6921
  flexDirection: "column",
6922
- backgroundColor: "color.white",
6922
+ backgroundColor: "color-white",
6923
6923
  transition: "all 0.2s ease",
6924
6924
  margin: 0,
6925
6925
  style: {
@@ -6942,7 +6942,7 @@ var DropDown = _ref5 => {
6942
6942
  style: views['text'],
6943
6943
  option: option,
6944
6944
  callback: handleCallback,
6945
- backgroundColor: index === highlightedIndex ? 'color.gray.100' : 'transparent',
6945
+ backgroundColor: index === highlightedIndex ? 'color-gray-100' : 'transparent',
6946
6946
  onMouseEnter: () => setHighlightedIndex(index)
6947
6947
  }, itemStates)))));
6948
6948
  };
@@ -6964,7 +6964,7 @@ var MultiSelect = _ref6 => {
6964
6964
  padding: 8,
6965
6965
  alignItems: "center",
6966
6966
  borderRadius: "6px",
6967
- backgroundColor: "color.gray.200",
6967
+ backgroundColor: "color-gray-200",
6968
6968
  fontSize: appStudio.Typography.fontSizes[size],
6969
6969
  onClick: event => event.stopPropagation(),
6970
6970
  transition: "all 0.2s ease"
@@ -7144,7 +7144,7 @@ var SelectView = _ref7 => {
7144
7144
  shadow: shadow,
7145
7145
  variant: variant,
7146
7146
  value: value,
7147
- color: 'theme.primary',
7147
+ color: 'theme-primary',
7148
7148
  isHovered: isHovered,
7149
7149
  isDisabled: isDisabled,
7150
7150
  isReadOnly: isReadOnly,
@@ -7155,7 +7155,7 @@ var SelectView = _ref7 => {
7155
7155
  position: "relative"
7156
7156
  }, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
7157
7157
  htmlFor: id,
7158
- color: 'theme.primary',
7158
+ color: 'theme-primary',
7159
7159
  error: error
7160
7160
  }, views), label)), /*#__PURE__*/React__default.createElement(HiddenSelect, Object.assign({
7161
7161
  id: id,
@@ -7194,7 +7194,7 @@ var SelectView = _ref7 => {
7194
7194
  views: Object.assign({}, views, {
7195
7195
  dropDown: {
7196
7196
  borderRadius: '6px',
7197
- border: '1px solid color.gray.200',
7197
+ border: '1px solid color-gray-200',
7198
7198
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
7199
7199
  padding: '8px',
7200
7200
  maxHeight: '240px',
@@ -7349,16 +7349,16 @@ var SliderPadding = {
7349
7349
  var ColorSchemes = {
7350
7350
  // Default colors
7351
7351
  default: {
7352
- active: 'theme.primary',
7353
- inactive: 'color.gray.300',
7352
+ active: 'theme-primary',
7353
+ inactive: 'color-gray-300',
7354
7354
  knob: 'white',
7355
- disabled: 'color.gray.200'
7355
+ disabled: 'color-gray-200'
7356
7356
  },
7357
7357
  // State-specific colors
7358
7358
  states: {
7359
7359
  hover: {
7360
- active: 'theme.primary',
7361
- inactive: 'color.gray.400',
7360
+ active: 'theme-primary',
7361
+ inactive: 'color-gray-400',
7362
7362
  activeOpacity: 0.9
7363
7363
  },
7364
7364
  focus: {
@@ -7460,7 +7460,7 @@ var SwitchView = _ref => {
7460
7460
  }, props)), labelPosition === 'left' && label && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
7461
7461
  fontWeight: "500" // Medium weight for better readability
7462
7462
  ,
7463
- color: isDisabled ? 'color.gray.400' : 'color.gray.700',
7463
+ color: isDisabled ? 'color-gray-400' : 'color-gray-700',
7464
7464
  transition: "all 0.2s ease"
7465
7465
  }, label)), /*#__PURE__*/React__default.createElement(appStudio.View
7466
7466
  // Layout properties
@@ -7503,7 +7503,7 @@ var SwitchView = _ref => {
7503
7503
  }, inActiveChild))), labelPosition === 'right' && label && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
7504
7504
  fontWeight: "500" // Medium weight for better readability
7505
7505
  ,
7506
- color: isDisabled ? 'color.gray.400' : 'color.gray.700',
7506
+ color: isDisabled ? 'color-gray-400' : 'color-gray-700',
7507
7507
  transition: "all 0.2s ease"
7508
7508
  }, label)));
7509
7509
  };
@@ -7588,7 +7588,7 @@ var SelectorView = _ref => {
7588
7588
  }, label && (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
7589
7589
  fontSize: "10px",
7590
7590
  letterSpacing: "wider",
7591
- color: "color.black.500",
7591
+ color: "color-black-500",
7592
7592
  fontWeight: "bold",
7593
7593
  marginBottom: 12,
7594
7594
  alignItems: "center",
@@ -7603,8 +7603,8 @@ var SelectorView = _ref => {
7603
7603
  gap: 0
7604
7604
  }, options.map((option, index, arr) => {
7605
7605
  var isSelected = value === option.value;
7606
- var borderColor = getColor('color.gray.200');
7607
- var textColor = getColor('color.gray.500');
7606
+ var borderColor = getColor('color-gray-200');
7607
+ var textColor = getColor('color-gray-500');
7608
7608
  var backgroundColor = 'transparent';
7609
7609
  if (isSelected) {
7610
7610
  if (option.color) {
@@ -7619,10 +7619,10 @@ var SelectorView = _ref => {
7619
7619
  backgroundColor = 'rgba(0,0,0,0.05)'; // Generic active background
7620
7620
  } else {
7621
7621
  // Default active style
7622
- var primary = getColor('theme.primary');
7622
+ var primary = getColor('theme-primary');
7623
7623
  borderColor = primary;
7624
7624
  textColor = primary;
7625
- backgroundColor = 'color.gray.50';
7625
+ backgroundColor = 'color-gray-50';
7626
7626
  }
7627
7627
  // Specific overrides based on user request "ComplexitySelector" style
7628
7628
  // If the values match 'High', 'Medium', 'Low' we can hardcode for *demo* fidelity if generic logic fails.
@@ -7635,8 +7635,8 @@ var SelectorView = _ref => {
7635
7635
  backgroundColor = 'transparent';
7636
7636
  } else {
7637
7637
  // Default fallback
7638
- borderColor = getColor('theme.primary');
7639
- textColor = getColor('theme.primary');
7638
+ borderColor = getColor('theme-primary');
7639
+ textColor = getColor('theme-primary');
7640
7640
  backgroundColor = 'transparent';
7641
7641
  }
7642
7642
  }
@@ -7653,10 +7653,10 @@ var SelectorView = _ref => {
7653
7653
  }, {
7654
7654
  fontWeight: isSelected ? 'bold' : 'normal',
7655
7655
  style: {
7656
- borderTop: "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')),
7657
- borderBottom: "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')),
7658
- borderLeft: "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')),
7659
- borderRight: index === arr.length - 1 || isSelected ? "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')) : 'none',
7656
+ borderTop: "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')),
7657
+ borderBottom: "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')),
7658
+ borderLeft: "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')),
7659
+ borderRight: index === arr.length - 1 || isSelected ? "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')) : 'none',
7660
7660
  backgroundColor: backgroundColor,
7661
7661
  color: textColor,
7662
7662
  borderRadius: index === 0 ? '6px 0 0 6px' : index === arr.length - 1 ? '0 6px 6px 0' : '0',
@@ -7787,7 +7787,7 @@ var TextAreaView = _ref => {
7787
7787
  letterSpacing: '-0.01em',
7788
7788
  // Visual properties
7789
7789
  backgroundColor: 'transparent',
7790
- color: isDisabled ? 'color.gray.400' : 'color.gray.900',
7790
+ color: isDisabled ? 'color-gray-400' : 'color-gray-900',
7791
7791
  // State properties
7792
7792
  cursor: isDisabled ? 'not-allowed' : 'text',
7793
7793
  // Animation
@@ -7824,7 +7824,7 @@ var TextAreaView = _ref => {
7824
7824
  shadow: shadow,
7825
7825
  variant: variant,
7826
7826
  value: value,
7827
- color: 'theme.primary',
7827
+ color: 'theme-primary',
7828
7828
  isHovered: isHovered,
7829
7829
  isDisabled: isDisabled,
7830
7830
  isReadOnly: isReadOnly,
@@ -7834,7 +7834,7 @@ var TextAreaView = _ref => {
7834
7834
  onMouseLeave: handleHover
7835
7835
  }, views == null ? void 0 : views.content), /*#__PURE__*/React__default.createElement(FieldWrapper, Object.assign({}, views == null ? void 0 : views.warper), showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
7836
7836
  htmlFor: id,
7837
- color: 'theme.primary',
7837
+ color: 'theme-primary',
7838
7838
  error: error
7839
7839
  }, views == null ? void 0 : views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({
7840
7840
  as: "textarea",
@@ -7954,7 +7954,7 @@ var TextFieldView = _ref => {
7954
7954
  getColor,
7955
7955
  themeMode
7956
7956
  } = appStudio.useTheme();
7957
- var IconColor = getColor('color.blueGray.700', {
7957
+ var IconColor = getColor('color-blueGray-700', {
7958
7958
  themeMode: elementMode ? elementMode : themeMode
7959
7959
  });
7960
7960
  var showLabel = !!(isFocused && label);
@@ -7981,7 +7981,7 @@ var TextFieldView = _ref => {
7981
7981
  letterSpacing: '-0.01em',
7982
7982
  // Visual properties
7983
7983
  backgroundColor: 'transparent',
7984
- color: isDisabled ? 'color.gray.400' : 'color.gray.900',
7984
+ color: isDisabled ? 'color-gray-400' : 'color-gray-900',
7985
7985
  // State properties
7986
7986
  cursor: isDisabled ? 'not-allowed' : 'text',
7987
7987
  // Animation
@@ -8033,7 +8033,7 @@ var TextFieldView = _ref => {
8033
8033
  shadow: shadow,
8034
8034
  variant: variant,
8035
8035
  value: value,
8036
- color: 'theme.primary',
8036
+ color: 'theme-primary',
8037
8037
  isHovered: isHovered,
8038
8038
  isDisabled: isDisabled,
8039
8039
  isReadOnly: isReadOnly,
@@ -8043,7 +8043,7 @@ var TextFieldView = _ref => {
8043
8043
  onMouseLeave: handleHover
8044
8044
  }, left, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
8045
8045
  htmlFor: id,
8046
- color: 'theme.primary',
8046
+ color: 'theme-primary',
8047
8047
  error: error
8048
8048
  }, views), label)), /*#__PURE__*/React__default.createElement(TextFieldInput, Object.assign({
8049
8049
  id: id,
@@ -8140,27 +8140,27 @@ var IconSizes$3 = {
8140
8140
  */
8141
8141
  var VariantStyles = {
8142
8142
  selected: {
8143
- backgroundColor: 'theme.primary',
8144
- borderColor: 'theme.primary',
8143
+ backgroundColor: 'theme-primary',
8144
+ borderColor: 'theme-primary',
8145
8145
  borderWidth: '2px',
8146
8146
  borderStyle: 'solid',
8147
- color: 'color.white',
8147
+ color: 'color-white',
8148
8148
  transition: 'background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease'
8149
8149
  },
8150
8150
  unselected: {
8151
- backgroundColor: 'color.white',
8151
+ backgroundColor: 'color-white',
8152
8152
  borderWidth: '2px',
8153
8153
  borderStyle: 'solid',
8154
- borderColor: 'color.gray.300',
8155
- color: 'color.black',
8154
+ borderColor: 'color-gray-300',
8155
+ color: 'color-black',
8156
8156
  transition: 'background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease'
8157
8157
  },
8158
8158
  indeterminate: {
8159
- backgroundColor: 'theme.primary',
8160
- borderColor: 'theme.primary',
8159
+ backgroundColor: 'theme-primary',
8160
+ borderColor: 'theme-primary',
8161
8161
  borderWidth: '2px',
8162
8162
  borderStyle: 'solid',
8163
- color: 'color.white',
8163
+ color: 'color-white',
8164
8164
  transition: 'background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease'
8165
8165
  }
8166
8166
  };
@@ -8173,8 +8173,8 @@ var StateStyles = {
8173
8173
  opacity: 0.9
8174
8174
  },
8175
8175
  unselected: {
8176
- borderColor: 'color.gray.400',
8177
- backgroundColor: 'color.gray.50'
8176
+ borderColor: 'color-gray-400',
8177
+ backgroundColor: 'color-gray-50'
8178
8178
  },
8179
8179
  indeterminate: {
8180
8180
  opacity: 0.9
@@ -8196,34 +8196,34 @@ var StateStyles = {
8196
8196
  },
8197
8197
  disabled: {
8198
8198
  selected: {
8199
- backgroundColor: 'color.gray.300',
8200
- borderColor: 'color.gray.300',
8199
+ backgroundColor: 'color-gray-300',
8200
+ borderColor: 'color-gray-300',
8201
8201
  opacity: 0.5,
8202
8202
  cursor: 'not-allowed'
8203
8203
  },
8204
8204
  unselected: {
8205
- borderColor: 'color.gray.300',
8205
+ borderColor: 'color-gray-300',
8206
8206
  opacity: 0.5,
8207
8207
  cursor: 'not-allowed'
8208
8208
  },
8209
8209
  indeterminate: {
8210
- backgroundColor: 'color.gray.300',
8211
- borderColor: 'color.gray.300',
8210
+ backgroundColor: 'color-gray-300',
8211
+ borderColor: 'color-gray-300',
8212
8212
  opacity: 0.5,
8213
8213
  cursor: 'not-allowed'
8214
8214
  }
8215
8215
  },
8216
8216
  error: {
8217
8217
  selected: {
8218
- backgroundColor: 'color.red.500',
8219
- borderColor: 'color.red.500'
8218
+ backgroundColor: 'color-red-500',
8219
+ borderColor: 'color-red-500'
8220
8220
  },
8221
8221
  unselected: {
8222
- borderColor: 'color.red.500'
8222
+ borderColor: 'color-red-500'
8223
8223
  },
8224
8224
  indeterminate: {
8225
- backgroundColor: 'color.red.500',
8226
- borderColor: 'color.red.500'
8225
+ backgroundColor: 'color-red-500',
8226
+ borderColor: 'color-red-500'
8227
8227
  }
8228
8228
  }
8229
8229
  };
@@ -8285,7 +8285,7 @@ var CheckboxView = _ref => {
8285
8285
  width: 'fit-content',
8286
8286
  // Typography properties
8287
8287
  // Visual properties
8288
- color: error ? 'color.red.600' : isDisabled ? 'color.gray.400' : 'color.gray.700',
8288
+ color: error ? 'color-red-600' : isDisabled ? 'color-gray-400' : 'color-gray-700',
8289
8289
  // State properties
8290
8290
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'default' : 'pointer',
8291
8291
  opacity: isDisabled ? 0.6 : 1,
@@ -8328,7 +8328,7 @@ var CheckboxView = _ref => {
8328
8328
  fontWeight: "500" // Medium weight for better readability
8329
8329
  }, views == null ? void 0 : views.label), label))), infoText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
8330
8330
  marginLeft: labelPosition === 'left' ? 0 : 36,
8331
- color: "color.gray.500",
8331
+ color: "color-gray-500",
8332
8332
  size: "sm",
8333
8333
  fontWeight: "400" // Regular weight
8334
8334
  ,
@@ -8337,7 +8337,7 @@ var CheckboxView = _ref => {
8337
8337
  size: "xs",
8338
8338
  marginTop: 4,
8339
8339
  marginHorizontal: 0,
8340
- color: "color.red.500",
8340
+ color: "color-red-500",
8341
8341
  fontWeight: "500" // Medium weight for better readability
8342
8342
  ,
8343
8343
  transition: "all 0.2s ease"
@@ -8501,10 +8501,10 @@ var DefaultColorInputStyles = {
8501
8501
  justifyContent: 'space-between',
8502
8502
  cursor: 'pointer',
8503
8503
  transition: 'all 0.2s ease',
8504
- backgroundColor: 'color.white',
8504
+ backgroundColor: 'color-white',
8505
8505
  borderWidth: '1px',
8506
8506
  borderStyle: 'solid',
8507
- borderColor: 'color.gray.300',
8507
+ borderColor: 'color-gray-300',
8508
8508
  padding: '8px 12px'
8509
8509
  },
8510
8510
  dropdown: {
@@ -8513,11 +8513,11 @@ var DefaultColorInputStyles = {
8513
8513
  left: 0,
8514
8514
  right: 0,
8515
8515
  zIndex: 1000,
8516
- backgroundColor: 'color.white',
8516
+ backgroundColor: 'color-white',
8517
8517
  borderRadius: '8px',
8518
8518
  borderWidth: '1px',
8519
8519
  borderStyle: 'solid',
8520
- borderColor: 'color.gray.200',
8520
+ borderColor: 'color-gray-200',
8521
8521
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
8522
8522
  padding: '16px',
8523
8523
  minWidth: '280px'
@@ -8585,14 +8585,14 @@ var Shapes$1 = {
8585
8585
  */
8586
8586
  var Variants = {
8587
8587
  default: {
8588
- backgroundColor: 'color.white',
8589
- borderColor: 'color.gray.300',
8588
+ backgroundColor: 'color-white',
8589
+ borderColor: 'color-gray-300',
8590
8590
  borderWidth: '1px',
8591
8591
  borderStyle: 'solid'
8592
8592
  },
8593
8593
  outline: {
8594
8594
  backgroundColor: 'transparent',
8595
- borderColor: 'color.gray.300',
8595
+ borderColor: 'color-gray-300',
8596
8596
  borderWidth: '1px',
8597
8597
  borderStyle: 'solid'
8598
8598
  },
@@ -8609,105 +8609,105 @@ var DefaultColorPalette = [
8609
8609
  // Primary colors
8610
8610
  {
8611
8611
  name: 'Red 500',
8612
- value: 'color.red.500'
8612
+ value: 'color-red-500'
8613
8613
  }, {
8614
8614
  name: 'Orange 500',
8615
- value: 'color.orange.500'
8615
+ value: 'color-orange-500'
8616
8616
  }, {
8617
8617
  name: 'Yellow 500',
8618
- value: 'color.yellow.500'
8618
+ value: 'color-yellow-500'
8619
8619
  }, {
8620
8620
  name: 'Green 500',
8621
- value: 'color.green.500'
8621
+ value: 'color-green-500'
8622
8622
  }, {
8623
8623
  name: 'Blue 500',
8624
- value: 'color.blue.500'
8624
+ value: 'color-blue-500'
8625
8625
  }, {
8626
8626
  name: 'Indigo 500',
8627
- value: 'color.indigo.500'
8627
+ value: 'color-indigo-500'
8628
8628
  }, {
8629
8629
  name: 'Purple 500',
8630
- value: 'color.purple.500'
8630
+ value: 'color-purple-500'
8631
8631
  }, {
8632
8632
  name: 'Pink 500',
8633
- value: 'color.pink.500'
8633
+ value: 'color-pink-500'
8634
8634
  },
8635
8635
  // Light variants
8636
8636
  {
8637
8637
  name: 'Red 300',
8638
- value: 'color.red.300'
8638
+ value: 'color-red-300'
8639
8639
  }, {
8640
8640
  name: 'Orange 300',
8641
- value: 'color.orange.300'
8641
+ value: 'color-orange-300'
8642
8642
  }, {
8643
8643
  name: 'Yellow 300',
8644
- value: 'color.yellow.300'
8644
+ value: 'color-yellow-300'
8645
8645
  }, {
8646
8646
  name: 'Green 300',
8647
- value: 'color.green.300'
8647
+ value: 'color-green-300'
8648
8648
  }, {
8649
8649
  name: 'Blue 300',
8650
- value: 'color.blue.300'
8650
+ value: 'color-blue-300'
8651
8651
  }, {
8652
8652
  name: 'Indigo 300',
8653
- value: 'color.indigo.300'
8653
+ value: 'color-indigo-300'
8654
8654
  }, {
8655
8655
  name: 'Purple 300',
8656
- value: 'color.purple.300'
8656
+ value: 'color-purple-300'
8657
8657
  }, {
8658
8658
  name: 'Pink 300',
8659
- value: 'color.pink.300'
8659
+ value: 'color-pink-300'
8660
8660
  },
8661
8661
  // Dark variants
8662
8662
  {
8663
8663
  name: 'Red 700',
8664
- value: 'color.red.700'
8664
+ value: 'color-red-700'
8665
8665
  }, {
8666
8666
  name: 'Orange 700',
8667
- value: 'color.orange.700'
8667
+ value: 'color-orange-700'
8668
8668
  }, {
8669
8669
  name: 'Yellow 700',
8670
- value: 'color.yellow.700'
8670
+ value: 'color-yellow-700'
8671
8671
  }, {
8672
8672
  name: 'Green 700',
8673
- value: 'color.green.700'
8673
+ value: 'color-green-700'
8674
8674
  }, {
8675
8675
  name: 'Blue 700',
8676
- value: 'color.blue.700'
8676
+ value: 'color-blue-700'
8677
8677
  }, {
8678
8678
  name: 'Indigo 700',
8679
- value: 'color.indigo.700'
8679
+ value: 'color-indigo-700'
8680
8680
  }, {
8681
8681
  name: 'Purple 700',
8682
- value: 'color.purple.700'
8682
+ value: 'color-purple-700'
8683
8683
  }, {
8684
8684
  name: 'Pink 700',
8685
- value: 'color.pink.700'
8685
+ value: 'color-pink-700'
8686
8686
  },
8687
8687
  // Grays
8688
8688
  {
8689
8689
  name: 'Gray 100',
8690
- value: 'color.gray.100'
8690
+ value: 'color-gray-100'
8691
8691
  }, {
8692
8692
  name: 'Gray 300',
8693
- value: 'color.gray.300'
8693
+ value: 'color-gray-300'
8694
8694
  }, {
8695
8695
  name: 'Gray 500',
8696
- value: 'color.gray.500'
8696
+ value: 'color-gray-500'
8697
8697
  }, {
8698
8698
  name: 'Gray 700',
8699
- value: 'color.gray.700'
8699
+ value: 'color-gray-700'
8700
8700
  }, {
8701
8701
  name: 'Gray 900',
8702
- value: 'color.gray.900'
8702
+ value: 'color-gray-900'
8703
8703
  },
8704
8704
  // Special colors
8705
8705
  {
8706
8706
  name: 'White',
8707
- value: 'color.white'
8707
+ value: 'color-white'
8708
8708
  }, {
8709
8709
  name: 'Black',
8710
- value: 'color.black'
8710
+ value: 'color-black'
8711
8711
  }, {
8712
8712
  name: 'Transparent',
8713
8713
  value: 'transparent'
@@ -8761,21 +8761,21 @@ var ColorInputView = _ref => {
8761
8761
  // Combine styles
8762
8762
  var containerStyles = Object.assign({}, DefaultColorInputStyles.container, views == null ? void 0 : views.container);
8763
8763
  var triggerStyles = Object.assign({}, DefaultColorInputStyles.trigger, Sizes$1[size], Shapes$1[shape], Variants[variant], error && {
8764
- borderColor: 'color.red.500'
8764
+ borderColor: 'color-red-500'
8765
8765
  }, isDisabled && {
8766
8766
  opacity: 0.6,
8767
8767
  cursor: 'not-allowed'
8768
8768
  }, isFocused && {
8769
- borderColor: 'color.blue.500',
8769
+ borderColor: 'color-blue-500',
8770
8770
  boxShadow: '0 0 0 3px rgba(59, 130, 246, 0.1)'
8771
8771
  }, isHovered && !isDisabled && {
8772
- borderColor: 'color.gray.400'
8772
+ borderColor: 'color-gray-400'
8773
8773
  }, views == null ? void 0 : views.trigger, shadow && shadow);
8774
8774
  var dropdownStyles = Object.assign({}, DefaultColorInputStyles.dropdown, views == null ? void 0 : views.dropdown);
8775
8775
  var colorGridStyles = Object.assign({}, DefaultColorInputStyles.colorGrid, views == null ? void 0 : views.colorGrid);
8776
8776
  var recentColorsStyles = Object.assign({}, DefaultColorInputStyles.recentColors, views == null ? void 0 : views.recentColors);
8777
8777
  // Get display color for the selected color swatch
8778
- var displayColor = selectedColor || 'color.gray.200';
8778
+ var displayColor = selectedColor || 'color-gray-200';
8779
8779
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, containerStyles, props), label && (/*#__PURE__*/React__default.createElement(Label, {
8780
8780
  htmlFor: id,
8781
8781
  size: size,
@@ -8803,10 +8803,10 @@ var ColorInputView = _ref => {
8803
8803
  backgroundColor: displayColor,
8804
8804
  borderWidth: "1px",
8805
8805
  borderStyle: "solid",
8806
- borderColor: "color.gray.300"
8806
+ borderColor: "color-gray-300"
8807
8807
  }), !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(ChevronIcon, {
8808
8808
  widthHeight: 16,
8809
- color: "color.gray.500",
8809
+ color: "color-gray-500",
8810
8810
  orientation: isOpen ? 'up' : 'down'
8811
8811
  }))), isOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
8812
8812
  ref: dropdownRef
@@ -8818,14 +8818,14 @@ var ColorInputView = _ref => {
8818
8818
  backgroundColor: colorOption.value,
8819
8819
  borderWidth: "2px",
8820
8820
  borderStyle: "solid",
8821
- borderColor: selectedColor === colorOption.value ? 'color.blue.500' : 'transparent',
8821
+ borderColor: selectedColor === colorOption.value ? 'color-blue-500' : 'transparent',
8822
8822
  cursor: "pointer",
8823
8823
  transition: "all 0.2s ease",
8824
8824
  onClick: () => handleColorSelect(colorOption.value),
8825
8825
  title: colorOption.name,
8826
8826
  _hover: {
8827
8827
  transform: 'scale(1.1)',
8828
- borderColor: 'color.gray.400'
8828
+ borderColor: 'color-gray-400'
8829
8829
  }
8830
8830
  }, views == null ? void 0 : views.colorSwatch))))), showRecentColors && recentColors.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.Vertical, {
8831
8831
  gap: 8,
@@ -8833,7 +8833,7 @@ var ColorInputView = _ref => {
8833
8833
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
8834
8834
  fontSize: "12px",
8835
8835
  fontWeight: "500",
8836
- color: "color.gray.600"
8836
+ color: "color-gray-600"
8837
8837
  }, "Recent Colors"), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
8838
8838
  gap: 4,
8839
8839
  flexWrap: "wrap"
@@ -8845,14 +8845,14 @@ var ColorInputView = _ref => {
8845
8845
  backgroundColor: color,
8846
8846
  borderWidth: "1px",
8847
8847
  borderStyle: "solid",
8848
- borderColor: selectedColor === color ? 'color.blue.500' : 'color.gray.300',
8848
+ borderColor: selectedColor === color ? 'color-blue-500' : 'color-gray-300',
8849
8849
  cursor: "pointer",
8850
8850
  transition: "all 0.2s ease",
8851
8851
  onClick: () => handleColorSelect(color),
8852
8852
  title: color,
8853
8853
  _hover: {
8854
8854
  transform: 'scale(1.1)',
8855
- borderColor: 'color.gray.400'
8855
+ borderColor: 'color-gray-400'
8856
8856
  }
8857
8857
  })))))), showCustomInput && (/*#__PURE__*/React__default.createElement(appStudio.Vertical, {
8858
8858
  gap: 8,
@@ -8860,7 +8860,7 @@ var ColorInputView = _ref => {
8860
8860
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
8861
8861
  fontSize: "12px",
8862
8862
  fontWeight: "500",
8863
- color: "color.gray.600"
8863
+ color: "color-gray-600"
8864
8864
  }, "Custom Color"), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
8865
8865
  gap: 8
8866
8866
  }, /*#__PURE__*/React__default.createElement(TextField, {
@@ -8874,24 +8874,24 @@ var ColorInputView = _ref => {
8874
8874
  views: views == null ? void 0 : views.customInput
8875
8875
  }), /*#__PURE__*/React__default.createElement(appStudio.View, {
8876
8876
  padding: "8px 12px",
8877
- backgroundColor: "color.blue.500",
8877
+ backgroundColor: "color-blue-500",
8878
8878
  borderRadius: "4px",
8879
8879
  cursor: "pointer",
8880
8880
  onClick: handleCustomColorSubmit,
8881
8881
  _hover: {
8882
- backgroundColor: 'color.blue.600'
8882
+ backgroundColor: 'color-blue-600'
8883
8883
  }
8884
8884
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
8885
- color: "color.white",
8885
+ color: "color-white",
8886
8886
  fontSize: "12px",
8887
8887
  fontWeight: "500"
8888
8888
  }, "Add"))))))), helperText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
8889
8889
  fontSize: "12px",
8890
- color: error ? 'color.red.500' : 'color.gray.600',
8890
+ color: error ? 'color-red-500' : 'color-gray-600',
8891
8891
  marginTop: "4px"
8892
8892
  }, views == null ? void 0 : views.helperText), helperText)), error && typeof error === 'string' && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
8893
8893
  fontSize: "12px",
8894
- color: "color.red.500",
8894
+ color: "color-red-500",
8895
8895
  marginTop: "4px"
8896
8896
  }, views == null ? void 0 : views.error), error)));
8897
8897
  };
@@ -10461,7 +10461,7 @@ var DropDown$1 = _ref4 => {
10461
10461
  borderRadius: 4,
10462
10462
  position: "absolute",
10463
10463
  flexDirection: "column",
10464
- backgroundColor: "color.white",
10464
+ backgroundColor: "color-white",
10465
10465
  boxShadow: "rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px"
10466
10466
  }, views['dropDown']), options.map(option => (/*#__PURE__*/React__default.createElement(DropDownItem, Object.assign({
10467
10467
  key: option.code,
@@ -10511,7 +10511,7 @@ var CountryPickerView = _ref5 => {
10511
10511
  getColor,
10512
10512
  themeMode
10513
10513
  } = appStudio.useTheme();
10514
- var IconColor = getColor('color.blueGray.700', {
10514
+ var IconColor = getColor('color-blueGray-700', {
10515
10515
  themeMode: elementMode ? elementMode : themeMode
10516
10516
  });
10517
10517
  var handleFocus = () => setIsFocused(true);
@@ -10552,7 +10552,7 @@ var CountryPickerView = _ref5 => {
10552
10552
  },
10553
10553
  fontSize: appStudio.Typography.fontSizes[size],
10554
10554
  backgroundColor: 'transparent',
10555
- color: isDisabled ? 'color.trueGray.600' : 'color.blueGray.700',
10555
+ color: isDisabled ? 'color-trueGray-600' : 'color-blueGray-700',
10556
10556
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'pointer'
10557
10557
  }, views['field']);
10558
10558
  return /*#__PURE__*/React__default.createElement(FieldContainer, {
@@ -10569,17 +10569,17 @@ var CountryPickerView = _ref5 => {
10569
10569
  shadow: shadow,
10570
10570
  variant: variant,
10571
10571
  value: value,
10572
- color: 'theme.primary',
10572
+ color: 'theme-primary',
10573
10573
  isDisabled: isDisabled,
10574
10574
  isReadOnly: isReadOnly,
10575
10575
  isFocused: isFocused,
10576
10576
  showLabel: showLabel,
10577
10577
  _hover: !isDisabled && !error ? {
10578
- borderColor: 'theme.primary'
10578
+ borderColor: 'theme-primary'
10579
10579
  } : undefined
10580
10580
  }, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
10581
10581
  htmlFor: id,
10582
- color: 'theme.primary',
10582
+ color: 'theme-primary',
10583
10583
  error: error
10584
10584
  }, views), label)), /*#__PURE__*/React__default.createElement(CountrySelector, Object.assign({
10585
10585
  id: id,
@@ -10696,7 +10696,7 @@ var DatePickerView = _ref => {
10696
10696
  },
10697
10697
  fontSize: appStudio.Typography.fontSizes[size],
10698
10698
  backgroundColor: 'transparent',
10699
- color: isDisabled ? 'color.trueGray.600' : 'color.blueGray.700',
10699
+ color: isDisabled ? 'color-trueGray-600' : 'color-blueGray-700',
10700
10700
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'pointer'
10701
10701
  }, views['field']);
10702
10702
  return /*#__PURE__*/React__default.createElement(FieldContainer, {
@@ -10710,7 +10710,7 @@ var DatePickerView = _ref => {
10710
10710
  shape: shape,
10711
10711
  views: views,
10712
10712
  shadow: shadow,
10713
- color: 'theme.primary',
10713
+ color: 'theme-primary',
10714
10714
  variant: variant,
10715
10715
  value: date,
10716
10716
  isHovered: isHovered,
@@ -10722,7 +10722,7 @@ var DatePickerView = _ref => {
10722
10722
  onMouseLeave: handleHover
10723
10723
  }, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
10724
10724
  htmlFor: id,
10725
- color: 'theme.primary',
10725
+ color: 'theme-primary',
10726
10726
  error: error
10727
10727
  }, views), label)), /*#__PURE__*/React__default.createElement(DatePickerContent, Object.assign({
10728
10728
  id: id,
@@ -10950,7 +10950,7 @@ var ComboBoxView = _ref => {
10950
10950
  }, views == null ? void 0 : views.labelContainer), left, selectedItem.icon && selectedItem.label !== placeholder && (/*#__PURE__*/React__default.createElement(appStudio.View, null, selectedItem.icon)), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
10951
10951
  weight: "medium",
10952
10952
  flexGrow: 1,
10953
- color: selectedItem.label === placeholder ? 'color.gray.500' : 'color.gray.800',
10953
+ color: selectedItem.label === placeholder ? 'color-gray-500' : 'color-gray-800',
10954
10954
  style: {
10955
10955
  whiteSpace: 'nowrap',
10956
10956
  overflow: 'hidden',
@@ -10962,11 +10962,11 @@ var ComboBoxView = _ref => {
10962
10962
  }, right, /*#__PURE__*/React__default.createElement(ChevronIcon, {
10963
10963
  widthHeight: 16,
10964
10964
  orientation: isDropdownVisible ? 'up' : 'down',
10965
- color: "color.gray.500"
10965
+ color: "color-gray-500"
10966
10966
  })))), isDropdownVisible && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
10967
10967
  ref: dropdownRef,
10968
10968
  id: "combobox-dropdown",
10969
- backgroundColor: "color.white",
10969
+ backgroundColor: "color-white",
10970
10970
  boxShadow: "rgba(0, 0, 0, 0.16) 0px 4px 16px",
10971
10971
  overflowY: "auto",
10972
10972
  borderRadius: "8px",
@@ -10987,7 +10987,7 @@ var ComboBoxView = _ref => {
10987
10987
  isClearable: false,
10988
10988
  left: /*#__PURE__*/React__default.createElement(SearchIcon, {
10989
10989
  widthHeight: 16,
10990
- color: "color.gray.400"
10990
+ color: "color-gray-400"
10991
10991
  }),
10992
10992
  views: {
10993
10993
  container: Object.assign({
@@ -11007,19 +11007,19 @@ var ComboBoxView = _ref => {
11007
11007
  padding: "8px 12px",
11008
11008
  cursor: "pointer",
11009
11009
  borderRadius: 4,
11010
- backgroundColor: index === highlightedIndex ? 'color.gray.100' : 'transparent',
11010
+ backgroundColor: index === highlightedIndex ? 'color-gray-100' : 'transparent',
11011
11011
  onMouseEnter: () => setHighlightedIndex(index),
11012
11012
  onClick: () => handleSelect(item),
11013
11013
  transition: "background-color 0.2s"
11014
11014
  }, views == null ? void 0 : views.item), /*#__PURE__*/React__default.createElement(appStudio.Text, {
11015
- color: "color.gray.800"
11015
+ color: "color-gray-800"
11016
11016
  }, item.label), /*#__PURE__*/React__default.createElement(React__default.Fragment, null, item.icon && item.icon, item.value === selectedItem.value && showTick && !item.icon && (/*#__PURE__*/React__default.createElement(TickIcon, {
11017
11017
  widthHeight: 16,
11018
- color: "theme.primary"
11018
+ color: "theme-primary"
11019
11019
  })))))))), filteredItems.length === 0 && (/*#__PURE__*/React__default.createElement(appStudio.View, {
11020
11020
  padding: "12px"
11021
11021
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
11022
- color: "color.gray.500",
11022
+ color: "color-gray-500",
11023
11023
  align: "center"
11024
11024
  }, "No items found")))))));
11025
11025
  };
@@ -11299,30 +11299,30 @@ var TagChip = _ref => {
11299
11299
  alignItems: "center",
11300
11300
  gap: 6,
11301
11301
  padding: chipSize.padding,
11302
- backgroundColor: "color.gray.100.100",
11302
+ backgroundColor: "color-gray-100-100",
11303
11303
  borderRadius: "16px",
11304
11304
  borderWidth: "1px",
11305
11305
  borderStyle: "solid",
11306
- borderColor: "color.gray.100",
11306
+ borderColor: "color-gray-100",
11307
11307
  boxShadow: "0 1px 2px rgba(0,0,0,0.05)",
11308
11308
  transition: "all 0.2s cubic-bezier(0.4, 0, 0.2, 1)",
11309
11309
  opacity: isDisabled ? 0.6 : 1,
11310
11310
  _hover: !isDisabled && !isReadOnly ? {
11311
- backgroundColor: 'color.gray.100.200',
11312
- borderColor: 'color.gray.200',
11311
+ backgroundColor: 'color-gray-100-200',
11312
+ borderColor: 'color-gray-200',
11313
11313
  boxShadow: '0 4px 6px rgba(0,0,0,0.05)',
11314
11314
  transform: 'translateY(-1px)'
11315
11315
  } : {}
11316
11316
  }, views == null ? void 0 : views.tag), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
11317
11317
  fontSize: chipSize.fontSize,
11318
- color: isDisabled ? 'color.gray.100' : 'theme.primary',
11318
+ color: isDisabled ? 'color-gray-100' : 'theme-primary',
11319
11319
  whiteSpace: "nowrap"
11320
11320
  }, views == null ? void 0 : views.tagText), tag), isRemovable && !isDisabled && !isReadOnly && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
11321
11321
  cursor: "pointer",
11322
11322
  padding: "2px",
11323
11323
  borderRadius: "50%",
11324
11324
  transition: "all 0.2s ease",
11325
- backgroundColor: isRemoveHovered ? 'color.red.100' : 'transparent',
11325
+ backgroundColor: isRemoveHovered ? 'color-red-100' : 'transparent',
11326
11326
  opacity: isRemoveHovered ? 1 : 0.7,
11327
11327
  onMouseEnter: () => setIsRemoveHovered(true),
11328
11328
  onMouseLeave: () => setIsRemoveHovered(false),
@@ -11331,11 +11331,11 @@ var TagChip = _ref => {
11331
11331
  onRemove();
11332
11332
  },
11333
11333
  _hover: {
11334
- backgroundColor: 'color.red.50'
11334
+ backgroundColor: 'color-red-50'
11335
11335
  }
11336
11336
  }, views == null ? void 0 : views.tagRemove), /*#__PURE__*/React__default.createElement(CloseIcon, {
11337
11337
  widthHeight: chipSize.iconSize,
11338
- color: isRemoveHovered ? 'color.red.500' : 'color.gray.400'
11338
+ color: isRemoveHovered ? 'color-red-500' : 'color-gray-400'
11339
11339
  }))));
11340
11340
  };
11341
11341
  /**
@@ -11390,7 +11390,7 @@ var TagInputView = _ref2 => {
11390
11390
  outline: 'none',
11391
11391
  backgroundColor: 'transparent',
11392
11392
  fontSize: appStudio.Typography.fontSizes[size],
11393
- color: isDisabled ? 'color.gray.400' : 'color.gray.800',
11393
+ color: isDisabled ? 'color-gray-400' : 'color-gray-800',
11394
11394
  flex: 1,
11395
11395
  minWidth: '120px'
11396
11396
  }, views == null ? void 0 : views.input);
@@ -11451,7 +11451,7 @@ var TagInputView = _ref2 => {
11451
11451
  autoComplete: "off"
11452
11452
  }, inputStyles))), isMaxReached && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
11453
11453
  fontSize: appStudio.Typography.fontSizes[size],
11454
- color: "color.gray.500",
11454
+ color: "color-gray-500",
11455
11455
  fontStyle: "italic"
11456
11456
  }, views == null ? void 0 : views.placeholder), "Maximum ", maxTags, " tags reached")))), right));
11457
11457
  };
@@ -11900,7 +11900,7 @@ var OTPInputView = _ref => {
11900
11900
  views: views,
11901
11901
  variant: variant,
11902
11902
  value: slot.char || '',
11903
- color: 'theme.primary',
11903
+ color: 'theme-primary',
11904
11904
  isHovered: isHovered,
11905
11905
  isDisabled: isDisabled,
11906
11906
  isReadOnly: isReadOnly,
@@ -11920,13 +11920,13 @@ var OTPInputView = _ref => {
11920
11920
  }, views.text), type === 'password' ? '•' : slot.char)) : slot.placeholderChar ? (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
11921
11921
  textAlign: "center",
11922
11922
  fontSize: size === 'xs' ? '14px' : size === 'sm' ? '16px' : size === 'md' ? '18px' : size === 'lg' ? '20px' : '24px',
11923
- color: "color.gray.400",
11923
+ color: "color-gray-400",
11924
11924
  opacity: 0.5
11925
11925
  }, views.text), slot.placeholderChar)) : null, slot.hasFakeCaret && (/*#__PURE__*/React__default.createElement(appStudio.View, {
11926
11926
  position: "absolute",
11927
11927
  width: "2px",
11928
11928
  height: "60%",
11929
- backgroundColor: "theme.primary",
11929
+ backgroundColor: "theme-primary",
11930
11930
  animation: "blink 1s step-start infinite",
11931
11931
  style: {
11932
11932
  animationName: 'blink',
@@ -11963,7 +11963,7 @@ var OTPInputView = _ref => {
11963
11963
  views: views
11964
11964
  }, props), showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
11965
11965
  htmlFor: id,
11966
- color: 'theme.primary',
11966
+ color: 'theme-primary',
11967
11967
  error: error
11968
11968
  }, views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.View, {
11969
11969
  ref: containerRef,
@@ -12461,10 +12461,10 @@ var DefaultAgentChatStyles = {
12461
12461
  display: 'flex',
12462
12462
  flexDirection: 'column',
12463
12463
  height: '100%',
12464
- backgroundColor: 'color.white',
12464
+ backgroundColor: 'color-white',
12465
12465
  borderRadius: '12px',
12466
12466
  border: '1px solid',
12467
- borderColor: 'color.gray.200',
12467
+ borderColor: 'color-gray-200',
12468
12468
  overflow: 'hidden',
12469
12469
  fontFamily: 'Inter, system-ui, sans-serif',
12470
12470
  position: 'relative'
@@ -12472,14 +12472,14 @@ var DefaultAgentChatStyles = {
12472
12472
  header: {
12473
12473
  padding: '16px',
12474
12474
  borderBottom: '1px solid',
12475
- borderBottomColor: 'color.gray.200',
12476
- backgroundColor: 'color.gray.50',
12475
+ borderBottomColor: 'color-gray-200',
12476
+ backgroundColor: 'color-gray-50',
12477
12477
  flexShrink: 0
12478
12478
  },
12479
12479
  messageList: {
12480
12480
  flex: 1,
12481
12481
  overflowY: 'auto',
12482
- backgroundColor: 'color.white',
12482
+ backgroundColor: 'color-white',
12483
12483
  minHeight: '300px',
12484
12484
  maxHeight: '600px'
12485
12485
  },
@@ -12493,15 +12493,15 @@ var DefaultAgentChatStyles = {
12493
12493
  inputArea: {
12494
12494
  padding: '16px',
12495
12495
  borderTop: '1px solid',
12496
- borderTopColor: 'color.gray.200',
12497
- backgroundColor: 'color.gray.50',
12496
+ borderTopColor: 'color-gray-200',
12497
+ backgroundColor: 'color-gray-50',
12498
12498
  flexShrink: 0
12499
12499
  },
12500
12500
  attachmentArea: {
12501
12501
  padding: '12px 16px',
12502
12502
  borderTop: '1px solid',
12503
- borderTopColor: 'color.gray.200',
12504
- backgroundColor: 'color.gray.100',
12503
+ borderTopColor: 'color-gray-200',
12504
+ backgroundColor: 'color-gray-100',
12505
12505
  flexShrink: 0
12506
12506
  },
12507
12507
  message: {
@@ -12511,29 +12511,29 @@ var DefaultAgentChatStyles = {
12511
12511
  wordBreak: 'break-word'
12512
12512
  },
12513
12513
  userMessage: {
12514
- backgroundColor: 'color.blue.500',
12514
+ backgroundColor: 'color-blue-500',
12515
12515
  color: 'white',
12516
12516
  alignSelf: 'flex-end',
12517
12517
  marginLeft: 'auto'
12518
12518
  },
12519
12519
  botMessage: {
12520
- backgroundColor: 'color.gray.100',
12521
- color: 'color.gray.900',
12520
+ backgroundColor: 'color-gray-100',
12521
+ color: 'color-gray-900',
12522
12522
  alignSelf: 'flex-start',
12523
12523
  marginRight: 'auto'
12524
12524
  },
12525
12525
  thoughtMessage: {
12526
- backgroundColor: 'color.yellow.50',
12527
- color: 'color.yellow.800',
12526
+ backgroundColor: 'color-yellow-50',
12527
+ color: 'color-yellow-800',
12528
12528
  border: '1px solid',
12529
- borderColor: 'color.yellow.200',
12529
+ borderColor: 'color-yellow-200',
12530
12530
  fontStyle: 'italic'
12531
12531
  },
12532
12532
  loadingMessage: {
12533
- backgroundColor: 'color.gray.50',
12534
- color: 'color.gray.600',
12533
+ backgroundColor: 'color-gray-50',
12534
+ color: 'color-gray-600',
12535
12535
  border: '1px dashed',
12536
- borderColor: 'color.gray.300'
12536
+ borderColor: 'color-gray-300'
12537
12537
  },
12538
12538
  messageHeader: {
12539
12539
  marginBottom: '4px'
@@ -12546,14 +12546,14 @@ var DefaultAgentChatStyles = {
12546
12546
  },
12547
12547
  timestamp: {
12548
12548
  fontSize: '12px',
12549
- color: 'color.gray.500',
12549
+ color: 'color-gray-500',
12550
12550
  marginTop: '4px'
12551
12551
  },
12552
12552
  avatar: {
12553
12553
  width: '32px',
12554
12554
  height: '32px',
12555
12555
  borderRadius: '50%',
12556
- backgroundColor: 'color.gray.300',
12556
+ backgroundColor: 'color-gray-300',
12557
12557
  display: 'flex',
12558
12558
  alignItems: 'center',
12559
12559
  justifyContent: 'center',
@@ -12563,20 +12563,20 @@ var DefaultAgentChatStyles = {
12563
12563
  flexShrink: 0
12564
12564
  },
12565
12565
  userAvatar: {
12566
- backgroundColor: 'color.blue.500'
12566
+ backgroundColor: 'color-blue-500'
12567
12567
  },
12568
12568
  botAvatar: {
12569
- backgroundColor: 'color.green.500'
12569
+ backgroundColor: 'color-green-500'
12570
12570
  },
12571
12571
  attachmentPreview: {
12572
12572
  position: 'relative',
12573
12573
  display: 'inline-block',
12574
12574
  width: '60px',
12575
12575
  height: '60px',
12576
- backgroundColor: 'color.gray.100',
12576
+ backgroundColor: 'color-gray-100',
12577
12577
  borderRadius: '8px',
12578
12578
  border: '1px solid',
12579
- borderColor: 'color.gray.200',
12579
+ borderColor: 'color-gray-200',
12580
12580
  overflow: 'hidden',
12581
12581
  cursor: 'pointer'
12582
12582
  },
@@ -12587,7 +12587,7 @@ var DefaultAgentChatStyles = {
12587
12587
  width: '20px',
12588
12588
  height: '20px',
12589
12589
  borderRadius: '50%',
12590
- backgroundColor: 'color.black.900',
12590
+ backgroundColor: 'color-black-900',
12591
12591
  color: 'white',
12592
12592
  border: 'none',
12593
12593
  cursor: 'pointer',
@@ -12602,7 +12602,7 @@ var DefaultAgentChatStyles = {
12602
12602
  alignItems: 'center',
12603
12603
  gap: '8px',
12604
12604
  padding: '12px',
12605
- backgroundColor: 'color.gray.100',
12605
+ backgroundColor: 'color-gray-100',
12606
12606
  borderRadius: '8px',
12607
12607
  maxWidth: '80px',
12608
12608
  alignSelf: 'flex-start'
@@ -12611,27 +12611,27 @@ var DefaultAgentChatStyles = {
12611
12611
  width: '6px',
12612
12612
  height: '6px',
12613
12613
  borderRadius: '50%',
12614
- backgroundColor: 'color.gray.500'
12614
+ backgroundColor: 'color-gray-500'
12615
12615
  },
12616
12616
  functionCall: {
12617
- backgroundColor: 'color.purple.50',
12617
+ backgroundColor: 'color-purple-50',
12618
12618
  border: '1px solid',
12619
- borderColor: 'color.purple.200',
12619
+ borderColor: 'color-purple-200',
12620
12620
  borderRadius: '8px',
12621
12621
  padding: '12px',
12622
12622
  marginTop: '8px'
12623
12623
  },
12624
12624
  functionResponse: {
12625
- backgroundColor: 'color.green.50',
12625
+ backgroundColor: 'color-green-50',
12626
12626
  border: '1px solid',
12627
- borderColor: 'color.green.200',
12627
+ borderColor: 'color-green-200',
12628
12628
  borderRadius: '8px',
12629
12629
  padding: '12px',
12630
12630
  marginTop: '8px'
12631
12631
  },
12632
12632
  codeBlock: {
12633
- backgroundColor: 'color.gray.900',
12634
- color: 'color.gray.100',
12633
+ backgroundColor: 'color-gray-900',
12634
+ color: 'color-gray-100',
12635
12635
  borderRadius: '8px',
12636
12636
  padding: '12px',
12637
12637
  fontFamily: 'Monaco, Consolas, monospace',
@@ -12644,13 +12644,13 @@ var DefaultAgentChatStyles = {
12644
12644
  borderRadius: '8px',
12645
12645
  overflow: 'hidden',
12646
12646
  border: '1px solid',
12647
- borderColor: 'color.gray.200'
12647
+ borderColor: 'color-gray-200'
12648
12648
  },
12649
12649
  errorMessage: {
12650
- backgroundColor: 'color.red.50',
12651
- color: 'color.red.800',
12650
+ backgroundColor: 'color-red-50',
12651
+ color: 'color-red-800',
12652
12652
  border: '1px solid',
12653
- borderColor: 'color.red.200',
12653
+ borderColor: 'color-red-200',
12654
12654
  borderRadius: '8px',
12655
12655
  padding: '12px',
12656
12656
  margin: '8px 16px'
@@ -12670,8 +12670,8 @@ var DefaultAgentChatStyles = {
12670
12670
  runProgress: {
12671
12671
  padding: '12px 16px',
12672
12672
  borderBottom: '1px solid',
12673
- borderBottomColor: 'color.gray.200',
12674
- backgroundColor: 'color.gray.50'
12673
+ borderBottomColor: 'color-gray-200',
12674
+ backgroundColor: 'color-gray-50'
12675
12675
  }
12676
12676
  };
12677
12677
  /**
@@ -12682,7 +12682,7 @@ var DefaultChatInputStyles = {
12682
12682
  width: '100%',
12683
12683
  maxWidth: '100%',
12684
12684
  borderRadius: '12px',
12685
- backgroundColor: 'color.white',
12685
+ backgroundColor: 'color-white',
12686
12686
  transition: 'all 0.2s ease',
12687
12687
  media: {
12688
12688
  mobile: {
@@ -12694,10 +12694,10 @@ var DefaultChatInputStyles = {
12694
12694
  width: '100%',
12695
12695
  padding: '12px',
12696
12696
  borderRadius: '12px',
12697
- backgroundColor: 'color.white',
12697
+ backgroundColor: 'color-white',
12698
12698
  borderWidth: '1px',
12699
12699
  borderStyle: 'solid',
12700
- borderColor: 'color.gray.200',
12700
+ borderColor: 'color-gray-200',
12701
12701
  media: {
12702
12702
  mobile: {
12703
12703
  padding: '10px',
@@ -12712,8 +12712,8 @@ var DefaultChatInputStyles = {
12712
12712
  padding: '8px 12px',
12713
12713
  fontSize: '14px',
12714
12714
  lineHeight: '15px',
12715
- color: 'color.gray.900',
12716
- backgroundColor: 'color.white',
12715
+ color: 'color-gray-900',
12716
+ backgroundColor: 'color-white',
12717
12717
  border: 'none',
12718
12718
  outline: 'none',
12719
12719
  resize: 'none',
@@ -12738,22 +12738,22 @@ var DefaultChatInputStyles = {
12738
12738
  gap: '6px',
12739
12739
  padding: '4px 8px',
12740
12740
  borderRadius: '6px',
12741
- backgroundColor: 'color.gray.100'
12741
+ backgroundColor: 'color-gray-100'
12742
12742
  },
12743
12743
  attachmentName: {
12744
12744
  fontSize: '12px',
12745
12745
  fontWeight: '500',
12746
- color: 'color.gray.700'
12746
+ color: 'color-gray-700'
12747
12747
  },
12748
12748
  attachmentSize: {
12749
12749
  fontSize: '10px',
12750
- color: 'color.gray.500'
12750
+ color: 'color-gray-500'
12751
12751
  },
12752
12752
  attachmentRemove: {
12753
12753
  padding: '2px',
12754
12754
  borderRadius: '50%',
12755
12755
  cursor: 'pointer',
12756
- color: 'color.gray.500',
12756
+ color: 'color-gray-500',
12757
12757
  backgroundColor: 'transparent',
12758
12758
  transition: 'all 0.2s ease'
12759
12759
  },
@@ -12762,8 +12762,8 @@ var DefaultChatInputStyles = {
12762
12762
  minWidth: '36px',
12763
12763
  padding: '0 12px',
12764
12764
  borderRadius: '8px',
12765
- backgroundColor: 'theme.primary',
12766
- color: 'color.white',
12765
+ backgroundColor: 'theme-primary',
12766
+ color: 'color-white',
12767
12767
  transition: 'all 0.2s ease',
12768
12768
  media: {
12769
12769
  mobile: {
@@ -12778,7 +12778,7 @@ var DefaultChatInputStyles = {
12778
12778
  padding: '0 12px',
12779
12779
  borderRadius: '8px',
12780
12780
  backgroundColor: 'transparent',
12781
- color: 'color.gray.500',
12781
+ color: 'color-gray-500',
12782
12782
  transition: 'all 0.2s ease',
12783
12783
  media: {
12784
12784
  mobile: {
@@ -12792,7 +12792,7 @@ var DefaultChatInputStyles = {
12792
12792
  padding: '0 12px',
12793
12793
  borderRadius: '8px',
12794
12794
  backgroundColor: 'transparent',
12795
- color: 'color.gray.500',
12795
+ color: 'color-gray-500',
12796
12796
  transition: 'all 0.2s ease'
12797
12797
  },
12798
12798
  loadingIndicator: {
@@ -12847,16 +12847,16 @@ var Sizes$2 = {
12847
12847
  */
12848
12848
  var Variants$1 = {
12849
12849
  default: {
12850
- backgroundColor: 'color.white',
12850
+ backgroundColor: 'color-white',
12851
12851
  borderWidth: '1px',
12852
12852
  borderStyle: 'solid',
12853
- borderColor: 'color.gray.200'
12853
+ borderColor: 'color-gray-200'
12854
12854
  },
12855
12855
  outline: {
12856
12856
  backgroundColor: 'transparent',
12857
12857
  borderWidth: '1px',
12858
12858
  borderStyle: 'solid',
12859
- borderColor: 'color.gray.300'
12859
+ borderColor: 'color-gray-300'
12860
12860
  },
12861
12861
  none: {
12862
12862
  backgroundColor: 'transparent',
@@ -13202,7 +13202,7 @@ var AttachmentGroup = _ref => {
13202
13202
  gap: "6px",
13203
13203
  padding: "4px 8px",
13204
13204
  borderRadius: "6px",
13205
- backgroundColor: "color.gray.100",
13205
+ backgroundColor: "color-gray-100",
13206
13206
  animate: {
13207
13207
  from: {
13208
13208
  opacity: 0,
@@ -13232,17 +13232,17 @@ var AttachmentGroup = _ref => {
13232
13232
  })), isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
13233
13233
  width: "60px",
13234
13234
  height: "60px",
13235
- backgroundColor: "color.gray.200"
13235
+ backgroundColor: "color-gray-200"
13236
13236
  }, /*#__PURE__*/React__default.createElement(AudioIcon, {
13237
13237
  widthHeight: 24,
13238
- color: "color.black"
13238
+ color: "color-black"
13239
13239
  }))), !isImage && !isVideo && !isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
13240
13240
  width: "60px",
13241
13241
  height: "60px",
13242
- backgroundColor: "color.gray.200"
13242
+ backgroundColor: "color-gray-200"
13243
13243
  }, /*#__PURE__*/React__default.createElement(FileIcon, {
13244
13244
  widthHeight: 24,
13245
- color: "color.black"
13245
+ color: "color-black"
13246
13246
  }))), onRemove && (/*#__PURE__*/React__default.createElement(appStudio.Button, Object.assign({}, DefaultAgentChatStyles.attachmentRemove, {
13247
13247
  onClick: e => {
13248
13248
  e.stopPropagation();
@@ -13540,7 +13540,7 @@ var EditableInput = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13540
13540
  position: "absolute",
13541
13541
  top: "8px",
13542
13542
  left: "8px",
13543
- color: "color.gray.400",
13543
+ color: "color-gray-400",
13544
13544
  pointerEvents: "none",
13545
13545
  fontSize: "14px",
13546
13546
  zIndex: 1
@@ -13563,16 +13563,16 @@ var EditableInput = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13563
13563
  whiteSpace: "pre-wrap",
13564
13564
  wordBreak: "break-word",
13565
13565
  fontSize: "14px",
13566
- color: "color.gray.900",
13566
+ color: "color-gray-900",
13567
13567
  backgroundColor: "transparent"
13568
13568
  }, views == null ? void 0 : views.input))), showMentions && filteredMentions.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
13569
13569
  position: "fixed",
13570
13570
  left: mentionPosition.x,
13571
13571
  top: mentionPosition.y,
13572
13572
  width: ((_containerRef$current = containerRef.current) == null ? void 0 : _containerRef$current.offsetWidth) || 300,
13573
- backgroundColor: "color.white",
13573
+ backgroundColor: "color-white",
13574
13574
  border: "2px solid",
13575
- borderColor: "color.blue.300",
13575
+ borderColor: "color-blue-300",
13576
13576
  borderRadius: "8px",
13577
13577
  boxShadow: "0 8px 24px rgba(0, 0, 0, 0.15)",
13578
13578
  zIndex: 9999,
@@ -13586,7 +13586,7 @@ var EditableInput = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13586
13586
  type: "button",
13587
13587
  width: "100%",
13588
13588
  padding: "12px 16px",
13589
- backgroundColor: index === selectedMentionIndex ? 'color.blue.50' : 'transparent',
13589
+ backgroundColor: index === selectedMentionIndex ? 'color-blue-50' : 'transparent',
13590
13590
  border: "none",
13591
13591
  cursor: "pointer",
13592
13592
  textAlign: "left",
@@ -13594,17 +13594,17 @@ var EditableInput = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13594
13594
  onClick: () => handleMentionSelect(mention),
13595
13595
  onMouseEnter: () => setSelectedMentionIndex(index),
13596
13596
  _hover: {
13597
- backgroundColor: 'color.blue.50'
13597
+ backgroundColor: 'color-blue-50'
13598
13598
  }
13599
13599
  }, views == null ? void 0 : views.mentionItem), /*#__PURE__*/React__default.createElement(appStudio.Vertical, {
13600
13600
  gap: 4
13601
13601
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
13602
13602
  fontSize: "14px",
13603
- color: "color.gray.900",
13603
+ color: "color-gray-900",
13604
13604
  fontWeight: "medium"
13605
13605
  }, mentionTrigger, mention.name), mention.description && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
13606
13606
  fontSize: "12px",
13607
- color: "color.gray.600"
13607
+ color: "color-gray-600"
13608
13608
  }, mention.description)))))), (/*#__PURE__*/React__default.createElement("div", {
13609
13609
  style: {
13610
13610
  fontSize: '8px',
@@ -13616,9 +13616,9 @@ var EditableInput = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13616
13616
  left: suggestionPosition.x,
13617
13617
  top: suggestionPosition.y,
13618
13618
  width: ((_containerRef$current2 = containerRef.current) == null ? void 0 : _containerRef$current2.offsetWidth) || 300,
13619
- backgroundColor: "color.white",
13619
+ backgroundColor: "color-white",
13620
13620
  border: "2px solid",
13621
- borderColor: "color.green.300",
13621
+ borderColor: "color-green-300",
13622
13622
  borderRadius: "8px",
13623
13623
  boxShadow: "0 8px 24px rgba(0, 0, 0, 0.15)",
13624
13624
  zIndex: 9998,
@@ -13632,7 +13632,7 @@ var EditableInput = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13632
13632
  type: "button",
13633
13633
  width: "100%",
13634
13634
  padding: "12px 16px",
13635
- backgroundColor: index === selectedSuggestionIndex ? 'color.blue.50' : 'transparent',
13635
+ backgroundColor: index === selectedSuggestionIndex ? 'color-blue-50' : 'transparent',
13636
13636
  border: "none",
13637
13637
  cursor: "pointer",
13638
13638
  textAlign: "left",
@@ -13640,17 +13640,17 @@ var EditableInput = /*#__PURE__*/React.forwardRef((_ref, ref) => {
13640
13640
  onClick: () => handleSuggestionSelect(suggestion),
13641
13641
  onMouseEnter: () => setSelectedSuggestionIndex(index),
13642
13642
  _hover: {
13643
- backgroundColor: 'color.blue.50'
13643
+ backgroundColor: 'color-blue-50'
13644
13644
  }
13645
13645
  }, views == null ? void 0 : views.suggestionItem), /*#__PURE__*/React__default.createElement(appStudio.Vertical, {
13646
13646
  gap: 4
13647
13647
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
13648
13648
  fontSize: "14px",
13649
- color: "color.gray.900",
13649
+ color: "color-gray-900",
13650
13650
  fontWeight: "medium"
13651
13651
  }, suggestion.text), suggestion.description && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
13652
13652
  fontSize: "12px",
13653
- color: "color.gray.600"
13653
+ color: "color-gray-600"
13654
13654
  }, suggestion.description)))))), (/*#__PURE__*/React__default.createElement("div", {
13655
13655
  style: {
13656
13656
  fontSize: '8px',
@@ -13684,17 +13684,17 @@ var PromptExamples = _ref => {
13684
13684
  type: "button",
13685
13685
  padding: "8px 12px",
13686
13686
  borderRadius: "4px",
13687
- backgroundColor: "color.gray.100",
13687
+ backgroundColor: "color-gray-100",
13688
13688
  border: "none",
13689
13689
  cursor: "pointer",
13690
13690
  transition: "all 0.2s ease",
13691
13691
  onClick: () => onSelect(example),
13692
13692
  _hover: {
13693
- backgroundColor: 'color.gray.200'
13693
+ backgroundColor: 'color-gray-200'
13694
13694
  }
13695
13695
  }, views == null ? void 0 : views.item), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
13696
13696
  fontSize: "14px",
13697
- color: "color.gray.700"
13697
+ color: "color-gray-700"
13698
13698
  }, views == null ? void 0 : views.text), example.text)))));
13699
13699
  };
13700
13700
 
@@ -13741,13 +13741,13 @@ var AudioRecorder = _ref => {
13741
13741
  display: "flex",
13742
13742
  alignItems: "center",
13743
13743
  justifyContent: "center",
13744
- backgroundColor: recording ? 'theme.error' : 'color.gray.100',
13745
- color: recording ? 'color.white' : 'color.gray.600',
13744
+ backgroundColor: recording ? 'theme-error' : 'color-gray-100',
13745
+ color: recording ? 'color-white' : 'color-gray-600',
13746
13746
  borderRadius: "50%",
13747
13747
  border: "none",
13748
13748
  cursor: "pointer",
13749
13749
  _hover: {
13750
- backgroundColor: recording ? 'color.red.600' : 'color.gray.200'
13750
+ backgroundColor: recording ? 'color-red-600' : 'color-gray-200'
13751
13751
  }
13752
13752
  }, views.button), recording ? (/*#__PURE__*/React__default.createElement(StopIcon, {
13753
13753
  widthHeight: 16,
@@ -13885,7 +13885,7 @@ var ChatInputView = _ref => {
13885
13885
  animation: 'spin 1s linear infinite'
13886
13886
  }
13887
13887
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
13888
- color: "color.gray.500"
13888
+ color: "color-gray-500"
13889
13889
  }, loadingText))), /*#__PURE__*/React__default.createElement(appStudio.View, {
13890
13890
  position: "relative",
13891
13891
  width: "100%",
@@ -13900,7 +13900,7 @@ var ChatInputView = _ref => {
13900
13900
  }, contentStyles, containerStyles, {
13901
13901
  paddingHorizontal: 16,
13902
13902
  paddingVertical: 10,
13903
- backgroundColor: isDraggingOver ? 'color.blue.50' : undefined
13903
+ backgroundColor: isDraggingOver ? 'color-blue-50' : undefined
13904
13904
  }), /*#__PURE__*/React__default.createElement(AttachmentGroup, {
13905
13905
  files: uploadedFiles,
13906
13906
  sandboxId: sandboxId,
@@ -13961,10 +13961,10 @@ var ChatInputView = _ref => {
13961
13961
  // borderRadius: '8px',
13962
13962
  // backgroundColor: 'transparent',
13963
13963
  // border: '1px solid',
13964
- // borderColor: 'color.gray.300',
13964
+ // borderColor: 'color-gray-300',
13965
13965
  cursor: 'pointer',
13966
13966
  _hover: {
13967
- backgroundColor: 'color.gray.100'
13967
+ backgroundColor: 'color-gray-100'
13968
13968
  }
13969
13969
  }, views == null ? void 0 : views.fileButton)
13970
13970
  },
@@ -13978,7 +13978,7 @@ var ChatInputView = _ref => {
13978
13978
  },
13979
13979
  textProps: {
13980
13980
  fontSize: '14px',
13981
- color: 'color.gray.600'
13981
+ color: 'color-gray-600'
13982
13982
  },
13983
13983
  validateFile: file => {
13984
13984
  if (file.size > 50 * 1024 * 1024) {
@@ -14004,15 +14004,15 @@ var ChatInputView = _ref => {
14004
14004
  display: "flex",
14005
14005
  alignItems: "center",
14006
14006
  justifyContent: "center",
14007
- backgroundColor: isAgentRunning ? 'theme.error' : hasText ? 'theme.primary' : 'color.gray.300',
14008
- color: "color.white",
14007
+ backgroundColor: isAgentRunning ? 'theme-error' : hasText ? 'theme-primary' : 'color-gray-300',
14008
+ color: "color-white",
14009
14009
  borderRadius: shape === 'rounded' ? '50%' : 4,
14010
14010
  border: "none",
14011
14011
  cursor: hasText ? 'pointer' : 'not-allowed',
14012
14012
  disabled: !hasText || loading || disabled && !isAgentRunning,
14013
14013
  transition: "all 0.2s ease",
14014
14014
  _hover: {
14015
- backgroundColor: isAgentRunning ? 'color.red.600' : hasText ? 'color.blue.600' : 'color.gray.300'
14015
+ backgroundColor: isAgentRunning ? 'color-red-600' : hasText ? 'color-blue-600' : 'color-gray-300'
14016
14016
  }
14017
14017
  }, views == null ? void 0 : views.submitButton), isAgentRunning ? (/*#__PURE__*/React__default.createElement(StopIcon, {
14018
14018
  widthHeight: 16,
@@ -14021,13 +14021,13 @@ var ChatInputView = _ref => {
14021
14021
  })) : loading ? (/*#__PURE__*/React__default.createElement(Loader, {
14022
14022
  type: "quarter",
14023
14023
  size: 16,
14024
- color: "color.white"
14024
+ color: "color-white"
14025
14025
  })) : (/*#__PURE__*/React__default.createElement(SendIcon, {
14026
14026
  widthHeight: 16,
14027
14027
  color: "currentColor",
14028
14028
  filled: false
14029
14029
  }))), rightButtons)))), errorMessage && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
14030
- color: "theme.error",
14030
+ color: "theme-error",
14031
14031
  marginTop: "4px"
14032
14032
  }, views == null ? void 0 : views.bottomTip), errorMessage)));
14033
14033
  };
@@ -14093,7 +14093,7 @@ var ColorInputComponent$1 = props => {
14093
14093
  return /*#__PURE__*/React__default.createElement(ColorInputView, Object.assign({}, colorInputStates, formProps));
14094
14094
  };
14095
14095
  /**
14096
- * Color input allows users to select a color from a predefined palette or enter a custom color.
14096
+ * Color input allows users to select a color from a predefined palette or enter a custom color-
14097
14097
  */
14098
14098
  var FormikColorInput = ColorInputComponent$1;
14099
14099
 
@@ -14484,14 +14484,14 @@ var SliderShapes = {
14484
14484
  var getSlider = themeMode => {
14485
14485
  return {
14486
14486
  default: {
14487
- backgroundColor: 'color.gray.200',
14487
+ backgroundColor: 'color-gray-200',
14488
14488
  transition: 'background-color 0.15s ease'
14489
14489
  },
14490
14490
  outline: {
14491
14491
  backgroundColor: 'transparent',
14492
14492
  borderWidth: 1,
14493
14493
  borderStyle: 'solid',
14494
- borderColor: 'color.gray.300',
14494
+ borderColor: 'color-gray-300',
14495
14495
  transition: 'border-color 0.15s ease'
14496
14496
  }
14497
14497
  };
@@ -14556,7 +14556,7 @@ var SliderView = _ref => {
14556
14556
  isDisabled = false,
14557
14557
  showValue = false,
14558
14558
  showTooltip = false,
14559
- backgroundColor = 'theme.primary',
14559
+ backgroundColor = 'theme-primary',
14560
14560
  label,
14561
14561
  helperText,
14562
14562
  themeMode: elementMode,
@@ -14591,7 +14591,7 @@ var SliderView = _ref => {
14591
14591
  var themeColor = getColorHex(backgroundColor, {
14592
14592
  themeMode: elementMode || themeMode
14593
14593
  });
14594
- var disabledColor = getColorHex('theme.disabled', {
14594
+ var disabledColor = getColorHex('theme-disabled', {
14595
14595
  themeMode: elementMode || themeMode
14596
14596
  });
14597
14597
  var trackColor = getColorHex(SliderVariants[variant].backgroundColor, {
@@ -14617,7 +14617,7 @@ var SliderView = _ref => {
14617
14617
  fontWeight: 500
14618
14618
  }, views.label), label), showValue && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
14619
14619
  fontSize: 14,
14620
- color: "color.blueGray.500"
14620
+ color: "color-blueGray-500"
14621
14621
  }, views.valueLabel), currentValue)))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
14622
14622
  ref: trackRef,
14623
14623
  position: "relative",
@@ -14666,7 +14666,7 @@ var SliderView = _ref => {
14666
14666
  top: "50%",
14667
14667
  left: thumbPositionPercent + "%",
14668
14668
  borderRadius: "50%",
14669
- backgroundColor: "color.white",
14669
+ backgroundColor: "color-white",
14670
14670
  boxShadow: "0 2px 4px rgba(0, 0, 0, 0.2)",
14671
14671
  border: "2px solid " + (isDisabled ? disabledColor : themeColor),
14672
14672
  transition: isDragging ? 'none' : 'transform 0.1s ease-in-out',
@@ -14682,8 +14682,8 @@ var SliderView = _ref => {
14682
14682
  transform: "translateX(-50%)",
14683
14683
  marginBottom: 8,
14684
14684
  padding: "4px 8px",
14685
- backgroundColor: "color.black",
14686
- color: "color.white",
14685
+ backgroundColor: "color-black",
14686
+ color: "color-white",
14687
14687
  borderRadius: 4,
14688
14688
  fontSize: 12,
14689
14689
  whiteSpace: "nowrap",
@@ -14707,7 +14707,7 @@ var SliderView = _ref => {
14707
14707
  fontWeight: 500
14708
14708
  }, views.label), label), showValue && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
14709
14709
  fontSize: 14,
14710
- color: "color.blueGray.500"
14710
+ color: "color-blueGray-500"
14711
14711
  }, views.valueLabel), currentValue)))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
14712
14712
  ref: trackRef,
14713
14713
  position: "relative",
@@ -14766,7 +14766,7 @@ var SliderView = _ref => {
14766
14766
  height: thumbSize + "px",
14767
14767
  borderRadius: "50%",
14768
14768
  backgroundColor: isDisabled ? disabledColor : themeColor,
14769
- border: "2px solid color.white",
14769
+ border: "2px solid color-white",
14770
14770
  boxShadow: "0 1px 3px rgba(0, 0, 0, 0.2)",
14771
14771
  cursor: isDisabled ? 'not-allowed' : 'grab',
14772
14772
  transform: isVertical ? 'translateX(-50%)' : 'translateY(-50%)',
@@ -14785,8 +14785,8 @@ var SliderView = _ref => {
14785
14785
  }, views == null ? void 0 : views.thumb), showTooltip && (isHovered || isDragging) && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
14786
14786
  position: "absolute",
14787
14787
  padding: "4px 8px",
14788
- backgroundColor: 'color.black',
14789
- color: 'color.white',
14788
+ backgroundColor: 'color-black',
14789
+ color: 'color-white',
14790
14790
  borderRadius: "4px",
14791
14791
  whiteSpace: "nowrap",
14792
14792
  zIndex: 3
@@ -15041,7 +15041,7 @@ var AttachmentPreview = _ref => {
15041
15041
  gap: "6px",
15042
15042
  padding: "4px 8px",
15043
15043
  borderRadius: "6px",
15044
- backgroundColor: "color.gray.100",
15044
+ backgroundColor: "color-gray-100",
15045
15045
  position: "relative",
15046
15046
  animate: {
15047
15047
  from: {
@@ -15076,19 +15076,19 @@ var AttachmentPreview = _ref => {
15076
15076
  })), isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
15077
15077
  width: "60px",
15078
15078
  height: "60px",
15079
- backgroundColor: "color.gray.200",
15079
+ backgroundColor: "color-gray-200",
15080
15080
  borderRadius: "4px"
15081
15081
  }, /*#__PURE__*/React__default.createElement(AudioIcon, {
15082
15082
  widthHeight: 24,
15083
- color: "color.black"
15083
+ color: "color-black"
15084
15084
  }))), !isImage && !isVideo && !isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
15085
15085
  width: "60px",
15086
15086
  height: "60px",
15087
- backgroundColor: "color.gray.200",
15087
+ backgroundColor: "color-gray-200",
15088
15088
  borderRadius: "4px"
15089
15089
  }, /*#__PURE__*/React__default.createElement(FileIcon, {
15090
15090
  widthHeight: 24,
15091
- color: "color.black"
15091
+ color: "color-black"
15092
15092
  }))), onRemove && (/*#__PURE__*/React__default.createElement(appStudio.Button, {
15093
15093
  position: "absolute",
15094
15094
  top: "-4px",
@@ -15098,7 +15098,7 @@ var AttachmentPreview = _ref => {
15098
15098
  minWidth: "20px",
15099
15099
  minHeight: "20px",
15100
15100
  borderRadius: "50%",
15101
- backgroundColor: "color.red.500",
15101
+ backgroundColor: "color-red-500",
15102
15102
  color: "white",
15103
15103
  fontSize: 14,
15104
15104
  fontWeight: "bold",
@@ -15109,7 +15109,7 @@ var AttachmentPreview = _ref => {
15109
15109
  cursor: "pointer",
15110
15110
  border: "2px solid white",
15111
15111
  _hover: {
15112
- backgroundColor: 'color.red.600'
15112
+ backgroundColor: 'color-red-600'
15113
15113
  },
15114
15114
  onClick: e => {
15115
15115
  e.stopPropagation();
@@ -15182,7 +15182,7 @@ var MediaPreview = _ref => {
15182
15182
  display: "flex",
15183
15183
  alignItems: "center",
15184
15184
  justifyContent: "center",
15185
- backgroundColor: "color.gray.200",
15185
+ backgroundColor: "color-gray-200",
15186
15186
  cursor: "pointer",
15187
15187
  onClick: handleClick
15188
15188
  }, isImage && (/*#__PURE__*/React__default.createElement(appStudio.Image, {
@@ -15209,7 +15209,7 @@ var MediaPreview = _ref => {
15209
15209
  onClick: e => e.stopPropagation()
15210
15210
  })), !isImage && !isVideo && !isAudio && (/*#__PURE__*/React__default.createElement(FileIcon, {
15211
15211
  widthHeight: 24,
15212
- color: "color.gray.600"
15212
+ color: "color-gray-600"
15213
15213
  })));
15214
15214
  };
15215
15215
 
@@ -15344,13 +15344,13 @@ var ModalTypography = {
15344
15344
  fontSize: '18px',
15345
15345
  fontWeight: '600',
15346
15346
  lineHeight: '24px',
15347
- color: 'color.gray.900'
15347
+ color: 'color-gray-900'
15348
15348
  },
15349
15349
  body: {
15350
15350
  fontSize: '16px',
15351
15351
  fontWeight: '400',
15352
15352
  lineHeight: '24px',
15353
- color: 'color.gray.700'
15353
+ color: 'color-gray-700'
15354
15354
  }
15355
15355
  };
15356
15356
 
@@ -15391,7 +15391,7 @@ var ModalOverlay = _ref => {
15391
15391
  width: "100vw",
15392
15392
  height: "100vh",
15393
15393
  display: "flex",
15394
- backgroundColor: "color.blackAlpha.500",
15394
+ backgroundColor: "color-blackAlpha-500",
15395
15395
  backdropFilter: blur ? "blur(" + blur + "px)" : undefined,
15396
15396
  transition: "all 0.3s ease",
15397
15397
  onClick: handleClick
@@ -15423,7 +15423,7 @@ var ModalContainer = _ref2 => {
15423
15423
  };
15424
15424
  return /*#__PURE__*/React__default.createElement(appStudio.Vertical, Object.assign({
15425
15425
  cursor: "default",
15426
- backgroundColor: "color.white",
15426
+ backgroundColor: "color-white",
15427
15427
  width: isFullScreen ? '100%' : 600,
15428
15428
  height: isFullScreen ? '100%' : 'fit-content',
15429
15429
  onClick: handleClick,
@@ -15441,7 +15441,7 @@ var ModalContainer = _ref2 => {
15441
15441
  var ModalHeader = _ref3 => {
15442
15442
  var {
15443
15443
  children,
15444
- buttonColor = 'theme.primary',
15444
+ buttonColor = 'theme-primary',
15445
15445
  iconSize = 'md',
15446
15446
  buttonPosition = 'right',
15447
15447
  views
@@ -15461,7 +15461,7 @@ var ModalHeader = _ref3 => {
15461
15461
  paddingHorizontal: 24,
15462
15462
  borderBottomWidth: "1px",
15463
15463
  borderBottomStyle: "solid",
15464
- borderBottomColor: "color.gray.200",
15464
+ borderBottomColor: "color-gray-200",
15465
15465
  media: {
15466
15466
  mobile: {
15467
15467
  paddingVertical: 12,
@@ -15506,7 +15506,7 @@ var ModalFooter = _ref5 => {
15506
15506
  paddingHorizontal: 24,
15507
15507
  borderTopWidth: "1px",
15508
15508
  borderTopStyle: "solid",
15509
- borderTopColor: "color.gray.200",
15509
+ borderTopColor: "color-gray-200",
15510
15510
  gap: 12,
15511
15511
  media: {
15512
15512
  mobile: {
@@ -15586,7 +15586,7 @@ var DrawerPlacements = {
15586
15586
  height: '100vh',
15587
15587
  borderRightWidth: '1px',
15588
15588
  borderRightStyle: 'solid',
15589
- borderRightColor: 'color.gray.200'
15589
+ borderRightColor: 'color-gray-200'
15590
15590
  },
15591
15591
  right: {
15592
15592
  top: 0,
@@ -15595,7 +15595,7 @@ var DrawerPlacements = {
15595
15595
  height: '100vh',
15596
15596
  borderLeftWidth: '1px',
15597
15597
  borderLeftStyle: 'solid',
15598
- borderLeftColor: 'color.gray.200'
15598
+ borderLeftColor: 'color-gray-200'
15599
15599
  },
15600
15600
  top: {
15601
15601
  top: 0,
@@ -15604,7 +15604,7 @@ var DrawerPlacements = {
15604
15604
  width: '100vw',
15605
15605
  borderBottomWidth: '1px',
15606
15606
  borderBottomStyle: 'solid',
15607
- borderBottomColor: 'color.gray.200'
15607
+ borderBottomColor: 'color-gray-200'
15608
15608
  },
15609
15609
  bottom: {
15610
15610
  bottom: 0,
@@ -15613,7 +15613,7 @@ var DrawerPlacements = {
15613
15613
  width: '100vw',
15614
15614
  borderTopWidth: '1px',
15615
15615
  borderTopStyle: 'solid',
15616
- borderTopColor: 'color.gray.200'
15616
+ borderTopColor: 'color-gray-200'
15617
15617
  }
15618
15618
  };
15619
15619
 
@@ -15660,7 +15660,7 @@ var DrawerOverlay = _ref => {
15660
15660
  visibility: isOpen ? 'visible' : 'hidden',
15661
15661
  onClick: handleClick,
15662
15662
  transition: "all 0.3s ease",
15663
- backgroundColor: isOpen ? 'color.blackAlpha.500' : 'transparent',
15663
+ backgroundColor: isOpen ? 'color-blackAlpha-500' : 'transparent',
15664
15664
  backdropFilter: blur ? "blur(" + blur + "px)" : undefined,
15665
15665
  pointerEvents: isOpen ? 'auto' : 'none'
15666
15666
  }, props), children);
@@ -15685,7 +15685,7 @@ var DrawerContainer = _ref2 => {
15685
15685
  };
15686
15686
  return /*#__PURE__*/React__default.createElement(appStudio.Vertical, Object.assign({
15687
15687
  position: "absolute",
15688
- backgroundColor: "color.white"
15688
+ backgroundColor: "color-white"
15689
15689
  }, DrawerPlacements[placement], dimensionProps, {
15690
15690
  onClick: handleClick,
15691
15691
  transition: "transform 0.3s ease"
@@ -15704,13 +15704,13 @@ var DrawerHeader = _ref3 => {
15704
15704
  padding: 8
15705
15705
  }, /*#__PURE__*/React__default.createElement(CloseIcon, {
15706
15706
  widthHeight: 20,
15707
- color: "color.gray.500"
15707
+ color: "color-gray-500"
15708
15708
  })));
15709
15709
  return /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
15710
15710
  paddingHorizontal: 24,
15711
15711
  paddingVertical: 16,
15712
15712
  borderBottomWidth: "1px",
15713
- borderBottomColor: "color.gray.200",
15713
+ borderBottomColor: "color-gray-200",
15714
15714
  alignItems: "center",
15715
15715
  justifyContent: buttonPosition === 'none' ? 'center' : 'space-between'
15716
15716
  }, props), buttonPosition === 'left' && closeButton, children, buttonPosition === 'right' && closeButton);
@@ -15735,7 +15735,7 @@ var DrawerFooter = _ref5 => {
15735
15735
  paddingHorizontal: 24,
15736
15736
  paddingVertical: 16,
15737
15737
  borderTopWidth: "1px",
15738
- borderTopColor: "color.gray.200",
15738
+ borderTopColor: "color-gray-200",
15739
15739
  alignItems: "center",
15740
15740
  justifyContent: "flex-end",
15741
15741
  gap: 12
@@ -15868,20 +15868,20 @@ var NavigationMenuSizes = {
15868
15868
  var NavigationMenuVariants = {
15869
15869
  default: {
15870
15870
  backgroundColor: 'transparent',
15871
- color: 'color.gray.800',
15871
+ color: 'color-gray-800',
15872
15872
  transition: 'all 0.2s ease'
15873
15873
  },
15874
15874
  filled: {
15875
- backgroundColor: 'color.gray.100',
15876
- color: 'color.gray.800',
15875
+ backgroundColor: 'color-gray-100',
15876
+ color: 'color-gray-800',
15877
15877
  transition: 'all 0.2s ease'
15878
15878
  },
15879
15879
  outline: {
15880
15880
  backgroundColor: 'transparent',
15881
15881
  borderWidth: '1px',
15882
15882
  borderStyle: 'solid',
15883
- borderColor: 'color.gray.200',
15884
- color: 'color.gray.800',
15883
+ borderColor: 'color-gray-200',
15884
+ color: 'color-gray-800',
15885
15885
  transition: 'all 0.2s ease'
15886
15886
  }
15887
15887
  };
@@ -15909,15 +15909,15 @@ var NavigationMenuOrientations = {
15909
15909
  */
15910
15910
  var NavigationMenuItemStates = {
15911
15911
  active: {
15912
- backgroundColor: 'color.blue.50',
15913
- color: 'color.blue.700',
15912
+ backgroundColor: 'color-blue-50',
15913
+ color: 'color-blue-700',
15914
15914
  fontWeight: '600',
15915
15915
  borderLeftWidth: 3,
15916
15916
  borderLeftStyle: 'solid',
15917
- borderLeftColor: 'color.blue.600'
15917
+ borderLeftColor: 'color-blue-600'
15918
15918
  },
15919
15919
  hover: {
15920
- backgroundColor: 'color.gray.100',
15920
+ backgroundColor: 'color-gray-100',
15921
15921
  transition: 'background-color 0.2s ease'
15922
15922
  },
15923
15923
  disabled: {
@@ -16289,7 +16289,7 @@ var NavigationMenuContent = _ref5 => {
16289
16289
  ref: contentRef,
16290
16290
  role: "menu",
16291
16291
  minWidth: "200px",
16292
- backgroundColor: "color.white",
16292
+ backgroundColor: "color-white",
16293
16293
  borderRadius: 4,
16294
16294
  boxShadow: "0px 2px 8px rgba(0, 0, 0, 0.15)",
16295
16295
  overflow: "hidden",
@@ -16471,7 +16471,7 @@ var DefaultTableStyles = {
16471
16471
  overflow: 'hidden',
16472
16472
  boxShadow: '0px 1px 3px rgba(0, 0, 0, 0.06), 0px 1px 2px rgba(0, 0, 0, 0.04)',
16473
16473
  border: '1px solid',
16474
- borderColor: 'color.gray.200',
16474
+ borderColor: 'color-gray-200',
16475
16475
  transition: 'box-shadow 0.2s ease',
16476
16476
  media: {
16477
16477
  mobile: {
@@ -16482,15 +16482,15 @@ var DefaultTableStyles = {
16482
16482
  }
16483
16483
  },
16484
16484
  thead: {
16485
- backgroundColor: 'color.gray.50',
16485
+ backgroundColor: 'color-gray-50',
16486
16486
  borderBottom: '1px solid',
16487
- borderBottomColor: 'color.gray.200'
16487
+ borderBottomColor: 'color-gray-200'
16488
16488
  },
16489
16489
  th: {
16490
16490
  padding: '12px 16px',
16491
16491
  fontWeight: '600',
16492
16492
  fontSize: '14px',
16493
- color: 'color.gray.700',
16493
+ color: 'color-gray-700',
16494
16494
  textAlign: 'left',
16495
16495
  media: {
16496
16496
  mobile: {
@@ -16503,8 +16503,8 @@ var DefaultTableStyles = {
16503
16503
  padding: '12px 16px',
16504
16504
  fontSize: '14px',
16505
16505
  borderBottom: '1px solid',
16506
- borderBottomColor: 'color.gray.100',
16507
- color: 'color.gray.900',
16506
+ borderBottomColor: 'color-gray-100',
16507
+ color: 'color-gray-900',
16508
16508
  media: {
16509
16509
  mobile: {
16510
16510
  padding: '8px 12px',
@@ -16515,22 +16515,22 @@ var DefaultTableStyles = {
16515
16515
  tr: {
16516
16516
  transition: 'background-color 0.15s ease',
16517
16517
  _hover: {
16518
- backgroundColor: 'color.gray.50'
16518
+ backgroundColor: 'color-gray-50'
16519
16519
  },
16520
16520
  _focus: {
16521
16521
  outline: 'none',
16522
- backgroundColor: 'color.gray.100'
16522
+ backgroundColor: 'color-gray-100'
16523
16523
  }
16524
16524
  },
16525
16525
  tfoot: {
16526
- backgroundColor: 'color.gray.50',
16526
+ backgroundColor: 'color-gray-50',
16527
16527
  fontWeight: '600',
16528
16528
  borderTop: '2px solid',
16529
- borderTopColor: 'color.gray.200'
16529
+ borderTopColor: 'color-gray-200'
16530
16530
  },
16531
16531
  caption: {
16532
16532
  margin: '8px 0',
16533
- color: 'color.gray.600',
16533
+ color: 'color-gray-600',
16534
16534
  fontSize: '14px',
16535
16535
  fontStyle: 'italic',
16536
16536
  media: {
@@ -16756,17 +16756,17 @@ var TabHeader = _ref => {
16756
16756
  padding: '12px 16px',
16757
16757
  cursor: 'pointer',
16758
16758
  borderBottom: '2px solid',
16759
- borderBottomColor: isActive ? 'theme.primary' : 'transparent',
16759
+ borderBottomColor: isActive ? 'theme-primary' : 'transparent',
16760
16760
  backgroundColor: 'transparent',
16761
- color: isActive ? 'theme.primary' : 'color.gray.600',
16761
+ color: isActive ? 'theme-primary' : 'color-gray-600',
16762
16762
  fontWeight: isActive ? '600' : '500',
16763
16763
  marginBottom: '-1px',
16764
16764
  transition: 'all 0.2s ease',
16765
16765
  // Hover state
16766
16766
  on: {
16767
16767
  hover: {
16768
- color: 'theme.primary',
16769
- borderBottomColor: isActive ? 'theme.primary' : 'color.gray.300'
16768
+ color: 'theme-primary',
16769
+ borderBottomColor: isActive ? 'theme-primary' : 'color-gray-300'
16770
16770
  }
16771
16771
  }
16772
16772
  };
@@ -16851,7 +16851,7 @@ var TabsView = _ref => {
16851
16851
  }, views.container), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
16852
16852
  width: "100%",
16853
16853
  borderBottom: "1px solid",
16854
- borderBottomColor: "color.gray.200"
16854
+ borderBottomColor: "color-gray-200"
16855
16855
  }, views.headerTabs), tabs.map(tab => {
16856
16856
  // Determine if the current tab in the loop is the active one
16857
16857
  var isActive = (tab.value !== undefined ? tab.value : tab.title) === (activeTab.value !== undefined ? activeTab.value : activeTab.title);
@@ -16898,7 +16898,7 @@ var TabsList = _ref2 => {
16898
16898
  return /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
16899
16899
  width: "100%",
16900
16900
  borderBottom: "1px solid",
16901
- borderBottomColor: "color.gray.200"
16901
+ borderBottomColor: "color-gray-200"
16902
16902
  }, views == null ? void 0 : views.container), children);
16903
16903
  };
16904
16904
  // TabsTrigger compound component
@@ -16924,12 +16924,12 @@ var TabsTrigger = _ref3 => {
16924
16924
  opacity: disabled ? 0.6 : 1,
16925
16925
  padding: "12px 16px",
16926
16926
  borderBottom: "2px solid",
16927
- borderBottomColor: isActive ? 'theme.primary' : 'transparent',
16928
- color: isActive ? 'theme.primary' : 'color.gray.600',
16927
+ borderBottomColor: isActive ? 'theme-primary' : 'transparent',
16928
+ color: isActive ? 'theme-primary' : 'color-gray-600',
16929
16929
  fontWeight: isActive ? '600' : '400',
16930
16930
  transition: "all 0.2s ease",
16931
16931
  _hover: !disabled ? {
16932
- color: 'theme.primary'
16932
+ color: 'theme-primary'
16933
16933
  } : {},
16934
16934
  onClick: handleClick
16935
16935
  }, views == null ? void 0 : views.trigger, isActive ? views == null ? void 0 : views.activeState : {}), children);
@@ -17113,7 +17113,7 @@ var HighlightStyles = {
17113
17113
  }),
17114
17114
  background: color => ({
17115
17115
  backgroundColor: color,
17116
- color: 'color.white',
17116
+ color: 'color-white',
17117
17117
  padding: '0 8px',
17118
17118
  borderRadius: '4px'
17119
17119
  }),
@@ -17136,6 +17136,9 @@ var HighlightStyles = {
17136
17136
  color: color,
17137
17137
  textShadow: "0 0 10px " + color + "80, 0 0 20px " + color + "40, 0 0 30px " + color + "20"
17138
17138
  }),
17139
+ solid: color => ({
17140
+ color: color
17141
+ }),
17139
17142
  default: () => ({})
17140
17143
  };
17141
17144
 
@@ -17442,8 +17445,8 @@ var TitleView = _ref => {
17442
17445
  var {
17443
17446
  children,
17444
17447
  highlightText,
17445
- highlightStyle = 'default',
17446
- highlightColor = 'theme.primary',
17448
+ highlightStyle = 'solid',
17449
+ highlightColor = 'theme-primary',
17447
17450
  highlightSecondaryColor,
17448
17451
  size = 'lg',
17449
17452
  views,
@@ -17464,34 +17467,6 @@ var TitleView = _ref => {
17464
17467
  ref,
17465
17468
  inView
17466
17469
  } = appStudio.useInView();
17467
- var {
17468
- getColor,
17469
- themeMode,
17470
- theme
17471
- } = appStudio.useTheme();
17472
- var currentThemeMode = elementMode || themeMode;
17473
- var resolvedHighlightColor = getColor(highlightColor, {
17474
- themeMode: currentThemeMode
17475
- });
17476
- // Fallback: If getColor returns the token itself (resolution failed), try manual lookup in theme object
17477
- if (resolvedHighlightColor === highlightColor && highlightColor.startsWith('theme.') && theme) {
17478
- var tokenPath = highlightColor.replace('theme.', '');
17479
- var value = tokenPath.split('.').reduce((acc, part) => acc && acc[part], theme);
17480
- if (typeof value === 'string') {
17481
- resolvedHighlightColor = value;
17482
- }
17483
- }
17484
- var resolvedHighlightSecondaryColor = highlightSecondaryColor ? getColor(highlightSecondaryColor, {
17485
- themeMode: currentThemeMode
17486
- }) : undefined;
17487
- // Fallback for secondary color
17488
- if (highlightSecondaryColor && resolvedHighlightSecondaryColor === highlightSecondaryColor && highlightSecondaryColor.startsWith('theme.') && theme) {
17489
- var _tokenPath = highlightSecondaryColor.replace('theme.', '');
17490
- var _value = _tokenPath.split('.').reduce((acc, part) => acc && acc[part], theme);
17491
- if (typeof _value === 'string') {
17492
- resolvedHighlightSecondaryColor = _value;
17493
- }
17494
- }
17495
17470
  var {
17496
17471
  finalDisplayedText,
17497
17472
  activeHighlightTarget,
@@ -17513,7 +17488,7 @@ var TitleView = _ref => {
17513
17488
  }, props));
17514
17489
  var fontSize = TitleSizes[size];
17515
17490
  // Highlight style props
17516
- var highlightProps = HighlightStyles[highlightStyle](resolvedHighlightColor, resolvedHighlightSecondaryColor);
17491
+ var highlightProps = HighlightStyles[highlightStyle](highlightColor, highlightSecondaryColor);
17517
17492
  // Apply loop control to animations
17518
17493
  var applyAnimationLoop = (animation, loopControl) => {
17519
17494
  if (!animation) return animation;
@@ -17623,7 +17598,7 @@ var TitleView = _ref => {
17623
17598
  *
17624
17599
  * @example
17625
17600
  * // With highlighting
17626
- * <Title highlightText="Platform" highlightStyle="background" highlightColor="theme.primary">
17601
+ * <Title highlightText="Platform" highlightStyle="background" highlightColor="theme-primary">
17627
17602
  * Welcome to Our Platform
17628
17603
  * </Title>
17629
17604
  *
@@ -17642,8 +17617,8 @@ var TitleView = _ref => {
17642
17617
  * <Title
17643
17618
  * highlightText={["Amazing", "Features"]}
17644
17619
  * highlightStyle="gradient"
17645
- * highlightColor="theme.primary"
17646
- * highlightSecondaryColor="theme.secondary"
17620
+ * highlightColor="theme-primary"
17621
+ * highlightSecondaryColor="theme-secondary"
17647
17622
  * >
17648
17623
  * Discover our Amazing Product with Great Features
17649
17624
  * </Title>
@@ -17686,12 +17661,12 @@ var getToggleVariants = (color, isLight) => ({
17686
17661
  borderColor: color,
17687
17662
  _hover: {
17688
17663
  backgroundColor: color,
17689
- color: isLight ? 'color.black' : 'color.white',
17664
+ color: isLight ? 'color-black' : 'color-white',
17690
17665
  transform: 'translateY(-1px)'
17691
17666
  },
17692
17667
  _active: {
17693
17668
  backgroundColor: color,
17694
- color: isLight ? 'color.black' : 'color.white',
17669
+ color: isLight ? 'color-black' : 'color-white',
17695
17670
  transform: 'translateY(0)'
17696
17671
  },
17697
17672
  transition: 'all 0.2s ease'
@@ -17704,12 +17679,12 @@ var getToggleVariants = (color, isLight) => ({
17704
17679
  borderColor: 'transparent',
17705
17680
  _hover: {
17706
17681
  backgroundColor: color,
17707
- color: isLight ? 'color.black' : 'color.white',
17682
+ color: isLight ? 'color-black' : 'color-white',
17708
17683
  transform: 'translateY(-1px)'
17709
17684
  },
17710
17685
  _active: {
17711
17686
  backgroundColor: color,
17712
- color: isLight ? 'color.black' : 'color.white',
17687
+ color: isLight ? 'color-black' : 'color-white',
17713
17688
  transform: 'translateY(0)'
17714
17689
  },
17715
17690
  transition: 'all 0.2s ease'
@@ -17765,8 +17740,8 @@ var ToggleView = _ref => {
17765
17740
  } = appStudio.useTheme();
17766
17741
  var mode = elementMode != null ? elementMode : themeMode;
17767
17742
  /* MAIN COLOR – determines the entire palette */
17768
- var mainColorKey = (_ref2 = backgroundColor != null ? backgroundColor : color) != null ? _ref2 : 'theme.primary';
17769
- var mainTone = getColor(isDisabled ? 'theme.disabled' : mainColorKey, {
17743
+ var mainColorKey = (_ref2 = backgroundColor != null ? backgroundColor : color) != null ? _ref2 : 'theme-primary';
17744
+ var mainTone = getColor(isDisabled ? 'theme-disabled' : mainColorKey, {
17770
17745
  themeMode: mode
17771
17746
  });
17772
17747
  var tone = contrast(mainTone);
@@ -17797,7 +17772,7 @@ var ToggleView = _ref => {
17797
17772
  onMouseLeave: () => setIsHovered(false)
17798
17773
  }, base, isActive && {
17799
17774
  backgroundColor: mainTone,
17800
- color: tone === 'light' ? 'color.black' : 'color.white'
17775
+ color: tone === 'light' ? 'color-black' : 'color-white'
17801
17776
  }, props, views == null ? void 0 : views.container), children);
17802
17777
  };
17803
17778
 
@@ -18119,27 +18094,27 @@ var DropdownMenuSizes = {
18119
18094
  };
18120
18095
  var DropdownMenuVariants = {
18121
18096
  default: {
18122
- backgroundColor: 'color.white',
18123
- color: 'color.gray.800'
18097
+ backgroundColor: 'color-white',
18098
+ color: 'color-gray-800'
18124
18099
  },
18125
18100
  filled: {
18126
- backgroundColor: 'color.gray.100',
18127
- color: 'color.gray.800'
18101
+ backgroundColor: 'color-gray-100',
18102
+ color: 'color-gray-800'
18128
18103
  },
18129
18104
  outline: {
18130
- backgroundColor: 'color.white',
18105
+ backgroundColor: 'color-white',
18131
18106
  borderWidth: '1px',
18132
18107
  borderStyle: 'solid',
18133
- borderColor: 'color.gray.200',
18134
- color: 'color.gray.800'
18108
+ borderColor: 'color-gray-200',
18109
+ color: 'color-gray-800'
18135
18110
  }
18136
18111
  };
18137
18112
  var DropdownMenuItemStates = {
18138
18113
  hover: {
18139
- backgroundColor: 'color.gray.100'
18114
+ backgroundColor: 'color-gray-100'
18140
18115
  },
18141
18116
  active: {
18142
- backgroundColor: 'color.gray.200'
18117
+ backgroundColor: 'color-gray-200'
18143
18118
  },
18144
18119
  disabled: {
18145
18120
  opacity: 0.5,
@@ -18384,7 +18359,7 @@ var DropdownMenuItem = _ref4 => {
18384
18359
  position: "relative"
18385
18360
  }, DropdownMenuSizes[size], {
18386
18361
  _hover: !item.disabled ? DropdownMenuItemStates.hover : {},
18387
- backgroundColor: isHovered && !item.disabled ? 'color.gray.100' : 'transparent',
18362
+ backgroundColor: isHovered && !item.disabled ? 'color-gray-100' : 'transparent',
18388
18363
  onMouseEnter: handleMouseEnter,
18389
18364
  onMouseLeave: handleMouseLeave,
18390
18365
  onClick: handleClick
@@ -18414,7 +18389,7 @@ var DropdownMenuDivider = _ref5 => {
18414
18389
  props = _objectWithoutPropertiesLoose(_ref5, _excluded4$9);
18415
18390
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
18416
18391
  height: "1px",
18417
- backgroundColor: "color.gray.200",
18392
+ backgroundColor: "color-gray-200",
18418
18393
  margin: "4px 0"
18419
18394
  }, views == null ? void 0 : views.divider, props));
18420
18395
  };
@@ -18629,11 +18604,11 @@ var DefaultColorPickerStyles = {
18629
18604
  left: 0,
18630
18605
  right: 0,
18631
18606
  zIndex: 1000,
18632
- backgroundColor: 'color.white',
18607
+ backgroundColor: 'color-white',
18633
18608
  borderRadius: '8px',
18634
18609
  borderWidth: '1px',
18635
18610
  borderStyle: 'solid',
18636
- borderColor: 'color.gray.200',
18611
+ borderColor: 'color-gray-200',
18637
18612
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
18638
18613
  padding: '16px',
18639
18614
  minWidth: '280px'
@@ -18656,7 +18631,7 @@ var DefaultColorPickerStyles = {
18656
18631
  marginBottom: '12px'
18657
18632
  },
18658
18633
  recentColors: {
18659
- borderTop: '1px solid color.gray.200',
18634
+ borderTop: '1px solid color-gray-200',
18660
18635
  paddingTop: '12px'
18661
18636
  }
18662
18637
  };
@@ -18712,25 +18687,25 @@ var Shapes$3 = {
18712
18687
  */
18713
18688
  var Variants$2 = {
18714
18689
  default: {
18715
- backgroundColor: 'color.white',
18690
+ backgroundColor: 'color-white',
18716
18691
  borderWidth: '1px',
18717
18692
  borderStyle: 'solid',
18718
- borderColor: 'color.gray.300',
18719
- color: 'color.gray.800'
18693
+ borderColor: 'color-gray-300',
18694
+ color: 'color-gray-800'
18720
18695
  },
18721
18696
  outline: {
18722
18697
  backgroundColor: 'transparent',
18723
18698
  borderWidth: '1px',
18724
18699
  borderStyle: 'solid',
18725
- borderColor: 'color.gray.300',
18726
- color: 'color.gray.800'
18700
+ borderColor: 'color-gray-300',
18701
+ color: 'color-gray-800'
18727
18702
  },
18728
18703
  filled: {
18729
- backgroundColor: 'color.gray.100',
18704
+ backgroundColor: 'color-gray-100',
18730
18705
  borderWidth: '1px',
18731
18706
  borderStyle: 'solid',
18732
- borderColor: 'color.gray.200',
18733
- color: 'color.gray.800'
18707
+ borderColor: 'color-gray-200',
18708
+ color: 'color-gray-800'
18734
18709
  }
18735
18710
  };
18736
18711
  /**
@@ -18740,133 +18715,133 @@ var DefaultColorPalette$1 = [
18740
18715
  // Primary colors
18741
18716
  {
18742
18717
  name: 'Blue 500',
18743
- value: 'color.blue.500',
18718
+ value: 'color-blue-500',
18744
18719
  category: 'primary'
18745
18720
  }, {
18746
18721
  name: 'Purple 500',
18747
- value: 'color.purple.500',
18722
+ value: 'color-purple-500',
18748
18723
  category: 'primary'
18749
18724
  }, {
18750
18725
  name: 'Pink 500',
18751
- value: 'color.pink.500',
18726
+ value: 'color-pink-500',
18752
18727
  category: 'primary'
18753
18728
  }, {
18754
18729
  name: 'Red 500',
18755
- value: 'color.red.500',
18730
+ value: 'color-red-500',
18756
18731
  category: 'primary'
18757
18732
  }, {
18758
18733
  name: 'Orange 500',
18759
- value: 'color.orange.500',
18734
+ value: 'color-orange-500',
18760
18735
  category: 'primary'
18761
18736
  }, {
18762
18737
  name: 'Yellow 500',
18763
- value: 'color.yellow.500',
18738
+ value: 'color-yellow-500',
18764
18739
  category: 'primary'
18765
18740
  }, {
18766
18741
  name: 'Green 500',
18767
- value: 'color.green.500',
18742
+ value: 'color-green-500',
18768
18743
  category: 'primary'
18769
18744
  }, {
18770
18745
  name: 'Teal 500',
18771
- value: 'color.teal.500',
18746
+ value: 'color-teal-500',
18772
18747
  category: 'primary'
18773
18748
  },
18774
18749
  // Light variants
18775
18750
  {
18776
18751
  name: 'Blue 300',
18777
- value: 'color.blue.300',
18752
+ value: 'color-blue-300',
18778
18753
  category: 'light'
18779
18754
  }, {
18780
18755
  name: 'Purple 300',
18781
- value: 'color.purple.300',
18756
+ value: 'color-purple-300',
18782
18757
  category: 'light'
18783
18758
  }, {
18784
18759
  name: 'Pink 300',
18785
- value: 'color.pink.300',
18760
+ value: 'color-pink-300',
18786
18761
  category: 'light'
18787
18762
  }, {
18788
18763
  name: 'Red 300',
18789
- value: 'color.red.300',
18764
+ value: 'color-red-300',
18790
18765
  category: 'light'
18791
18766
  }, {
18792
18767
  name: 'Orange 300',
18793
- value: 'color.orange.300',
18768
+ value: 'color-orange-300',
18794
18769
  category: 'light'
18795
18770
  }, {
18796
18771
  name: 'Yellow 300',
18797
- value: 'color.yellow.300',
18772
+ value: 'color-yellow-300',
18798
18773
  category: 'light'
18799
18774
  }, {
18800
18775
  name: 'Green 300',
18801
- value: 'color.green.300',
18776
+ value: 'color-green-300',
18802
18777
  category: 'light'
18803
18778
  }, {
18804
18779
  name: 'Teal 300',
18805
- value: 'color.teal.300',
18780
+ value: 'color-teal-300',
18806
18781
  category: 'light'
18807
18782
  },
18808
18783
  // Dark variants
18809
18784
  {
18810
18785
  name: 'Blue 700',
18811
- value: 'color.blue.700',
18786
+ value: 'color-blue-700',
18812
18787
  category: 'dark'
18813
18788
  }, {
18814
18789
  name: 'Purple 700',
18815
- value: 'color.purple.700',
18790
+ value: 'color-purple-700',
18816
18791
  category: 'dark'
18817
18792
  }, {
18818
18793
  name: 'Pink 700',
18819
- value: 'color.pink.700',
18794
+ value: 'color-pink-700',
18820
18795
  category: 'dark'
18821
18796
  }, {
18822
18797
  name: 'Red 700',
18823
- value: 'color.red.700',
18798
+ value: 'color-red-700',
18824
18799
  category: 'dark'
18825
18800
  }, {
18826
18801
  name: 'Orange 700',
18827
- value: 'color.orange.700',
18802
+ value: 'color-orange-700',
18828
18803
  category: 'dark'
18829
18804
  }, {
18830
18805
  name: 'Yellow 700',
18831
- value: 'color.yellow.700',
18806
+ value: 'color-yellow-700',
18832
18807
  category: 'dark'
18833
18808
  }, {
18834
18809
  name: 'Green 700',
18835
- value: 'color.green.700',
18810
+ value: 'color-green-700',
18836
18811
  category: 'dark'
18837
18812
  }, {
18838
18813
  name: 'Teal 700',
18839
- value: 'color.teal.700',
18814
+ value: 'color-teal-700',
18840
18815
  category: 'dark'
18841
18816
  },
18842
18817
  // Grays
18843
18818
  {
18844
18819
  name: 'Gray 100',
18845
- value: 'color.gray.100',
18820
+ value: 'color-gray-100',
18846
18821
  category: 'neutral'
18847
18822
  }, {
18848
18823
  name: 'Gray 300',
18849
- value: 'color.gray.300',
18824
+ value: 'color-gray-300',
18850
18825
  category: 'neutral'
18851
18826
  }, {
18852
18827
  name: 'Gray 500',
18853
- value: 'color.gray.500',
18828
+ value: 'color-gray-500',
18854
18829
  category: 'neutral'
18855
18830
  }, {
18856
18831
  name: 'Gray 700',
18857
- value: 'color.gray.700',
18832
+ value: 'color-gray-700',
18858
18833
  category: 'neutral'
18859
18834
  }, {
18860
18835
  name: 'Gray 900',
18861
- value: 'color.gray.900',
18836
+ value: 'color-gray-900',
18862
18837
  category: 'neutral'
18863
18838
  }, {
18864
18839
  name: 'Black',
18865
- value: 'color.black',
18840
+ value: 'color-black',
18866
18841
  category: 'neutral'
18867
18842
  }, {
18868
18843
  name: 'White',
18869
- value: 'color.white',
18844
+ value: 'color-white',
18870
18845
  category: 'neutral'
18871
18846
  }];
18872
18847
 
@@ -18912,7 +18887,7 @@ var ColorPickerView = _ref => {
18912
18887
  // Combine styles
18913
18888
  var containerStyles = Object.assign({}, DefaultColorPickerStyles.container, views == null ? void 0 : views.container);
18914
18889
  var triggerStyles = Object.assign({}, DefaultColorPickerStyles.trigger, Sizes$3[size], Shapes$3[shape], Variants$2[variant], error && {
18915
- borderColor: 'color.red.500'
18890
+ borderColor: 'color-red-500'
18916
18891
  }, isDisabled && {
18917
18892
  opacity: 0.6,
18918
18893
  cursor: 'not-allowed'
@@ -18921,11 +18896,11 @@ var ColorPickerView = _ref => {
18921
18896
  var colorGridStyles = Object.assign({}, DefaultColorPickerStyles.colorGrid, views == null ? void 0 : views.colorGrid);
18922
18897
  var recentColorsStyles = Object.assign({}, DefaultColorPickerStyles.recentColors, views == null ? void 0 : views.recentColors);
18923
18898
  // Get display color for the selected color swatch
18924
- var displayColor = selectedColor || 'color.gray.200';
18899
+ var displayColor = selectedColor || 'color-gray-200';
18925
18900
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, containerStyles, props), label && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
18926
18901
  fontSize: size === 'xs' ? '12px' : size === 'sm' ? '14px' : '16px',
18927
18902
  fontWeight: "500",
18928
- color: "color.gray.700",
18903
+ color: "color-gray-700",
18929
18904
  marginBottom: "4px"
18930
18905
  }, views == null ? void 0 : views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
18931
18906
  ref: triggerRef,
@@ -18940,13 +18915,13 @@ var ColorPickerView = _ref => {
18940
18915
  backgroundColor: displayColor,
18941
18916
  borderWidth: "1px",
18942
18917
  borderStyle: "solid",
18943
- borderColor: "color.gray.300"
18918
+ borderColor: "color-gray-300"
18944
18919
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
18945
- color: selectedColor ? 'color.gray.800' : 'color.gray.500',
18920
+ color: selectedColor ? 'color-gray-800' : 'color-gray-500',
18946
18921
  fontSize: "inherit"
18947
18922
  }, selectedColor || placeholder)), !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(ChevronIcon, {
18948
18923
  widthHeight: 16,
18949
- color: "color.gray.500",
18924
+ color: "color-gray-500",
18950
18925
  orientation: isOpen ? 'up' : 'down'
18951
18926
  }))), isOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
18952
18927
  ref: dropdownRef
@@ -18958,14 +18933,14 @@ var ColorPickerView = _ref => {
18958
18933
  backgroundColor: colorOption.value,
18959
18934
  borderWidth: "2px",
18960
18935
  borderStyle: "solid",
18961
- borderColor: selectedColor === colorOption.value ? 'color.blue.500' : 'transparent',
18936
+ borderColor: selectedColor === colorOption.value ? 'color-blue-500' : 'transparent',
18962
18937
  cursor: "pointer",
18963
18938
  transition: "all 0.2s ease",
18964
18939
  onClick: () => handleColorSelect(colorOption.value),
18965
18940
  title: colorOption.name,
18966
18941
  _hover: {
18967
18942
  transform: 'scale(1.1)',
18968
- borderColor: 'color.gray.400'
18943
+ borderColor: 'color-gray-400'
18969
18944
  }
18970
18945
  }, views == null ? void 0 : views.colorSwatch))))), showCustomInput && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, DefaultColorPickerStyles.customInput, views == null ? void 0 : views.customInput), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
18971
18946
  gap: 8,
@@ -18990,7 +18965,7 @@ var ColorPickerView = _ref => {
18990
18965
  title: "Pick a color"
18991
18966
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
18992
18967
  fontSize: "12px",
18993
- color: "color.gray.600"
18968
+ color: "color-gray-600"
18994
18969
  }, "Use native color picker")), /*#__PURE__*/React__default.createElement(TextField, {
18995
18970
  placeholder: "Enter hex color (e.g., #ff0000)",
18996
18971
  value: customColor,
@@ -19008,13 +18983,13 @@ var ColorPickerView = _ref => {
19008
18983
  backgroundColor: customColor,
19009
18984
  borderWidth: "1px",
19010
18985
  borderStyle: "solid",
19011
- borderColor: "color.gray.300",
18986
+ borderColor: "color-gray-300",
19012
18987
  cursor: "pointer",
19013
18988
  onClick: handleCustomColorSubmit
19014
18989
  }))
19015
18990
  }))), showRecentColors && recentColors.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, recentColorsStyles), /*#__PURE__*/React__default.createElement(appStudio.Text, {
19016
18991
  fontWeight: "500",
19017
- color: "color.gray.600",
18992
+ color: "color-gray-600",
19018
18993
  marginBottom: "8px"
19019
18994
  }, "Recent Colors"), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
19020
18995
  gap: 8,
@@ -19027,7 +19002,7 @@ var ColorPickerView = _ref => {
19027
19002
  backgroundColor: color,
19028
19003
  borderWidth: "1px",
19029
19004
  borderStyle: "solid",
19030
- borderColor: "color.gray.300",
19005
+ borderColor: "color-gray-300",
19031
19006
  cursor: "pointer",
19032
19007
  onClick: () => handleColorSelect(color),
19033
19008
  title: color,
@@ -19035,7 +19010,7 @@ var ColorPickerView = _ref => {
19035
19010
  transform: 'scale(1.1)'
19036
19011
  }
19037
19012
  })))))))), helperText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
19038
- color: error ? 'color.red.500' : 'color.gray.600',
19013
+ color: error ? 'color-red-500' : 'color-gray-600',
19039
19014
  marginTop: "4px"
19040
19015
  }, views == null ? void 0 : views.helperText), helperText)));
19041
19016
  };
@@ -19072,11 +19047,11 @@ var DefaultEmojiPickerStyles = {
19072
19047
  left: 0,
19073
19048
  right: 0,
19074
19049
  zIndex: 1000,
19075
- backgroundColor: 'color.white',
19050
+ backgroundColor: 'color-white',
19076
19051
  borderRadius: '8px',
19077
19052
  borderWidth: '1px',
19078
19053
  borderStyle: 'solid',
19079
- borderColor: 'color.gray.200',
19054
+ borderColor: 'color-gray-200',
19080
19055
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
19081
19056
  padding: '16px',
19082
19057
  minWidth: '320px',
@@ -19088,7 +19063,7 @@ var DefaultEmojiPickerStyles = {
19088
19063
  },
19089
19064
  categoryTabs: {
19090
19065
  display: 'flex',
19091
- borderBottom: '1px solid color.gray.200',
19066
+ borderBottom: '1px solid color-gray-200',
19092
19067
  marginBottom: '12px',
19093
19068
  overflowX: 'auto'
19094
19069
  },
@@ -19099,7 +19074,7 @@ var DefaultEmojiPickerStyles = {
19099
19074
  transition: 'all 0.2s ease',
19100
19075
  fontSize: '14px',
19101
19076
  fontWeight: '500',
19102
- color: 'color.gray.600',
19077
+ color: 'color-gray-600',
19103
19078
  whiteSpace: 'nowrap'
19104
19079
  },
19105
19080
  emojiGrid: {
@@ -19109,7 +19084,7 @@ var DefaultEmojiPickerStyles = {
19109
19084
  maxHeight: '240px',
19110
19085
  overflowY: 'auto',
19111
19086
  padding: '4px',
19112
- color: 'color.black'
19087
+ color: 'color-black'
19113
19088
  },
19114
19089
  emoji: {
19115
19090
  width: '32px',
@@ -19123,7 +19098,7 @@ var DefaultEmojiPickerStyles = {
19123
19098
  transition: 'all 0.2s ease'
19124
19099
  },
19125
19100
  recentEmojis: {
19126
- borderBottom: '1px solid color.gray.200',
19101
+ borderBottom: '1px solid color-gray-200',
19127
19102
  marginBottom: '12px',
19128
19103
  paddingBottom: '12px'
19129
19104
  }
@@ -19180,25 +19155,25 @@ var Shapes$4 = {
19180
19155
  */
19181
19156
  var Variants$3 = {
19182
19157
  default: {
19183
- backgroundColor: 'color.white',
19158
+ backgroundColor: 'color-white',
19184
19159
  borderWidth: '1px',
19185
19160
  borderStyle: 'solid',
19186
- borderColor: 'color.gray.300',
19187
- color: 'color.gray.800'
19161
+ borderColor: 'color-gray-300',
19162
+ color: 'color-gray-800'
19188
19163
  },
19189
19164
  outline: {
19190
19165
  backgroundColor: 'transparent',
19191
19166
  borderWidth: '1px',
19192
19167
  borderStyle: 'solid',
19193
- borderColor: 'color.gray.300',
19194
- color: 'color.gray.800'
19168
+ borderColor: 'color-gray-300',
19169
+ color: 'color-gray-800'
19195
19170
  },
19196
19171
  filled: {
19197
- backgroundColor: 'color.gray.100',
19172
+ backgroundColor: 'color-gray-100',
19198
19173
  borderWidth: '1px',
19199
19174
  borderStyle: 'solid',
19200
- borderColor: 'color.gray.200',
19201
- color: 'color.gray.800'
19175
+ borderColor: 'color-gray-200',
19176
+ color: 'color-gray-800'
19202
19177
  }
19203
19178
  };
19204
19179
  /**
@@ -21282,7 +21257,7 @@ var EmojiPickerView = _ref => {
21282
21257
  // Combine styles
21283
21258
  var containerStyles = Object.assign({}, DefaultEmojiPickerStyles.container, views == null ? void 0 : views.container);
21284
21259
  var triggerStyles = Object.assign({}, DefaultEmojiPickerStyles.trigger, Sizes$4[size], Shapes$4[shape], Variants$3[variant], error && {
21285
- borderColor: 'color.red.500'
21260
+ borderColor: 'color-red-500'
21286
21261
  }, isDisabled && {
21287
21262
  opacity: 0.6,
21288
21263
  cursor: 'not-allowed'
@@ -21300,7 +21275,7 @@ var EmojiPickerView = _ref => {
21300
21275
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, containerStyles, props), label && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
21301
21276
  fontSize: size === 'xs' ? '12px' : size === 'sm' ? '14px' : '16px',
21302
21277
  fontWeight: "500",
21303
- color: "color.gray.700",
21278
+ color: "color-gray-700",
21304
21279
  marginBottom: "4px"
21305
21280
  }, views == null ? void 0 : views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21306
21281
  ref: triggerRef,
@@ -21309,11 +21284,11 @@ var EmojiPickerView = _ref => {
21309
21284
  alignItems: "center",
21310
21285
  gap: 8
21311
21286
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
21312
- color: selectedEmoji ? 'color.gray.800' : 'color.gray.500',
21287
+ color: selectedEmoji ? 'color-gray-800' : 'color-gray-500',
21313
21288
  fontSize: "inherit"
21314
21289
  }, selectedEmoji || placeholder)), !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(ChevronIcon, {
21315
21290
  widthHeight: 16,
21316
- color: "color.gray.500",
21291
+ color: "color-gray-500",
21317
21292
  orientation: isOpen ? 'up' : 'down'
21318
21293
  }))), isOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21319
21294
  ref: dropdownRef
@@ -21325,8 +21300,8 @@ var EmojiPickerView = _ref => {
21325
21300
  }))), showCategories && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, categoryTabsStyles), availableCategories.map(category => (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21326
21301
  key: category
21327
21302
  }, DefaultEmojiPickerStyles.categoryTab, activeCategory === category && {
21328
- borderBottomColor: 'color.blue.500',
21329
- color: 'color.blue.600'
21303
+ borderBottomColor: 'color-blue-500',
21304
+ color: 'color-blue-600'
21330
21305
  }, {
21331
21306
  onClick: () => handleCategoryChange(category),
21332
21307
  title: category.charAt(0).toUpperCase() + category.slice(1)
@@ -21336,18 +21311,18 @@ var EmojiPickerView = _ref => {
21336
21311
  onClick: () => handleEmojiSelect(emoji),
21337
21312
  title: emoji.name,
21338
21313
  _hover: {
21339
- backgroundColor: 'color.gray.100'
21314
+ backgroundColor: 'color-gray-100'
21340
21315
  },
21341
- color: "color.gray.800"
21316
+ color: "color-gray-800"
21342
21317
  }, views == null ? void 0 : views.emoji), emoji.emoji))) : (/*#__PURE__*/React__default.createElement(appStudio.View, {
21343
21318
  gridColumn: "1 / -1",
21344
21319
  padding: "20px",
21345
21320
  textAlign: "center",
21346
- color: "color.gray.500"
21321
+ color: "color-gray-500"
21347
21322
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
21348
21323
  fontSize: "14px"
21349
21324
  }, searchQuery ? 'No emojis found' : 'No emojis in this category')))))), helperText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
21350
- color: error ? 'color.red.500' : 'color.gray.600',
21325
+ color: error ? 'color-red-500' : 'color-gray-600',
21351
21326
  marginTop: "4px"
21352
21327
  }, views == null ? void 0 : views.helperText), helperText)));
21353
21328
  };
@@ -21427,18 +21402,18 @@ var MenubarSizes = {
21427
21402
  var MenubarVariants = {
21428
21403
  default: {
21429
21404
  backgroundColor: 'transparent',
21430
- color: 'color.gray.800'
21405
+ color: 'color-gray-800'
21431
21406
  },
21432
21407
  filled: {
21433
- backgroundColor: 'color.gray.100',
21434
- color: 'color.gray.800'
21408
+ backgroundColor: 'color-gray-100',
21409
+ color: 'color-gray-800'
21435
21410
  },
21436
21411
  outline: {
21437
21412
  backgroundColor: 'transparent',
21438
21413
  borderWidth: '1px',
21439
21414
  borderStyle: 'solid',
21440
- borderColor: 'color.gray.200',
21441
- color: 'color.gray.800'
21415
+ borderColor: 'color-gray-200',
21416
+ color: 'color-gray-800'
21442
21417
  }
21443
21418
  };
21444
21419
  var MenubarOrientations = {
@@ -21451,11 +21426,11 @@ var MenubarOrientations = {
21451
21426
  };
21452
21427
  var MenubarItemStates = {
21453
21428
  active: {
21454
- backgroundColor: 'color.gray.200',
21429
+ backgroundColor: 'color-gray-200',
21455
21430
  fontWeight: 'bold'
21456
21431
  },
21457
21432
  hover: {
21458
- backgroundColor: 'color.gray.100'
21433
+ backgroundColor: 'color-gray-100'
21459
21434
  },
21460
21435
  disabled: {
21461
21436
  opacity: 0.5,
@@ -21724,7 +21699,7 @@ var MenubarContent = _ref5 => {
21724
21699
  id: "menubar-content",
21725
21700
  role: "menu",
21726
21701
  minWidth: "200px",
21727
- backgroundColor: "color.white",
21702
+ backgroundColor: "color-white",
21728
21703
  borderRadius: 4,
21729
21704
  boxShadow: "0px 2px 8px rgba(0, 0, 0, 0.15)",
21730
21705
  overflow: "hidden",
@@ -21770,7 +21745,7 @@ var MenubarSeparator = _ref7 => {
21770
21745
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21771
21746
  role: "separator",
21772
21747
  height: "1px",
21773
- backgroundColor: "color.gray.200",
21748
+ backgroundColor: "color-gray-200",
21774
21749
  margin: "4px 0"
21775
21750
  }, views == null ? void 0 : views.separator));
21776
21751
  };
@@ -21967,26 +21942,26 @@ var PaginationSizes = {
21967
21942
  var PaginationVariants = {
21968
21943
  default: {
21969
21944
  backgroundColor: 'transparent',
21970
- color: 'color.gray.800',
21945
+ color: 'color-gray-800',
21971
21946
  _hover: {
21972
- backgroundColor: 'color.gray.100'
21947
+ backgroundColor: 'color-gray-100'
21973
21948
  }
21974
21949
  },
21975
21950
  filled: {
21976
- backgroundColor: 'color.gray.100',
21977
- color: 'color.gray.800',
21951
+ backgroundColor: 'color-gray-100',
21952
+ color: 'color-gray-800',
21978
21953
  _hover: {
21979
- backgroundColor: 'color.gray.200'
21954
+ backgroundColor: 'color-gray-200'
21980
21955
  }
21981
21956
  },
21982
21957
  outline: {
21983
21958
  backgroundColor: 'transparent',
21984
21959
  borderWidth: '1px',
21985
21960
  borderStyle: 'solid',
21986
- borderColor: 'color.gray.200',
21987
- color: 'color.gray.800',
21961
+ borderColor: 'color-gray-200',
21962
+ color: 'color-gray-800',
21988
21963
  _hover: {
21989
- backgroundColor: 'color.gray.100'
21964
+ backgroundColor: 'color-gray-100'
21990
21965
  }
21991
21966
  }
21992
21967
  };
@@ -22002,10 +21977,10 @@ var PaginationShapes = {
22002
21977
  }
22003
21978
  };
22004
21979
  var ActivePageButtonStyles = {
22005
- backgroundColor: 'color.blue.500',
22006
- color: 'color.white',
21980
+ backgroundColor: 'color-blue-500',
21981
+ color: 'color-white',
22007
21982
  _hover: {
22008
- backgroundColor: 'color.blue.600'
21983
+ backgroundColor: 'color-blue-600'
22009
21984
  }
22010
21985
  };
22011
21986
  var DisabledButtonStyles = {
@@ -22147,7 +22122,7 @@ var PaginationView = _ref => {
22147
22122
  marginLeft: "-8px"
22148
22123
  }))), showPageInfo && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
22149
22124
  marginLeft: 16,
22150
- color: "color.gray.600"
22125
+ color: "color-gray-600"
22151
22126
  }, views == null ? void 0 : views.pageInfo), "Page ", currentPage, " of ", totalPages)), showPageSizeSelector && onPageSizeChange && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
22152
22127
  as: "select",
22153
22128
  marginLeft: 16,
@@ -22155,8 +22130,8 @@ var PaginationView = _ref => {
22155
22130
  borderRadius: "4px",
22156
22131
  borderWidth: "1px",
22157
22132
  borderStyle: "solid",
22158
- borderColor: "color.gray.200",
22159
- backgroundColor: "color.white",
22133
+ borderColor: "color-gray-200",
22134
+ backgroundColor: "color-white",
22160
22135
  cursor: "pointer",
22161
22136
  value: pageSize,
22162
22137
  onChange: handlePageSizeChange
@@ -22217,14 +22192,14 @@ var ProgressBarView = _ref => {
22217
22192
  shape = 'linear',
22218
22193
  value = 0,
22219
22194
  max = 100,
22220
- color = 'theme.primary',
22221
- backgroundColor = 'color.gray.200',
22195
+ color = 'theme-primary',
22196
+ backgroundColor = 'color-gray-200',
22222
22197
  height,
22223
22198
  size,
22224
22199
  radius = 4,
22225
22200
  strokeWidth = 10,
22226
22201
  showLabel = false,
22227
- labelColor = 'theme.text.primary',
22202
+ labelColor = 'theme-text-primary',
22228
22203
  animated = true,
22229
22204
  animationDuration = '0.5s',
22230
22205
  views,
@@ -22369,15 +22344,15 @@ var DefaultSeparatorStyles = {
22369
22344
  transition: 'opacity 0.15s ease'
22370
22345
  },
22371
22346
  line: {
22372
- backgroundColor: 'color.gray.200',
22347
+ backgroundColor: 'color-gray-200',
22373
22348
  transition: 'background-color 0.15s ease'
22374
22349
  },
22375
22350
  label: {
22376
22351
  fontSize: '14px',
22377
22352
  fontWeight: '500',
22378
- color: 'color.gray.600',
22353
+ color: 'color-gray-600',
22379
22354
  paddingHorizontal: '8px',
22380
- backgroundColor: 'color.white',
22355
+ backgroundColor: 'color-white',
22381
22356
  transition: 'color 0.15s ease'
22382
22357
  }
22383
22358
  };
@@ -22400,7 +22375,7 @@ var SeparatorView = _ref => {
22400
22375
  themeMode
22401
22376
  } = appStudio.useTheme();
22402
22377
  // Use provided color or default from theme
22403
- var separatorColor = color || 'color.gray.200';
22378
+ var separatorColor = color || 'color-gray-200';
22404
22379
  var borderStyle = SeparatorVariants[variant];
22405
22380
  var borderWidth = SeparatorThicknesses[thickness];
22406
22381
  // Set appropriate ARIA attributes based on decorative prop
@@ -22607,42 +22582,42 @@ var getThemes$2 = themeMode => {
22607
22582
  return {
22608
22583
  default: {
22609
22584
  indicator: {
22610
- backgroundColor: 'color.gray.400'
22585
+ backgroundColor: 'color-gray-400'
22611
22586
  },
22612
22587
  label: {
22613
- color: 'color.gray.700'
22588
+ color: 'color-gray-700'
22614
22589
  }
22615
22590
  },
22616
22591
  info: {
22617
22592
  indicator: {
22618
- backgroundColor: 'color.blue.500'
22593
+ backgroundColor: 'color-blue-500'
22619
22594
  },
22620
22595
  label: {
22621
- color: 'color.blue.700'
22596
+ color: 'color-blue-700'
22622
22597
  }
22623
22598
  },
22624
22599
  success: {
22625
22600
  indicator: {
22626
- backgroundColor: 'color.green.500'
22601
+ backgroundColor: 'color-green-500'
22627
22602
  },
22628
22603
  label: {
22629
- color: 'color.green.700'
22604
+ color: 'color-green-700'
22630
22605
  }
22631
22606
  },
22632
22607
  warning: {
22633
22608
  indicator: {
22634
- backgroundColor: 'color.orange.500'
22609
+ backgroundColor: 'color-orange-500'
22635
22610
  },
22636
22611
  label: {
22637
- color: 'color.orange.700'
22612
+ color: 'color-orange-700'
22638
22613
  }
22639
22614
  },
22640
22615
  error: {
22641
22616
  indicator: {
22642
- backgroundColor: 'color.red.500'
22617
+ backgroundColor: 'color-red-500'
22643
22618
  },
22644
22619
  label: {
22645
- color: 'color.red.700'
22620
+ color: 'color-red-700'
22646
22621
  }
22647
22622
  }
22648
22623
  };
@@ -22764,32 +22739,32 @@ var SidebarSizes = {
22764
22739
  var getSidebar = themeMode => {
22765
22740
  return {
22766
22741
  default: {
22767
- backgroundColor: 'color.white',
22768
- color: 'color.gray.800',
22742
+ backgroundColor: 'color-white',
22743
+ color: 'color-gray-800',
22769
22744
  transition: 'all 0.2s ease'
22770
22745
  },
22771
22746
  filled: {
22772
- backgroundColor: 'color.gray.100',
22773
- color: 'color.gray.800',
22747
+ backgroundColor: 'color-gray-100',
22748
+ color: 'color-gray-800',
22774
22749
  transition: 'all 0.2s ease'
22775
22750
  },
22776
22751
  outline: {
22777
- backgroundColor: 'color.white',
22752
+ backgroundColor: 'color-white',
22778
22753
  borderWidth: '1px',
22779
22754
  borderStyle: 'solid',
22780
- borderColor: 'color.gray.200',
22781
- color: 'color.gray.800',
22755
+ borderColor: 'color-gray-200',
22756
+ color: 'color-gray-800',
22782
22757
  transition: 'all 0.2s ease'
22783
22758
  },
22784
22759
  subtle: {
22785
- backgroundColor: 'color.gray.50',
22786
- color: 'color.gray.800',
22760
+ backgroundColor: 'color-gray-50',
22761
+ color: 'color-gray-800',
22787
22762
  transition: 'all 0.2s ease'
22788
22763
  },
22789
22764
  elevated: {
22790
- backgroundColor: 'color.white',
22765
+ backgroundColor: 'color-white',
22791
22766
  boxShadow: '0px 4px 8px rgba(0, 0, 0, 0.1)',
22792
- color: 'color.gray.800',
22767
+ color: 'color-gray-800',
22793
22768
  transition: 'all 0.2s ease'
22794
22769
  }
22795
22770
  };
@@ -22805,13 +22780,13 @@ var SidebarPositions = {
22805
22780
  left: 0,
22806
22781
  borderRightWidth: '1px',
22807
22782
  borderRightStyle: 'solid',
22808
- borderRightColor: 'color.gray.200'
22783
+ borderRightColor: 'color-gray-200'
22809
22784
  },
22810
22785
  right: {
22811
22786
  right: 0,
22812
22787
  borderLeftWidth: '1px',
22813
22788
  borderLeftStyle: 'solid',
22814
- borderLeftColor: 'color.gray.200'
22789
+ borderLeftColor: 'color-gray-200'
22815
22790
  }
22816
22791
  };
22817
22792
  /**
@@ -22883,7 +22858,7 @@ var SidebarHeader = _ref2 => {
22883
22858
  padding: "16px",
22884
22859
  borderBottomWidth: "1px",
22885
22860
  borderBottomStyle: "solid",
22886
- borderBottomColor: "color.gray.200",
22861
+ borderBottomColor: "color-gray-200",
22887
22862
  alignItems: "center",
22888
22863
  justifyContent: "space-between"
22889
22864
  }, views == null ? void 0 : views.header, props), isExpanded ? (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
@@ -22901,7 +22876,7 @@ var SidebarHeader = _ref2 => {
22901
22876
  backgroundColor: "transparent",
22902
22877
  cursor: "pointer",
22903
22878
  _hover: {
22904
- backgroundColor: 'color.gray.100'
22879
+ backgroundColor: 'color-gray-100'
22905
22880
  },
22906
22881
  onClick: toggleExpanded,
22907
22882
  "aria-label": isExpanded ? 'Collapse sidebar' : 'Expand sidebar'
@@ -22924,7 +22899,7 @@ var SidebarHeader = _ref2 => {
22924
22899
  backgroundColor: "transparent",
22925
22900
  cursor: "pointer",
22926
22901
  _hover: {
22927
- backgroundColor: 'color.gray.100'
22902
+ backgroundColor: 'color-gray-100'
22928
22903
  },
22929
22904
  onClick: toggleExpanded,
22930
22905
  "aria-label": isExpanded ? 'Collapse sidebar' : 'Expand sidebar'
@@ -22966,7 +22941,7 @@ var SidebarFooter = _ref4 => {
22966
22941
  padding: "16px",
22967
22942
  borderTopWidth: "1px",
22968
22943
  borderTopStyle: "solid",
22969
- borderTopColor: "color.gray.200"
22944
+ borderTopColor: "color-gray-200"
22970
22945
  }, views == null ? void 0 : views.footer, props), isExpanded ? children : null);
22971
22946
  };
22972
22947
  // Main Sidebar View component
@@ -23009,7 +22984,7 @@ var SidebarView = _ref5 => {
23009
22984
  left: 0,
23010
22985
  width: "100vw",
23011
22986
  height: "100vh",
23012
- backgroundColor: "color.blackAlpha.500",
22987
+ backgroundColor: "color-blackAlpha-500",
23013
22988
  zIndex: 998,
23014
22989
  onClick: collapse
23015
22990
  }, views == null ? void 0 : views.backdrop))), isVisible && (/*#__PURE__*/React__default.createElement(appStudio.Vertical, Object.assign({
@@ -23470,28 +23445,28 @@ var getHandle = themeMode => {
23470
23445
  default: {
23471
23446
  backgroundColor: 'transparent',
23472
23447
  _hover: {
23473
- backgroundColor: 'color.gray.200'
23448
+ backgroundColor: 'color-gray-200'
23474
23449
  },
23475
23450
  _active: {
23476
- backgroundColor: 'color.gray.300'
23451
+ backgroundColor: 'color-gray-300'
23477
23452
  }
23478
23453
  },
23479
23454
  subtle: {
23480
23455
  backgroundColor: 'transparent',
23481
23456
  _hover: {
23482
- backgroundColor: 'color.gray.100'
23457
+ backgroundColor: 'color-gray-100'
23483
23458
  },
23484
23459
  _active: {
23485
- backgroundColor: 'color.gray.200'
23460
+ backgroundColor: 'color-gray-200'
23486
23461
  }
23487
23462
  },
23488
23463
  prominent: {
23489
- backgroundColor: 'color.gray.100',
23464
+ backgroundColor: 'color-gray-100',
23490
23465
  _hover: {
23491
- backgroundColor: 'color.gray.200'
23466
+ backgroundColor: 'color-gray-200'
23492
23467
  },
23493
23468
  _active: {
23494
- backgroundColor: 'color.gray.300'
23469
+ backgroundColor: 'color-gray-300'
23495
23470
  }
23496
23471
  }
23497
23472
  };
@@ -23503,13 +23478,13 @@ var HandleIconStyles = {
23503
23478
  horizontal: {
23504
23479
  width: '2px',
23505
23480
  height: '20px',
23506
- backgroundColor: 'color.gray.400',
23481
+ backgroundColor: 'color-gray-400',
23507
23482
  margin: '0 1px'
23508
23483
  },
23509
23484
  vertical: {
23510
23485
  width: '20px',
23511
23486
  height: '2px',
23512
- backgroundColor: 'color.gray.400',
23487
+ backgroundColor: 'color-gray-400',
23513
23488
  margin: '1px 0'
23514
23489
  }
23515
23490
  };
@@ -23597,7 +23572,7 @@ var ResizablePanel = _ref2 => {
23597
23572
  flex: "0 0 auto",
23598
23573
  width: orientation === 'horizontal' ? '10px' : '100%',
23599
23574
  height: orientation === 'vertical' ? '10px' : '100%',
23600
- backgroundColor: "color.gray.200",
23575
+ backgroundColor: "color-gray-200",
23601
23576
  cursor: "pointer",
23602
23577
  onClick: () => togglePanelCollapse(id),
23603
23578
  "aria-label": "Expand panel " + id,
@@ -23709,9 +23684,9 @@ var ResizableHandle = _ref3 => {
23709
23684
  width: "16px",
23710
23685
  height: "16px",
23711
23686
  borderRadius: "full",
23712
- backgroundColor: "color.gray.100",
23687
+ backgroundColor: "color-gray-100",
23713
23688
  border: "1px solid",
23714
- borderColor: "color.gray.300",
23689
+ borderColor: "color-gray-300",
23715
23690
  display: "flex",
23716
23691
  alignItems: "center",
23717
23692
  justifyContent: "center",
@@ -23723,7 +23698,7 @@ var ResizableHandle = _ref3 => {
23723
23698
  tabIndex: 0,
23724
23699
  pointerEvents: "auto",
23725
23700
  _hover: {
23726
- backgroundColor: 'color.gray.200'
23701
+ backgroundColor: 'color-gray-200'
23727
23702
  }
23728
23703
  }, views == null ? void 0 : views.collapseIcon), /*#__PURE__*/React__default.createElement(appStudio.View, {
23729
23704
  width: "8px",
@@ -23737,11 +23712,11 @@ var ResizableHandle = _ref3 => {
23737
23712
  React__default.createElement(appStudio.Horizontal, null, /*#__PURE__*/React__default.createElement(appStudio.View, {
23738
23713
  width: "6px",
23739
23714
  height: "2px",
23740
- backgroundColor: "color.gray.600"
23715
+ backgroundColor: "color-gray-600"
23741
23716
  }), /*#__PURE__*/React__default.createElement(appStudio.View, {
23742
23717
  width: "2px",
23743
23718
  height: "6px",
23744
- backgroundColor: "color.gray.600",
23719
+ backgroundColor: "color-gray-600",
23745
23720
  position: "absolute"
23746
23721
  }))) : (
23747
23722
  /*#__PURE__*/
@@ -23749,7 +23724,7 @@ var ResizableHandle = _ref3 => {
23749
23724
  React__default.createElement(appStudio.View, {
23750
23725
  width: "6px",
23751
23726
  height: "2px",
23752
- backgroundColor: "color.gray.600"
23727
+ backgroundColor: "color-gray-600"
23753
23728
  }))))));
23754
23729
  };
23755
23730
  // Main Resizable View component
@@ -23862,50 +23837,50 @@ Resizable.Handle = ResizableHandle;
23862
23837
  var Themes$1 = {
23863
23838
  info: {
23864
23839
  container: {
23865
- backgroundColor: 'color.blue.50',
23866
- border: 'color.blue.300'
23840
+ backgroundColor: 'color-blue-50',
23841
+ border: 'color-blue-300'
23867
23842
  },
23868
23843
  content: {
23869
- color: 'color.blue.700'
23844
+ color: 'color-blue-700'
23870
23845
  },
23871
23846
  icon: {
23872
- color: 'color.blue.500'
23847
+ color: 'color-blue-500'
23873
23848
  }
23874
23849
  },
23875
23850
  success: {
23876
23851
  container: {
23877
- backgroundColor: 'color.green.50',
23878
- border: 'color.green.300'
23852
+ backgroundColor: 'color-green-50',
23853
+ border: 'color-green-300'
23879
23854
  },
23880
23855
  content: {
23881
- color: 'color.green.700'
23856
+ color: 'color-green-700'
23882
23857
  },
23883
23858
  icon: {
23884
- color: 'color.green.500'
23859
+ color: 'color-green-500'
23885
23860
  }
23886
23861
  },
23887
23862
  warning: {
23888
23863
  container: {
23889
- backgroundColor: 'color.orange.50',
23890
- border: 'color.orange.300'
23864
+ backgroundColor: 'color-orange-50',
23865
+ border: 'color-orange-300'
23891
23866
  },
23892
23867
  content: {
23893
- color: 'color.orange.700'
23868
+ color: 'color-orange-700'
23894
23869
  },
23895
23870
  icon: {
23896
- color: 'color.orange.500'
23871
+ color: 'color-orange-500'
23897
23872
  }
23898
23873
  },
23899
23874
  error: {
23900
23875
  container: {
23901
- backgroundColor: 'color.red.50',
23902
- border: 'color.red.300'
23876
+ backgroundColor: 'color-red-50',
23877
+ border: 'color-red-300'
23903
23878
  },
23904
23879
  content: {
23905
- color: 'color.red.700'
23880
+ color: 'color-red-700'
23906
23881
  },
23907
23882
  icon: {
23908
- color: 'color.red.500'
23883
+ color: 'color-red-500'
23909
23884
  }
23910
23885
  }
23911
23886
  };
@@ -24059,37 +24034,40 @@ var ToastView = _ref => {
24059
24034
  var Theme = theme != null ? theme : Themes$1;
24060
24035
  // Get the appropriate icon based on the variant
24061
24036
  var getIcon = () => {
24037
+ var _Themes$variant;
24062
24038
  // If a custom icon is provided, use it
24063
24039
  if (customIcon !== undefined) {
24064
24040
  return customIcon;
24065
24041
  }
24066
24042
  // Otherwise use the default icon based on variant
24043
+ // Get icon color from Themes configuration
24044
+ var iconColor = variant ? (_Themes$variant = Themes$1[variant]) == null || (_Themes$variant = _Themes$variant.icon) == null ? void 0 : _Themes$variant.color : Themes$1.info.icon.color;
24067
24045
  switch (variant) {
24068
24046
  case 'info':
24069
24047
  return /*#__PURE__*/React__default.createElement(InfoIcon, {
24070
24048
  widthHeight: 20,
24071
- color: Theme.info.icon.color
24049
+ color: iconColor
24072
24050
  });
24073
24051
  case 'success':
24074
24052
  return /*#__PURE__*/React__default.createElement(PlayIcon, {
24075
24053
  widthHeight: 20,
24076
- color: Theme.success.icon.color
24054
+ color: iconColor
24077
24055
  });
24078
24056
  case 'warning':
24079
24057
  return /*#__PURE__*/React__default.createElement(InfoIcon, {
24080
24058
  widthHeight: 20,
24081
- color: Theme.warning.icon.color,
24059
+ color: iconColor,
24082
24060
  orientation: "down"
24083
24061
  });
24084
24062
  case 'error':
24085
24063
  return /*#__PURE__*/React__default.createElement(DustBinIcon, {
24086
24064
  widthHeight: 20,
24087
- color: Theme.error.icon.color
24065
+ color: iconColor
24088
24066
  });
24089
24067
  default:
24090
24068
  return /*#__PURE__*/React__default.createElement(InfoIcon, {
24091
24069
  widthHeight: 20,
24092
- color: Theme.info.icon.color
24070
+ color: Themes$1.info.icon.color
24093
24071
  });
24094
24072
  }
24095
24073
  };
@@ -24443,24 +24421,24 @@ var CommandSizes = {
24443
24421
  var getCommand = themeMode => {
24444
24422
  return {
24445
24423
  default: {
24446
- backgroundColor: 'color.white',
24424
+ backgroundColor: 'color-white',
24447
24425
  borderWidth: '1px',
24448
24426
  borderStyle: 'solid',
24449
- borderColor: 'color.gray.200',
24427
+ borderColor: 'color-gray-200',
24450
24428
  boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.1)'
24451
24429
  },
24452
24430
  filled: {
24453
- backgroundColor: 'color.gray.50',
24431
+ backgroundColor: 'color-gray-50',
24454
24432
  borderWidth: '1px',
24455
24433
  borderStyle: 'solid',
24456
- borderColor: 'color.gray.200',
24434
+ borderColor: 'color-gray-200',
24457
24435
  boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.1)'
24458
24436
  },
24459
24437
  outline: {
24460
- backgroundColor: 'color.white',
24438
+ backgroundColor: 'color-white',
24461
24439
  borderWidth: '2px',
24462
24440
  borderStyle: 'solid',
24463
- borderColor: 'color.gray.300',
24441
+ borderColor: 'color-gray-300',
24464
24442
  boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.1)'
24465
24443
  }
24466
24444
  };
@@ -24474,7 +24452,7 @@ var CommandInputStyles = {
24474
24452
  padding: '12px 16px',
24475
24453
  borderBottomWidth: '1px',
24476
24454
  borderBottomStyle: 'solid',
24477
- borderBottomColor: 'color.gray.200'
24455
+ borderBottomColor: 'color-gray-200'
24478
24456
  };
24479
24457
  var CommandListStyles = {
24480
24458
  overflow: 'auto',
@@ -24487,7 +24465,7 @@ var CommandGroupHeadingStyles = {
24487
24465
  padding: '8px 16px',
24488
24466
  fontSize: '12px',
24489
24467
  fontWeight: 'bold',
24490
- color: 'color.gray.500',
24468
+ color: 'color-gray-500',
24491
24469
  textTransform: 'uppercase'
24492
24470
  };
24493
24471
  var CommandItemStyles = {
@@ -24499,13 +24477,13 @@ var CommandItemStyles = {
24499
24477
  borderRadius: '4px',
24500
24478
  margin: '0 8px',
24501
24479
  _hover: {
24502
- backgroundColor: 'color.gray.100'
24480
+ backgroundColor: 'color-gray-100'
24503
24481
  }
24504
24482
  };
24505
24483
  var CommandItemSelectedStyles = {
24506
- backgroundColor: 'color.blue.50',
24484
+ backgroundColor: 'color-blue-50',
24507
24485
  _hover: {
24508
- backgroundColor: 'color.blue.100'
24486
+ backgroundColor: 'color-blue-100'
24509
24487
  }
24510
24488
  };
24511
24489
  var CommandItemDisabledStyles = {
@@ -24520,7 +24498,7 @@ var CommandItemIconStyles = {
24520
24498
  alignItems: 'center',
24521
24499
  justifyContent: 'center',
24522
24500
  marginRight: '12px',
24523
- color: 'color.gray.500'
24501
+ color: 'color-gray-500'
24524
24502
  };
24525
24503
  var CommandItemContentStyles = {
24526
24504
  display: 'flex',
@@ -24533,7 +24511,7 @@ var CommandItemNameStyles = {
24533
24511
  };
24534
24512
  var CommandItemDescriptionStyles = {
24535
24513
  fontSize: '12px',
24536
- color: 'color.gray.500',
24514
+ color: 'color-gray-500',
24537
24515
  marginTop: '2px'
24538
24516
  };
24539
24517
  var CommandItemShortcutStyles = {
@@ -24541,14 +24519,14 @@ var CommandItemShortcutStyles = {
24541
24519
  alignItems: 'center',
24542
24520
  marginLeft: '12px',
24543
24521
  fontSize: '12px',
24544
- color: 'color.gray.500'
24522
+ color: 'color-gray-500'
24545
24523
  };
24546
24524
  var CommandEmptyStyles = {
24547
24525
  display: 'flex',
24548
24526
  alignItems: 'center',
24549
24527
  justifyContent: 'center',
24550
24528
  padding: '16px',
24551
- color: 'color.gray.500',
24529
+ color: 'color-gray-500',
24552
24530
  textAlign: 'center'
24553
24531
  };
24554
24532
  var CommandFooterStyles = {
@@ -24558,9 +24536,9 @@ var CommandFooterStyles = {
24558
24536
  padding: '8px 16px',
24559
24537
  borderTopWidth: '1px',
24560
24538
  borderTopStyle: 'solid',
24561
- borderTopColor: 'color.gray.200',
24539
+ borderTopColor: 'color-gray-200',
24562
24540
  fontSize: '12px',
24563
- color: 'color.gray.500'
24541
+ color: 'color-gray-500'
24564
24542
  };
24565
24543
 
24566
24544
  var _excluded$1j = ["value", "onValueChange", "placeholder", "views"],
@@ -24605,7 +24583,7 @@ var CommandInput = _ref2 => {
24605
24583
  }, []);
24606
24584
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, CommandInputStyles, views == null ? void 0 : views.container, props), /*#__PURE__*/React__default.createElement(SearchIcon, {
24607
24585
  widthHeight: 16,
24608
- color: "color.gray.400",
24586
+ color: "color-gray-400",
24609
24587
  marginRight: "8px"
24610
24588
  }), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
24611
24589
  as: "input",
@@ -24956,25 +24934,25 @@ var TooltipSizes = {
24956
24934
  var getTooltip = themeMode => {
24957
24935
  return {
24958
24936
  default: {
24959
- backgroundColor: 'color.gray.900',
24960
- color: 'color.white',
24937
+ backgroundColor: 'color-gray-900',
24938
+ color: 'color-white',
24961
24939
  borderRadius: '6px',
24962
24940
  boxShadow: '0px 4px 6px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.06)',
24963
24941
  transition: 'opacity 0.15s ease'
24964
24942
  },
24965
24943
  light: {
24966
- backgroundColor: 'color.white',
24967
- color: 'color.gray.800',
24944
+ backgroundColor: 'color-white',
24945
+ color: 'color-gray-800',
24968
24946
  borderWidth: '1px',
24969
24947
  borderStyle: 'solid',
24970
- borderColor: 'color.gray.200',
24948
+ borderColor: 'color-gray-200',
24971
24949
  borderRadius: '6px',
24972
24950
  boxShadow: '0px 4px 6px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.04)',
24973
24951
  transition: 'opacity 0.15s ease'
24974
24952
  },
24975
24953
  dark: {
24976
- backgroundColor: 'color.gray.950',
24977
- color: 'color.white',
24954
+ backgroundColor: 'color-gray-950',
24955
+ color: 'color-white',
24978
24956
  borderRadius: '6px',
24979
24957
  boxShadow: '0px 4px 6px rgba(0, 0, 0, 0.2), 0px 2px 4px rgba(0, 0, 0, 0.12)',
24980
24958
  transition: 'opacity 0.15s ease'
@@ -25449,33 +25427,33 @@ var PositionMap = {
25449
25427
  */
25450
25428
  var DefaultColorStops = {
25451
25429
  linear: [{
25452
- color: 'color.blue.500',
25430
+ color: 'color-blue-500',
25453
25431
  position: '0%'
25454
25432
  }, {
25455
- color: 'color.purple.500',
25433
+ color: 'color-purple-500',
25456
25434
  position: '100%'
25457
25435
  }],
25458
25436
  radial: [{
25459
- color: 'color.blue.500',
25437
+ color: 'color-blue-500',
25460
25438
  position: '0%'
25461
25439
  }, {
25462
- color: 'color.purple.500',
25440
+ color: 'color-purple-500',
25463
25441
  position: '100%'
25464
25442
  }],
25465
25443
  conic: [{
25466
- color: 'color.red.500',
25444
+ color: 'color-red-500',
25467
25445
  position: '0deg'
25468
25446
  }, {
25469
- color: 'color.yellow.500',
25447
+ color: 'color-yellow-500',
25470
25448
  position: '90deg'
25471
25449
  }, {
25472
- color: 'color.green.500',
25450
+ color: 'color-green-500',
25473
25451
  position: '180deg'
25474
25452
  }, {
25475
- color: 'color.blue.500',
25453
+ color: 'color-blue-500',
25476
25454
  position: '270deg'
25477
25455
  }, {
25478
- color: 'color.red.500',
25456
+ color: 'color-red-500',
25479
25457
  position: '360deg'
25480
25458
  }]
25481
25459
  };
@@ -25581,14 +25559,9 @@ var GradientView = _ref => {
25581
25559
  animate = false,
25582
25560
  animationDuration = 3,
25583
25561
  children,
25584
- views,
25585
- themeMode: elementMode
25562
+ views
25586
25563
  } = _ref,
25587
25564
  props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
25588
- var {
25589
- getColor,
25590
- themeMode
25591
- } = appStudio.useTheme();
25592
25565
  // Determine color stops to use
25593
25566
  var colorStops = React.useMemo(() => {
25594
25567
  // If colors array is provided, use it
@@ -25612,12 +25585,10 @@ var GradientView = _ref => {
25612
25585
  var gradientString = React.useMemo(() => {
25613
25586
  // Process color stops to resolve theme colors
25614
25587
  var processedColorStops = colorStops.map(stop => Object.assign({}, stop, {
25615
- color: getColor(stop.color, elementMode ? {
25616
- themeMode: elementMode
25617
- } : undefined)
25588
+ color: stop.color
25618
25589
  }));
25619
25590
  return generateGradientString(type, processedColorStops, direction, shape, position);
25620
- }, [type, colorStops, direction, shape, position, getColor, themeMode, elementMode]);
25591
+ }, [type, colorStops, direction, shape, position]);
25621
25592
  // Prepare animation styles if animation is enabled
25622
25593
  var animationStyles = React.useMemo(() => {
25623
25594
  if (!animate) return {};
@@ -25640,16 +25611,16 @@ var GradientView = _ref => {
25640
25611
  *
25641
25612
  * @example
25642
25613
  * // Basic linear gradient
25643
- * <Gradient from="blue.500" to="purple.500" height="200px" width="100%" />
25614
+ * <Gradient from="blue-500" to="purple-500" height="200px" width="100%" />
25644
25615
  *
25645
25616
  * @example
25646
25617
  * // Radial gradient with content
25647
25618
  * <Gradient
25648
25619
  * type="radial"
25649
25620
  * colors={[
25650
- * { color: 'red.500', position: '0%' },
25651
- * { color: 'orange.500', position: '50%' },
25652
- * { color: 'yellow.500', position: '100%' }
25621
+ * { color: 'red-500', position: '0%' },
25622
+ * { color: 'orange-500', position: '50%' },
25623
+ * { color: 'yellow-500', position: '100%' }
25653
25624
  * ]}
25654
25625
  * height="200px"
25655
25626
  * >
@@ -25784,7 +25755,7 @@ var Wall = _ref3 => {
25784
25755
  height: 300,
25785
25756
  position: "relative",
25786
25757
  overflow: "hidden",
25787
- backgroundColor: "color.gray.50",
25758
+ backgroundColor: "color-gray-50",
25788
25759
  zIndex: 0,
25789
25760
  transform: "skewX(-48deg) skewY(14deg) scale(0.675) rotate(0deg) translateZ(0)"
25790
25761
  }, props), rowsArray.map((_, i) => (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
@@ -25795,7 +25766,7 @@ var Wall = _ref3 => {
25795
25766
  height: squareSize / 3,
25796
25767
  width: squareSize,
25797
25768
  borderStyle: "solid",
25798
- borderColor: "color.gray.200",
25769
+ borderColor: "color-gray-200",
25799
25770
  borderWidth: 0.5,
25800
25771
  backgroundColor: "transparent",
25801
25772
  cursor: "pointer",
@@ -25839,7 +25810,7 @@ var Particles = _ref4 => {
25839
25810
  height: 300,
25840
25811
  position: "relative",
25841
25812
  overflow: "hidden",
25842
- backgroundColor: "color.gray.900"
25813
+ backgroundColor: "color-gray-900"
25843
25814
  }, props), particles.map(idx => {
25844
25815
  var size = Math.random() * 8 + 4; // 4-12px
25845
25816
  var startX = Math.random() * 400;
@@ -25923,7 +25894,7 @@ var Grid = _ref5 => {
25923
25894
  height: 300,
25924
25895
  position: "relative",
25925
25896
  overflow: "hidden",
25926
- backgroundColor: "color.gray.900"
25897
+ backgroundColor: "color-gray-900"
25927
25898
  }, props), Array.from({
25928
25899
  length: cols + 1
25929
25900
  }, (_, i) => (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -25999,7 +25970,7 @@ var Ripples = _ref6 => {
25999
25970
  height: 300,
26000
25971
  position: "relative",
26001
25972
  overflow: "hidden",
26002
- backgroundColor: "color.gray.100"
25973
+ backgroundColor: "color-gray-100"
26003
25974
  }, props), ripples.map(ripple => (/*#__PURE__*/React__default.createElement(appStudio.View, {
26004
25975
  key: ripple.id,
26005
25976
  position: "absolute",
@@ -26125,15 +26096,15 @@ var BackgroundGradient = _ref9 => {
26125
26096
  var BackgroundOverlay = _ref10 => {
26126
26097
  var {
26127
26098
  contentPosition,
26128
- backgroundColor = 'color.black.900'
26099
+ backgroundColor = 'color-black-900'
26129
26100
  } = _ref10,
26130
26101
  props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
26131
26102
  var getDefaultOverlay = () => {
26132
- var ligthBackground = backgroundColor + ".100";
26133
- var darkBackground = backgroundColor + ".900";
26134
- var midBackground = backgroundColor + ".600";
26135
- var midDarkBackground = backgroundColor + ".400";
26136
- if (backgroundColor.indexOf('.') === -1) {
26103
+ var ligthBackground = backgroundColor + "-100";
26104
+ var darkBackground = backgroundColor + "-900";
26105
+ var midBackground = backgroundColor + "-600";
26106
+ var midDarkBackground = backgroundColor + "-400";
26107
+ if (backgroundColor.indexOf('-') === -1) {
26137
26108
  ligthBackground = "color-mix(in srgb, " + backgroundColor + " 10%, transparent)";
26138
26109
  darkBackground = "color-mix(in srgb, " + backgroundColor + " 90%, transparent)";
26139
26110
  midBackground = "color-mix(in srgb, " + backgroundColor + " 70%, transparent)";
@@ -26206,7 +26177,7 @@ var BackgroundLayout = /*#__PURE__*/React__default.forwardRef((_ref12, ref) => {
26206
26177
  var rotationOffset = Math.sin(rotationRad) * 100; // percentage-based estimate
26207
26178
  var scaleOffset = (decorationScale - 1) * 100 / 2;
26208
26179
  var extraPadding = Math.ceil(rotationOffset + scaleOffset);
26209
- var backgroundColor = (_props$backgroundColo = props.backgroundColor) != null ? _props$backgroundColo : 'theme.primary';
26180
+ var backgroundColor = (_props$backgroundColo = props.backgroundColor) != null ? _props$backgroundColo : 'theme-primary';
26210
26181
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, props, {
26211
26182
  ref: ref,
26212
26183
  backgroundColor: 'transparent',
@@ -26306,7 +26277,7 @@ BackgroundView.Layout = BackgroundLayout;
26306
26277
  *
26307
26278
  * @example
26308
26279
  * // Background Gradient
26309
- * <Background.Gradient from="blue.500" to="purple.500" animate={true}>
26280
+ * <Background.Gradient from="blue-500" to="purple-500" animate={true}>
26310
26281
  * <Text color="white">Content over gradient</Text>
26311
26282
  * </Background.Gradient>
26312
26283
  */
@@ -26607,7 +26578,7 @@ var ChatWidgetView = _ref => {
26607
26578
  alignItems: "center",
26608
26579
  justifyContent: "center",
26609
26580
  flex: 1,
26610
- color: "color.gray.400"
26581
+ color: "color-gray-400"
26611
26582
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26612
26583
  fontSize: "14px"
26613
26584
  }, "No messages yet. Start a conversation!"))) : messages.map(message => (/*#__PURE__*/React__default.createElement(ChatBubble, {
@@ -26639,7 +26610,7 @@ var ChatWidgetView = _ref => {
26639
26610
  animation: 'spin 1s linear infinite'
26640
26611
  }
26641
26612
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26642
- color: "color.gray.500",
26613
+ color: "color-gray-500",
26643
26614
  fontSize: "14px"
26644
26615
  }, loadingText)))), /*#__PURE__*/React__default.createElement(appStudio.View, null, selectedContextElements.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
26645
26616
  gap: 8,
@@ -26656,7 +26627,7 @@ var ChatWidgetView = _ref => {
26656
26627
  gap: 6
26657
26628
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26658
26629
  fontSize: "12px",
26659
- color: "color.blue.700",
26630
+ color: "color-blue-700",
26660
26631
  fontWeight: "500"
26661
26632
  }, element.name), /*#__PURE__*/React__default.createElement(appStudio.View, {
26662
26633
  as: "button",
@@ -26669,7 +26640,7 @@ var ChatWidgetView = _ref => {
26669
26640
  alignItems: "center"
26670
26641
  }, /*#__PURE__*/React__default.createElement(CloseIcon, {
26671
26642
  widthHeight: 12,
26672
- color: "color.blue.700"
26643
+ color: "color-blue-700"
26673
26644
  }))))))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26674
26645
  as: "form",
26675
26646
  onSubmit: handleSubmit
@@ -26678,11 +26649,11 @@ var ChatWidgetView = _ref => {
26678
26649
  type: "button"
26679
26650
  }, DefaultChatWidgetStyles.attachmentButton, styles.attachmentButton, {
26680
26651
  _hover: {
26681
- backgroundColor: 'color.gray.100'
26652
+ backgroundColor: 'color-gray-100'
26682
26653
  }
26683
26654
  }), /*#__PURE__*/React__default.createElement(AttachmentIcon, {
26684
26655
  widthHeight: 16,
26685
- color: "color.gray.600"
26656
+ color: "color-gray-600"
26686
26657
  }))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26687
26658
  as: "textarea",
26688
26659
  ref: inputRef,
@@ -26704,20 +26675,20 @@ var ChatWidgetView = _ref => {
26704
26675
  onClick: onContextPickerClick
26705
26676
  }, DefaultChatWidgetStyles.attachmentButton, styles.contextPickerButton, {
26706
26677
  _hover: Object.assign({
26707
- backgroundColor: 'color.gray.100'
26678
+ backgroundColor: 'color-gray-100'
26708
26679
  }, (_styles$contextPicker = styles.contextPickerButton) == null ? void 0 : _styles$contextPicker._hover),
26709
26680
  title: "Select element from page"
26710
26681
  }), /*#__PURE__*/React__default.createElement(MousePointerIcon, {
26711
26682
  widthHeight: 16,
26712
- color: "color.gray.600"
26683
+ color: "color-gray-600"
26713
26684
  }))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26714
26685
  as: "button",
26715
26686
  type: "submit",
26716
26687
  disabled: !hasText || disableInput || isLoading
26717
26688
  }, DefaultChatWidgetStyles.sendButton, {
26718
- backgroundColor: hasText ? 'theme.primary' : 'color.gray.300',
26689
+ backgroundColor: hasText ? 'theme-primary' : 'color-gray-300',
26719
26690
  _hover: {
26720
- backgroundColor: hasText ? 'color.blue.600' : 'color.gray.300'
26691
+ backgroundColor: hasText ? 'color-blue-600' : 'color-gray-300'
26721
26692
  }
26722
26693
  }, styles.sendButton, {
26723
26694
  style: {
@@ -26726,7 +26697,7 @@ var ChatWidgetView = _ref => {
26726
26697
  }
26727
26698
  }), /*#__PURE__*/React__default.createElement(SendIcon, {
26728
26699
  widthHeight: 16,
26729
- color: "color.white",
26700
+ color: "color-white",
26730
26701
  filled: false
26731
26702
  }))))));
26732
26703
  };
@@ -26756,10 +26727,10 @@ var ChatBubble = _ref2 => {
26756
26727
  opacity: 0.7
26757
26728
  }, /*#__PURE__*/React__default.createElement(InfoIcon, {
26758
26729
  widthHeight: 12,
26759
- color: "color.gray.600"
26730
+ color: "color-gray-600"
26760
26731
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26761
26732
  fontSize: "12px",
26762
- color: "color.gray.600",
26733
+ color: "color-gray-600",
26763
26734
  fontStyle: "italic"
26764
26735
  }, message.content)));
26765
26736
  }
@@ -26780,16 +26751,16 @@ var ChatBubble = _ref2 => {
26780
26751
  border: "1px solid rgba(0,0,0,0.05)"
26781
26752
  }, /*#__PURE__*/React__default.createElement(SettingsIcon, {
26782
26753
  widthHeight: 14,
26783
- color: "color.gray.600"
26754
+ color: "color-gray-600"
26784
26755
  }), /*#__PURE__*/React__default.createElement(appStudio.Vertical, {
26785
26756
  gap: 2
26786
26757
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26787
26758
  fontSize: "11px",
26788
26759
  fontWeight: "600",
26789
- color: "color.gray.700"
26760
+ color: "color-gray-700"
26790
26761
  }, "Tool Usage"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26791
26762
  fontSize: "12px",
26792
- color: "color.gray.600",
26763
+ color: "color-gray-600",
26793
26764
  fontFamily: "monospace"
26794
26765
  }, message.content))));
26795
26766
  }
@@ -26837,12 +26808,12 @@ var ChatBubble = _ref2 => {
26837
26808
  padding: 0
26838
26809
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26839
26810
  fontSize: "11px",
26840
- color: "color.gray.500",
26811
+ color: "color-gray-500",
26841
26812
  fontWeight: "600"
26842
26813
  }, "Thinking Process"), /*#__PURE__*/React__default.createElement(ChevronIcon, {
26843
26814
  orientation: isReasoningOpen ? 'down' : 'right',
26844
26815
  widthHeight: 10,
26845
- color: "color.gray.500"
26816
+ color: "color-gray-500"
26846
26817
  })), isReasoningOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26847
26818
  padding: "8px",
26848
26819
  backgroundColor: "rgba(0,0,0,0.03)",
@@ -26850,7 +26821,7 @@ var ChatBubble = _ref2 => {
26850
26821
  marginTop: "4px"
26851
26822
  }, styles.reasoningContent), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26852
26823
  fontSize: "12px",
26853
- color: "color.gray.600",
26824
+ color: "color-gray-600",
26854
26825
  fontStyle: "italic"
26855
26826
  }, message.reasoning))))), /*#__PURE__*/React__default.createElement(appStudio.View, {
26856
26827
  whiteSpace: "pre-wrap",
@@ -26883,7 +26854,7 @@ var ChatBubble = _ref2 => {
26883
26854
  fontSize: "11px",
26884
26855
  border: "1px solid rgba(37, 99, 235, 0.2)"
26885
26856
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26886
- color: "color.blue.700",
26857
+ color: "color-blue-700",
26887
26858
  fontWeight: "500"
26888
26859
  }, element.name))))))));
26889
26860
  };
@@ -27156,7 +27127,7 @@ var ChatWidgetWidget = _ref => {
27156
27127
  alignItems: "center"
27157
27128
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
27158
27129
  fontWeight: "bold",
27159
- color: "color.gray.800"
27130
+ color: "color-gray-800"
27160
27131
  }, "ChatWidget Assistant"), /*#__PURE__*/React__default.createElement(appStudio.View, {
27161
27132
  as: "button",
27162
27133
  onClick: () => setIsOpen(false),
@@ -27170,7 +27141,7 @@ var ChatWidgetWidget = _ref => {
27170
27141
  }
27171
27142
  }, /*#__PURE__*/React__default.createElement(CloseIcon, {
27172
27143
  widthHeight: 16,
27173
- color: "color.gray.500"
27144
+ color: "color-gray-500"
27174
27145
  }))), /*#__PURE__*/React__default.createElement(ChatWidget, {
27175
27146
  messages: messages,
27176
27147
  onSubmit: handleSubmit,
@@ -27197,7 +27168,7 @@ var ChatWidgetWidget = _ref => {
27197
27168
  width: "56px",
27198
27169
  height: "56px",
27199
27170
  borderRadius: "50%",
27200
- backgroundColor: "theme.primary",
27171
+ backgroundColor: "theme-primary",
27201
27172
  border: "none",
27202
27173
  boxShadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
27203
27174
  cursor: "pointer",