@app-studio/web 0.9.83 → 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 +755 -784
  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 +755 -784
  11. package/dist/web.esm.js.map +1 -1
  12. package/dist/web.umd.development.js +755 -784
  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
@@ -160,17 +160,17 @@
160
160
  outline: {
161
161
  borderWidth: 1,
162
162
  borderStyle: 'solid',
163
- borderColor: 'color.gray.200',
163
+ borderColor: 'color-gray-200',
164
164
  transition: 'border-color 0.15s ease, background-color 0.15s ease',
165
165
  _hover: {
166
- borderColor: 'color.gray.300'
166
+ borderColor: 'color-gray-300'
167
167
  }
168
168
  },
169
169
  filled: {
170
- backgroundColor: 'color.gray.50',
170
+ backgroundColor: 'color-gray-50',
171
171
  transition: 'background-color 0.15s ease',
172
172
  _hover: {
173
- backgroundColor: 'color.gray.100'
173
+ backgroundColor: 'color-gray-100'
174
174
  }
175
175
  }
176
176
  };
@@ -226,7 +226,7 @@
226
226
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
227
227
  borderWidth: 1,
228
228
  borderStyle: "solid",
229
- borderColor: "color.gray.200",
229
+ borderColor: "color-gray-200",
230
230
  marginBottom: 8,
231
231
  overflow: "hidden",
232
232
  opacity: isDisabled ? 0.5 : 1,
@@ -280,7 +280,7 @@
280
280
  cursor: isDisabled ? 'not-allowed' : 'pointer',
281
281
  alignItems: 'center',
282
282
  justifyContent: 'space-between',
283
- backgroundColor: 'color.white',
283
+ backgroundColor: 'color-white',
284
284
  width: '100%'
285
285
  }, views == null ? void 0 : views.container, props);
286
286
  // If asChild is true, clone the child element and merge props
@@ -326,7 +326,7 @@
326
326
  role: "region",
327
327
  "aria-labelledby": triggerId,
328
328
  padding: 16,
329
- backgroundColor: "color.white",
329
+ backgroundColor: "color-white",
330
330
  maxHeight: isExpanded ? '1000px' : '0',
331
331
  transition: "max-height 0.3s ease-in-out, opacity 0.3s ease-in-out",
332
332
  opacity: 1,
@@ -796,67 +796,67 @@
796
796
  return {
797
797
  default: {
798
798
  container: {
799
- backgroundColor: 'color.gray.50',
800
- borderColor: 'color.gray.200',
799
+ backgroundColor: 'color-gray-50',
800
+ borderColor: 'color-gray-200',
801
801
  boxShadow: '0 1px 2px rgba(0, 0, 0, 0.05)'
802
802
  },
803
803
  content: {
804
- color: 'color.gray.700'
804
+ color: 'color-gray-700'
805
805
  },
806
806
  icon: {
807
- color: 'color.gray.500'
807
+ color: 'color-gray-500'
808
808
  }
809
809
  },
810
810
  info: {
811
811
  container: {
812
- backgroundColor: 'color.blue.50',
813
- borderColor: 'color.blue.200',
812
+ backgroundColor: 'color-blue-50',
813
+ borderColor: 'color-blue-200',
814
814
  boxShadow: '0 1px 2px rgba(59, 130, 246, 0.05)'
815
815
  },
816
816
  content: {
817
- color: 'color.blue.700'
817
+ color: 'color-blue-700'
818
818
  },
819
819
  icon: {
820
- color: 'color.blue.500'
820
+ color: 'color-blue-500'
821
821
  }
822
822
  },
823
823
  success: {
824
824
  container: {
825
- backgroundColor: 'color.green.50',
826
- borderColor: 'color.green.200',
825
+ backgroundColor: 'color-green-50',
826
+ borderColor: 'color-green-200',
827
827
  boxShadow: '0 1px 2px rgba(34, 197, 94, 0.05)'
828
828
  },
829
829
  content: {
830
- color: 'color.green.700'
830
+ color: 'color-green-700'
831
831
  },
832
832
  icon: {
833
- color: 'color.green.500'
833
+ color: 'color-green-500'
834
834
  }
835
835
  },
836
836
  error: {
837
837
  container: {
838
- backgroundColor: 'color.red.50',
839
- borderColor: 'color.red.200',
838
+ backgroundColor: 'color-red-50',
839
+ borderColor: 'color-red-200',
840
840
  boxShadow: '0 1px 2px rgba(239, 68, 68, 0.05)'
841
841
  },
842
842
  content: {
843
- color: 'color.red.700'
843
+ color: 'color-red-700'
844
844
  },
845
845
  icon: {
846
- color: 'color.red.500'
846
+ color: 'color-red-500'
847
847
  }
848
848
  },
849
849
  warning: {
850
850
  container: {
851
- backgroundColor: 'color.orange.50',
852
- borderColor: 'color.orange.200',
851
+ backgroundColor: 'color-orange-50',
852
+ borderColor: 'color-orange-200',
853
853
  boxShadow: '0 1px 2px rgba(249, 115, 22, 0.05)'
854
854
  },
855
855
  content: {
856
- color: 'color.orange.700'
856
+ color: 'color-orange-700'
857
857
  },
858
858
  icon: {
859
- color: 'color.orange.500'
859
+ color: 'color-orange-500'
860
860
  }
861
861
  }
862
862
  };
@@ -1013,7 +1013,7 @@
1013
1013
  }, viewProps), bars.map((amplitude, index) => (/*#__PURE__*/React__default.createElement(appStudio.View, {
1014
1014
  key: index,
1015
1015
  width: 2,
1016
- backgroundColor: isPaused ? 'color.gray.200' : amplitude >= 0 ? 'color.gray.900' : 'color.gray.500',
1016
+ backgroundColor: isPaused ? 'color-gray-200' : amplitude >= 0 ? 'color-gray-900' : 'color-gray-500',
1017
1017
  style: {
1018
1018
  height: clamp(amplitude * scalingFactor, 2, 32) + "px"
1019
1019
  }
@@ -1115,69 +1115,69 @@
1115
1115
  var Themes = {
1116
1116
  info: {
1117
1117
  container: {
1118
- backgroundColor: 'color.blue.200',
1119
- border: 'color.blue.400'
1118
+ backgroundColor: 'color-blue-200',
1119
+ border: 'color-blue-400'
1120
1120
  },
1121
1121
  icon: {
1122
- color: 'color.blue.500',
1122
+ color: 'color-blue-500',
1123
1123
  name: 'InformationIcon'
1124
1124
  },
1125
1125
  content: {
1126
- color: 'color.blue.500'
1126
+ color: 'color-blue-500'
1127
1127
  },
1128
1128
  close: {
1129
- color: 'color.blue.500',
1129
+ color: 'color-blue-500',
1130
1130
  name: 'CloseIcon'
1131
1131
  }
1132
1132
  },
1133
1133
  success: {
1134
1134
  container: {
1135
- backgroundColor: 'color.green.200',
1136
- border: 'color.green.400'
1135
+ backgroundColor: 'color-green-200',
1136
+ border: 'color-green-400'
1137
1137
  },
1138
1138
  icon: {
1139
- color: 'color.green.500',
1139
+ color: 'color-green-500',
1140
1140
  name: 'SuccessIcon'
1141
1141
  },
1142
1142
  content: {
1143
- color: 'color.green.500'
1143
+ color: 'color-green-500'
1144
1144
  },
1145
1145
  close: {
1146
- color: 'color.green.500',
1146
+ color: 'color-green-500',
1147
1147
  name: 'CloseIcon'
1148
1148
  }
1149
1149
  },
1150
1150
  error: {
1151
1151
  container: {
1152
- backgroundColor: 'color.red.200',
1153
- border: 'color.red.400'
1152
+ backgroundColor: 'color-red-200',
1153
+ border: 'color-red-400'
1154
1154
  },
1155
1155
  icon: {
1156
- color: 'color.red.500',
1156
+ color: 'color-red-500',
1157
1157
  name: 'ErrrorIcon'
1158
1158
  },
1159
1159
  content: {
1160
- color: 'color.red.500'
1160
+ color: 'color-red-500'
1161
1161
  },
1162
1162
  close: {
1163
- color: 'color.red.500',
1163
+ color: 'color-red-500',
1164
1164
  name: 'CloseIcon'
1165
1165
  }
1166
1166
  },
1167
1167
  warning: {
1168
1168
  container: {
1169
- backgroundColor: 'color.orange.200',
1170
- border: 'color.orange.400'
1169
+ backgroundColor: 'color-orange-200',
1170
+ border: 'color-orange-400'
1171
1171
  },
1172
1172
  icon: {
1173
- color: 'color.orange.500',
1173
+ color: 'color-orange-500',
1174
1174
  name: 'ErrrorIcon'
1175
1175
  },
1176
1176
  content: {
1177
- color: 'color.orange.500'
1177
+ color: 'color-orange-500'
1178
1178
  },
1179
1179
  close: {
1180
- color: 'color.orange.500',
1180
+ color: 'color-orange-500',
1181
1181
  name: 'CloseIcon'
1182
1182
  }
1183
1183
  }
@@ -1586,7 +1586,7 @@
1586
1586
  height: 4,
1587
1587
  width: progress + "%",
1588
1588
  borderRadius: 2,
1589
- backgroundColor: "color.dark.50"
1589
+ backgroundColor: "color-dark-50"
1590
1590
  }, views == null ? void 0 : views.view))), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
1591
1591
  fontSize: 12
1592
1592
  }, views == null ? void 0 : views.text), progress, "%"));
@@ -1766,7 +1766,7 @@
1766
1766
  height: '36px',
1767
1767
  cursor: 'pointer',
1768
1768
  _hover: {
1769
- backgroundColor: 'color.gray.100'
1769
+ backgroundColor: 'color-gray-100'
1770
1770
  }
1771
1771
  }
1772
1772
  },
@@ -1780,7 +1780,7 @@
1780
1780
  },
1781
1781
  textProps: {
1782
1782
  fontSize: '14px',
1783
- color: 'color.gray.600'
1783
+ color: 'color-gray-600'
1784
1784
  },
1785
1785
  validateFile: file => {
1786
1786
  if (file.size > 100 * 1024 * 1024) {
@@ -1800,13 +1800,13 @@
1800
1800
  display: "flex",
1801
1801
  alignItems: "center",
1802
1802
  justifyContent: "center",
1803
- backgroundColor: 'color.gray.100',
1804
- color: 'color.gray.600',
1803
+ backgroundColor: 'color-gray-100',
1804
+ color: 'color-gray-600',
1805
1805
  borderRadius: '50%',
1806
1806
  border: "none",
1807
1807
  cursor: "pointer",
1808
1808
  _hover: {
1809
- backgroundColor: 'color.gray.200'
1809
+ backgroundColor: 'color-gray-200'
1810
1810
  }
1811
1811
  }, /*#__PURE__*/React__default.createElement(MicrophoneIcon, {
1812
1812
  widthHeight: 16,
@@ -1824,13 +1824,13 @@
1824
1824
  display: "flex",
1825
1825
  alignItems: "center",
1826
1826
  justifyContent: "center",
1827
- backgroundColor: 'color.gray.100',
1828
- color: 'color.gray.600',
1827
+ backgroundColor: 'color-gray-100',
1828
+ color: 'color-gray-600',
1829
1829
  borderRadius: '50%',
1830
1830
  border: "none",
1831
1831
  cursor: "pointer",
1832
1832
  _hover: {
1833
- backgroundColor: 'color.gray.200'
1833
+ backgroundColor: 'color-gray-200'
1834
1834
  }
1835
1835
  }, paused ? (/*#__PURE__*/React__default.createElement(PlayIcon, {
1836
1836
  widthHeight: 16,
@@ -1849,13 +1849,13 @@
1849
1849
  display: "flex",
1850
1850
  alignItems: "center",
1851
1851
  justifyContent: "center",
1852
- backgroundColor: 'theme.error',
1853
- color: 'color.white',
1852
+ backgroundColor: 'theme-error',
1853
+ color: 'color-white',
1854
1854
  borderRadius: '50%',
1855
1855
  border: "none",
1856
1856
  cursor: "pointer",
1857
1857
  _hover: {
1858
- backgroundColor: 'color.red.600'
1858
+ backgroundColor: 'color-red-600'
1859
1859
  }
1860
1860
  }, /*#__PURE__*/React__default.createElement(StopIcon, {
1861
1861
  widthHeight: 16,
@@ -2108,13 +2108,13 @@
2108
2108
  borderWidth: '1px',
2109
2109
  borderStyle: 'solid',
2110
2110
  borderColor: 'transparent',
2111
- backgroundColor: 'color.gray.100',
2111
+ backgroundColor: 'color-gray-100',
2112
2112
  boxShadow: '0px 2px 4px rgba(0, 0, 0, 0.1)',
2113
2113
  transition: 'all 0.2s ease'
2114
2114
  },
2115
2115
  fallback: {
2116
2116
  fontWeight: '500',
2117
- color: 'color.gray.600'
2117
+ color: 'color-gray-600'
2118
2118
  },
2119
2119
  image: {
2120
2120
  objectFit: 'cover',
@@ -2144,7 +2144,7 @@
2144
2144
  width: avatarSize,
2145
2145
  height: avatarSize
2146
2146
  }, DefaultAvatarStyles.container, {
2147
- borderColor: imageError ? 'color.gray.400' : 'transparent',
2147
+ borderColor: imageError ? 'color-gray-400' : 'transparent',
2148
2148
  onClick: onClick
2149
2149
  }, views == null ? void 0 : views.container), !imageError && src ? (/*#__PURE__*/React__default.createElement(appStudio.Image, {
2150
2150
  alt: "IM",
@@ -2292,8 +2292,8 @@
2292
2292
  var getBadgeVariants = themeMode => {
2293
2293
  return {
2294
2294
  filled: {
2295
- backgroundColor: 'theme.primary',
2296
- color: 'color.white',
2295
+ backgroundColor: 'theme-primary',
2296
+ color: 'color-white',
2297
2297
  borderWidth: '1px',
2298
2298
  borderStyle: 'solid',
2299
2299
  borderColor: 'transparent',
@@ -2303,8 +2303,8 @@
2303
2303
  backgroundColor: 'transparent',
2304
2304
  borderWidth: '1px',
2305
2305
  borderStyle: 'solid',
2306
- borderColor: 'theme.primary',
2307
- color: 'theme.primary',
2306
+ borderColor: 'theme-primary',
2307
+ color: 'theme-primary',
2308
2308
  transition: 'all 0.2s ease'
2309
2309
  },
2310
2310
  link: {
@@ -2312,14 +2312,14 @@
2312
2312
  borderWidth: '1px',
2313
2313
  borderStyle: 'solid',
2314
2314
  borderColor: 'transparent',
2315
- color: 'theme.primary',
2315
+ color: 'theme-primary',
2316
2316
  textDecoration: 'underline',
2317
2317
  textUnderlineOffset: '2px',
2318
2318
  transition: 'all 0.2s ease'
2319
2319
  },
2320
2320
  ghost: {
2321
2321
  backgroundColor: 'transparent',
2322
- color: 'color.gray.500',
2322
+ color: 'color-gray-500',
2323
2323
  borderWidth: '1px',
2324
2324
  borderStyle: 'solid',
2325
2325
  borderColor: 'transparent',
@@ -2481,7 +2481,7 @@
2481
2481
  var {
2482
2482
  size = 'md',
2483
2483
  speed = 'normal',
2484
- color = 'theme.loading',
2484
+ color = 'theme-loading',
2485
2485
  themeMode: elementMode
2486
2486
  } = _ref,
2487
2487
  props = _objectWithoutPropertiesLoose(_ref, _excluded$c);
@@ -2530,7 +2530,7 @@
2530
2530
  var {
2531
2531
  size = 'md',
2532
2532
  speed = 'normal',
2533
- color = 'theme.loading',
2533
+ color = 'theme-loading',
2534
2534
  themeMode: elementMode
2535
2535
  } = _ref2,
2536
2536
  props = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
@@ -2578,7 +2578,7 @@
2578
2578
  var {
2579
2579
  size = 'md',
2580
2580
  speed = 'normal',
2581
- color = 'theme.loading',
2581
+ color = 'theme-loading',
2582
2582
  themeMode: elementMode
2583
2583
  } = _ref3,
2584
2584
  props = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
@@ -2630,8 +2630,8 @@
2630
2630
  var {
2631
2631
  getColor
2632
2632
  } = appStudio.useTheme();
2633
- loaderColor = getColor(loaderColor || props.color || 'theme.loading');
2634
- textColor = getColor(textColor || props.color || 'theme.loading');
2633
+ loaderColor = getColor(loaderColor || props.color || 'theme-loading');
2634
+ textColor = getColor(textColor || props.color || 'theme-loading');
2635
2635
  var style = {
2636
2636
  size,
2637
2637
  speed,
@@ -3279,22 +3279,22 @@
3279
3279
  getColorHex
3280
3280
  } = appStudio.useTheme();
3281
3281
  /* MAIN COLOR – determines the entire palette */
3282
- // Priority: explicit backgroundColor/color prop -> theme.button.background -> theme.primary
3283
- var mainColorKey = (_ref6 = backgroundColor != null ? backgroundColor : color) != null ? _ref6 : 'theme.button.background';
3282
+ // Priority: explicit backgroundColor/color prop -> theme-button.background -> theme-primary
3283
+ var mainColorKey = (_ref6 = backgroundColor != null ? backgroundColor : color) != null ? _ref6 : 'theme-button-background';
3284
3284
  // Decide which theme token to resolve based on state
3285
- var stateColorKey = isDisabled ? 'theme.disabled' : isLoading ? 'theme.loading' : mainColorKey;
3286
- // Resolve to actual hex color.
3287
- // If 'theme.button.background' isn't defined, it falls back to 'theme.primary'
3285
+ var stateColorKey = isDisabled ? 'theme-disabled' : isLoading ? 'theme-loading' : mainColorKey;
3286
+ // Resolve to actual hex color-
3287
+ // If 'theme-button-background' isn't defined, it falls back to 'theme-primary'
3288
3288
  var mainTone = getColorHex(stateColorKey);
3289
- if (mainTone === 'theme.button.background' || mainTone === 'theme.loading') {
3290
- mainTone = getColorHex(isLoading ? 'color.dark.500' : 'theme.primary');
3289
+ if (mainTone === 'theme-button-background' || mainTone === 'theme-loading') {
3290
+ mainTone = getColorHex(isLoading ? 'color-dark-500' : 'theme-primary');
3291
3291
  }
3292
3292
  /* text color - explicitly provided or default to white */
3293
- // Priority: explicit textColor prop -> theme.button.text -> color.white
3294
- var resolvedTextColorKey = textColor != null ? textColor : 'theme.button.text';
3293
+ // Priority: explicit textColor prop -> theme-button.text -> color-white
3294
+ var resolvedTextColorKey = textColor != null ? textColor : 'theme-button-text';
3295
3295
  var resolvedTextColor = getColorHex(resolvedTextColorKey);
3296
- if (resolvedTextColor === 'theme.button.text') {
3297
- resolvedTextColor = getColorHex('color.white');
3296
+ if (resolvedTextColor === 'theme-button-text') {
3297
+ resolvedTextColor = getColorHex('color-white');
3298
3298
  }
3299
3299
  /* variant palette */
3300
3300
  var palette = React.useMemo(() => getButtonVariants(mainTone, resolvedTextColor, reversed), [mainTone, resolvedTextColor, reversed]);
@@ -3397,23 +3397,23 @@
3397
3397
  var isDark = themeMode === 'dark';
3398
3398
  return {
3399
3399
  default: {
3400
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3400
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3401
3401
  border: 'none',
3402
3402
  transition: 'background-color 0.2s ease, box-shadow 0.2s ease'
3403
3403
  },
3404
3404
  outlined: {
3405
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3405
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3406
3406
  borderWidth: '1px',
3407
3407
  borderStyle: 'solid',
3408
- borderColor: isDark ? 'color.gray.700' : 'color.gray.200',
3408
+ borderColor: isDark ? 'color-gray-700' : 'color-gray-200',
3409
3409
  transition: 'border-color 0.2s ease, box-shadow 0.2s ease',
3410
3410
  _hover: {
3411
- borderColor: isDark ? 'color.gray.600' : 'color.gray.300',
3411
+ borderColor: isDark ? 'color-gray-600' : 'color-gray-300',
3412
3412
  boxShadow: '0px 1px 3px rgba(0, 0, 0, 0.05)'
3413
3413
  }
3414
3414
  },
3415
3415
  elevated: {
3416
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3416
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3417
3417
  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)',
3418
3418
  border: 'none',
3419
3419
  transition: 'box-shadow 0.2s ease',
@@ -3431,8 +3431,8 @@
3431
3431
  var isDark = theme.themeMode === 'dark';
3432
3432
  return {
3433
3433
  container: {
3434
- backgroundColor: isDark ? 'color.gray.900' : 'color.white',
3435
- color: isDark ? 'color.white' : 'color.black',
3434
+ backgroundColor: isDark ? 'color-gray-900' : 'color-white',
3435
+ color: isDark ? 'color-white' : 'color-black',
3436
3436
  borderRadius: '8px',
3437
3437
  overflow: 'hidden',
3438
3438
  transition: 'all 0.2s ease'
@@ -3441,18 +3441,18 @@
3441
3441
  padding: '16px',
3442
3442
  borderBottomWidth: '1px',
3443
3443
  borderBottomStyle: 'solid',
3444
- borderBottomColor: isDark ? 'color.gray.800' : 'color.gray.100',
3445
- color: 'theme.primary'
3444
+ borderBottomColor: isDark ? 'color-gray-800' : 'color-gray-100',
3445
+ color: 'theme-primary'
3446
3446
  },
3447
3447
  content: {
3448
3448
  padding: '16px',
3449
- color: isDark ? 'color.gray.300' : 'color.gray.600'
3449
+ color: isDark ? 'color-gray-300' : 'color-gray-600'
3450
3450
  },
3451
3451
  footer: {
3452
3452
  padding: '16px',
3453
3453
  borderTopWidth: '1px',
3454
3454
  borderTopStyle: 'solid',
3455
- borderTopColor: isDark ? 'color.gray.800' : 'color.gray.100'
3455
+ borderTopColor: isDark ? 'color-gray-800' : 'color-gray-100'
3456
3456
  }
3457
3457
  };
3458
3458
  };
@@ -3780,7 +3780,7 @@
3780
3780
  width: '10px',
3781
3781
  height: '10px',
3782
3782
  borderRadius: '50%',
3783
- backgroundColor: 'color.gray.300',
3783
+ backgroundColor: 'color-gray-300',
3784
3784
  margin: '0 4px',
3785
3785
  cursor: 'pointer',
3786
3786
  transition: 'background-color 0.3s ease'
@@ -3789,7 +3789,7 @@
3789
3789
  width: '20px',
3790
3790
  height: '4px',
3791
3791
  borderRadius: '2px',
3792
- backgroundColor: 'color.gray.300',
3792
+ backgroundColor: 'color-gray-300',
3793
3793
  margin: '0 4px',
3794
3794
  cursor: 'pointer',
3795
3795
  transition: 'background-color 0.3s ease'
@@ -3798,7 +3798,7 @@
3798
3798
  minWidth: '24px',
3799
3799
  height: '24px',
3800
3800
  borderRadius: '50%',
3801
- backgroundColor: 'color.gray.300',
3801
+ backgroundColor: 'color-gray-300',
3802
3802
  margin: '0 4px',
3803
3803
  cursor: 'pointer',
3804
3804
  display: 'flex',
@@ -3810,22 +3810,22 @@
3810
3810
  };
3811
3811
  var ActiveIndicatorStyles = {
3812
3812
  dot: {
3813
- backgroundColor: 'theme.primary'
3813
+ backgroundColor: 'theme-primary'
3814
3814
  },
3815
3815
  line: {
3816
- backgroundColor: 'theme.primary'
3816
+ backgroundColor: 'theme-primary'
3817
3817
  },
3818
3818
  number: {
3819
- backgroundColor: 'theme.primary',
3820
- color: 'color.white'
3819
+ backgroundColor: 'theme-primary',
3820
+ color: 'color-white'
3821
3821
  }
3822
3822
  };
3823
3823
  var NavigationButtonStyles = {
3824
3824
  width: '40px',
3825
3825
  height: '40px',
3826
3826
  borderRadius: '50%',
3827
- backgroundColor: 'color.white',
3828
- color: 'color.gray.800',
3827
+ backgroundColor: 'color-white',
3828
+ color: 'color-gray-800',
3829
3829
  display: 'flex',
3830
3830
  alignItems: 'center',
3831
3831
  justifyContent: 'center',
@@ -3834,7 +3834,7 @@
3834
3834
  zIndex: 1,
3835
3835
  transition: 'background-color 0.3s ease',
3836
3836
  _hover: {
3837
- backgroundColor: 'color.gray.100'
3837
+ backgroundColor: 'color-gray-100'
3838
3838
  }
3839
3839
  };
3840
3840
  // Default styles for the compound component pattern
@@ -4202,17 +4202,17 @@
4202
4202
  */
4203
4203
  var CHART_COLORS = {
4204
4204
  // Primary colors for all charts
4205
- blue: 'color.blue.500',
4206
- green: 'color.green.500',
4207
- purple: 'color.purple.500',
4208
- orange: 'color.orange.500',
4209
- red: 'color.red.500',
4205
+ blue: 'color-blue-500',
4206
+ green: 'color-green-500',
4207
+ purple: 'color-purple-500',
4208
+ orange: 'color-orange-500',
4209
+ red: 'color-red-500',
4210
4210
  // Additional colors if needed
4211
- teal: 'color.teal.500',
4212
- pink: 'color.pink.500',
4213
- indigo: 'color.indigo.500',
4214
- yellow: 'color.yellow.500',
4215
- cyan: 'color.cyan.500'
4211
+ teal: 'color-teal-500',
4212
+ pink: 'color-pink-500',
4213
+ indigo: 'color-indigo-500',
4214
+ yellow: 'color-yellow-500',
4215
+ cyan: 'color-cyan-500'
4216
4216
  };
4217
4217
  // Default color array for consistent ordering
4218
4218
  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];
@@ -4261,18 +4261,18 @@
4261
4261
  };
4262
4262
  // Default styles for chart grid
4263
4263
  var GridStyles = {
4264
- stroke: 'color.gray.200',
4264
+ stroke: 'color-gray-200',
4265
4265
  strokeWidth: '1px'
4266
4266
  };
4267
4267
  // Default styles for chart axis
4268
4268
  var AxisStyles = {
4269
- stroke: 'color.gray.300',
4269
+ stroke: 'color-gray-300',
4270
4270
  strokeWidth: '1px'
4271
4271
  };
4272
4272
  // Default styles for axis labels
4273
4273
  var AxisLabelStyles = {
4274
4274
  fontSize: '12px',
4275
- fill: 'color.gray.600'
4275
+ fill: 'color-gray-600'
4276
4276
  };
4277
4277
  // Default styles for bar chart bars
4278
4278
  var BarStyles = {
@@ -4328,12 +4328,12 @@
4328
4328
  // Default styles for error overlay
4329
4329
  var ErrorOverlayStyles = /*#__PURE__*/Object.assign({}, OverlayBaseStyles, {
4330
4330
  backgroundColor: 'rgba(255, 235, 238, 0.9)',
4331
- color: 'color.red.700'
4331
+ color: 'color-red-700'
4332
4332
  });
4333
4333
  // Default styles for no data overlay
4334
4334
  var NoDataOverlayStyles = /*#__PURE__*/Object.assign({}, OverlayBaseStyles, {
4335
4335
  backgroundColor: 'rgba(245, 245, 245, 0.8)',
4336
- color: 'color.gray.600'
4336
+ color: 'color-gray-600'
4337
4337
  });
4338
4338
 
4339
4339
  var useChartState = _ref => {
@@ -4569,7 +4569,7 @@
4569
4569
  backgroundColor: fillColor
4570
4570
  })), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4571
4571
  marginTop: "4px",
4572
- color: "color.gray.500",
4572
+ color: "color-gray-500",
4573
4573
  fontSize: "12px"
4574
4574
  }, categoryLabel), /*#__PURE__*/React__default.createElement(appStudio.View, {
4575
4575
  marginTop: "8px",
@@ -4579,7 +4579,7 @@
4579
4579
  display: "flex",
4580
4580
  justifyContent: "space-between"
4581
4581
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4582
- color: "color.gray.500"
4582
+ color: "color-gray-500"
4583
4583
  }, "Value"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4584
4584
  fontWeight: "medium"
4585
4585
  }, value.toLocaleString())), sharePercentage !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4587,7 +4587,7 @@
4587
4587
  display: "flex",
4588
4588
  justifyContent: "space-between"
4589
4589
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4590
- color: "color.gray.500"
4590
+ color: "color-gray-500"
4591
4591
  }, "Share"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4592
4592
  fontWeight: "medium"
4593
4593
  }, sharePercentage + "%"))), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4595,7 +4595,7 @@
4595
4595
  display: "flex",
4596
4596
  justifyContent: "space-between"
4597
4597
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4598
- color: "color.gray.500"
4598
+ color: "color-gray-500"
4599
4599
  }, "Category total"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4600
4600
  fontWeight: "medium"
4601
4601
  }, categoryTotal.toLocaleString()))));
@@ -4775,7 +4775,7 @@
4775
4775
  backgroundColor: lineColor
4776
4776
  })), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4777
4777
  marginTop: "4px",
4778
- color: "color.gray.500",
4778
+ color: "color-gray-500",
4779
4779
  fontSize: "12px"
4780
4780
  }, categoryLabel), /*#__PURE__*/React__default.createElement(appStudio.View, {
4781
4781
  marginTop: "8px",
@@ -4785,7 +4785,7 @@
4785
4785
  display: "flex",
4786
4786
  justifyContent: "space-between"
4787
4787
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4788
- color: "color.gray.500"
4788
+ color: "color-gray-500"
4789
4789
  }, "Value"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4790
4790
  fontWeight: "medium"
4791
4791
  }, value.toLocaleString())), formattedDelta !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4793,7 +4793,7 @@
4793
4793
  display: "flex",
4794
4794
  justifyContent: "space-between"
4795
4795
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4796
- color: "color.gray.500"
4796
+ color: "color-gray-500"
4797
4797
  }, "Change"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4798
4798
  fontWeight: "medium"
4799
4799
  }, formattedDelta))), sharePercentage !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4801,7 +4801,7 @@
4801
4801
  display: "flex",
4802
4802
  justifyContent: "space-between"
4803
4803
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4804
- color: "color.gray.500"
4804
+ color: "color-gray-500"
4805
4805
  }, "Share"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4806
4806
  fontWeight: "medium"
4807
4807
  }, sharePercentage + "%"))), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -4809,7 +4809,7 @@
4809
4809
  display: "flex",
4810
4810
  justifyContent: "space-between"
4811
4811
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4812
- color: "color.gray.500"
4812
+ color: "color-gray-500"
4813
4813
  }, "Category total"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4814
4814
  fontWeight: "medium"
4815
4815
  }, categoryTotal.toLocaleString()))));
@@ -4984,7 +4984,7 @@
4984
4984
  backgroundColor: slice.color
4985
4985
  })), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4986
4986
  marginTop: "4px",
4987
- color: "color.gray.500",
4987
+ color: "color-gray-500",
4988
4988
  fontSize: "12px"
4989
4989
  }, "Slice ", slice.index + 1, " of ", dataPoints.length), /*#__PURE__*/React__default.createElement(appStudio.View, {
4990
4990
  marginTop: "8px",
@@ -4994,7 +4994,7 @@
4994
4994
  display: "flex",
4995
4995
  justifyContent: "space-between"
4996
4996
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
4997
- color: "color.gray.500"
4997
+ color: "color-gray-500"
4998
4998
  }, "Value"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
4999
4999
  fontWeight: "medium"
5000
5000
  }, slice.value.toLocaleString())), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -5002,7 +5002,7 @@
5002
5002
  display: "flex",
5003
5003
  justifyContent: "space-between"
5004
5004
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
5005
- color: "color.gray.500"
5005
+ color: "color-gray-500"
5006
5006
  }, "Share"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5007
5007
  fontWeight: "medium"
5008
5008
  }, slice.percentage)), /*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -5010,7 +5010,7 @@
5010
5010
  display: "flex",
5011
5011
  justifyContent: "space-between"
5012
5012
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
5013
- color: "color.gray.500"
5013
+ color: "color-gray-500"
5014
5014
  }, "Total"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5015
5015
  fontWeight: "medium"
5016
5016
  }, total.toLocaleString())), remainingShare !== null && (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -5018,7 +5018,7 @@
5018
5018
  display: "flex",
5019
5019
  justifyContent: "space-between"
5020
5020
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
5021
- color: "color.gray.500"
5021
+ color: "color-gray-500"
5022
5022
  }, "Remaining"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
5023
5023
  fontWeight: "medium"
5024
5024
  }, remainingShare.toFixed(1) + "%")))));
@@ -5146,11 +5146,11 @@
5146
5146
  position: "fixed",
5147
5147
  left: position.left + "px",
5148
5148
  top: position.top + "px",
5149
- backgroundColor: "color.white",
5149
+ backgroundColor: "color-white",
5150
5150
  padding: "12px 16px",
5151
5151
  borderRadius: "8px",
5152
5152
  boxShadow: "0px 12px 24px rgba(15, 23, 42, 0.18)",
5153
- border: "1px solid color.gray.200",
5153
+ border: "1px solid color-gray-200",
5154
5154
  fontSize: "14px",
5155
5155
  display: "flex",
5156
5156
  flexDirection: "column",
@@ -5543,10 +5543,10 @@
5543
5543
  }, title && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
5544
5544
  fontWeight: "bold",
5545
5545
  fontSize: 18,
5546
- color: "color.black"
5546
+ color: "color-black"
5547
5547
  }, views == null ? void 0 : views.title), title)), description && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
5548
5548
  fontSize: 14,
5549
- color: "color.black"
5549
+ color: "color-black"
5550
5550
  }, views == null ? void 0 : views.description), typeof description === 'string' ? description : description)), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
5551
5551
  gap: 12,
5552
5552
  justifyContent: "flex-end",
@@ -5595,8 +5595,8 @@
5595
5595
  * onAccept={() => console.log('Cookies accepted')}
5596
5596
  * onCustomize={() => openPreferencesModal()}
5597
5597
  * views={{
5598
- * container: { backgroundColor: 'color.blue.50' },
5599
- * title: { color: 'color.blue.800' }
5598
+ * container: { backgroundColor: 'color-blue-50' },
5599
+ * title: { color: 'color-blue-800' }
5600
5600
  * }}
5601
5601
  * />
5602
5602
  */
@@ -5700,27 +5700,27 @@
5700
5700
  };
5701
5701
  var ContextMenuVariants = {
5702
5702
  default: {
5703
- backgroundColor: 'color.white',
5704
- color: 'color.gray.800'
5703
+ backgroundColor: 'color-white',
5704
+ color: 'color-gray-800'
5705
5705
  },
5706
5706
  filled: {
5707
- backgroundColor: 'color.gray.100',
5708
- color: 'color.gray.800'
5707
+ backgroundColor: 'color-gray-100',
5708
+ color: 'color-gray-800'
5709
5709
  },
5710
5710
  outline: {
5711
- backgroundColor: 'color.white',
5711
+ backgroundColor: 'color-white',
5712
5712
  borderWidth: '1px',
5713
5713
  borderStyle: 'solid',
5714
- borderColor: 'color.gray.200',
5715
- color: 'color.gray.800'
5714
+ borderColor: 'color-gray-200',
5715
+ color: 'color-gray-800'
5716
5716
  }
5717
5717
  };
5718
5718
  var ContextMenuItemStates = {
5719
5719
  hover: {
5720
- backgroundColor: 'color.gray.100'
5720
+ backgroundColor: 'color-gray-100'
5721
5721
  },
5722
5722
  active: {
5723
- backgroundColor: 'color.gray.200'
5723
+ backgroundColor: 'color-gray-200'
5724
5724
  },
5725
5725
  disabled: {
5726
5726
  opacity: 0.5,
@@ -6037,7 +6037,7 @@
6037
6037
  "data-disabled": disabled ? '' : undefined
6038
6038
  }, ContextMenuSizes[size], {
6039
6039
  _hover: !disabled ? ContextMenuItemStates.hover : {},
6040
- backgroundColor: isHovered && !disabled ? 'color.gray.100' : 'transparent',
6040
+ backgroundColor: isHovered && !disabled ? 'color-gray-100' : 'transparent',
6041
6041
  onMouseEnter: handleMouseEnter,
6042
6042
  onMouseLeave: handleMouseLeave,
6043
6043
  onClick: _handleClick
@@ -6087,7 +6087,7 @@
6087
6087
  props = _objectWithoutPropertiesLoose(_ref5, _excluded4$5);
6088
6088
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
6089
6089
  height: "1px",
6090
- backgroundColor: "color.gray.200",
6090
+ backgroundColor: "color-gray-200",
6091
6091
  margin: "4px 0",
6092
6092
  role: "separator",
6093
6093
  "aria-orientation": "horizontal"
@@ -6101,7 +6101,7 @@
6101
6101
  props = _objectWithoutPropertiesLoose(_ref6, _excluded5$1);
6102
6102
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
6103
6103
  height: "1px",
6104
- backgroundColor: "color.gray.200",
6104
+ backgroundColor: "color-gray-200",
6105
6105
  margin: "4px 0",
6106
6106
  role: "separator",
6107
6107
  "aria-orientation": "horizontal"
@@ -6309,7 +6309,7 @@
6309
6309
  marginVertical: 0,
6310
6310
  marginHorizontal: 0,
6311
6311
  // Color properties
6312
- color: "color.gray.500" // Muted color for helper text
6312
+ color: "color-gray-500" // Muted color for helper text
6313
6313
  ,
6314
6314
 
6315
6315
  // Animation
@@ -6341,7 +6341,7 @@
6341
6341
  marginHorizontal: 0,
6342
6342
  fontWeight: "500" // Medium weight for better readability
6343
6343
  ,
6344
- color: "color.red.500",
6344
+ color: "color-red-500",
6345
6345
  transition: "all 0.2s ease"
6346
6346
  }, views == null ? void 0 : views.error), error)));
6347
6347
  });
@@ -6401,19 +6401,19 @@
6401
6401
  outline: {
6402
6402
  borderWidth: '1px',
6403
6403
  borderStyle: 'solid',
6404
- borderColor: 'color.gray.200',
6405
- backgroundColor: 'color.white',
6404
+ borderColor: 'color-gray-200',
6405
+ backgroundColor: 'color-white',
6406
6406
  transition: 'border-color 0.2s ease, box-shadow 0.2s ease',
6407
6407
  _hover: {
6408
- borderColor: 'color.gray.300'
6408
+ borderColor: 'color-gray-300'
6409
6409
  },
6410
6410
  _focus: {
6411
- borderColor: 'theme.primary',
6411
+ borderColor: 'theme-primary',
6412
6412
  outline: 'none',
6413
6413
  boxShadow: '0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 4px rgba(66, 153, 225, 0.2)'
6414
6414
  },
6415
6415
  _focusVisible: {
6416
- borderColor: 'theme.primary',
6416
+ borderColor: 'theme-primary',
6417
6417
  outline: 'none',
6418
6418
  boxShadow: '0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 4px rgba(66, 153, 225, 0.2)'
6419
6419
  }
@@ -6422,19 +6422,19 @@
6422
6422
  borderWidth: 0,
6423
6423
  borderBottomWidth: '1px',
6424
6424
  borderBottomStyle: 'solid',
6425
- borderBottomColor: 'color.gray.200',
6425
+ borderBottomColor: 'color-gray-200',
6426
6426
  borderRadius: 0,
6427
- backgroundColor: 'color.white',
6427
+ backgroundColor: 'color-white',
6428
6428
  transition: 'border-color 0.2s ease',
6429
6429
  _hover: {
6430
- borderBottomColor: 'color.gray.300'
6430
+ borderBottomColor: 'color-gray-300'
6431
6431
  },
6432
6432
  _focus: {
6433
- borderBottomColor: 'theme.primary',
6433
+ borderBottomColor: 'theme-primary',
6434
6434
  outline: 'none'
6435
6435
  },
6436
6436
  _focusVisible: {
6437
- borderBottomColor: 'theme.primary',
6437
+ borderBottomColor: 'theme-primary',
6438
6438
  outline: 'none'
6439
6439
  }
6440
6440
  },
@@ -6507,7 +6507,7 @@
6507
6507
  // Determine if the field is in an interactive state
6508
6508
  var isInteractive = (isHovered || isFocused) && !isDisabled;
6509
6509
  // Set the appropriate color based on state
6510
- var color = error ? 'color.red.500' : isInteractive ? 'theme.primary' : 'color.gray.300';
6510
+ var color = error ? 'color-red-500' : isInteractive ? 'theme-primary' : 'color-gray-300';
6511
6511
  return /*#__PURE__*/React__default.createElement(appStudio.Horizontal
6512
6512
  // Layout properties
6513
6513
  , Object.assign({
@@ -6522,7 +6522,7 @@
6522
6522
  // Visual properties
6523
6523
  borderStyle: "solid",
6524
6524
  borderColor: color,
6525
- backgroundColor: "color.white",
6525
+ backgroundColor: "color-white",
6526
6526
  fontSize: appStudio.Typography.fontSizes[size],
6527
6527
  // State properties
6528
6528
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'text',
@@ -6642,7 +6642,7 @@
6642
6642
  children,
6643
6643
  size = 'md',
6644
6644
  error = false,
6645
- color = 'theme.primary',
6645
+ color = 'theme-primary',
6646
6646
  views = {
6647
6647
  label: {}
6648
6648
  }
@@ -6662,7 +6662,7 @@
6662
6662
  ,
6663
6663
  whiteSpace: "nowrap",
6664
6664
  // Color properties
6665
- color: error ? 'color.red.500' : color,
6665
+ color: error ? 'color-red-500' : color,
6666
6666
  // Animation
6667
6667
  transition: "all 0.2s ease"
6668
6668
  }, views['label'], props), children);
@@ -6748,7 +6748,7 @@
6748
6748
  onMouseLeave: handleHover,
6749
6749
  onClick: e => handleOptionClick(e, option.value),
6750
6750
  // Visual properties
6751
- backgroundColor: isHovered ? 'color.gray.100' : 'transparent',
6751
+ backgroundColor: isHovered ? 'color-gray-100' : 'transparent',
6752
6752
  borderRadius: "4px" // Subtle rounded corners for items
6753
6753
  ,
6754
6754
 
@@ -6801,7 +6801,7 @@
6801
6801
  letterSpacing: '-0.01em',
6802
6802
  // Visual properties
6803
6803
  backgroundColor: 'transparent',
6804
- color: isDisabled ? 'color.gray.400' : 'color.gray.900',
6804
+ color: isDisabled ? 'color-gray-400' : 'color-gray-900',
6805
6805
  // State properties
6806
6806
  cursor: isDisabled ? 'not-allowed' : 'pointer',
6807
6807
  // Animation
@@ -6879,7 +6879,7 @@
6879
6879
  width: "100%",
6880
6880
  display: "flex",
6881
6881
  flexDirection: "column",
6882
- backgroundColor: "color.white",
6882
+ backgroundColor: "color-white",
6883
6883
  transition: "all 0.2s ease",
6884
6884
  margin: 0,
6885
6885
  style: {
@@ -6902,7 +6902,7 @@
6902
6902
  style: views['text'],
6903
6903
  option: option,
6904
6904
  callback: handleCallback,
6905
- backgroundColor: index === highlightedIndex ? 'color.gray.100' : 'transparent',
6905
+ backgroundColor: index === highlightedIndex ? 'color-gray-100' : 'transparent',
6906
6906
  onMouseEnter: () => setHighlightedIndex(index)
6907
6907
  }, itemStates)))));
6908
6908
  };
@@ -6924,7 +6924,7 @@
6924
6924
  padding: 8,
6925
6925
  alignItems: "center",
6926
6926
  borderRadius: "6px",
6927
- backgroundColor: "color.gray.200",
6927
+ backgroundColor: "color-gray-200",
6928
6928
  fontSize: appStudio.Typography.fontSizes[size],
6929
6929
  onClick: event => event.stopPropagation(),
6930
6930
  transition: "all 0.2s ease"
@@ -7104,7 +7104,7 @@
7104
7104
  shadow: shadow,
7105
7105
  variant: variant,
7106
7106
  value: value,
7107
- color: 'theme.primary',
7107
+ color: 'theme-primary',
7108
7108
  isHovered: isHovered,
7109
7109
  isDisabled: isDisabled,
7110
7110
  isReadOnly: isReadOnly,
@@ -7115,7 +7115,7 @@
7115
7115
  position: "relative"
7116
7116
  }, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
7117
7117
  htmlFor: id,
7118
- color: 'theme.primary',
7118
+ color: 'theme-primary',
7119
7119
  error: error
7120
7120
  }, views), label)), /*#__PURE__*/React__default.createElement(HiddenSelect, Object.assign({
7121
7121
  id: id,
@@ -7154,7 +7154,7 @@
7154
7154
  views: Object.assign({}, views, {
7155
7155
  dropDown: {
7156
7156
  borderRadius: '6px',
7157
- border: '1px solid color.gray.200',
7157
+ border: '1px solid color-gray-200',
7158
7158
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
7159
7159
  padding: '8px',
7160
7160
  maxHeight: '240px',
@@ -7309,16 +7309,16 @@
7309
7309
  var ColorSchemes = {
7310
7310
  // Default colors
7311
7311
  default: {
7312
- active: 'theme.primary',
7313
- inactive: 'color.gray.300',
7312
+ active: 'theme-primary',
7313
+ inactive: 'color-gray-300',
7314
7314
  knob: 'white',
7315
- disabled: 'color.gray.200'
7315
+ disabled: 'color-gray-200'
7316
7316
  },
7317
7317
  // State-specific colors
7318
7318
  states: {
7319
7319
  hover: {
7320
- active: 'theme.primary',
7321
- inactive: 'color.gray.400',
7320
+ active: 'theme-primary',
7321
+ inactive: 'color-gray-400',
7322
7322
  activeOpacity: 0.9
7323
7323
  },
7324
7324
  focus: {
@@ -7420,7 +7420,7 @@
7420
7420
  }, props)), labelPosition === 'left' && label && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
7421
7421
  fontWeight: "500" // Medium weight for better readability
7422
7422
  ,
7423
- color: isDisabled ? 'color.gray.400' : 'color.gray.700',
7423
+ color: isDisabled ? 'color-gray-400' : 'color-gray-700',
7424
7424
  transition: "all 0.2s ease"
7425
7425
  }, label)), /*#__PURE__*/React__default.createElement(appStudio.View
7426
7426
  // Layout properties
@@ -7463,7 +7463,7 @@
7463
7463
  }, inActiveChild))), labelPosition === 'right' && label && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
7464
7464
  fontWeight: "500" // Medium weight for better readability
7465
7465
  ,
7466
- color: isDisabled ? 'color.gray.400' : 'color.gray.700',
7466
+ color: isDisabled ? 'color-gray-400' : 'color-gray-700',
7467
7467
  transition: "all 0.2s ease"
7468
7468
  }, label)));
7469
7469
  };
@@ -7548,7 +7548,7 @@
7548
7548
  }, label && (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
7549
7549
  fontSize: "10px",
7550
7550
  letterSpacing: "wider",
7551
- color: "color.black.500",
7551
+ color: "color-black-500",
7552
7552
  fontWeight: "bold",
7553
7553
  marginBottom: 12,
7554
7554
  alignItems: "center",
@@ -7563,8 +7563,8 @@
7563
7563
  gap: 0
7564
7564
  }, options.map((option, index, arr) => {
7565
7565
  var isSelected = value === option.value;
7566
- var borderColor = getColor('color.gray.200');
7567
- var textColor = getColor('color.gray.500');
7566
+ var borderColor = getColor('color-gray-200');
7567
+ var textColor = getColor('color-gray-500');
7568
7568
  var backgroundColor = 'transparent';
7569
7569
  if (isSelected) {
7570
7570
  if (option.color) {
@@ -7579,10 +7579,10 @@
7579
7579
  backgroundColor = 'rgba(0,0,0,0.05)'; // Generic active background
7580
7580
  } else {
7581
7581
  // Default active style
7582
- var primary = getColor('theme.primary');
7582
+ var primary = getColor('theme-primary');
7583
7583
  borderColor = primary;
7584
7584
  textColor = primary;
7585
- backgroundColor = 'color.gray.50';
7585
+ backgroundColor = 'color-gray-50';
7586
7586
  }
7587
7587
  // Specific overrides based on user request "ComplexitySelector" style
7588
7588
  // If the values match 'High', 'Medium', 'Low' we can hardcode for *demo* fidelity if generic logic fails.
@@ -7595,8 +7595,8 @@
7595
7595
  backgroundColor = 'transparent';
7596
7596
  } else {
7597
7597
  // Default fallback
7598
- borderColor = getColor('theme.primary');
7599
- textColor = getColor('theme.primary');
7598
+ borderColor = getColor('theme-primary');
7599
+ textColor = getColor('theme-primary');
7600
7600
  backgroundColor = 'transparent';
7601
7601
  }
7602
7602
  }
@@ -7613,10 +7613,10 @@
7613
7613
  }, {
7614
7614
  fontWeight: isSelected ? 'bold' : 'normal',
7615
7615
  style: {
7616
- borderTop: "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')),
7617
- borderBottom: "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')),
7618
- borderLeft: "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')),
7619
- borderRight: index === arr.length - 1 || isSelected ? "1px solid " + (isSelected ? borderColor : getColor('color.gray.200')) : 'none',
7616
+ borderTop: "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')),
7617
+ borderBottom: "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')),
7618
+ borderLeft: "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')),
7619
+ borderRight: index === arr.length - 1 || isSelected ? "1px solid " + (isSelected ? borderColor : getColor('color-gray-200')) : 'none',
7620
7620
  backgroundColor: backgroundColor,
7621
7621
  color: textColor,
7622
7622
  borderRadius: index === 0 ? '6px 0 0 6px' : index === arr.length - 1 ? '0 6px 6px 0' : '0',
@@ -7747,7 +7747,7 @@
7747
7747
  letterSpacing: '-0.01em',
7748
7748
  // Visual properties
7749
7749
  backgroundColor: 'transparent',
7750
- color: isDisabled ? 'color.gray.400' : 'color.gray.900',
7750
+ color: isDisabled ? 'color-gray-400' : 'color-gray-900',
7751
7751
  // State properties
7752
7752
  cursor: isDisabled ? 'not-allowed' : 'text',
7753
7753
  // Animation
@@ -7784,7 +7784,7 @@
7784
7784
  shadow: shadow,
7785
7785
  variant: variant,
7786
7786
  value: value,
7787
- color: 'theme.primary',
7787
+ color: 'theme-primary',
7788
7788
  isHovered: isHovered,
7789
7789
  isDisabled: isDisabled,
7790
7790
  isReadOnly: isReadOnly,
@@ -7794,7 +7794,7 @@
7794
7794
  onMouseLeave: handleHover
7795
7795
  }, 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({
7796
7796
  htmlFor: id,
7797
- color: 'theme.primary',
7797
+ color: 'theme-primary',
7798
7798
  error: error
7799
7799
  }, views == null ? void 0 : views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({
7800
7800
  as: "textarea",
@@ -7914,7 +7914,7 @@
7914
7914
  getColor,
7915
7915
  themeMode
7916
7916
  } = appStudio.useTheme();
7917
- var IconColor = getColor('color.blueGray.700', {
7917
+ var IconColor = getColor('color-blueGray-700', {
7918
7918
  themeMode: elementMode ? elementMode : themeMode
7919
7919
  });
7920
7920
  var showLabel = !!(isFocused && label);
@@ -7941,7 +7941,7 @@
7941
7941
  letterSpacing: '-0.01em',
7942
7942
  // Visual properties
7943
7943
  backgroundColor: 'transparent',
7944
- color: isDisabled ? 'color.gray.400' : 'color.gray.900',
7944
+ color: isDisabled ? 'color-gray-400' : 'color-gray-900',
7945
7945
  // State properties
7946
7946
  cursor: isDisabled ? 'not-allowed' : 'text',
7947
7947
  // Animation
@@ -7993,7 +7993,7 @@
7993
7993
  shadow: shadow,
7994
7994
  variant: variant,
7995
7995
  value: value,
7996
- color: 'theme.primary',
7996
+ color: 'theme-primary',
7997
7997
  isHovered: isHovered,
7998
7998
  isDisabled: isDisabled,
7999
7999
  isReadOnly: isReadOnly,
@@ -8003,7 +8003,7 @@
8003
8003
  onMouseLeave: handleHover
8004
8004
  }, left, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
8005
8005
  htmlFor: id,
8006
- color: 'theme.primary',
8006
+ color: 'theme-primary',
8007
8007
  error: error
8008
8008
  }, views), label)), /*#__PURE__*/React__default.createElement(TextFieldInput, Object.assign({
8009
8009
  id: id,
@@ -8100,27 +8100,27 @@
8100
8100
  */
8101
8101
  var VariantStyles = {
8102
8102
  selected: {
8103
- backgroundColor: 'theme.primary',
8104
- borderColor: 'theme.primary',
8103
+ backgroundColor: 'theme-primary',
8104
+ borderColor: 'theme-primary',
8105
8105
  borderWidth: '2px',
8106
8106
  borderStyle: 'solid',
8107
- color: 'color.white',
8107
+ color: 'color-white',
8108
8108
  transition: 'background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease'
8109
8109
  },
8110
8110
  unselected: {
8111
- backgroundColor: 'color.white',
8111
+ backgroundColor: 'color-white',
8112
8112
  borderWidth: '2px',
8113
8113
  borderStyle: 'solid',
8114
- borderColor: 'color.gray.300',
8115
- color: 'color.black',
8114
+ borderColor: 'color-gray-300',
8115
+ color: 'color-black',
8116
8116
  transition: 'background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease'
8117
8117
  },
8118
8118
  indeterminate: {
8119
- backgroundColor: 'theme.primary',
8120
- borderColor: 'theme.primary',
8119
+ backgroundColor: 'theme-primary',
8120
+ borderColor: 'theme-primary',
8121
8121
  borderWidth: '2px',
8122
8122
  borderStyle: 'solid',
8123
- color: 'color.white',
8123
+ color: 'color-white',
8124
8124
  transition: 'background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease'
8125
8125
  }
8126
8126
  };
@@ -8133,8 +8133,8 @@
8133
8133
  opacity: 0.9
8134
8134
  },
8135
8135
  unselected: {
8136
- borderColor: 'color.gray.400',
8137
- backgroundColor: 'color.gray.50'
8136
+ borderColor: 'color-gray-400',
8137
+ backgroundColor: 'color-gray-50'
8138
8138
  },
8139
8139
  indeterminate: {
8140
8140
  opacity: 0.9
@@ -8156,34 +8156,34 @@
8156
8156
  },
8157
8157
  disabled: {
8158
8158
  selected: {
8159
- backgroundColor: 'color.gray.300',
8160
- borderColor: 'color.gray.300',
8159
+ backgroundColor: 'color-gray-300',
8160
+ borderColor: 'color-gray-300',
8161
8161
  opacity: 0.5,
8162
8162
  cursor: 'not-allowed'
8163
8163
  },
8164
8164
  unselected: {
8165
- borderColor: 'color.gray.300',
8165
+ borderColor: 'color-gray-300',
8166
8166
  opacity: 0.5,
8167
8167
  cursor: 'not-allowed'
8168
8168
  },
8169
8169
  indeterminate: {
8170
- backgroundColor: 'color.gray.300',
8171
- borderColor: 'color.gray.300',
8170
+ backgroundColor: 'color-gray-300',
8171
+ borderColor: 'color-gray-300',
8172
8172
  opacity: 0.5,
8173
8173
  cursor: 'not-allowed'
8174
8174
  }
8175
8175
  },
8176
8176
  error: {
8177
8177
  selected: {
8178
- backgroundColor: 'color.red.500',
8179
- borderColor: 'color.red.500'
8178
+ backgroundColor: 'color-red-500',
8179
+ borderColor: 'color-red-500'
8180
8180
  },
8181
8181
  unselected: {
8182
- borderColor: 'color.red.500'
8182
+ borderColor: 'color-red-500'
8183
8183
  },
8184
8184
  indeterminate: {
8185
- backgroundColor: 'color.red.500',
8186
- borderColor: 'color.red.500'
8185
+ backgroundColor: 'color-red-500',
8186
+ borderColor: 'color-red-500'
8187
8187
  }
8188
8188
  }
8189
8189
  };
@@ -8245,7 +8245,7 @@
8245
8245
  width: 'fit-content',
8246
8246
  // Typography properties
8247
8247
  // Visual properties
8248
- color: error ? 'color.red.600' : isDisabled ? 'color.gray.400' : 'color.gray.700',
8248
+ color: error ? 'color-red-600' : isDisabled ? 'color-gray-400' : 'color-gray-700',
8249
8249
  // State properties
8250
8250
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'default' : 'pointer',
8251
8251
  opacity: isDisabled ? 0.6 : 1,
@@ -8288,7 +8288,7 @@
8288
8288
  fontWeight: "500" // Medium weight for better readability
8289
8289
  }, views == null ? void 0 : views.label), label))), infoText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
8290
8290
  marginLeft: labelPosition === 'left' ? 0 : 36,
8291
- color: "color.gray.500",
8291
+ color: "color-gray-500",
8292
8292
  size: "sm",
8293
8293
  fontWeight: "400" // Regular weight
8294
8294
  ,
@@ -8297,7 +8297,7 @@
8297
8297
  size: "xs",
8298
8298
  marginTop: 4,
8299
8299
  marginHorizontal: 0,
8300
- color: "color.red.500",
8300
+ color: "color-red-500",
8301
8301
  fontWeight: "500" // Medium weight for better readability
8302
8302
  ,
8303
8303
  transition: "all 0.2s ease"
@@ -8461,10 +8461,10 @@
8461
8461
  justifyContent: 'space-between',
8462
8462
  cursor: 'pointer',
8463
8463
  transition: 'all 0.2s ease',
8464
- backgroundColor: 'color.white',
8464
+ backgroundColor: 'color-white',
8465
8465
  borderWidth: '1px',
8466
8466
  borderStyle: 'solid',
8467
- borderColor: 'color.gray.300',
8467
+ borderColor: 'color-gray-300',
8468
8468
  padding: '8px 12px'
8469
8469
  },
8470
8470
  dropdown: {
@@ -8473,11 +8473,11 @@
8473
8473
  left: 0,
8474
8474
  right: 0,
8475
8475
  zIndex: 1000,
8476
- backgroundColor: 'color.white',
8476
+ backgroundColor: 'color-white',
8477
8477
  borderRadius: '8px',
8478
8478
  borderWidth: '1px',
8479
8479
  borderStyle: 'solid',
8480
- borderColor: 'color.gray.200',
8480
+ borderColor: 'color-gray-200',
8481
8481
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
8482
8482
  padding: '16px',
8483
8483
  minWidth: '280px'
@@ -8545,14 +8545,14 @@
8545
8545
  */
8546
8546
  var Variants = {
8547
8547
  default: {
8548
- backgroundColor: 'color.white',
8549
- borderColor: 'color.gray.300',
8548
+ backgroundColor: 'color-white',
8549
+ borderColor: 'color-gray-300',
8550
8550
  borderWidth: '1px',
8551
8551
  borderStyle: 'solid'
8552
8552
  },
8553
8553
  outline: {
8554
8554
  backgroundColor: 'transparent',
8555
- borderColor: 'color.gray.300',
8555
+ borderColor: 'color-gray-300',
8556
8556
  borderWidth: '1px',
8557
8557
  borderStyle: 'solid'
8558
8558
  },
@@ -8569,105 +8569,105 @@
8569
8569
  // Primary colors
8570
8570
  {
8571
8571
  name: 'Red 500',
8572
- value: 'color.red.500'
8572
+ value: 'color-red-500'
8573
8573
  }, {
8574
8574
  name: 'Orange 500',
8575
- value: 'color.orange.500'
8575
+ value: 'color-orange-500'
8576
8576
  }, {
8577
8577
  name: 'Yellow 500',
8578
- value: 'color.yellow.500'
8578
+ value: 'color-yellow-500'
8579
8579
  }, {
8580
8580
  name: 'Green 500',
8581
- value: 'color.green.500'
8581
+ value: 'color-green-500'
8582
8582
  }, {
8583
8583
  name: 'Blue 500',
8584
- value: 'color.blue.500'
8584
+ value: 'color-blue-500'
8585
8585
  }, {
8586
8586
  name: 'Indigo 500',
8587
- value: 'color.indigo.500'
8587
+ value: 'color-indigo-500'
8588
8588
  }, {
8589
8589
  name: 'Purple 500',
8590
- value: 'color.purple.500'
8590
+ value: 'color-purple-500'
8591
8591
  }, {
8592
8592
  name: 'Pink 500',
8593
- value: 'color.pink.500'
8593
+ value: 'color-pink-500'
8594
8594
  },
8595
8595
  // Light variants
8596
8596
  {
8597
8597
  name: 'Red 300',
8598
- value: 'color.red.300'
8598
+ value: 'color-red-300'
8599
8599
  }, {
8600
8600
  name: 'Orange 300',
8601
- value: 'color.orange.300'
8601
+ value: 'color-orange-300'
8602
8602
  }, {
8603
8603
  name: 'Yellow 300',
8604
- value: 'color.yellow.300'
8604
+ value: 'color-yellow-300'
8605
8605
  }, {
8606
8606
  name: 'Green 300',
8607
- value: 'color.green.300'
8607
+ value: 'color-green-300'
8608
8608
  }, {
8609
8609
  name: 'Blue 300',
8610
- value: 'color.blue.300'
8610
+ value: 'color-blue-300'
8611
8611
  }, {
8612
8612
  name: 'Indigo 300',
8613
- value: 'color.indigo.300'
8613
+ value: 'color-indigo-300'
8614
8614
  }, {
8615
8615
  name: 'Purple 300',
8616
- value: 'color.purple.300'
8616
+ value: 'color-purple-300'
8617
8617
  }, {
8618
8618
  name: 'Pink 300',
8619
- value: 'color.pink.300'
8619
+ value: 'color-pink-300'
8620
8620
  },
8621
8621
  // Dark variants
8622
8622
  {
8623
8623
  name: 'Red 700',
8624
- value: 'color.red.700'
8624
+ value: 'color-red-700'
8625
8625
  }, {
8626
8626
  name: 'Orange 700',
8627
- value: 'color.orange.700'
8627
+ value: 'color-orange-700'
8628
8628
  }, {
8629
8629
  name: 'Yellow 700',
8630
- value: 'color.yellow.700'
8630
+ value: 'color-yellow-700'
8631
8631
  }, {
8632
8632
  name: 'Green 700',
8633
- value: 'color.green.700'
8633
+ value: 'color-green-700'
8634
8634
  }, {
8635
8635
  name: 'Blue 700',
8636
- value: 'color.blue.700'
8636
+ value: 'color-blue-700'
8637
8637
  }, {
8638
8638
  name: 'Indigo 700',
8639
- value: 'color.indigo.700'
8639
+ value: 'color-indigo-700'
8640
8640
  }, {
8641
8641
  name: 'Purple 700',
8642
- value: 'color.purple.700'
8642
+ value: 'color-purple-700'
8643
8643
  }, {
8644
8644
  name: 'Pink 700',
8645
- value: 'color.pink.700'
8645
+ value: 'color-pink-700'
8646
8646
  },
8647
8647
  // Grays
8648
8648
  {
8649
8649
  name: 'Gray 100',
8650
- value: 'color.gray.100'
8650
+ value: 'color-gray-100'
8651
8651
  }, {
8652
8652
  name: 'Gray 300',
8653
- value: 'color.gray.300'
8653
+ value: 'color-gray-300'
8654
8654
  }, {
8655
8655
  name: 'Gray 500',
8656
- value: 'color.gray.500'
8656
+ value: 'color-gray-500'
8657
8657
  }, {
8658
8658
  name: 'Gray 700',
8659
- value: 'color.gray.700'
8659
+ value: 'color-gray-700'
8660
8660
  }, {
8661
8661
  name: 'Gray 900',
8662
- value: 'color.gray.900'
8662
+ value: 'color-gray-900'
8663
8663
  },
8664
8664
  // Special colors
8665
8665
  {
8666
8666
  name: 'White',
8667
- value: 'color.white'
8667
+ value: 'color-white'
8668
8668
  }, {
8669
8669
  name: 'Black',
8670
- value: 'color.black'
8670
+ value: 'color-black'
8671
8671
  }, {
8672
8672
  name: 'Transparent',
8673
8673
  value: 'transparent'
@@ -8721,21 +8721,21 @@
8721
8721
  // Combine styles
8722
8722
  var containerStyles = Object.assign({}, DefaultColorInputStyles.container, views == null ? void 0 : views.container);
8723
8723
  var triggerStyles = Object.assign({}, DefaultColorInputStyles.trigger, Sizes$1[size], Shapes$1[shape], Variants[variant], error && {
8724
- borderColor: 'color.red.500'
8724
+ borderColor: 'color-red-500'
8725
8725
  }, isDisabled && {
8726
8726
  opacity: 0.6,
8727
8727
  cursor: 'not-allowed'
8728
8728
  }, isFocused && {
8729
- borderColor: 'color.blue.500',
8729
+ borderColor: 'color-blue-500',
8730
8730
  boxShadow: '0 0 0 3px rgba(59, 130, 246, 0.1)'
8731
8731
  }, isHovered && !isDisabled && {
8732
- borderColor: 'color.gray.400'
8732
+ borderColor: 'color-gray-400'
8733
8733
  }, views == null ? void 0 : views.trigger, shadow && shadow);
8734
8734
  var dropdownStyles = Object.assign({}, DefaultColorInputStyles.dropdown, views == null ? void 0 : views.dropdown);
8735
8735
  var colorGridStyles = Object.assign({}, DefaultColorInputStyles.colorGrid, views == null ? void 0 : views.colorGrid);
8736
8736
  var recentColorsStyles = Object.assign({}, DefaultColorInputStyles.recentColors, views == null ? void 0 : views.recentColors);
8737
8737
  // Get display color for the selected color swatch
8738
- var displayColor = selectedColor || 'color.gray.200';
8738
+ var displayColor = selectedColor || 'color-gray-200';
8739
8739
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, containerStyles, props), label && (/*#__PURE__*/React__default.createElement(Label, {
8740
8740
  htmlFor: id,
8741
8741
  size: size,
@@ -8763,10 +8763,10 @@
8763
8763
  backgroundColor: displayColor,
8764
8764
  borderWidth: "1px",
8765
8765
  borderStyle: "solid",
8766
- borderColor: "color.gray.300"
8766
+ borderColor: "color-gray-300"
8767
8767
  }), !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(ChevronIcon, {
8768
8768
  widthHeight: 16,
8769
- color: "color.gray.500",
8769
+ color: "color-gray-500",
8770
8770
  orientation: isOpen ? 'up' : 'down'
8771
8771
  }))), isOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
8772
8772
  ref: dropdownRef
@@ -8778,14 +8778,14 @@
8778
8778
  backgroundColor: colorOption.value,
8779
8779
  borderWidth: "2px",
8780
8780
  borderStyle: "solid",
8781
- borderColor: selectedColor === colorOption.value ? 'color.blue.500' : 'transparent',
8781
+ borderColor: selectedColor === colorOption.value ? 'color-blue-500' : 'transparent',
8782
8782
  cursor: "pointer",
8783
8783
  transition: "all 0.2s ease",
8784
8784
  onClick: () => handleColorSelect(colorOption.value),
8785
8785
  title: colorOption.name,
8786
8786
  _hover: {
8787
8787
  transform: 'scale(1.1)',
8788
- borderColor: 'color.gray.400'
8788
+ borderColor: 'color-gray-400'
8789
8789
  }
8790
8790
  }, views == null ? void 0 : views.colorSwatch))))), showRecentColors && recentColors.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.Vertical, {
8791
8791
  gap: 8,
@@ -8793,7 +8793,7 @@
8793
8793
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
8794
8794
  fontSize: "12px",
8795
8795
  fontWeight: "500",
8796
- color: "color.gray.600"
8796
+ color: "color-gray-600"
8797
8797
  }, "Recent Colors"), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
8798
8798
  gap: 4,
8799
8799
  flexWrap: "wrap"
@@ -8805,14 +8805,14 @@
8805
8805
  backgroundColor: color,
8806
8806
  borderWidth: "1px",
8807
8807
  borderStyle: "solid",
8808
- borderColor: selectedColor === color ? 'color.blue.500' : 'color.gray.300',
8808
+ borderColor: selectedColor === color ? 'color-blue-500' : 'color-gray-300',
8809
8809
  cursor: "pointer",
8810
8810
  transition: "all 0.2s ease",
8811
8811
  onClick: () => handleColorSelect(color),
8812
8812
  title: color,
8813
8813
  _hover: {
8814
8814
  transform: 'scale(1.1)',
8815
- borderColor: 'color.gray.400'
8815
+ borderColor: 'color-gray-400'
8816
8816
  }
8817
8817
  })))))), showCustomInput && (/*#__PURE__*/React__default.createElement(appStudio.Vertical, {
8818
8818
  gap: 8,
@@ -8820,7 +8820,7 @@
8820
8820
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
8821
8821
  fontSize: "12px",
8822
8822
  fontWeight: "500",
8823
- color: "color.gray.600"
8823
+ color: "color-gray-600"
8824
8824
  }, "Custom Color"), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
8825
8825
  gap: 8
8826
8826
  }, /*#__PURE__*/React__default.createElement(TextField, {
@@ -8834,24 +8834,24 @@
8834
8834
  views: views == null ? void 0 : views.customInput
8835
8835
  }), /*#__PURE__*/React__default.createElement(appStudio.View, {
8836
8836
  padding: "8px 12px",
8837
- backgroundColor: "color.blue.500",
8837
+ backgroundColor: "color-blue-500",
8838
8838
  borderRadius: "4px",
8839
8839
  cursor: "pointer",
8840
8840
  onClick: handleCustomColorSubmit,
8841
8841
  _hover: {
8842
- backgroundColor: 'color.blue.600'
8842
+ backgroundColor: 'color-blue-600'
8843
8843
  }
8844
8844
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
8845
- color: "color.white",
8845
+ color: "color-white",
8846
8846
  fontSize: "12px",
8847
8847
  fontWeight: "500"
8848
8848
  }, "Add"))))))), helperText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
8849
8849
  fontSize: "12px",
8850
- color: error ? 'color.red.500' : 'color.gray.600',
8850
+ color: error ? 'color-red-500' : 'color-gray-600',
8851
8851
  marginTop: "4px"
8852
8852
  }, views == null ? void 0 : views.helperText), helperText)), error && typeof error === 'string' && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
8853
8853
  fontSize: "12px",
8854
- color: "color.red.500",
8854
+ color: "color-red-500",
8855
8855
  marginTop: "4px"
8856
8856
  }, views == null ? void 0 : views.error), error)));
8857
8857
  };
@@ -10421,7 +10421,7 @@
10421
10421
  borderRadius: 4,
10422
10422
  position: "absolute",
10423
10423
  flexDirection: "column",
10424
- backgroundColor: "color.white",
10424
+ backgroundColor: "color-white",
10425
10425
  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"
10426
10426
  }, views['dropDown']), options.map(option => (/*#__PURE__*/React__default.createElement(DropDownItem, Object.assign({
10427
10427
  key: option.code,
@@ -10471,7 +10471,7 @@
10471
10471
  getColor,
10472
10472
  themeMode
10473
10473
  } = appStudio.useTheme();
10474
- var IconColor = getColor('color.blueGray.700', {
10474
+ var IconColor = getColor('color-blueGray-700', {
10475
10475
  themeMode: elementMode ? elementMode : themeMode
10476
10476
  });
10477
10477
  var handleFocus = () => setIsFocused(true);
@@ -10512,7 +10512,7 @@
10512
10512
  },
10513
10513
  fontSize: appStudio.Typography.fontSizes[size],
10514
10514
  backgroundColor: 'transparent',
10515
- color: isDisabled ? 'color.trueGray.600' : 'color.blueGray.700',
10515
+ color: isDisabled ? 'color-trueGray-600' : 'color-blueGray-700',
10516
10516
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'pointer'
10517
10517
  }, views['field']);
10518
10518
  return /*#__PURE__*/React__default.createElement(FieldContainer, {
@@ -10529,17 +10529,17 @@
10529
10529
  shadow: shadow,
10530
10530
  variant: variant,
10531
10531
  value: value,
10532
- color: 'theme.primary',
10532
+ color: 'theme-primary',
10533
10533
  isDisabled: isDisabled,
10534
10534
  isReadOnly: isReadOnly,
10535
10535
  isFocused: isFocused,
10536
10536
  showLabel: showLabel,
10537
10537
  _hover: !isDisabled && !error ? {
10538
- borderColor: 'theme.primary'
10538
+ borderColor: 'theme-primary'
10539
10539
  } : undefined
10540
10540
  }, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
10541
10541
  htmlFor: id,
10542
- color: 'theme.primary',
10542
+ color: 'theme-primary',
10543
10543
  error: error
10544
10544
  }, views), label)), /*#__PURE__*/React__default.createElement(CountrySelector, Object.assign({
10545
10545
  id: id,
@@ -10656,7 +10656,7 @@
10656
10656
  },
10657
10657
  fontSize: appStudio.Typography.fontSizes[size],
10658
10658
  backgroundColor: 'transparent',
10659
- color: isDisabled ? 'color.trueGray.600' : 'color.blueGray.700',
10659
+ color: isDisabled ? 'color-trueGray-600' : 'color-blueGray-700',
10660
10660
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'pointer'
10661
10661
  }, views['field']);
10662
10662
  return /*#__PURE__*/React__default.createElement(FieldContainer, {
@@ -10670,7 +10670,7 @@
10670
10670
  shape: shape,
10671
10671
  views: views,
10672
10672
  shadow: shadow,
10673
- color: 'theme.primary',
10673
+ color: 'theme-primary',
10674
10674
  variant: variant,
10675
10675
  value: date,
10676
10676
  isHovered: isHovered,
@@ -10682,7 +10682,7 @@
10682
10682
  onMouseLeave: handleHover
10683
10683
  }, /*#__PURE__*/React__default.createElement(FieldWrapper, null, showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
10684
10684
  htmlFor: id,
10685
- color: 'theme.primary',
10685
+ color: 'theme-primary',
10686
10686
  error: error
10687
10687
  }, views), label)), /*#__PURE__*/React__default.createElement(DatePickerContent, Object.assign({
10688
10688
  id: id,
@@ -10910,7 +10910,7 @@
10910
10910
  }, 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({
10911
10911
  weight: "medium",
10912
10912
  flexGrow: 1,
10913
- color: selectedItem.label === placeholder ? 'color.gray.500' : 'color.gray.800',
10913
+ color: selectedItem.label === placeholder ? 'color-gray-500' : 'color-gray-800',
10914
10914
  style: {
10915
10915
  whiteSpace: 'nowrap',
10916
10916
  overflow: 'hidden',
@@ -10922,11 +10922,11 @@
10922
10922
  }, right, /*#__PURE__*/React__default.createElement(ChevronIcon, {
10923
10923
  widthHeight: 16,
10924
10924
  orientation: isDropdownVisible ? 'up' : 'down',
10925
- color: "color.gray.500"
10925
+ color: "color-gray-500"
10926
10926
  })))), isDropdownVisible && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
10927
10927
  ref: dropdownRef,
10928
10928
  id: "combobox-dropdown",
10929
- backgroundColor: "color.white",
10929
+ backgroundColor: "color-white",
10930
10930
  boxShadow: "rgba(0, 0, 0, 0.16) 0px 4px 16px",
10931
10931
  overflowY: "auto",
10932
10932
  borderRadius: "8px",
@@ -10947,7 +10947,7 @@
10947
10947
  isClearable: false,
10948
10948
  left: /*#__PURE__*/React__default.createElement(SearchIcon, {
10949
10949
  widthHeight: 16,
10950
- color: "color.gray.400"
10950
+ color: "color-gray-400"
10951
10951
  }),
10952
10952
  views: {
10953
10953
  container: Object.assign({
@@ -10967,19 +10967,19 @@
10967
10967
  padding: "8px 12px",
10968
10968
  cursor: "pointer",
10969
10969
  borderRadius: 4,
10970
- backgroundColor: index === highlightedIndex ? 'color.gray.100' : 'transparent',
10970
+ backgroundColor: index === highlightedIndex ? 'color-gray-100' : 'transparent',
10971
10971
  onMouseEnter: () => setHighlightedIndex(index),
10972
10972
  onClick: () => handleSelect(item),
10973
10973
  transition: "background-color 0.2s"
10974
10974
  }, views == null ? void 0 : views.item), /*#__PURE__*/React__default.createElement(appStudio.Text, {
10975
- color: "color.gray.800"
10975
+ color: "color-gray-800"
10976
10976
  }, 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, {
10977
10977
  widthHeight: 16,
10978
- color: "theme.primary"
10978
+ color: "theme-primary"
10979
10979
  })))))))), filteredItems.length === 0 && (/*#__PURE__*/React__default.createElement(appStudio.View, {
10980
10980
  padding: "12px"
10981
10981
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
10982
- color: "color.gray.500",
10982
+ color: "color-gray-500",
10983
10983
  align: "center"
10984
10984
  }, "No items found")))))));
10985
10985
  };
@@ -11259,30 +11259,30 @@
11259
11259
  alignItems: "center",
11260
11260
  gap: 6,
11261
11261
  padding: chipSize.padding,
11262
- backgroundColor: "color.gray.100.100",
11262
+ backgroundColor: "color-gray-100-100",
11263
11263
  borderRadius: "16px",
11264
11264
  borderWidth: "1px",
11265
11265
  borderStyle: "solid",
11266
- borderColor: "color.gray.100",
11266
+ borderColor: "color-gray-100",
11267
11267
  boxShadow: "0 1px 2px rgba(0,0,0,0.05)",
11268
11268
  transition: "all 0.2s cubic-bezier(0.4, 0, 0.2, 1)",
11269
11269
  opacity: isDisabled ? 0.6 : 1,
11270
11270
  _hover: !isDisabled && !isReadOnly ? {
11271
- backgroundColor: 'color.gray.100.200',
11272
- borderColor: 'color.gray.200',
11271
+ backgroundColor: 'color-gray-100-200',
11272
+ borderColor: 'color-gray-200',
11273
11273
  boxShadow: '0 4px 6px rgba(0,0,0,0.05)',
11274
11274
  transform: 'translateY(-1px)'
11275
11275
  } : {}
11276
11276
  }, views == null ? void 0 : views.tag), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
11277
11277
  fontSize: chipSize.fontSize,
11278
- color: isDisabled ? 'color.gray.100' : 'theme.primary',
11278
+ color: isDisabled ? 'color-gray-100' : 'theme-primary',
11279
11279
  whiteSpace: "nowrap"
11280
11280
  }, views == null ? void 0 : views.tagText), tag), isRemovable && !isDisabled && !isReadOnly && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
11281
11281
  cursor: "pointer",
11282
11282
  padding: "2px",
11283
11283
  borderRadius: "50%",
11284
11284
  transition: "all 0.2s ease",
11285
- backgroundColor: isRemoveHovered ? 'color.red.100' : 'transparent',
11285
+ backgroundColor: isRemoveHovered ? 'color-red-100' : 'transparent',
11286
11286
  opacity: isRemoveHovered ? 1 : 0.7,
11287
11287
  onMouseEnter: () => setIsRemoveHovered(true),
11288
11288
  onMouseLeave: () => setIsRemoveHovered(false),
@@ -11291,11 +11291,11 @@
11291
11291
  onRemove();
11292
11292
  },
11293
11293
  _hover: {
11294
- backgroundColor: 'color.red.50'
11294
+ backgroundColor: 'color-red-50'
11295
11295
  }
11296
11296
  }, views == null ? void 0 : views.tagRemove), /*#__PURE__*/React__default.createElement(CloseIcon, {
11297
11297
  widthHeight: chipSize.iconSize,
11298
- color: isRemoveHovered ? 'color.red.500' : 'color.gray.400'
11298
+ color: isRemoveHovered ? 'color-red-500' : 'color-gray-400'
11299
11299
  }))));
11300
11300
  };
11301
11301
  /**
@@ -11350,7 +11350,7 @@
11350
11350
  outline: 'none',
11351
11351
  backgroundColor: 'transparent',
11352
11352
  fontSize: appStudio.Typography.fontSizes[size],
11353
- color: isDisabled ? 'color.gray.400' : 'color.gray.800',
11353
+ color: isDisabled ? 'color-gray-400' : 'color-gray-800',
11354
11354
  flex: 1,
11355
11355
  minWidth: '120px'
11356
11356
  }, views == null ? void 0 : views.input);
@@ -11411,7 +11411,7 @@
11411
11411
  autoComplete: "off"
11412
11412
  }, inputStyles))), isMaxReached && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
11413
11413
  fontSize: appStudio.Typography.fontSizes[size],
11414
- color: "color.gray.500",
11414
+ color: "color-gray-500",
11415
11415
  fontStyle: "italic"
11416
11416
  }, views == null ? void 0 : views.placeholder), "Maximum ", maxTags, " tags reached")))), right));
11417
11417
  };
@@ -11860,7 +11860,7 @@
11860
11860
  views: views,
11861
11861
  variant: variant,
11862
11862
  value: slot.char || '',
11863
- color: 'theme.primary',
11863
+ color: 'theme-primary',
11864
11864
  isHovered: isHovered,
11865
11865
  isDisabled: isDisabled,
11866
11866
  isReadOnly: isReadOnly,
@@ -11880,13 +11880,13 @@
11880
11880
  }, views.text), type === 'password' ? '•' : slot.char)) : slot.placeholderChar ? (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
11881
11881
  textAlign: "center",
11882
11882
  fontSize: size === 'xs' ? '14px' : size === 'sm' ? '16px' : size === 'md' ? '18px' : size === 'lg' ? '20px' : '24px',
11883
- color: "color.gray.400",
11883
+ color: "color-gray-400",
11884
11884
  opacity: 0.5
11885
11885
  }, views.text), slot.placeholderChar)) : null, slot.hasFakeCaret && (/*#__PURE__*/React__default.createElement(appStudio.View, {
11886
11886
  position: "absolute",
11887
11887
  width: "2px",
11888
11888
  height: "60%",
11889
- backgroundColor: "theme.primary",
11889
+ backgroundColor: "theme-primary",
11890
11890
  animation: "blink 1s step-start infinite",
11891
11891
  style: {
11892
11892
  animationName: 'blink',
@@ -11923,7 +11923,7 @@
11923
11923
  views: views
11924
11924
  }, props), showLabel && (/*#__PURE__*/React__default.createElement(FieldLabel, Object.assign({
11925
11925
  htmlFor: id,
11926
- color: 'theme.primary',
11926
+ color: 'theme-primary',
11927
11927
  error: error
11928
11928
  }, views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.View, {
11929
11929
  ref: containerRef,
@@ -12421,10 +12421,10 @@
12421
12421
  display: 'flex',
12422
12422
  flexDirection: 'column',
12423
12423
  height: '100%',
12424
- backgroundColor: 'color.white',
12424
+ backgroundColor: 'color-white',
12425
12425
  borderRadius: '12px',
12426
12426
  border: '1px solid',
12427
- borderColor: 'color.gray.200',
12427
+ borderColor: 'color-gray-200',
12428
12428
  overflow: 'hidden',
12429
12429
  fontFamily: 'Inter, system-ui, sans-serif',
12430
12430
  position: 'relative'
@@ -12432,14 +12432,14 @@
12432
12432
  header: {
12433
12433
  padding: '16px',
12434
12434
  borderBottom: '1px solid',
12435
- borderBottomColor: 'color.gray.200',
12436
- backgroundColor: 'color.gray.50',
12435
+ borderBottomColor: 'color-gray-200',
12436
+ backgroundColor: 'color-gray-50',
12437
12437
  flexShrink: 0
12438
12438
  },
12439
12439
  messageList: {
12440
12440
  flex: 1,
12441
12441
  overflowY: 'auto',
12442
- backgroundColor: 'color.white',
12442
+ backgroundColor: 'color-white',
12443
12443
  minHeight: '300px',
12444
12444
  maxHeight: '600px'
12445
12445
  },
@@ -12453,15 +12453,15 @@
12453
12453
  inputArea: {
12454
12454
  padding: '16px',
12455
12455
  borderTop: '1px solid',
12456
- borderTopColor: 'color.gray.200',
12457
- backgroundColor: 'color.gray.50',
12456
+ borderTopColor: 'color-gray-200',
12457
+ backgroundColor: 'color-gray-50',
12458
12458
  flexShrink: 0
12459
12459
  },
12460
12460
  attachmentArea: {
12461
12461
  padding: '12px 16px',
12462
12462
  borderTop: '1px solid',
12463
- borderTopColor: 'color.gray.200',
12464
- backgroundColor: 'color.gray.100',
12463
+ borderTopColor: 'color-gray-200',
12464
+ backgroundColor: 'color-gray-100',
12465
12465
  flexShrink: 0
12466
12466
  },
12467
12467
  message: {
@@ -12471,29 +12471,29 @@
12471
12471
  wordBreak: 'break-word'
12472
12472
  },
12473
12473
  userMessage: {
12474
- backgroundColor: 'color.blue.500',
12474
+ backgroundColor: 'color-blue-500',
12475
12475
  color: 'white',
12476
12476
  alignSelf: 'flex-end',
12477
12477
  marginLeft: 'auto'
12478
12478
  },
12479
12479
  botMessage: {
12480
- backgroundColor: 'color.gray.100',
12481
- color: 'color.gray.900',
12480
+ backgroundColor: 'color-gray-100',
12481
+ color: 'color-gray-900',
12482
12482
  alignSelf: 'flex-start',
12483
12483
  marginRight: 'auto'
12484
12484
  },
12485
12485
  thoughtMessage: {
12486
- backgroundColor: 'color.yellow.50',
12487
- color: 'color.yellow.800',
12486
+ backgroundColor: 'color-yellow-50',
12487
+ color: 'color-yellow-800',
12488
12488
  border: '1px solid',
12489
- borderColor: 'color.yellow.200',
12489
+ borderColor: 'color-yellow-200',
12490
12490
  fontStyle: 'italic'
12491
12491
  },
12492
12492
  loadingMessage: {
12493
- backgroundColor: 'color.gray.50',
12494
- color: 'color.gray.600',
12493
+ backgroundColor: 'color-gray-50',
12494
+ color: 'color-gray-600',
12495
12495
  border: '1px dashed',
12496
- borderColor: 'color.gray.300'
12496
+ borderColor: 'color-gray-300'
12497
12497
  },
12498
12498
  messageHeader: {
12499
12499
  marginBottom: '4px'
@@ -12506,14 +12506,14 @@
12506
12506
  },
12507
12507
  timestamp: {
12508
12508
  fontSize: '12px',
12509
- color: 'color.gray.500',
12509
+ color: 'color-gray-500',
12510
12510
  marginTop: '4px'
12511
12511
  },
12512
12512
  avatar: {
12513
12513
  width: '32px',
12514
12514
  height: '32px',
12515
12515
  borderRadius: '50%',
12516
- backgroundColor: 'color.gray.300',
12516
+ backgroundColor: 'color-gray-300',
12517
12517
  display: 'flex',
12518
12518
  alignItems: 'center',
12519
12519
  justifyContent: 'center',
@@ -12523,20 +12523,20 @@
12523
12523
  flexShrink: 0
12524
12524
  },
12525
12525
  userAvatar: {
12526
- backgroundColor: 'color.blue.500'
12526
+ backgroundColor: 'color-blue-500'
12527
12527
  },
12528
12528
  botAvatar: {
12529
- backgroundColor: 'color.green.500'
12529
+ backgroundColor: 'color-green-500'
12530
12530
  },
12531
12531
  attachmentPreview: {
12532
12532
  position: 'relative',
12533
12533
  display: 'inline-block',
12534
12534
  width: '60px',
12535
12535
  height: '60px',
12536
- backgroundColor: 'color.gray.100',
12536
+ backgroundColor: 'color-gray-100',
12537
12537
  borderRadius: '8px',
12538
12538
  border: '1px solid',
12539
- borderColor: 'color.gray.200',
12539
+ borderColor: 'color-gray-200',
12540
12540
  overflow: 'hidden',
12541
12541
  cursor: 'pointer'
12542
12542
  },
@@ -12547,7 +12547,7 @@
12547
12547
  width: '20px',
12548
12548
  height: '20px',
12549
12549
  borderRadius: '50%',
12550
- backgroundColor: 'color.black.900',
12550
+ backgroundColor: 'color-black-900',
12551
12551
  color: 'white',
12552
12552
  border: 'none',
12553
12553
  cursor: 'pointer',
@@ -12562,7 +12562,7 @@
12562
12562
  alignItems: 'center',
12563
12563
  gap: '8px',
12564
12564
  padding: '12px',
12565
- backgroundColor: 'color.gray.100',
12565
+ backgroundColor: 'color-gray-100',
12566
12566
  borderRadius: '8px',
12567
12567
  maxWidth: '80px',
12568
12568
  alignSelf: 'flex-start'
@@ -12571,27 +12571,27 @@
12571
12571
  width: '6px',
12572
12572
  height: '6px',
12573
12573
  borderRadius: '50%',
12574
- backgroundColor: 'color.gray.500'
12574
+ backgroundColor: 'color-gray-500'
12575
12575
  },
12576
12576
  functionCall: {
12577
- backgroundColor: 'color.purple.50',
12577
+ backgroundColor: 'color-purple-50',
12578
12578
  border: '1px solid',
12579
- borderColor: 'color.purple.200',
12579
+ borderColor: 'color-purple-200',
12580
12580
  borderRadius: '8px',
12581
12581
  padding: '12px',
12582
12582
  marginTop: '8px'
12583
12583
  },
12584
12584
  functionResponse: {
12585
- backgroundColor: 'color.green.50',
12585
+ backgroundColor: 'color-green-50',
12586
12586
  border: '1px solid',
12587
- borderColor: 'color.green.200',
12587
+ borderColor: 'color-green-200',
12588
12588
  borderRadius: '8px',
12589
12589
  padding: '12px',
12590
12590
  marginTop: '8px'
12591
12591
  },
12592
12592
  codeBlock: {
12593
- backgroundColor: 'color.gray.900',
12594
- color: 'color.gray.100',
12593
+ backgroundColor: 'color-gray-900',
12594
+ color: 'color-gray-100',
12595
12595
  borderRadius: '8px',
12596
12596
  padding: '12px',
12597
12597
  fontFamily: 'Monaco, Consolas, monospace',
@@ -12604,13 +12604,13 @@
12604
12604
  borderRadius: '8px',
12605
12605
  overflow: 'hidden',
12606
12606
  border: '1px solid',
12607
- borderColor: 'color.gray.200'
12607
+ borderColor: 'color-gray-200'
12608
12608
  },
12609
12609
  errorMessage: {
12610
- backgroundColor: 'color.red.50',
12611
- color: 'color.red.800',
12610
+ backgroundColor: 'color-red-50',
12611
+ color: 'color-red-800',
12612
12612
  border: '1px solid',
12613
- borderColor: 'color.red.200',
12613
+ borderColor: 'color-red-200',
12614
12614
  borderRadius: '8px',
12615
12615
  padding: '12px',
12616
12616
  margin: '8px 16px'
@@ -12630,8 +12630,8 @@
12630
12630
  runProgress: {
12631
12631
  padding: '12px 16px',
12632
12632
  borderBottom: '1px solid',
12633
- borderBottomColor: 'color.gray.200',
12634
- backgroundColor: 'color.gray.50'
12633
+ borderBottomColor: 'color-gray-200',
12634
+ backgroundColor: 'color-gray-50'
12635
12635
  }
12636
12636
  };
12637
12637
  /**
@@ -12642,7 +12642,7 @@
12642
12642
  width: '100%',
12643
12643
  maxWidth: '100%',
12644
12644
  borderRadius: '12px',
12645
- backgroundColor: 'color.white',
12645
+ backgroundColor: 'color-white',
12646
12646
  transition: 'all 0.2s ease',
12647
12647
  media: {
12648
12648
  mobile: {
@@ -12654,10 +12654,10 @@
12654
12654
  width: '100%',
12655
12655
  padding: '12px',
12656
12656
  borderRadius: '12px',
12657
- backgroundColor: 'color.white',
12657
+ backgroundColor: 'color-white',
12658
12658
  borderWidth: '1px',
12659
12659
  borderStyle: 'solid',
12660
- borderColor: 'color.gray.200',
12660
+ borderColor: 'color-gray-200',
12661
12661
  media: {
12662
12662
  mobile: {
12663
12663
  padding: '10px',
@@ -12672,8 +12672,8 @@
12672
12672
  padding: '8px 12px',
12673
12673
  fontSize: '14px',
12674
12674
  lineHeight: '15px',
12675
- color: 'color.gray.900',
12676
- backgroundColor: 'color.white',
12675
+ color: 'color-gray-900',
12676
+ backgroundColor: 'color-white',
12677
12677
  border: 'none',
12678
12678
  outline: 'none',
12679
12679
  resize: 'none',
@@ -12698,22 +12698,22 @@
12698
12698
  gap: '6px',
12699
12699
  padding: '4px 8px',
12700
12700
  borderRadius: '6px',
12701
- backgroundColor: 'color.gray.100'
12701
+ backgroundColor: 'color-gray-100'
12702
12702
  },
12703
12703
  attachmentName: {
12704
12704
  fontSize: '12px',
12705
12705
  fontWeight: '500',
12706
- color: 'color.gray.700'
12706
+ color: 'color-gray-700'
12707
12707
  },
12708
12708
  attachmentSize: {
12709
12709
  fontSize: '10px',
12710
- color: 'color.gray.500'
12710
+ color: 'color-gray-500'
12711
12711
  },
12712
12712
  attachmentRemove: {
12713
12713
  padding: '2px',
12714
12714
  borderRadius: '50%',
12715
12715
  cursor: 'pointer',
12716
- color: 'color.gray.500',
12716
+ color: 'color-gray-500',
12717
12717
  backgroundColor: 'transparent',
12718
12718
  transition: 'all 0.2s ease'
12719
12719
  },
@@ -12722,8 +12722,8 @@
12722
12722
  minWidth: '36px',
12723
12723
  padding: '0 12px',
12724
12724
  borderRadius: '8px',
12725
- backgroundColor: 'theme.primary',
12726
- color: 'color.white',
12725
+ backgroundColor: 'theme-primary',
12726
+ color: 'color-white',
12727
12727
  transition: 'all 0.2s ease',
12728
12728
  media: {
12729
12729
  mobile: {
@@ -12738,7 +12738,7 @@
12738
12738
  padding: '0 12px',
12739
12739
  borderRadius: '8px',
12740
12740
  backgroundColor: 'transparent',
12741
- color: 'color.gray.500',
12741
+ color: 'color-gray-500',
12742
12742
  transition: 'all 0.2s ease',
12743
12743
  media: {
12744
12744
  mobile: {
@@ -12752,7 +12752,7 @@
12752
12752
  padding: '0 12px',
12753
12753
  borderRadius: '8px',
12754
12754
  backgroundColor: 'transparent',
12755
- color: 'color.gray.500',
12755
+ color: 'color-gray-500',
12756
12756
  transition: 'all 0.2s ease'
12757
12757
  },
12758
12758
  loadingIndicator: {
@@ -12807,16 +12807,16 @@
12807
12807
  */
12808
12808
  var Variants$1 = {
12809
12809
  default: {
12810
- backgroundColor: 'color.white',
12810
+ backgroundColor: 'color-white',
12811
12811
  borderWidth: '1px',
12812
12812
  borderStyle: 'solid',
12813
- borderColor: 'color.gray.200'
12813
+ borderColor: 'color-gray-200'
12814
12814
  },
12815
12815
  outline: {
12816
12816
  backgroundColor: 'transparent',
12817
12817
  borderWidth: '1px',
12818
12818
  borderStyle: 'solid',
12819
- borderColor: 'color.gray.300'
12819
+ borderColor: 'color-gray-300'
12820
12820
  },
12821
12821
  none: {
12822
12822
  backgroundColor: 'transparent',
@@ -13162,7 +13162,7 @@
13162
13162
  gap: "6px",
13163
13163
  padding: "4px 8px",
13164
13164
  borderRadius: "6px",
13165
- backgroundColor: "color.gray.100",
13165
+ backgroundColor: "color-gray-100",
13166
13166
  animate: {
13167
13167
  from: {
13168
13168
  opacity: 0,
@@ -13192,17 +13192,17 @@
13192
13192
  })), isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
13193
13193
  width: "60px",
13194
13194
  height: "60px",
13195
- backgroundColor: "color.gray.200"
13195
+ backgroundColor: "color-gray-200"
13196
13196
  }, /*#__PURE__*/React__default.createElement(AudioIcon, {
13197
13197
  widthHeight: 24,
13198
- color: "color.black"
13198
+ color: "color-black"
13199
13199
  }))), !isImage && !isVideo && !isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
13200
13200
  width: "60px",
13201
13201
  height: "60px",
13202
- backgroundColor: "color.gray.200"
13202
+ backgroundColor: "color-gray-200"
13203
13203
  }, /*#__PURE__*/React__default.createElement(FileIcon, {
13204
13204
  widthHeight: 24,
13205
- color: "color.black"
13205
+ color: "color-black"
13206
13206
  }))), onRemove && (/*#__PURE__*/React__default.createElement(appStudio.Button, Object.assign({}, DefaultAgentChatStyles.attachmentRemove, {
13207
13207
  onClick: e => {
13208
13208
  e.stopPropagation();
@@ -13500,7 +13500,7 @@
13500
13500
  position: "absolute",
13501
13501
  top: "8px",
13502
13502
  left: "8px",
13503
- color: "color.gray.400",
13503
+ color: "color-gray-400",
13504
13504
  pointerEvents: "none",
13505
13505
  fontSize: "14px",
13506
13506
  zIndex: 1
@@ -13523,16 +13523,16 @@
13523
13523
  whiteSpace: "pre-wrap",
13524
13524
  wordBreak: "break-word",
13525
13525
  fontSize: "14px",
13526
- color: "color.gray.900",
13526
+ color: "color-gray-900",
13527
13527
  backgroundColor: "transparent"
13528
13528
  }, views == null ? void 0 : views.input))), showMentions && filteredMentions.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
13529
13529
  position: "fixed",
13530
13530
  left: mentionPosition.x,
13531
13531
  top: mentionPosition.y,
13532
13532
  width: ((_containerRef$current = containerRef.current) == null ? void 0 : _containerRef$current.offsetWidth) || 300,
13533
- backgroundColor: "color.white",
13533
+ backgroundColor: "color-white",
13534
13534
  border: "2px solid",
13535
- borderColor: "color.blue.300",
13535
+ borderColor: "color-blue-300",
13536
13536
  borderRadius: "8px",
13537
13537
  boxShadow: "0 8px 24px rgba(0, 0, 0, 0.15)",
13538
13538
  zIndex: 9999,
@@ -13546,7 +13546,7 @@
13546
13546
  type: "button",
13547
13547
  width: "100%",
13548
13548
  padding: "12px 16px",
13549
- backgroundColor: index === selectedMentionIndex ? 'color.blue.50' : 'transparent',
13549
+ backgroundColor: index === selectedMentionIndex ? 'color-blue-50' : 'transparent',
13550
13550
  border: "none",
13551
13551
  cursor: "pointer",
13552
13552
  textAlign: "left",
@@ -13554,17 +13554,17 @@
13554
13554
  onClick: () => handleMentionSelect(mention),
13555
13555
  onMouseEnter: () => setSelectedMentionIndex(index),
13556
13556
  _hover: {
13557
- backgroundColor: 'color.blue.50'
13557
+ backgroundColor: 'color-blue-50'
13558
13558
  }
13559
13559
  }, views == null ? void 0 : views.mentionItem), /*#__PURE__*/React__default.createElement(appStudio.Vertical, {
13560
13560
  gap: 4
13561
13561
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
13562
13562
  fontSize: "14px",
13563
- color: "color.gray.900",
13563
+ color: "color-gray-900",
13564
13564
  fontWeight: "medium"
13565
13565
  }, mentionTrigger, mention.name), mention.description && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
13566
13566
  fontSize: "12px",
13567
- color: "color.gray.600"
13567
+ color: "color-gray-600"
13568
13568
  }, mention.description)))))), (/*#__PURE__*/React__default.createElement("div", {
13569
13569
  style: {
13570
13570
  fontSize: '8px',
@@ -13576,9 +13576,9 @@
13576
13576
  left: suggestionPosition.x,
13577
13577
  top: suggestionPosition.y,
13578
13578
  width: ((_containerRef$current2 = containerRef.current) == null ? void 0 : _containerRef$current2.offsetWidth) || 300,
13579
- backgroundColor: "color.white",
13579
+ backgroundColor: "color-white",
13580
13580
  border: "2px solid",
13581
- borderColor: "color.green.300",
13581
+ borderColor: "color-green-300",
13582
13582
  borderRadius: "8px",
13583
13583
  boxShadow: "0 8px 24px rgba(0, 0, 0, 0.15)",
13584
13584
  zIndex: 9998,
@@ -13592,7 +13592,7 @@
13592
13592
  type: "button",
13593
13593
  width: "100%",
13594
13594
  padding: "12px 16px",
13595
- backgroundColor: index === selectedSuggestionIndex ? 'color.blue.50' : 'transparent',
13595
+ backgroundColor: index === selectedSuggestionIndex ? 'color-blue-50' : 'transparent',
13596
13596
  border: "none",
13597
13597
  cursor: "pointer",
13598
13598
  textAlign: "left",
@@ -13600,17 +13600,17 @@
13600
13600
  onClick: () => handleSuggestionSelect(suggestion),
13601
13601
  onMouseEnter: () => setSelectedSuggestionIndex(index),
13602
13602
  _hover: {
13603
- backgroundColor: 'color.blue.50'
13603
+ backgroundColor: 'color-blue-50'
13604
13604
  }
13605
13605
  }, views == null ? void 0 : views.suggestionItem), /*#__PURE__*/React__default.createElement(appStudio.Vertical, {
13606
13606
  gap: 4
13607
13607
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
13608
13608
  fontSize: "14px",
13609
- color: "color.gray.900",
13609
+ color: "color-gray-900",
13610
13610
  fontWeight: "medium"
13611
13611
  }, suggestion.text), suggestion.description && (/*#__PURE__*/React__default.createElement(appStudio.Text, {
13612
13612
  fontSize: "12px",
13613
- color: "color.gray.600"
13613
+ color: "color-gray-600"
13614
13614
  }, suggestion.description)))))), (/*#__PURE__*/React__default.createElement("div", {
13615
13615
  style: {
13616
13616
  fontSize: '8px',
@@ -13644,17 +13644,17 @@
13644
13644
  type: "button",
13645
13645
  padding: "8px 12px",
13646
13646
  borderRadius: "4px",
13647
- backgroundColor: "color.gray.100",
13647
+ backgroundColor: "color-gray-100",
13648
13648
  border: "none",
13649
13649
  cursor: "pointer",
13650
13650
  transition: "all 0.2s ease",
13651
13651
  onClick: () => onSelect(example),
13652
13652
  _hover: {
13653
- backgroundColor: 'color.gray.200'
13653
+ backgroundColor: 'color-gray-200'
13654
13654
  }
13655
13655
  }, views == null ? void 0 : views.item), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
13656
13656
  fontSize: "14px",
13657
- color: "color.gray.700"
13657
+ color: "color-gray-700"
13658
13658
  }, views == null ? void 0 : views.text), example.text)))));
13659
13659
  };
13660
13660
 
@@ -13701,13 +13701,13 @@
13701
13701
  display: "flex",
13702
13702
  alignItems: "center",
13703
13703
  justifyContent: "center",
13704
- backgroundColor: recording ? 'theme.error' : 'color.gray.100',
13705
- color: recording ? 'color.white' : 'color.gray.600',
13704
+ backgroundColor: recording ? 'theme-error' : 'color-gray-100',
13705
+ color: recording ? 'color-white' : 'color-gray-600',
13706
13706
  borderRadius: "50%",
13707
13707
  border: "none",
13708
13708
  cursor: "pointer",
13709
13709
  _hover: {
13710
- backgroundColor: recording ? 'color.red.600' : 'color.gray.200'
13710
+ backgroundColor: recording ? 'color-red-600' : 'color-gray-200'
13711
13711
  }
13712
13712
  }, views.button), recording ? (/*#__PURE__*/React__default.createElement(StopIcon, {
13713
13713
  widthHeight: 16,
@@ -13845,7 +13845,7 @@
13845
13845
  animation: 'spin 1s linear infinite'
13846
13846
  }
13847
13847
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
13848
- color: "color.gray.500"
13848
+ color: "color-gray-500"
13849
13849
  }, loadingText))), /*#__PURE__*/React__default.createElement(appStudio.View, {
13850
13850
  position: "relative",
13851
13851
  width: "100%",
@@ -13860,7 +13860,7 @@
13860
13860
  }, contentStyles, containerStyles, {
13861
13861
  paddingHorizontal: 16,
13862
13862
  paddingVertical: 10,
13863
- backgroundColor: isDraggingOver ? 'color.blue.50' : undefined
13863
+ backgroundColor: isDraggingOver ? 'color-blue-50' : undefined
13864
13864
  }), /*#__PURE__*/React__default.createElement(AttachmentGroup, {
13865
13865
  files: uploadedFiles,
13866
13866
  sandboxId: sandboxId,
@@ -13921,10 +13921,10 @@
13921
13921
  // borderRadius: '8px',
13922
13922
  // backgroundColor: 'transparent',
13923
13923
  // border: '1px solid',
13924
- // borderColor: 'color.gray.300',
13924
+ // borderColor: 'color-gray-300',
13925
13925
  cursor: 'pointer',
13926
13926
  _hover: {
13927
- backgroundColor: 'color.gray.100'
13927
+ backgroundColor: 'color-gray-100'
13928
13928
  }
13929
13929
  }, views == null ? void 0 : views.fileButton)
13930
13930
  },
@@ -13938,7 +13938,7 @@
13938
13938
  },
13939
13939
  textProps: {
13940
13940
  fontSize: '14px',
13941
- color: 'color.gray.600'
13941
+ color: 'color-gray-600'
13942
13942
  },
13943
13943
  validateFile: file => {
13944
13944
  if (file.size > 50 * 1024 * 1024) {
@@ -13964,15 +13964,15 @@
13964
13964
  display: "flex",
13965
13965
  alignItems: "center",
13966
13966
  justifyContent: "center",
13967
- backgroundColor: isAgentRunning ? 'theme.error' : hasText ? 'theme.primary' : 'color.gray.300',
13968
- color: "color.white",
13967
+ backgroundColor: isAgentRunning ? 'theme-error' : hasText ? 'theme-primary' : 'color-gray-300',
13968
+ color: "color-white",
13969
13969
  borderRadius: shape === 'rounded' ? '50%' : 4,
13970
13970
  border: "none",
13971
13971
  cursor: hasText ? 'pointer' : 'not-allowed',
13972
13972
  disabled: !hasText || loading || disabled && !isAgentRunning,
13973
13973
  transition: "all 0.2s ease",
13974
13974
  _hover: {
13975
- backgroundColor: isAgentRunning ? 'color.red.600' : hasText ? 'color.blue.600' : 'color.gray.300'
13975
+ backgroundColor: isAgentRunning ? 'color-red-600' : hasText ? 'color-blue-600' : 'color-gray-300'
13976
13976
  }
13977
13977
  }, views == null ? void 0 : views.submitButton), isAgentRunning ? (/*#__PURE__*/React__default.createElement(StopIcon, {
13978
13978
  widthHeight: 16,
@@ -13981,13 +13981,13 @@
13981
13981
  })) : loading ? (/*#__PURE__*/React__default.createElement(Loader, {
13982
13982
  type: "quarter",
13983
13983
  size: 16,
13984
- color: "color.white"
13984
+ color: "color-white"
13985
13985
  })) : (/*#__PURE__*/React__default.createElement(SendIcon, {
13986
13986
  widthHeight: 16,
13987
13987
  color: "currentColor",
13988
13988
  filled: false
13989
13989
  }))), rightButtons)))), errorMessage && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
13990
- color: "theme.error",
13990
+ color: "theme-error",
13991
13991
  marginTop: "4px"
13992
13992
  }, views == null ? void 0 : views.bottomTip), errorMessage)));
13993
13993
  };
@@ -14053,7 +14053,7 @@
14053
14053
  return /*#__PURE__*/React__default.createElement(ColorInputView, Object.assign({}, colorInputStates, formProps));
14054
14054
  };
14055
14055
  /**
14056
- * Color input allows users to select a color from a predefined palette or enter a custom color.
14056
+ * Color input allows users to select a color from a predefined palette or enter a custom color-
14057
14057
  */
14058
14058
  var FormikColorInput = ColorInputComponent$1;
14059
14059
 
@@ -14444,14 +14444,14 @@
14444
14444
  var getSlider = themeMode => {
14445
14445
  return {
14446
14446
  default: {
14447
- backgroundColor: 'color.gray.200',
14447
+ backgroundColor: 'color-gray-200',
14448
14448
  transition: 'background-color 0.15s ease'
14449
14449
  },
14450
14450
  outline: {
14451
14451
  backgroundColor: 'transparent',
14452
14452
  borderWidth: 1,
14453
14453
  borderStyle: 'solid',
14454
- borderColor: 'color.gray.300',
14454
+ borderColor: 'color-gray-300',
14455
14455
  transition: 'border-color 0.15s ease'
14456
14456
  }
14457
14457
  };
@@ -14516,7 +14516,7 @@
14516
14516
  isDisabled = false,
14517
14517
  showValue = false,
14518
14518
  showTooltip = false,
14519
- backgroundColor = 'theme.primary',
14519
+ backgroundColor = 'theme-primary',
14520
14520
  label,
14521
14521
  helperText,
14522
14522
  themeMode: elementMode,
@@ -14551,7 +14551,7 @@
14551
14551
  var themeColor = getColorHex(backgroundColor, {
14552
14552
  themeMode: elementMode || themeMode
14553
14553
  });
14554
- var disabledColor = getColorHex('theme.disabled', {
14554
+ var disabledColor = getColorHex('theme-disabled', {
14555
14555
  themeMode: elementMode || themeMode
14556
14556
  });
14557
14557
  var trackColor = getColorHex(SliderVariants[variant].backgroundColor, {
@@ -14577,7 +14577,7 @@
14577
14577
  fontWeight: 500
14578
14578
  }, views.label), label), showValue && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
14579
14579
  fontSize: 14,
14580
- color: "color.blueGray.500"
14580
+ color: "color-blueGray-500"
14581
14581
  }, views.valueLabel), currentValue)))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
14582
14582
  ref: trackRef,
14583
14583
  position: "relative",
@@ -14626,7 +14626,7 @@
14626
14626
  top: "50%",
14627
14627
  left: thumbPositionPercent + "%",
14628
14628
  borderRadius: "50%",
14629
- backgroundColor: "color.white",
14629
+ backgroundColor: "color-white",
14630
14630
  boxShadow: "0 2px 4px rgba(0, 0, 0, 0.2)",
14631
14631
  border: "2px solid " + (isDisabled ? disabledColor : themeColor),
14632
14632
  transition: isDragging ? 'none' : 'transform 0.1s ease-in-out',
@@ -14642,8 +14642,8 @@
14642
14642
  transform: "translateX(-50%)",
14643
14643
  marginBottom: 8,
14644
14644
  padding: "4px 8px",
14645
- backgroundColor: "color.black",
14646
- color: "color.white",
14645
+ backgroundColor: "color-black",
14646
+ color: "color-white",
14647
14647
  borderRadius: 4,
14648
14648
  fontSize: 12,
14649
14649
  whiteSpace: "nowrap",
@@ -14667,7 +14667,7 @@
14667
14667
  fontWeight: 500
14668
14668
  }, views.label), label), showValue && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
14669
14669
  fontSize: 14,
14670
- color: "color.blueGray.500"
14670
+ color: "color-blueGray-500"
14671
14671
  }, views.valueLabel), currentValue)))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
14672
14672
  ref: trackRef,
14673
14673
  position: "relative",
@@ -14726,7 +14726,7 @@
14726
14726
  height: thumbSize + "px",
14727
14727
  borderRadius: "50%",
14728
14728
  backgroundColor: isDisabled ? disabledColor : themeColor,
14729
- border: "2px solid color.white",
14729
+ border: "2px solid color-white",
14730
14730
  boxShadow: "0 1px 3px rgba(0, 0, 0, 0.2)",
14731
14731
  cursor: isDisabled ? 'not-allowed' : 'grab',
14732
14732
  transform: isVertical ? 'translateX(-50%)' : 'translateY(-50%)',
@@ -14745,8 +14745,8 @@
14745
14745
  }, views == null ? void 0 : views.thumb), showTooltip && (isHovered || isDragging) && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
14746
14746
  position: "absolute",
14747
14747
  padding: "4px 8px",
14748
- backgroundColor: 'color.black',
14749
- color: 'color.white',
14748
+ backgroundColor: 'color-black',
14749
+ color: 'color-white',
14750
14750
  borderRadius: "4px",
14751
14751
  whiteSpace: "nowrap",
14752
14752
  zIndex: 3
@@ -15001,7 +15001,7 @@
15001
15001
  gap: "6px",
15002
15002
  padding: "4px 8px",
15003
15003
  borderRadius: "6px",
15004
- backgroundColor: "color.gray.100",
15004
+ backgroundColor: "color-gray-100",
15005
15005
  position: "relative",
15006
15006
  animate: {
15007
15007
  from: {
@@ -15036,19 +15036,19 @@
15036
15036
  })), isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
15037
15037
  width: "60px",
15038
15038
  height: "60px",
15039
- backgroundColor: "color.gray.200",
15039
+ backgroundColor: "color-gray-200",
15040
15040
  borderRadius: "4px"
15041
15041
  }, /*#__PURE__*/React__default.createElement(AudioIcon, {
15042
15042
  widthHeight: 24,
15043
- color: "color.black"
15043
+ color: "color-black"
15044
15044
  }))), !isImage && !isVideo && !isAudio && (/*#__PURE__*/React__default.createElement(appStudio.Center, {
15045
15045
  width: "60px",
15046
15046
  height: "60px",
15047
- backgroundColor: "color.gray.200",
15047
+ backgroundColor: "color-gray-200",
15048
15048
  borderRadius: "4px"
15049
15049
  }, /*#__PURE__*/React__default.createElement(FileIcon, {
15050
15050
  widthHeight: 24,
15051
- color: "color.black"
15051
+ color: "color-black"
15052
15052
  }))), onRemove && (/*#__PURE__*/React__default.createElement(appStudio.Button, {
15053
15053
  position: "absolute",
15054
15054
  top: "-4px",
@@ -15058,7 +15058,7 @@
15058
15058
  minWidth: "20px",
15059
15059
  minHeight: "20px",
15060
15060
  borderRadius: "50%",
15061
- backgroundColor: "color.red.500",
15061
+ backgroundColor: "color-red-500",
15062
15062
  color: "white",
15063
15063
  fontSize: 14,
15064
15064
  fontWeight: "bold",
@@ -15069,7 +15069,7 @@
15069
15069
  cursor: "pointer",
15070
15070
  border: "2px solid white",
15071
15071
  _hover: {
15072
- backgroundColor: 'color.red.600'
15072
+ backgroundColor: 'color-red-600'
15073
15073
  },
15074
15074
  onClick: e => {
15075
15075
  e.stopPropagation();
@@ -15142,7 +15142,7 @@
15142
15142
  display: "flex",
15143
15143
  alignItems: "center",
15144
15144
  justifyContent: "center",
15145
- backgroundColor: "color.gray.200",
15145
+ backgroundColor: "color-gray-200",
15146
15146
  cursor: "pointer",
15147
15147
  onClick: handleClick
15148
15148
  }, isImage && (/*#__PURE__*/React__default.createElement(appStudio.Image, {
@@ -15169,7 +15169,7 @@
15169
15169
  onClick: e => e.stopPropagation()
15170
15170
  })), !isImage && !isVideo && !isAudio && (/*#__PURE__*/React__default.createElement(FileIcon, {
15171
15171
  widthHeight: 24,
15172
- color: "color.gray.600"
15172
+ color: "color-gray-600"
15173
15173
  })));
15174
15174
  };
15175
15175
 
@@ -15304,13 +15304,13 @@
15304
15304
  fontSize: '18px',
15305
15305
  fontWeight: '600',
15306
15306
  lineHeight: '24px',
15307
- color: 'color.gray.900'
15307
+ color: 'color-gray-900'
15308
15308
  },
15309
15309
  body: {
15310
15310
  fontSize: '16px',
15311
15311
  fontWeight: '400',
15312
15312
  lineHeight: '24px',
15313
- color: 'color.gray.700'
15313
+ color: 'color-gray-700'
15314
15314
  }
15315
15315
  };
15316
15316
 
@@ -15351,7 +15351,7 @@
15351
15351
  width: "100vw",
15352
15352
  height: "100vh",
15353
15353
  display: "flex",
15354
- backgroundColor: "color.blackAlpha.500",
15354
+ backgroundColor: "color-blackAlpha-500",
15355
15355
  backdropFilter: blur ? "blur(" + blur + "px)" : undefined,
15356
15356
  transition: "all 0.3s ease",
15357
15357
  onClick: handleClick
@@ -15383,7 +15383,7 @@
15383
15383
  };
15384
15384
  return /*#__PURE__*/React__default.createElement(appStudio.Vertical, Object.assign({
15385
15385
  cursor: "default",
15386
- backgroundColor: "color.white",
15386
+ backgroundColor: "color-white",
15387
15387
  width: isFullScreen ? '100%' : 600,
15388
15388
  height: isFullScreen ? '100%' : 'fit-content',
15389
15389
  onClick: handleClick,
@@ -15401,7 +15401,7 @@
15401
15401
  var ModalHeader = _ref3 => {
15402
15402
  var {
15403
15403
  children,
15404
- buttonColor = 'theme.primary',
15404
+ buttonColor = 'theme-primary',
15405
15405
  iconSize = 'md',
15406
15406
  buttonPosition = 'right',
15407
15407
  views
@@ -15421,7 +15421,7 @@
15421
15421
  paddingHorizontal: 24,
15422
15422
  borderBottomWidth: "1px",
15423
15423
  borderBottomStyle: "solid",
15424
- borderBottomColor: "color.gray.200",
15424
+ borderBottomColor: "color-gray-200",
15425
15425
  media: {
15426
15426
  mobile: {
15427
15427
  paddingVertical: 12,
@@ -15466,7 +15466,7 @@
15466
15466
  paddingHorizontal: 24,
15467
15467
  borderTopWidth: "1px",
15468
15468
  borderTopStyle: "solid",
15469
- borderTopColor: "color.gray.200",
15469
+ borderTopColor: "color-gray-200",
15470
15470
  gap: 12,
15471
15471
  media: {
15472
15472
  mobile: {
@@ -15546,7 +15546,7 @@
15546
15546
  height: '100vh',
15547
15547
  borderRightWidth: '1px',
15548
15548
  borderRightStyle: 'solid',
15549
- borderRightColor: 'color.gray.200'
15549
+ borderRightColor: 'color-gray-200'
15550
15550
  },
15551
15551
  right: {
15552
15552
  top: 0,
@@ -15555,7 +15555,7 @@
15555
15555
  height: '100vh',
15556
15556
  borderLeftWidth: '1px',
15557
15557
  borderLeftStyle: 'solid',
15558
- borderLeftColor: 'color.gray.200'
15558
+ borderLeftColor: 'color-gray-200'
15559
15559
  },
15560
15560
  top: {
15561
15561
  top: 0,
@@ -15564,7 +15564,7 @@
15564
15564
  width: '100vw',
15565
15565
  borderBottomWidth: '1px',
15566
15566
  borderBottomStyle: 'solid',
15567
- borderBottomColor: 'color.gray.200'
15567
+ borderBottomColor: 'color-gray-200'
15568
15568
  },
15569
15569
  bottom: {
15570
15570
  bottom: 0,
@@ -15573,7 +15573,7 @@
15573
15573
  width: '100vw',
15574
15574
  borderTopWidth: '1px',
15575
15575
  borderTopStyle: 'solid',
15576
- borderTopColor: 'color.gray.200'
15576
+ borderTopColor: 'color-gray-200'
15577
15577
  }
15578
15578
  };
15579
15579
 
@@ -15620,7 +15620,7 @@
15620
15620
  visibility: isOpen ? 'visible' : 'hidden',
15621
15621
  onClick: handleClick,
15622
15622
  transition: "all 0.3s ease",
15623
- backgroundColor: isOpen ? 'color.blackAlpha.500' : 'transparent',
15623
+ backgroundColor: isOpen ? 'color-blackAlpha-500' : 'transparent',
15624
15624
  backdropFilter: blur ? "blur(" + blur + "px)" : undefined,
15625
15625
  pointerEvents: isOpen ? 'auto' : 'none'
15626
15626
  }, props), children);
@@ -15645,7 +15645,7 @@
15645
15645
  };
15646
15646
  return /*#__PURE__*/React__default.createElement(appStudio.Vertical, Object.assign({
15647
15647
  position: "absolute",
15648
- backgroundColor: "color.white"
15648
+ backgroundColor: "color-white"
15649
15649
  }, DrawerPlacements[placement], dimensionProps, {
15650
15650
  onClick: handleClick,
15651
15651
  transition: "transform 0.3s ease"
@@ -15664,13 +15664,13 @@
15664
15664
  padding: 8
15665
15665
  }, /*#__PURE__*/React__default.createElement(CloseIcon, {
15666
15666
  widthHeight: 20,
15667
- color: "color.gray.500"
15667
+ color: "color-gray-500"
15668
15668
  })));
15669
15669
  return /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
15670
15670
  paddingHorizontal: 24,
15671
15671
  paddingVertical: 16,
15672
15672
  borderBottomWidth: "1px",
15673
- borderBottomColor: "color.gray.200",
15673
+ borderBottomColor: "color-gray-200",
15674
15674
  alignItems: "center",
15675
15675
  justifyContent: buttonPosition === 'none' ? 'center' : 'space-between'
15676
15676
  }, props), buttonPosition === 'left' && closeButton, children, buttonPosition === 'right' && closeButton);
@@ -15695,7 +15695,7 @@
15695
15695
  paddingHorizontal: 24,
15696
15696
  paddingVertical: 16,
15697
15697
  borderTopWidth: "1px",
15698
- borderTopColor: "color.gray.200",
15698
+ borderTopColor: "color-gray-200",
15699
15699
  alignItems: "center",
15700
15700
  justifyContent: "flex-end",
15701
15701
  gap: 12
@@ -15828,20 +15828,20 @@
15828
15828
  var NavigationMenuVariants = {
15829
15829
  default: {
15830
15830
  backgroundColor: 'transparent',
15831
- color: 'color.gray.800',
15831
+ color: 'color-gray-800',
15832
15832
  transition: 'all 0.2s ease'
15833
15833
  },
15834
15834
  filled: {
15835
- backgroundColor: 'color.gray.100',
15836
- color: 'color.gray.800',
15835
+ backgroundColor: 'color-gray-100',
15836
+ color: 'color-gray-800',
15837
15837
  transition: 'all 0.2s ease'
15838
15838
  },
15839
15839
  outline: {
15840
15840
  backgroundColor: 'transparent',
15841
15841
  borderWidth: '1px',
15842
15842
  borderStyle: 'solid',
15843
- borderColor: 'color.gray.200',
15844
- color: 'color.gray.800',
15843
+ borderColor: 'color-gray-200',
15844
+ color: 'color-gray-800',
15845
15845
  transition: 'all 0.2s ease'
15846
15846
  }
15847
15847
  };
@@ -15869,15 +15869,15 @@
15869
15869
  */
15870
15870
  var NavigationMenuItemStates = {
15871
15871
  active: {
15872
- backgroundColor: 'color.blue.50',
15873
- color: 'color.blue.700',
15872
+ backgroundColor: 'color-blue-50',
15873
+ color: 'color-blue-700',
15874
15874
  fontWeight: '600',
15875
15875
  borderLeftWidth: 3,
15876
15876
  borderLeftStyle: 'solid',
15877
- borderLeftColor: 'color.blue.600'
15877
+ borderLeftColor: 'color-blue-600'
15878
15878
  },
15879
15879
  hover: {
15880
- backgroundColor: 'color.gray.100',
15880
+ backgroundColor: 'color-gray-100',
15881
15881
  transition: 'background-color 0.2s ease'
15882
15882
  },
15883
15883
  disabled: {
@@ -16249,7 +16249,7 @@
16249
16249
  ref: contentRef,
16250
16250
  role: "menu",
16251
16251
  minWidth: "200px",
16252
- backgroundColor: "color.white",
16252
+ backgroundColor: "color-white",
16253
16253
  borderRadius: 4,
16254
16254
  boxShadow: "0px 2px 8px rgba(0, 0, 0, 0.15)",
16255
16255
  overflow: "hidden",
@@ -16431,7 +16431,7 @@
16431
16431
  overflow: 'hidden',
16432
16432
  boxShadow: '0px 1px 3px rgba(0, 0, 0, 0.06), 0px 1px 2px rgba(0, 0, 0, 0.04)',
16433
16433
  border: '1px solid',
16434
- borderColor: 'color.gray.200',
16434
+ borderColor: 'color-gray-200',
16435
16435
  transition: 'box-shadow 0.2s ease',
16436
16436
  media: {
16437
16437
  mobile: {
@@ -16442,15 +16442,15 @@
16442
16442
  }
16443
16443
  },
16444
16444
  thead: {
16445
- backgroundColor: 'color.gray.50',
16445
+ backgroundColor: 'color-gray-50',
16446
16446
  borderBottom: '1px solid',
16447
- borderBottomColor: 'color.gray.200'
16447
+ borderBottomColor: 'color-gray-200'
16448
16448
  },
16449
16449
  th: {
16450
16450
  padding: '12px 16px',
16451
16451
  fontWeight: '600',
16452
16452
  fontSize: '14px',
16453
- color: 'color.gray.700',
16453
+ color: 'color-gray-700',
16454
16454
  textAlign: 'left',
16455
16455
  media: {
16456
16456
  mobile: {
@@ -16463,8 +16463,8 @@
16463
16463
  padding: '12px 16px',
16464
16464
  fontSize: '14px',
16465
16465
  borderBottom: '1px solid',
16466
- borderBottomColor: 'color.gray.100',
16467
- color: 'color.gray.900',
16466
+ borderBottomColor: 'color-gray-100',
16467
+ color: 'color-gray-900',
16468
16468
  media: {
16469
16469
  mobile: {
16470
16470
  padding: '8px 12px',
@@ -16475,22 +16475,22 @@
16475
16475
  tr: {
16476
16476
  transition: 'background-color 0.15s ease',
16477
16477
  _hover: {
16478
- backgroundColor: 'color.gray.50'
16478
+ backgroundColor: 'color-gray-50'
16479
16479
  },
16480
16480
  _focus: {
16481
16481
  outline: 'none',
16482
- backgroundColor: 'color.gray.100'
16482
+ backgroundColor: 'color-gray-100'
16483
16483
  }
16484
16484
  },
16485
16485
  tfoot: {
16486
- backgroundColor: 'color.gray.50',
16486
+ backgroundColor: 'color-gray-50',
16487
16487
  fontWeight: '600',
16488
16488
  borderTop: '2px solid',
16489
- borderTopColor: 'color.gray.200'
16489
+ borderTopColor: 'color-gray-200'
16490
16490
  },
16491
16491
  caption: {
16492
16492
  margin: '8px 0',
16493
- color: 'color.gray.600',
16493
+ color: 'color-gray-600',
16494
16494
  fontSize: '14px',
16495
16495
  fontStyle: 'italic',
16496
16496
  media: {
@@ -16716,17 +16716,17 @@
16716
16716
  padding: '12px 16px',
16717
16717
  cursor: 'pointer',
16718
16718
  borderBottom: '2px solid',
16719
- borderBottomColor: isActive ? 'theme.primary' : 'transparent',
16719
+ borderBottomColor: isActive ? 'theme-primary' : 'transparent',
16720
16720
  backgroundColor: 'transparent',
16721
- color: isActive ? 'theme.primary' : 'color.gray.600',
16721
+ color: isActive ? 'theme-primary' : 'color-gray-600',
16722
16722
  fontWeight: isActive ? '600' : '500',
16723
16723
  marginBottom: '-1px',
16724
16724
  transition: 'all 0.2s ease',
16725
16725
  // Hover state
16726
16726
  on: {
16727
16727
  hover: {
16728
- color: 'theme.primary',
16729
- borderBottomColor: isActive ? 'theme.primary' : 'color.gray.300'
16728
+ color: 'theme-primary',
16729
+ borderBottomColor: isActive ? 'theme-primary' : 'color-gray-300'
16730
16730
  }
16731
16731
  }
16732
16732
  };
@@ -16811,7 +16811,7 @@
16811
16811
  }, views.container), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
16812
16812
  width: "100%",
16813
16813
  borderBottom: "1px solid",
16814
- borderBottomColor: "color.gray.200"
16814
+ borderBottomColor: "color-gray-200"
16815
16815
  }, views.headerTabs), tabs.map(tab => {
16816
16816
  // Determine if the current tab in the loop is the active one
16817
16817
  var isActive = (tab.value !== undefined ? tab.value : tab.title) === (activeTab.value !== undefined ? activeTab.value : activeTab.title);
@@ -16858,7 +16858,7 @@
16858
16858
  return /*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
16859
16859
  width: "100%",
16860
16860
  borderBottom: "1px solid",
16861
- borderBottomColor: "color.gray.200"
16861
+ borderBottomColor: "color-gray-200"
16862
16862
  }, views == null ? void 0 : views.container), children);
16863
16863
  };
16864
16864
  // TabsTrigger compound component
@@ -16884,12 +16884,12 @@
16884
16884
  opacity: disabled ? 0.6 : 1,
16885
16885
  padding: "12px 16px",
16886
16886
  borderBottom: "2px solid",
16887
- borderBottomColor: isActive ? 'theme.primary' : 'transparent',
16888
- color: isActive ? 'theme.primary' : 'color.gray.600',
16887
+ borderBottomColor: isActive ? 'theme-primary' : 'transparent',
16888
+ color: isActive ? 'theme-primary' : 'color-gray-600',
16889
16889
  fontWeight: isActive ? '600' : '400',
16890
16890
  transition: "all 0.2s ease",
16891
16891
  _hover: !disabled ? {
16892
- color: 'theme.primary'
16892
+ color: 'theme-primary'
16893
16893
  } : {},
16894
16894
  onClick: handleClick
16895
16895
  }, views == null ? void 0 : views.trigger, isActive ? views == null ? void 0 : views.activeState : {}), children);
@@ -17073,7 +17073,7 @@
17073
17073
  }),
17074
17074
  background: color => ({
17075
17075
  backgroundColor: color,
17076
- color: 'color.white',
17076
+ color: 'color-white',
17077
17077
  padding: '0 8px',
17078
17078
  borderRadius: '4px'
17079
17079
  }),
@@ -17096,6 +17096,9 @@
17096
17096
  color: color,
17097
17097
  textShadow: "0 0 10px " + color + "80, 0 0 20px " + color + "40, 0 0 30px " + color + "20"
17098
17098
  }),
17099
+ solid: color => ({
17100
+ color: color
17101
+ }),
17099
17102
  default: () => ({})
17100
17103
  };
17101
17104
 
@@ -17402,8 +17405,8 @@
17402
17405
  var {
17403
17406
  children,
17404
17407
  highlightText,
17405
- highlightStyle = 'default',
17406
- highlightColor = 'theme.primary',
17408
+ highlightStyle = 'solid',
17409
+ highlightColor = 'theme-primary',
17407
17410
  highlightSecondaryColor,
17408
17411
  size = 'lg',
17409
17412
  views,
@@ -17424,34 +17427,6 @@
17424
17427
  ref,
17425
17428
  inView
17426
17429
  } = appStudio.useInView();
17427
- var {
17428
- getColor,
17429
- themeMode,
17430
- theme
17431
- } = appStudio.useTheme();
17432
- var currentThemeMode = elementMode || themeMode;
17433
- var resolvedHighlightColor = getColor(highlightColor, {
17434
- themeMode: currentThemeMode
17435
- });
17436
- // Fallback: If getColor returns the token itself (resolution failed), try manual lookup in theme object
17437
- if (resolvedHighlightColor === highlightColor && highlightColor.startsWith('theme.') && theme) {
17438
- var tokenPath = highlightColor.replace('theme.', '');
17439
- var value = tokenPath.split('.').reduce((acc, part) => acc && acc[part], theme);
17440
- if (typeof value === 'string') {
17441
- resolvedHighlightColor = value;
17442
- }
17443
- }
17444
- var resolvedHighlightSecondaryColor = highlightSecondaryColor ? getColor(highlightSecondaryColor, {
17445
- themeMode: currentThemeMode
17446
- }) : undefined;
17447
- // Fallback for secondary color
17448
- if (highlightSecondaryColor && resolvedHighlightSecondaryColor === highlightSecondaryColor && highlightSecondaryColor.startsWith('theme.') && theme) {
17449
- var _tokenPath = highlightSecondaryColor.replace('theme.', '');
17450
- var _value = _tokenPath.split('.').reduce((acc, part) => acc && acc[part], theme);
17451
- if (typeof _value === 'string') {
17452
- resolvedHighlightSecondaryColor = _value;
17453
- }
17454
- }
17455
17430
  var {
17456
17431
  finalDisplayedText,
17457
17432
  activeHighlightTarget,
@@ -17473,7 +17448,7 @@
17473
17448
  }, props));
17474
17449
  var fontSize = TitleSizes[size];
17475
17450
  // Highlight style props
17476
- var highlightProps = HighlightStyles[highlightStyle](resolvedHighlightColor, resolvedHighlightSecondaryColor);
17451
+ var highlightProps = HighlightStyles[highlightStyle](highlightColor, highlightSecondaryColor);
17477
17452
  // Apply loop control to animations
17478
17453
  var applyAnimationLoop = (animation, loopControl) => {
17479
17454
  if (!animation) return animation;
@@ -17543,11 +17518,11 @@
17543
17518
  lastIndex = match.index + match[0].length;
17544
17519
  }
17545
17520
  if (lastIndex < text.length) parts.push(text.substring(lastIndex));
17546
- return /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ? (/*#__PURE__*/React__default.createElement(appStudio.Text, {
17521
+ return /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ? (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
17547
17522
  key: "text-" + idx,
17548
17523
  as: "span",
17549
17524
  display: "inline"
17550
- }, renderWithLineBreaks(part))) : (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
17525
+ }, views == null ? void 0 : views.text), renderWithLineBreaks(part))) : (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
17551
17526
  key: "highlight-" + idx,
17552
17527
  as: "span",
17553
17528
  display: "inline",
@@ -17563,7 +17538,7 @@
17563
17538
  }, !highlightSlide ? highlightProps : {}, views == null ? void 0 : views.highlight), renderHighlightedContent(text)));
17564
17539
  }
17565
17540
  // Case 3: Default - no highlighting
17566
- return /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({}, containerProps, props, views == null ? void 0 : views.container), renderWithLineBreaks(text));
17541
+ return /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({}, containerProps, props, views == null ? void 0 : views.container, views == null ? void 0 : views.text), renderWithLineBreaks(text));
17567
17542
  };
17568
17543
 
17569
17544
  /**
@@ -17583,7 +17558,7 @@
17583
17558
  *
17584
17559
  * @example
17585
17560
  * // With highlighting
17586
- * <Title highlightText="Platform" highlightStyle="background" highlightColor="theme.primary">
17561
+ * <Title highlightText="Platform" highlightStyle="background" highlightColor="theme-primary">
17587
17562
  * Welcome to Our Platform
17588
17563
  * </Title>
17589
17564
  *
@@ -17602,8 +17577,8 @@
17602
17577
  * <Title
17603
17578
  * highlightText={["Amazing", "Features"]}
17604
17579
  * highlightStyle="gradient"
17605
- * highlightColor="theme.primary"
17606
- * highlightSecondaryColor="theme.secondary"
17580
+ * highlightColor="theme-primary"
17581
+ * highlightSecondaryColor="theme-secondary"
17607
17582
  * >
17608
17583
  * Discover our Amazing Product with Great Features
17609
17584
  * </Title>
@@ -17646,12 +17621,12 @@
17646
17621
  borderColor: color,
17647
17622
  _hover: {
17648
17623
  backgroundColor: color,
17649
- color: isLight ? 'color.black' : 'color.white',
17624
+ color: isLight ? 'color-black' : 'color-white',
17650
17625
  transform: 'translateY(-1px)'
17651
17626
  },
17652
17627
  _active: {
17653
17628
  backgroundColor: color,
17654
- color: isLight ? 'color.black' : 'color.white',
17629
+ color: isLight ? 'color-black' : 'color-white',
17655
17630
  transform: 'translateY(0)'
17656
17631
  },
17657
17632
  transition: 'all 0.2s ease'
@@ -17664,12 +17639,12 @@
17664
17639
  borderColor: 'transparent',
17665
17640
  _hover: {
17666
17641
  backgroundColor: color,
17667
- color: isLight ? 'color.black' : 'color.white',
17642
+ color: isLight ? 'color-black' : 'color-white',
17668
17643
  transform: 'translateY(-1px)'
17669
17644
  },
17670
17645
  _active: {
17671
17646
  backgroundColor: color,
17672
- color: isLight ? 'color.black' : 'color.white',
17647
+ color: isLight ? 'color-black' : 'color-white',
17673
17648
  transform: 'translateY(0)'
17674
17649
  },
17675
17650
  transition: 'all 0.2s ease'
@@ -17725,8 +17700,8 @@
17725
17700
  } = appStudio.useTheme();
17726
17701
  var mode = elementMode != null ? elementMode : themeMode;
17727
17702
  /* MAIN COLOR – determines the entire palette */
17728
- var mainColorKey = (_ref2 = backgroundColor != null ? backgroundColor : color) != null ? _ref2 : 'theme.primary';
17729
- var mainTone = getColor(isDisabled ? 'theme.disabled' : mainColorKey, {
17703
+ var mainColorKey = (_ref2 = backgroundColor != null ? backgroundColor : color) != null ? _ref2 : 'theme-primary';
17704
+ var mainTone = getColor(isDisabled ? 'theme-disabled' : mainColorKey, {
17730
17705
  themeMode: mode
17731
17706
  });
17732
17707
  var tone = contrast(mainTone);
@@ -17757,7 +17732,7 @@
17757
17732
  onMouseLeave: () => setIsHovered(false)
17758
17733
  }, base, isActive && {
17759
17734
  backgroundColor: mainTone,
17760
- color: tone === 'light' ? 'color.black' : 'color.white'
17735
+ color: tone === 'light' ? 'color-black' : 'color-white'
17761
17736
  }, props, views == null ? void 0 : views.container), children);
17762
17737
  };
17763
17738
 
@@ -18079,27 +18054,27 @@
18079
18054
  };
18080
18055
  var DropdownMenuVariants = {
18081
18056
  default: {
18082
- backgroundColor: 'color.white',
18083
- color: 'color.gray.800'
18057
+ backgroundColor: 'color-white',
18058
+ color: 'color-gray-800'
18084
18059
  },
18085
18060
  filled: {
18086
- backgroundColor: 'color.gray.100',
18087
- color: 'color.gray.800'
18061
+ backgroundColor: 'color-gray-100',
18062
+ color: 'color-gray-800'
18088
18063
  },
18089
18064
  outline: {
18090
- backgroundColor: 'color.white',
18065
+ backgroundColor: 'color-white',
18091
18066
  borderWidth: '1px',
18092
18067
  borderStyle: 'solid',
18093
- borderColor: 'color.gray.200',
18094
- color: 'color.gray.800'
18068
+ borderColor: 'color-gray-200',
18069
+ color: 'color-gray-800'
18095
18070
  }
18096
18071
  };
18097
18072
  var DropdownMenuItemStates = {
18098
18073
  hover: {
18099
- backgroundColor: 'color.gray.100'
18074
+ backgroundColor: 'color-gray-100'
18100
18075
  },
18101
18076
  active: {
18102
- backgroundColor: 'color.gray.200'
18077
+ backgroundColor: 'color-gray-200'
18103
18078
  },
18104
18079
  disabled: {
18105
18080
  opacity: 0.5,
@@ -18344,7 +18319,7 @@
18344
18319
  position: "relative"
18345
18320
  }, DropdownMenuSizes[size], {
18346
18321
  _hover: !item.disabled ? DropdownMenuItemStates.hover : {},
18347
- backgroundColor: isHovered && !item.disabled ? 'color.gray.100' : 'transparent',
18322
+ backgroundColor: isHovered && !item.disabled ? 'color-gray-100' : 'transparent',
18348
18323
  onMouseEnter: handleMouseEnter,
18349
18324
  onMouseLeave: handleMouseLeave,
18350
18325
  onClick: handleClick
@@ -18374,7 +18349,7 @@
18374
18349
  props = _objectWithoutPropertiesLoose(_ref5, _excluded4$9);
18375
18350
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
18376
18351
  height: "1px",
18377
- backgroundColor: "color.gray.200",
18352
+ backgroundColor: "color-gray-200",
18378
18353
  margin: "4px 0"
18379
18354
  }, views == null ? void 0 : views.divider, props));
18380
18355
  };
@@ -18589,11 +18564,11 @@
18589
18564
  left: 0,
18590
18565
  right: 0,
18591
18566
  zIndex: 1000,
18592
- backgroundColor: 'color.white',
18567
+ backgroundColor: 'color-white',
18593
18568
  borderRadius: '8px',
18594
18569
  borderWidth: '1px',
18595
18570
  borderStyle: 'solid',
18596
- borderColor: 'color.gray.200',
18571
+ borderColor: 'color-gray-200',
18597
18572
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
18598
18573
  padding: '16px',
18599
18574
  minWidth: '280px'
@@ -18616,7 +18591,7 @@
18616
18591
  marginBottom: '12px'
18617
18592
  },
18618
18593
  recentColors: {
18619
- borderTop: '1px solid color.gray.200',
18594
+ borderTop: '1px solid color-gray-200',
18620
18595
  paddingTop: '12px'
18621
18596
  }
18622
18597
  };
@@ -18672,25 +18647,25 @@
18672
18647
  */
18673
18648
  var Variants$2 = {
18674
18649
  default: {
18675
- backgroundColor: 'color.white',
18650
+ backgroundColor: 'color-white',
18676
18651
  borderWidth: '1px',
18677
18652
  borderStyle: 'solid',
18678
- borderColor: 'color.gray.300',
18679
- color: 'color.gray.800'
18653
+ borderColor: 'color-gray-300',
18654
+ color: 'color-gray-800'
18680
18655
  },
18681
18656
  outline: {
18682
18657
  backgroundColor: 'transparent',
18683
18658
  borderWidth: '1px',
18684
18659
  borderStyle: 'solid',
18685
- borderColor: 'color.gray.300',
18686
- color: 'color.gray.800'
18660
+ borderColor: 'color-gray-300',
18661
+ color: 'color-gray-800'
18687
18662
  },
18688
18663
  filled: {
18689
- backgroundColor: 'color.gray.100',
18664
+ backgroundColor: 'color-gray-100',
18690
18665
  borderWidth: '1px',
18691
18666
  borderStyle: 'solid',
18692
- borderColor: 'color.gray.200',
18693
- color: 'color.gray.800'
18667
+ borderColor: 'color-gray-200',
18668
+ color: 'color-gray-800'
18694
18669
  }
18695
18670
  };
18696
18671
  /**
@@ -18700,133 +18675,133 @@
18700
18675
  // Primary colors
18701
18676
  {
18702
18677
  name: 'Blue 500',
18703
- value: 'color.blue.500',
18678
+ value: 'color-blue-500',
18704
18679
  category: 'primary'
18705
18680
  }, {
18706
18681
  name: 'Purple 500',
18707
- value: 'color.purple.500',
18682
+ value: 'color-purple-500',
18708
18683
  category: 'primary'
18709
18684
  }, {
18710
18685
  name: 'Pink 500',
18711
- value: 'color.pink.500',
18686
+ value: 'color-pink-500',
18712
18687
  category: 'primary'
18713
18688
  }, {
18714
18689
  name: 'Red 500',
18715
- value: 'color.red.500',
18690
+ value: 'color-red-500',
18716
18691
  category: 'primary'
18717
18692
  }, {
18718
18693
  name: 'Orange 500',
18719
- value: 'color.orange.500',
18694
+ value: 'color-orange-500',
18720
18695
  category: 'primary'
18721
18696
  }, {
18722
18697
  name: 'Yellow 500',
18723
- value: 'color.yellow.500',
18698
+ value: 'color-yellow-500',
18724
18699
  category: 'primary'
18725
18700
  }, {
18726
18701
  name: 'Green 500',
18727
- value: 'color.green.500',
18702
+ value: 'color-green-500',
18728
18703
  category: 'primary'
18729
18704
  }, {
18730
18705
  name: 'Teal 500',
18731
- value: 'color.teal.500',
18706
+ value: 'color-teal-500',
18732
18707
  category: 'primary'
18733
18708
  },
18734
18709
  // Light variants
18735
18710
  {
18736
18711
  name: 'Blue 300',
18737
- value: 'color.blue.300',
18712
+ value: 'color-blue-300',
18738
18713
  category: 'light'
18739
18714
  }, {
18740
18715
  name: 'Purple 300',
18741
- value: 'color.purple.300',
18716
+ value: 'color-purple-300',
18742
18717
  category: 'light'
18743
18718
  }, {
18744
18719
  name: 'Pink 300',
18745
- value: 'color.pink.300',
18720
+ value: 'color-pink-300',
18746
18721
  category: 'light'
18747
18722
  }, {
18748
18723
  name: 'Red 300',
18749
- value: 'color.red.300',
18724
+ value: 'color-red-300',
18750
18725
  category: 'light'
18751
18726
  }, {
18752
18727
  name: 'Orange 300',
18753
- value: 'color.orange.300',
18728
+ value: 'color-orange-300',
18754
18729
  category: 'light'
18755
18730
  }, {
18756
18731
  name: 'Yellow 300',
18757
- value: 'color.yellow.300',
18732
+ value: 'color-yellow-300',
18758
18733
  category: 'light'
18759
18734
  }, {
18760
18735
  name: 'Green 300',
18761
- value: 'color.green.300',
18736
+ value: 'color-green-300',
18762
18737
  category: 'light'
18763
18738
  }, {
18764
18739
  name: 'Teal 300',
18765
- value: 'color.teal.300',
18740
+ value: 'color-teal-300',
18766
18741
  category: 'light'
18767
18742
  },
18768
18743
  // Dark variants
18769
18744
  {
18770
18745
  name: 'Blue 700',
18771
- value: 'color.blue.700',
18746
+ value: 'color-blue-700',
18772
18747
  category: 'dark'
18773
18748
  }, {
18774
18749
  name: 'Purple 700',
18775
- value: 'color.purple.700',
18750
+ value: 'color-purple-700',
18776
18751
  category: 'dark'
18777
18752
  }, {
18778
18753
  name: 'Pink 700',
18779
- value: 'color.pink.700',
18754
+ value: 'color-pink-700',
18780
18755
  category: 'dark'
18781
18756
  }, {
18782
18757
  name: 'Red 700',
18783
- value: 'color.red.700',
18758
+ value: 'color-red-700',
18784
18759
  category: 'dark'
18785
18760
  }, {
18786
18761
  name: 'Orange 700',
18787
- value: 'color.orange.700',
18762
+ value: 'color-orange-700',
18788
18763
  category: 'dark'
18789
18764
  }, {
18790
18765
  name: 'Yellow 700',
18791
- value: 'color.yellow.700',
18766
+ value: 'color-yellow-700',
18792
18767
  category: 'dark'
18793
18768
  }, {
18794
18769
  name: 'Green 700',
18795
- value: 'color.green.700',
18770
+ value: 'color-green-700',
18796
18771
  category: 'dark'
18797
18772
  }, {
18798
18773
  name: 'Teal 700',
18799
- value: 'color.teal.700',
18774
+ value: 'color-teal-700',
18800
18775
  category: 'dark'
18801
18776
  },
18802
18777
  // Grays
18803
18778
  {
18804
18779
  name: 'Gray 100',
18805
- value: 'color.gray.100',
18780
+ value: 'color-gray-100',
18806
18781
  category: 'neutral'
18807
18782
  }, {
18808
18783
  name: 'Gray 300',
18809
- value: 'color.gray.300',
18784
+ value: 'color-gray-300',
18810
18785
  category: 'neutral'
18811
18786
  }, {
18812
18787
  name: 'Gray 500',
18813
- value: 'color.gray.500',
18788
+ value: 'color-gray-500',
18814
18789
  category: 'neutral'
18815
18790
  }, {
18816
18791
  name: 'Gray 700',
18817
- value: 'color.gray.700',
18792
+ value: 'color-gray-700',
18818
18793
  category: 'neutral'
18819
18794
  }, {
18820
18795
  name: 'Gray 900',
18821
- value: 'color.gray.900',
18796
+ value: 'color-gray-900',
18822
18797
  category: 'neutral'
18823
18798
  }, {
18824
18799
  name: 'Black',
18825
- value: 'color.black',
18800
+ value: 'color-black',
18826
18801
  category: 'neutral'
18827
18802
  }, {
18828
18803
  name: 'White',
18829
- value: 'color.white',
18804
+ value: 'color-white',
18830
18805
  category: 'neutral'
18831
18806
  }];
18832
18807
 
@@ -18872,7 +18847,7 @@
18872
18847
  // Combine styles
18873
18848
  var containerStyles = Object.assign({}, DefaultColorPickerStyles.container, views == null ? void 0 : views.container);
18874
18849
  var triggerStyles = Object.assign({}, DefaultColorPickerStyles.trigger, Sizes$3[size], Shapes$3[shape], Variants$2[variant], error && {
18875
- borderColor: 'color.red.500'
18850
+ borderColor: 'color-red-500'
18876
18851
  }, isDisabled && {
18877
18852
  opacity: 0.6,
18878
18853
  cursor: 'not-allowed'
@@ -18881,11 +18856,11 @@
18881
18856
  var colorGridStyles = Object.assign({}, DefaultColorPickerStyles.colorGrid, views == null ? void 0 : views.colorGrid);
18882
18857
  var recentColorsStyles = Object.assign({}, DefaultColorPickerStyles.recentColors, views == null ? void 0 : views.recentColors);
18883
18858
  // Get display color for the selected color swatch
18884
- var displayColor = selectedColor || 'color.gray.200';
18859
+ var displayColor = selectedColor || 'color-gray-200';
18885
18860
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, containerStyles, props), label && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
18886
18861
  fontSize: size === 'xs' ? '12px' : size === 'sm' ? '14px' : '16px',
18887
18862
  fontWeight: "500",
18888
- color: "color.gray.700",
18863
+ color: "color-gray-700",
18889
18864
  marginBottom: "4px"
18890
18865
  }, views == null ? void 0 : views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
18891
18866
  ref: triggerRef,
@@ -18900,13 +18875,13 @@
18900
18875
  backgroundColor: displayColor,
18901
18876
  borderWidth: "1px",
18902
18877
  borderStyle: "solid",
18903
- borderColor: "color.gray.300"
18878
+ borderColor: "color-gray-300"
18904
18879
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
18905
- color: selectedColor ? 'color.gray.800' : 'color.gray.500',
18880
+ color: selectedColor ? 'color-gray-800' : 'color-gray-500',
18906
18881
  fontSize: "inherit"
18907
18882
  }, selectedColor || placeholder)), !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(ChevronIcon, {
18908
18883
  widthHeight: 16,
18909
- color: "color.gray.500",
18884
+ color: "color-gray-500",
18910
18885
  orientation: isOpen ? 'up' : 'down'
18911
18886
  }))), isOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
18912
18887
  ref: dropdownRef
@@ -18918,14 +18893,14 @@
18918
18893
  backgroundColor: colorOption.value,
18919
18894
  borderWidth: "2px",
18920
18895
  borderStyle: "solid",
18921
- borderColor: selectedColor === colorOption.value ? 'color.blue.500' : 'transparent',
18896
+ borderColor: selectedColor === colorOption.value ? 'color-blue-500' : 'transparent',
18922
18897
  cursor: "pointer",
18923
18898
  transition: "all 0.2s ease",
18924
18899
  onClick: () => handleColorSelect(colorOption.value),
18925
18900
  title: colorOption.name,
18926
18901
  _hover: {
18927
18902
  transform: 'scale(1.1)',
18928
- borderColor: 'color.gray.400'
18903
+ borderColor: 'color-gray-400'
18929
18904
  }
18930
18905
  }, 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, {
18931
18906
  gap: 8,
@@ -18950,7 +18925,7 @@
18950
18925
  title: "Pick a color"
18951
18926
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
18952
18927
  fontSize: "12px",
18953
- color: "color.gray.600"
18928
+ color: "color-gray-600"
18954
18929
  }, "Use native color picker")), /*#__PURE__*/React__default.createElement(TextField, {
18955
18930
  placeholder: "Enter hex color (e.g., #ff0000)",
18956
18931
  value: customColor,
@@ -18968,13 +18943,13 @@
18968
18943
  backgroundColor: customColor,
18969
18944
  borderWidth: "1px",
18970
18945
  borderStyle: "solid",
18971
- borderColor: "color.gray.300",
18946
+ borderColor: "color-gray-300",
18972
18947
  cursor: "pointer",
18973
18948
  onClick: handleCustomColorSubmit
18974
18949
  }))
18975
18950
  }))), showRecentColors && recentColors.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, recentColorsStyles), /*#__PURE__*/React__default.createElement(appStudio.Text, {
18976
18951
  fontWeight: "500",
18977
- color: "color.gray.600",
18952
+ color: "color-gray-600",
18978
18953
  marginBottom: "8px"
18979
18954
  }, "Recent Colors"), /*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
18980
18955
  gap: 8,
@@ -18987,7 +18962,7 @@
18987
18962
  backgroundColor: color,
18988
18963
  borderWidth: "1px",
18989
18964
  borderStyle: "solid",
18990
- borderColor: "color.gray.300",
18965
+ borderColor: "color-gray-300",
18991
18966
  cursor: "pointer",
18992
18967
  onClick: () => handleColorSelect(color),
18993
18968
  title: color,
@@ -18995,7 +18970,7 @@
18995
18970
  transform: 'scale(1.1)'
18996
18971
  }
18997
18972
  })))))))), helperText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
18998
- color: error ? 'color.red.500' : 'color.gray.600',
18973
+ color: error ? 'color-red-500' : 'color-gray-600',
18999
18974
  marginTop: "4px"
19000
18975
  }, views == null ? void 0 : views.helperText), helperText)));
19001
18976
  };
@@ -19032,11 +19007,11 @@
19032
19007
  left: 0,
19033
19008
  right: 0,
19034
19009
  zIndex: 1000,
19035
- backgroundColor: 'color.white',
19010
+ backgroundColor: 'color-white',
19036
19011
  borderRadius: '8px',
19037
19012
  borderWidth: '1px',
19038
19013
  borderStyle: 'solid',
19039
- borderColor: 'color.gray.200',
19014
+ borderColor: 'color-gray-200',
19040
19015
  boxShadow: '0 8px 16px rgba(0,0,0,0.1)',
19041
19016
  padding: '16px',
19042
19017
  minWidth: '320px',
@@ -19048,7 +19023,7 @@
19048
19023
  },
19049
19024
  categoryTabs: {
19050
19025
  display: 'flex',
19051
- borderBottom: '1px solid color.gray.200',
19026
+ borderBottom: '1px solid color-gray-200',
19052
19027
  marginBottom: '12px',
19053
19028
  overflowX: 'auto'
19054
19029
  },
@@ -19059,7 +19034,7 @@
19059
19034
  transition: 'all 0.2s ease',
19060
19035
  fontSize: '14px',
19061
19036
  fontWeight: '500',
19062
- color: 'color.gray.600',
19037
+ color: 'color-gray-600',
19063
19038
  whiteSpace: 'nowrap'
19064
19039
  },
19065
19040
  emojiGrid: {
@@ -19069,7 +19044,7 @@
19069
19044
  maxHeight: '240px',
19070
19045
  overflowY: 'auto',
19071
19046
  padding: '4px',
19072
- color: 'color.black'
19047
+ color: 'color-black'
19073
19048
  },
19074
19049
  emoji: {
19075
19050
  width: '32px',
@@ -19083,7 +19058,7 @@
19083
19058
  transition: 'all 0.2s ease'
19084
19059
  },
19085
19060
  recentEmojis: {
19086
- borderBottom: '1px solid color.gray.200',
19061
+ borderBottom: '1px solid color-gray-200',
19087
19062
  marginBottom: '12px',
19088
19063
  paddingBottom: '12px'
19089
19064
  }
@@ -19140,25 +19115,25 @@
19140
19115
  */
19141
19116
  var Variants$3 = {
19142
19117
  default: {
19143
- backgroundColor: 'color.white',
19118
+ backgroundColor: 'color-white',
19144
19119
  borderWidth: '1px',
19145
19120
  borderStyle: 'solid',
19146
- borderColor: 'color.gray.300',
19147
- color: 'color.gray.800'
19121
+ borderColor: 'color-gray-300',
19122
+ color: 'color-gray-800'
19148
19123
  },
19149
19124
  outline: {
19150
19125
  backgroundColor: 'transparent',
19151
19126
  borderWidth: '1px',
19152
19127
  borderStyle: 'solid',
19153
- borderColor: 'color.gray.300',
19154
- color: 'color.gray.800'
19128
+ borderColor: 'color-gray-300',
19129
+ color: 'color-gray-800'
19155
19130
  },
19156
19131
  filled: {
19157
- backgroundColor: 'color.gray.100',
19132
+ backgroundColor: 'color-gray-100',
19158
19133
  borderWidth: '1px',
19159
19134
  borderStyle: 'solid',
19160
- borderColor: 'color.gray.200',
19161
- color: 'color.gray.800'
19135
+ borderColor: 'color-gray-200',
19136
+ color: 'color-gray-800'
19162
19137
  }
19163
19138
  };
19164
19139
  /**
@@ -21242,7 +21217,7 @@
21242
21217
  // Combine styles
21243
21218
  var containerStyles = Object.assign({}, DefaultEmojiPickerStyles.container, views == null ? void 0 : views.container);
21244
21219
  var triggerStyles = Object.assign({}, DefaultEmojiPickerStyles.trigger, Sizes$4[size], Shapes$4[shape], Variants$3[variant], error && {
21245
- borderColor: 'color.red.500'
21220
+ borderColor: 'color-red-500'
21246
21221
  }, isDisabled && {
21247
21222
  opacity: 0.6,
21248
21223
  cursor: 'not-allowed'
@@ -21260,7 +21235,7 @@
21260
21235
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, containerStyles, props), label && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
21261
21236
  fontSize: size === 'xs' ? '12px' : size === 'sm' ? '14px' : '16px',
21262
21237
  fontWeight: "500",
21263
- color: "color.gray.700",
21238
+ color: "color-gray-700",
21264
21239
  marginBottom: "4px"
21265
21240
  }, views == null ? void 0 : views.label), label)), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21266
21241
  ref: triggerRef,
@@ -21269,11 +21244,11 @@
21269
21244
  alignItems: "center",
21270
21245
  gap: 8
21271
21246
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
21272
- color: selectedEmoji ? 'color.gray.800' : 'color.gray.500',
21247
+ color: selectedEmoji ? 'color-gray-800' : 'color-gray-500',
21273
21248
  fontSize: "inherit"
21274
21249
  }, selectedEmoji || placeholder)), !isReadOnly && !isDisabled && (/*#__PURE__*/React__default.createElement(ChevronIcon, {
21275
21250
  widthHeight: 16,
21276
- color: "color.gray.500",
21251
+ color: "color-gray-500",
21277
21252
  orientation: isOpen ? 'up' : 'down'
21278
21253
  }))), isOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21279
21254
  ref: dropdownRef
@@ -21285,8 +21260,8 @@
21285
21260
  }))), showCategories && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, categoryTabsStyles), availableCategories.map(category => (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21286
21261
  key: category
21287
21262
  }, DefaultEmojiPickerStyles.categoryTab, activeCategory === category && {
21288
- borderBottomColor: 'color.blue.500',
21289
- color: 'color.blue.600'
21263
+ borderBottomColor: 'color-blue-500',
21264
+ color: 'color-blue-600'
21290
21265
  }, {
21291
21266
  onClick: () => handleCategoryChange(category),
21292
21267
  title: category.charAt(0).toUpperCase() + category.slice(1)
@@ -21296,18 +21271,18 @@
21296
21271
  onClick: () => handleEmojiSelect(emoji),
21297
21272
  title: emoji.name,
21298
21273
  _hover: {
21299
- backgroundColor: 'color.gray.100'
21274
+ backgroundColor: 'color-gray-100'
21300
21275
  },
21301
- color: "color.gray.800"
21276
+ color: "color-gray-800"
21302
21277
  }, views == null ? void 0 : views.emoji), emoji.emoji))) : (/*#__PURE__*/React__default.createElement(appStudio.View, {
21303
21278
  gridColumn: "1 / -1",
21304
21279
  padding: "20px",
21305
21280
  textAlign: "center",
21306
- color: "color.gray.500"
21281
+ color: "color-gray-500"
21307
21282
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
21308
21283
  fontSize: "14px"
21309
21284
  }, searchQuery ? 'No emojis found' : 'No emojis in this category')))))), helperText && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
21310
- color: error ? 'color.red.500' : 'color.gray.600',
21285
+ color: error ? 'color-red-500' : 'color-gray-600',
21311
21286
  marginTop: "4px"
21312
21287
  }, views == null ? void 0 : views.helperText), helperText)));
21313
21288
  };
@@ -21387,18 +21362,18 @@
21387
21362
  var MenubarVariants = {
21388
21363
  default: {
21389
21364
  backgroundColor: 'transparent',
21390
- color: 'color.gray.800'
21365
+ color: 'color-gray-800'
21391
21366
  },
21392
21367
  filled: {
21393
- backgroundColor: 'color.gray.100',
21394
- color: 'color.gray.800'
21368
+ backgroundColor: 'color-gray-100',
21369
+ color: 'color-gray-800'
21395
21370
  },
21396
21371
  outline: {
21397
21372
  backgroundColor: 'transparent',
21398
21373
  borderWidth: '1px',
21399
21374
  borderStyle: 'solid',
21400
- borderColor: 'color.gray.200',
21401
- color: 'color.gray.800'
21375
+ borderColor: 'color-gray-200',
21376
+ color: 'color-gray-800'
21402
21377
  }
21403
21378
  };
21404
21379
  var MenubarOrientations = {
@@ -21411,11 +21386,11 @@
21411
21386
  };
21412
21387
  var MenubarItemStates = {
21413
21388
  active: {
21414
- backgroundColor: 'color.gray.200',
21389
+ backgroundColor: 'color-gray-200',
21415
21390
  fontWeight: 'bold'
21416
21391
  },
21417
21392
  hover: {
21418
- backgroundColor: 'color.gray.100'
21393
+ backgroundColor: 'color-gray-100'
21419
21394
  },
21420
21395
  disabled: {
21421
21396
  opacity: 0.5,
@@ -21684,7 +21659,7 @@
21684
21659
  id: "menubar-content",
21685
21660
  role: "menu",
21686
21661
  minWidth: "200px",
21687
- backgroundColor: "color.white",
21662
+ backgroundColor: "color-white",
21688
21663
  borderRadius: 4,
21689
21664
  boxShadow: "0px 2px 8px rgba(0, 0, 0, 0.15)",
21690
21665
  overflow: "hidden",
@@ -21730,7 +21705,7 @@
21730
21705
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
21731
21706
  role: "separator",
21732
21707
  height: "1px",
21733
- backgroundColor: "color.gray.200",
21708
+ backgroundColor: "color-gray-200",
21734
21709
  margin: "4px 0"
21735
21710
  }, views == null ? void 0 : views.separator));
21736
21711
  };
@@ -21927,26 +21902,26 @@
21927
21902
  var PaginationVariants = {
21928
21903
  default: {
21929
21904
  backgroundColor: 'transparent',
21930
- color: 'color.gray.800',
21905
+ color: 'color-gray-800',
21931
21906
  _hover: {
21932
- backgroundColor: 'color.gray.100'
21907
+ backgroundColor: 'color-gray-100'
21933
21908
  }
21934
21909
  },
21935
21910
  filled: {
21936
- backgroundColor: 'color.gray.100',
21937
- color: 'color.gray.800',
21911
+ backgroundColor: 'color-gray-100',
21912
+ color: 'color-gray-800',
21938
21913
  _hover: {
21939
- backgroundColor: 'color.gray.200'
21914
+ backgroundColor: 'color-gray-200'
21940
21915
  }
21941
21916
  },
21942
21917
  outline: {
21943
21918
  backgroundColor: 'transparent',
21944
21919
  borderWidth: '1px',
21945
21920
  borderStyle: 'solid',
21946
- borderColor: 'color.gray.200',
21947
- color: 'color.gray.800',
21921
+ borderColor: 'color-gray-200',
21922
+ color: 'color-gray-800',
21948
21923
  _hover: {
21949
- backgroundColor: 'color.gray.100'
21924
+ backgroundColor: 'color-gray-100'
21950
21925
  }
21951
21926
  }
21952
21927
  };
@@ -21962,10 +21937,10 @@
21962
21937
  }
21963
21938
  };
21964
21939
  var ActivePageButtonStyles = {
21965
- backgroundColor: 'color.blue.500',
21966
- color: 'color.white',
21940
+ backgroundColor: 'color-blue-500',
21941
+ color: 'color-white',
21967
21942
  _hover: {
21968
- backgroundColor: 'color.blue.600'
21943
+ backgroundColor: 'color-blue-600'
21969
21944
  }
21970
21945
  };
21971
21946
  var DisabledButtonStyles = {
@@ -22107,7 +22082,7 @@
22107
22082
  marginLeft: "-8px"
22108
22083
  }))), showPageInfo && (/*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
22109
22084
  marginLeft: 16,
22110
- color: "color.gray.600"
22085
+ color: "color-gray-600"
22111
22086
  }, views == null ? void 0 : views.pageInfo), "Page ", currentPage, " of ", totalPages)), showPageSizeSelector && onPageSizeChange && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
22112
22087
  as: "select",
22113
22088
  marginLeft: 16,
@@ -22115,8 +22090,8 @@
22115
22090
  borderRadius: "4px",
22116
22091
  borderWidth: "1px",
22117
22092
  borderStyle: "solid",
22118
- borderColor: "color.gray.200",
22119
- backgroundColor: "color.white",
22093
+ borderColor: "color-gray-200",
22094
+ backgroundColor: "color-white",
22120
22095
  cursor: "pointer",
22121
22096
  value: pageSize,
22122
22097
  onChange: handlePageSizeChange
@@ -22177,14 +22152,14 @@
22177
22152
  shape = 'linear',
22178
22153
  value = 0,
22179
22154
  max = 100,
22180
- color = 'theme.primary',
22181
- backgroundColor = 'color.gray.200',
22155
+ color = 'theme-primary',
22156
+ backgroundColor = 'color-gray-200',
22182
22157
  height,
22183
22158
  size,
22184
22159
  radius = 4,
22185
22160
  strokeWidth = 10,
22186
22161
  showLabel = false,
22187
- labelColor = 'theme.text.primary',
22162
+ labelColor = 'theme-text-primary',
22188
22163
  animated = true,
22189
22164
  animationDuration = '0.5s',
22190
22165
  views,
@@ -22329,15 +22304,15 @@
22329
22304
  transition: 'opacity 0.15s ease'
22330
22305
  },
22331
22306
  line: {
22332
- backgroundColor: 'color.gray.200',
22307
+ backgroundColor: 'color-gray-200',
22333
22308
  transition: 'background-color 0.15s ease'
22334
22309
  },
22335
22310
  label: {
22336
22311
  fontSize: '14px',
22337
22312
  fontWeight: '500',
22338
- color: 'color.gray.600',
22313
+ color: 'color-gray-600',
22339
22314
  paddingHorizontal: '8px',
22340
- backgroundColor: 'color.white',
22315
+ backgroundColor: 'color-white',
22341
22316
  transition: 'color 0.15s ease'
22342
22317
  }
22343
22318
  };
@@ -22360,7 +22335,7 @@
22360
22335
  themeMode
22361
22336
  } = appStudio.useTheme();
22362
22337
  // Use provided color or default from theme
22363
- var separatorColor = color || 'color.gray.200';
22338
+ var separatorColor = color || 'color-gray-200';
22364
22339
  var borderStyle = SeparatorVariants[variant];
22365
22340
  var borderWidth = SeparatorThicknesses[thickness];
22366
22341
  // Set appropriate ARIA attributes based on decorative prop
@@ -22567,42 +22542,42 @@
22567
22542
  return {
22568
22543
  default: {
22569
22544
  indicator: {
22570
- backgroundColor: 'color.gray.400'
22545
+ backgroundColor: 'color-gray-400'
22571
22546
  },
22572
22547
  label: {
22573
- color: 'color.gray.700'
22548
+ color: 'color-gray-700'
22574
22549
  }
22575
22550
  },
22576
22551
  info: {
22577
22552
  indicator: {
22578
- backgroundColor: 'color.blue.500'
22553
+ backgroundColor: 'color-blue-500'
22579
22554
  },
22580
22555
  label: {
22581
- color: 'color.blue.700'
22556
+ color: 'color-blue-700'
22582
22557
  }
22583
22558
  },
22584
22559
  success: {
22585
22560
  indicator: {
22586
- backgroundColor: 'color.green.500'
22561
+ backgroundColor: 'color-green-500'
22587
22562
  },
22588
22563
  label: {
22589
- color: 'color.green.700'
22564
+ color: 'color-green-700'
22590
22565
  }
22591
22566
  },
22592
22567
  warning: {
22593
22568
  indicator: {
22594
- backgroundColor: 'color.orange.500'
22569
+ backgroundColor: 'color-orange-500'
22595
22570
  },
22596
22571
  label: {
22597
- color: 'color.orange.700'
22572
+ color: 'color-orange-700'
22598
22573
  }
22599
22574
  },
22600
22575
  error: {
22601
22576
  indicator: {
22602
- backgroundColor: 'color.red.500'
22577
+ backgroundColor: 'color-red-500'
22603
22578
  },
22604
22579
  label: {
22605
- color: 'color.red.700'
22580
+ color: 'color-red-700'
22606
22581
  }
22607
22582
  }
22608
22583
  };
@@ -22724,32 +22699,32 @@
22724
22699
  var getSidebar = themeMode => {
22725
22700
  return {
22726
22701
  default: {
22727
- backgroundColor: 'color.white',
22728
- color: 'color.gray.800',
22702
+ backgroundColor: 'color-white',
22703
+ color: 'color-gray-800',
22729
22704
  transition: 'all 0.2s ease'
22730
22705
  },
22731
22706
  filled: {
22732
- backgroundColor: 'color.gray.100',
22733
- color: 'color.gray.800',
22707
+ backgroundColor: 'color-gray-100',
22708
+ color: 'color-gray-800',
22734
22709
  transition: 'all 0.2s ease'
22735
22710
  },
22736
22711
  outline: {
22737
- backgroundColor: 'color.white',
22712
+ backgroundColor: 'color-white',
22738
22713
  borderWidth: '1px',
22739
22714
  borderStyle: 'solid',
22740
- borderColor: 'color.gray.200',
22741
- color: 'color.gray.800',
22715
+ borderColor: 'color-gray-200',
22716
+ color: 'color-gray-800',
22742
22717
  transition: 'all 0.2s ease'
22743
22718
  },
22744
22719
  subtle: {
22745
- backgroundColor: 'color.gray.50',
22746
- color: 'color.gray.800',
22720
+ backgroundColor: 'color-gray-50',
22721
+ color: 'color-gray-800',
22747
22722
  transition: 'all 0.2s ease'
22748
22723
  },
22749
22724
  elevated: {
22750
- backgroundColor: 'color.white',
22725
+ backgroundColor: 'color-white',
22751
22726
  boxShadow: '0px 4px 8px rgba(0, 0, 0, 0.1)',
22752
- color: 'color.gray.800',
22727
+ color: 'color-gray-800',
22753
22728
  transition: 'all 0.2s ease'
22754
22729
  }
22755
22730
  };
@@ -22765,13 +22740,13 @@
22765
22740
  left: 0,
22766
22741
  borderRightWidth: '1px',
22767
22742
  borderRightStyle: 'solid',
22768
- borderRightColor: 'color.gray.200'
22743
+ borderRightColor: 'color-gray-200'
22769
22744
  },
22770
22745
  right: {
22771
22746
  right: 0,
22772
22747
  borderLeftWidth: '1px',
22773
22748
  borderLeftStyle: 'solid',
22774
- borderLeftColor: 'color.gray.200'
22749
+ borderLeftColor: 'color-gray-200'
22775
22750
  }
22776
22751
  };
22777
22752
  /**
@@ -22843,7 +22818,7 @@
22843
22818
  padding: "16px",
22844
22819
  borderBottomWidth: "1px",
22845
22820
  borderBottomStyle: "solid",
22846
- borderBottomColor: "color.gray.200",
22821
+ borderBottomColor: "color-gray-200",
22847
22822
  alignItems: "center",
22848
22823
  justifyContent: "space-between"
22849
22824
  }, views == null ? void 0 : views.header, props), isExpanded ? (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
@@ -22861,7 +22836,7 @@
22861
22836
  backgroundColor: "transparent",
22862
22837
  cursor: "pointer",
22863
22838
  _hover: {
22864
- backgroundColor: 'color.gray.100'
22839
+ backgroundColor: 'color-gray-100'
22865
22840
  },
22866
22841
  onClick: toggleExpanded,
22867
22842
  "aria-label": isExpanded ? 'Collapse sidebar' : 'Expand sidebar'
@@ -22884,7 +22859,7 @@
22884
22859
  backgroundColor: "transparent",
22885
22860
  cursor: "pointer",
22886
22861
  _hover: {
22887
- backgroundColor: 'color.gray.100'
22862
+ backgroundColor: 'color-gray-100'
22888
22863
  },
22889
22864
  onClick: toggleExpanded,
22890
22865
  "aria-label": isExpanded ? 'Collapse sidebar' : 'Expand sidebar'
@@ -22926,7 +22901,7 @@
22926
22901
  padding: "16px",
22927
22902
  borderTopWidth: "1px",
22928
22903
  borderTopStyle: "solid",
22929
- borderTopColor: "color.gray.200"
22904
+ borderTopColor: "color-gray-200"
22930
22905
  }, views == null ? void 0 : views.footer, props), isExpanded ? children : null);
22931
22906
  };
22932
22907
  // Main Sidebar View component
@@ -22969,7 +22944,7 @@
22969
22944
  left: 0,
22970
22945
  width: "100vw",
22971
22946
  height: "100vh",
22972
- backgroundColor: "color.blackAlpha.500",
22947
+ backgroundColor: "color-blackAlpha-500",
22973
22948
  zIndex: 998,
22974
22949
  onClick: collapse
22975
22950
  }, views == null ? void 0 : views.backdrop))), isVisible && (/*#__PURE__*/React__default.createElement(appStudio.Vertical, Object.assign({
@@ -23430,28 +23405,28 @@
23430
23405
  default: {
23431
23406
  backgroundColor: 'transparent',
23432
23407
  _hover: {
23433
- backgroundColor: 'color.gray.200'
23408
+ backgroundColor: 'color-gray-200'
23434
23409
  },
23435
23410
  _active: {
23436
- backgroundColor: 'color.gray.300'
23411
+ backgroundColor: 'color-gray-300'
23437
23412
  }
23438
23413
  },
23439
23414
  subtle: {
23440
23415
  backgroundColor: 'transparent',
23441
23416
  _hover: {
23442
- backgroundColor: 'color.gray.100'
23417
+ backgroundColor: 'color-gray-100'
23443
23418
  },
23444
23419
  _active: {
23445
- backgroundColor: 'color.gray.200'
23420
+ backgroundColor: 'color-gray-200'
23446
23421
  }
23447
23422
  },
23448
23423
  prominent: {
23449
- backgroundColor: 'color.gray.100',
23424
+ backgroundColor: 'color-gray-100',
23450
23425
  _hover: {
23451
- backgroundColor: 'color.gray.200'
23426
+ backgroundColor: 'color-gray-200'
23452
23427
  },
23453
23428
  _active: {
23454
- backgroundColor: 'color.gray.300'
23429
+ backgroundColor: 'color-gray-300'
23455
23430
  }
23456
23431
  }
23457
23432
  };
@@ -23463,13 +23438,13 @@
23463
23438
  horizontal: {
23464
23439
  width: '2px',
23465
23440
  height: '20px',
23466
- backgroundColor: 'color.gray.400',
23441
+ backgroundColor: 'color-gray-400',
23467
23442
  margin: '0 1px'
23468
23443
  },
23469
23444
  vertical: {
23470
23445
  width: '20px',
23471
23446
  height: '2px',
23472
- backgroundColor: 'color.gray.400',
23447
+ backgroundColor: 'color-gray-400',
23473
23448
  margin: '1px 0'
23474
23449
  }
23475
23450
  };
@@ -23557,7 +23532,7 @@
23557
23532
  flex: "0 0 auto",
23558
23533
  width: orientation === 'horizontal' ? '10px' : '100%',
23559
23534
  height: orientation === 'vertical' ? '10px' : '100%',
23560
- backgroundColor: "color.gray.200",
23535
+ backgroundColor: "color-gray-200",
23561
23536
  cursor: "pointer",
23562
23537
  onClick: () => togglePanelCollapse(id),
23563
23538
  "aria-label": "Expand panel " + id,
@@ -23669,9 +23644,9 @@
23669
23644
  width: "16px",
23670
23645
  height: "16px",
23671
23646
  borderRadius: "full",
23672
- backgroundColor: "color.gray.100",
23647
+ backgroundColor: "color-gray-100",
23673
23648
  border: "1px solid",
23674
- borderColor: "color.gray.300",
23649
+ borderColor: "color-gray-300",
23675
23650
  display: "flex",
23676
23651
  alignItems: "center",
23677
23652
  justifyContent: "center",
@@ -23683,7 +23658,7 @@
23683
23658
  tabIndex: 0,
23684
23659
  pointerEvents: "auto",
23685
23660
  _hover: {
23686
- backgroundColor: 'color.gray.200'
23661
+ backgroundColor: 'color-gray-200'
23687
23662
  }
23688
23663
  }, views == null ? void 0 : views.collapseIcon), /*#__PURE__*/React__default.createElement(appStudio.View, {
23689
23664
  width: "8px",
@@ -23697,11 +23672,11 @@
23697
23672
  React__default.createElement(appStudio.Horizontal, null, /*#__PURE__*/React__default.createElement(appStudio.View, {
23698
23673
  width: "6px",
23699
23674
  height: "2px",
23700
- backgroundColor: "color.gray.600"
23675
+ backgroundColor: "color-gray-600"
23701
23676
  }), /*#__PURE__*/React__default.createElement(appStudio.View, {
23702
23677
  width: "2px",
23703
23678
  height: "6px",
23704
- backgroundColor: "color.gray.600",
23679
+ backgroundColor: "color-gray-600",
23705
23680
  position: "absolute"
23706
23681
  }))) : (
23707
23682
  /*#__PURE__*/
@@ -23709,7 +23684,7 @@
23709
23684
  React__default.createElement(appStudio.View, {
23710
23685
  width: "6px",
23711
23686
  height: "2px",
23712
- backgroundColor: "color.gray.600"
23687
+ backgroundColor: "color-gray-600"
23713
23688
  }))))));
23714
23689
  };
23715
23690
  // Main Resizable View component
@@ -23822,50 +23797,50 @@
23822
23797
  var Themes$1 = {
23823
23798
  info: {
23824
23799
  container: {
23825
- backgroundColor: 'color.blue.50',
23826
- border: 'color.blue.300'
23800
+ backgroundColor: 'color-blue-50',
23801
+ border: 'color-blue-300'
23827
23802
  },
23828
23803
  content: {
23829
- color: 'color.blue.700'
23804
+ color: 'color-blue-700'
23830
23805
  },
23831
23806
  icon: {
23832
- color: 'color.blue.500'
23807
+ color: 'color-blue-500'
23833
23808
  }
23834
23809
  },
23835
23810
  success: {
23836
23811
  container: {
23837
- backgroundColor: 'color.green.50',
23838
- border: 'color.green.300'
23812
+ backgroundColor: 'color-green-50',
23813
+ border: 'color-green-300'
23839
23814
  },
23840
23815
  content: {
23841
- color: 'color.green.700'
23816
+ color: 'color-green-700'
23842
23817
  },
23843
23818
  icon: {
23844
- color: 'color.green.500'
23819
+ color: 'color-green-500'
23845
23820
  }
23846
23821
  },
23847
23822
  warning: {
23848
23823
  container: {
23849
- backgroundColor: 'color.orange.50',
23850
- border: 'color.orange.300'
23824
+ backgroundColor: 'color-orange-50',
23825
+ border: 'color-orange-300'
23851
23826
  },
23852
23827
  content: {
23853
- color: 'color.orange.700'
23828
+ color: 'color-orange-700'
23854
23829
  },
23855
23830
  icon: {
23856
- color: 'color.orange.500'
23831
+ color: 'color-orange-500'
23857
23832
  }
23858
23833
  },
23859
23834
  error: {
23860
23835
  container: {
23861
- backgroundColor: 'color.red.50',
23862
- border: 'color.red.300'
23836
+ backgroundColor: 'color-red-50',
23837
+ border: 'color-red-300'
23863
23838
  },
23864
23839
  content: {
23865
- color: 'color.red.700'
23840
+ color: 'color-red-700'
23866
23841
  },
23867
23842
  icon: {
23868
- color: 'color.red.500'
23843
+ color: 'color-red-500'
23869
23844
  }
23870
23845
  }
23871
23846
  };
@@ -24019,37 +23994,40 @@
24019
23994
  var Theme = theme != null ? theme : Themes$1;
24020
23995
  // Get the appropriate icon based on the variant
24021
23996
  var getIcon = () => {
23997
+ var _Themes$variant;
24022
23998
  // If a custom icon is provided, use it
24023
23999
  if (customIcon !== undefined) {
24024
24000
  return customIcon;
24025
24001
  }
24026
24002
  // Otherwise use the default icon based on variant
24003
+ // Get icon color from Themes configuration
24004
+ 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;
24027
24005
  switch (variant) {
24028
24006
  case 'info':
24029
24007
  return /*#__PURE__*/React__default.createElement(InfoIcon, {
24030
24008
  widthHeight: 20,
24031
- color: Theme.info.icon.color
24009
+ color: iconColor
24032
24010
  });
24033
24011
  case 'success':
24034
24012
  return /*#__PURE__*/React__default.createElement(PlayIcon, {
24035
24013
  widthHeight: 20,
24036
- color: Theme.success.icon.color
24014
+ color: iconColor
24037
24015
  });
24038
24016
  case 'warning':
24039
24017
  return /*#__PURE__*/React__default.createElement(InfoIcon, {
24040
24018
  widthHeight: 20,
24041
- color: Theme.warning.icon.color,
24019
+ color: iconColor,
24042
24020
  orientation: "down"
24043
24021
  });
24044
24022
  case 'error':
24045
24023
  return /*#__PURE__*/React__default.createElement(DustBinIcon, {
24046
24024
  widthHeight: 20,
24047
- color: Theme.error.icon.color
24025
+ color: iconColor
24048
24026
  });
24049
24027
  default:
24050
24028
  return /*#__PURE__*/React__default.createElement(InfoIcon, {
24051
24029
  widthHeight: 20,
24052
- color: Theme.info.icon.color
24030
+ color: Themes$1.info.icon.color
24053
24031
  });
24054
24032
  }
24055
24033
  };
@@ -24403,24 +24381,24 @@
24403
24381
  var getCommand = themeMode => {
24404
24382
  return {
24405
24383
  default: {
24406
- backgroundColor: 'color.white',
24384
+ backgroundColor: 'color-white',
24407
24385
  borderWidth: '1px',
24408
24386
  borderStyle: 'solid',
24409
- borderColor: 'color.gray.200',
24387
+ borderColor: 'color-gray-200',
24410
24388
  boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.1)'
24411
24389
  },
24412
24390
  filled: {
24413
- backgroundColor: 'color.gray.50',
24391
+ backgroundColor: 'color-gray-50',
24414
24392
  borderWidth: '1px',
24415
24393
  borderStyle: 'solid',
24416
- borderColor: 'color.gray.200',
24394
+ borderColor: 'color-gray-200',
24417
24395
  boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.1)'
24418
24396
  },
24419
24397
  outline: {
24420
- backgroundColor: 'color.white',
24398
+ backgroundColor: 'color-white',
24421
24399
  borderWidth: '2px',
24422
24400
  borderStyle: 'solid',
24423
- borderColor: 'color.gray.300',
24401
+ borderColor: 'color-gray-300',
24424
24402
  boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.1)'
24425
24403
  }
24426
24404
  };
@@ -24434,7 +24412,7 @@
24434
24412
  padding: '12px 16px',
24435
24413
  borderBottomWidth: '1px',
24436
24414
  borderBottomStyle: 'solid',
24437
- borderBottomColor: 'color.gray.200'
24415
+ borderBottomColor: 'color-gray-200'
24438
24416
  };
24439
24417
  var CommandListStyles = {
24440
24418
  overflow: 'auto',
@@ -24447,7 +24425,7 @@
24447
24425
  padding: '8px 16px',
24448
24426
  fontSize: '12px',
24449
24427
  fontWeight: 'bold',
24450
- color: 'color.gray.500',
24428
+ color: 'color-gray-500',
24451
24429
  textTransform: 'uppercase'
24452
24430
  };
24453
24431
  var CommandItemStyles = {
@@ -24459,13 +24437,13 @@
24459
24437
  borderRadius: '4px',
24460
24438
  margin: '0 8px',
24461
24439
  _hover: {
24462
- backgroundColor: 'color.gray.100'
24440
+ backgroundColor: 'color-gray-100'
24463
24441
  }
24464
24442
  };
24465
24443
  var CommandItemSelectedStyles = {
24466
- backgroundColor: 'color.blue.50',
24444
+ backgroundColor: 'color-blue-50',
24467
24445
  _hover: {
24468
- backgroundColor: 'color.blue.100'
24446
+ backgroundColor: 'color-blue-100'
24469
24447
  }
24470
24448
  };
24471
24449
  var CommandItemDisabledStyles = {
@@ -24480,7 +24458,7 @@
24480
24458
  alignItems: 'center',
24481
24459
  justifyContent: 'center',
24482
24460
  marginRight: '12px',
24483
- color: 'color.gray.500'
24461
+ color: 'color-gray-500'
24484
24462
  };
24485
24463
  var CommandItemContentStyles = {
24486
24464
  display: 'flex',
@@ -24493,7 +24471,7 @@
24493
24471
  };
24494
24472
  var CommandItemDescriptionStyles = {
24495
24473
  fontSize: '12px',
24496
- color: 'color.gray.500',
24474
+ color: 'color-gray-500',
24497
24475
  marginTop: '2px'
24498
24476
  };
24499
24477
  var CommandItemShortcutStyles = {
@@ -24501,14 +24479,14 @@
24501
24479
  alignItems: 'center',
24502
24480
  marginLeft: '12px',
24503
24481
  fontSize: '12px',
24504
- color: 'color.gray.500'
24482
+ color: 'color-gray-500'
24505
24483
  };
24506
24484
  var CommandEmptyStyles = {
24507
24485
  display: 'flex',
24508
24486
  alignItems: 'center',
24509
24487
  justifyContent: 'center',
24510
24488
  padding: '16px',
24511
- color: 'color.gray.500',
24489
+ color: 'color-gray-500',
24512
24490
  textAlign: 'center'
24513
24491
  };
24514
24492
  var CommandFooterStyles = {
@@ -24518,9 +24496,9 @@
24518
24496
  padding: '8px 16px',
24519
24497
  borderTopWidth: '1px',
24520
24498
  borderTopStyle: 'solid',
24521
- borderTopColor: 'color.gray.200',
24499
+ borderTopColor: 'color-gray-200',
24522
24500
  fontSize: '12px',
24523
- color: 'color.gray.500'
24501
+ color: 'color-gray-500'
24524
24502
  };
24525
24503
 
24526
24504
  var _excluded$1j = ["value", "onValueChange", "placeholder", "views"],
@@ -24565,7 +24543,7 @@
24565
24543
  }, []);
24566
24544
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, CommandInputStyles, views == null ? void 0 : views.container, props), /*#__PURE__*/React__default.createElement(SearchIcon, {
24567
24545
  widthHeight: 16,
24568
- color: "color.gray.400",
24546
+ color: "color-gray-400",
24569
24547
  marginRight: "8px"
24570
24548
  }), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
24571
24549
  as: "input",
@@ -24916,25 +24894,25 @@
24916
24894
  var getTooltip = themeMode => {
24917
24895
  return {
24918
24896
  default: {
24919
- backgroundColor: 'color.gray.900',
24920
- color: 'color.white',
24897
+ backgroundColor: 'color-gray-900',
24898
+ color: 'color-white',
24921
24899
  borderRadius: '6px',
24922
24900
  boxShadow: '0px 4px 6px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.06)',
24923
24901
  transition: 'opacity 0.15s ease'
24924
24902
  },
24925
24903
  light: {
24926
- backgroundColor: 'color.white',
24927
- color: 'color.gray.800',
24904
+ backgroundColor: 'color-white',
24905
+ color: 'color-gray-800',
24928
24906
  borderWidth: '1px',
24929
24907
  borderStyle: 'solid',
24930
- borderColor: 'color.gray.200',
24908
+ borderColor: 'color-gray-200',
24931
24909
  borderRadius: '6px',
24932
24910
  boxShadow: '0px 4px 6px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.04)',
24933
24911
  transition: 'opacity 0.15s ease'
24934
24912
  },
24935
24913
  dark: {
24936
- backgroundColor: 'color.gray.950',
24937
- color: 'color.white',
24914
+ backgroundColor: 'color-gray-950',
24915
+ color: 'color-white',
24938
24916
  borderRadius: '6px',
24939
24917
  boxShadow: '0px 4px 6px rgba(0, 0, 0, 0.2), 0px 2px 4px rgba(0, 0, 0, 0.12)',
24940
24918
  transition: 'opacity 0.15s ease'
@@ -25409,33 +25387,33 @@
25409
25387
  */
25410
25388
  var DefaultColorStops = {
25411
25389
  linear: [{
25412
- color: 'color.blue.500',
25390
+ color: 'color-blue-500',
25413
25391
  position: '0%'
25414
25392
  }, {
25415
- color: 'color.purple.500',
25393
+ color: 'color-purple-500',
25416
25394
  position: '100%'
25417
25395
  }],
25418
25396
  radial: [{
25419
- color: 'color.blue.500',
25397
+ color: 'color-blue-500',
25420
25398
  position: '0%'
25421
25399
  }, {
25422
- color: 'color.purple.500',
25400
+ color: 'color-purple-500',
25423
25401
  position: '100%'
25424
25402
  }],
25425
25403
  conic: [{
25426
- color: 'color.red.500',
25404
+ color: 'color-red-500',
25427
25405
  position: '0deg'
25428
25406
  }, {
25429
- color: 'color.yellow.500',
25407
+ color: 'color-yellow-500',
25430
25408
  position: '90deg'
25431
25409
  }, {
25432
- color: 'color.green.500',
25410
+ color: 'color-green-500',
25433
25411
  position: '180deg'
25434
25412
  }, {
25435
- color: 'color.blue.500',
25413
+ color: 'color-blue-500',
25436
25414
  position: '270deg'
25437
25415
  }, {
25438
- color: 'color.red.500',
25416
+ color: 'color-red-500',
25439
25417
  position: '360deg'
25440
25418
  }]
25441
25419
  };
@@ -25541,14 +25519,9 @@
25541
25519
  animate = false,
25542
25520
  animationDuration = 3,
25543
25521
  children,
25544
- views,
25545
- themeMode: elementMode
25522
+ views
25546
25523
  } = _ref,
25547
25524
  props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
25548
- var {
25549
- getColor,
25550
- themeMode
25551
- } = appStudio.useTheme();
25552
25525
  // Determine color stops to use
25553
25526
  var colorStops = React.useMemo(() => {
25554
25527
  // If colors array is provided, use it
@@ -25572,12 +25545,10 @@
25572
25545
  var gradientString = React.useMemo(() => {
25573
25546
  // Process color stops to resolve theme colors
25574
25547
  var processedColorStops = colorStops.map(stop => Object.assign({}, stop, {
25575
- color: getColor(stop.color, elementMode ? {
25576
- themeMode: elementMode
25577
- } : undefined)
25548
+ color: stop.color
25578
25549
  }));
25579
25550
  return generateGradientString(type, processedColorStops, direction, shape, position);
25580
- }, [type, colorStops, direction, shape, position, getColor, themeMode, elementMode]);
25551
+ }, [type, colorStops, direction, shape, position]);
25581
25552
  // Prepare animation styles if animation is enabled
25582
25553
  var animationStyles = React.useMemo(() => {
25583
25554
  if (!animate) return {};
@@ -25600,16 +25571,16 @@
25600
25571
  *
25601
25572
  * @example
25602
25573
  * // Basic linear gradient
25603
- * <Gradient from="blue.500" to="purple.500" height="200px" width="100%" />
25574
+ * <Gradient from="blue-500" to="purple-500" height="200px" width="100%" />
25604
25575
  *
25605
25576
  * @example
25606
25577
  * // Radial gradient with content
25607
25578
  * <Gradient
25608
25579
  * type="radial"
25609
25580
  * colors={[
25610
- * { color: 'red.500', position: '0%' },
25611
- * { color: 'orange.500', position: '50%' },
25612
- * { color: 'yellow.500', position: '100%' }
25581
+ * { color: 'red-500', position: '0%' },
25582
+ * { color: 'orange-500', position: '50%' },
25583
+ * { color: 'yellow-500', position: '100%' }
25613
25584
  * ]}
25614
25585
  * height="200px"
25615
25586
  * >
@@ -25744,7 +25715,7 @@
25744
25715
  height: 300,
25745
25716
  position: "relative",
25746
25717
  overflow: "hidden",
25747
- backgroundColor: "color.gray.50",
25718
+ backgroundColor: "color-gray-50",
25748
25719
  zIndex: 0,
25749
25720
  transform: "skewX(-48deg) skewY(14deg) scale(0.675) rotate(0deg) translateZ(0)"
25750
25721
  }, props), rowsArray.map((_, i) => (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, {
@@ -25755,7 +25726,7 @@
25755
25726
  height: squareSize / 3,
25756
25727
  width: squareSize,
25757
25728
  borderStyle: "solid",
25758
- borderColor: "color.gray.200",
25729
+ borderColor: "color-gray-200",
25759
25730
  borderWidth: 0.5,
25760
25731
  backgroundColor: "transparent",
25761
25732
  cursor: "pointer",
@@ -25799,7 +25770,7 @@
25799
25770
  height: 300,
25800
25771
  position: "relative",
25801
25772
  overflow: "hidden",
25802
- backgroundColor: "color.gray.900"
25773
+ backgroundColor: "color-gray-900"
25803
25774
  }, props), particles.map(idx => {
25804
25775
  var size = Math.random() * 8 + 4; // 4-12px
25805
25776
  var startX = Math.random() * 400;
@@ -25883,7 +25854,7 @@
25883
25854
  height: 300,
25884
25855
  position: "relative",
25885
25856
  overflow: "hidden",
25886
- backgroundColor: "color.gray.900"
25857
+ backgroundColor: "color-gray-900"
25887
25858
  }, props), Array.from({
25888
25859
  length: cols + 1
25889
25860
  }, (_, i) => (/*#__PURE__*/React__default.createElement(appStudio.View, {
@@ -25959,7 +25930,7 @@
25959
25930
  height: 300,
25960
25931
  position: "relative",
25961
25932
  overflow: "hidden",
25962
- backgroundColor: "color.gray.100"
25933
+ backgroundColor: "color-gray-100"
25963
25934
  }, props), ripples.map(ripple => (/*#__PURE__*/React__default.createElement(appStudio.View, {
25964
25935
  key: ripple.id,
25965
25936
  position: "absolute",
@@ -26085,15 +26056,15 @@
26085
26056
  var BackgroundOverlay = _ref10 => {
26086
26057
  var {
26087
26058
  contentPosition,
26088
- backgroundColor = 'color.black.900'
26059
+ backgroundColor = 'color-black-900'
26089
26060
  } = _ref10,
26090
26061
  props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
26091
26062
  var getDefaultOverlay = () => {
26092
- var ligthBackground = backgroundColor + ".100";
26093
- var darkBackground = backgroundColor + ".900";
26094
- var midBackground = backgroundColor + ".600";
26095
- var midDarkBackground = backgroundColor + ".400";
26096
- if (backgroundColor.indexOf('.') === -1) {
26063
+ var ligthBackground = backgroundColor + "-100";
26064
+ var darkBackground = backgroundColor + "-900";
26065
+ var midBackground = backgroundColor + "-600";
26066
+ var midDarkBackground = backgroundColor + "-400";
26067
+ if (backgroundColor.indexOf('-') === -1) {
26097
26068
  ligthBackground = "color-mix(in srgb, " + backgroundColor + " 10%, transparent)";
26098
26069
  darkBackground = "color-mix(in srgb, " + backgroundColor + " 90%, transparent)";
26099
26070
  midBackground = "color-mix(in srgb, " + backgroundColor + " 70%, transparent)";
@@ -26166,7 +26137,7 @@
26166
26137
  var rotationOffset = Math.sin(rotationRad) * 100; // percentage-based estimate
26167
26138
  var scaleOffset = (decorationScale - 1) * 100 / 2;
26168
26139
  var extraPadding = Math.ceil(rotationOffset + scaleOffset);
26169
- var backgroundColor = (_props$backgroundColo = props.backgroundColor) != null ? _props$backgroundColo : 'theme.primary';
26140
+ var backgroundColor = (_props$backgroundColo = props.backgroundColor) != null ? _props$backgroundColo : 'theme-primary';
26170
26141
  return /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({}, props, {
26171
26142
  ref: ref,
26172
26143
  backgroundColor: 'transparent',
@@ -26266,7 +26237,7 @@
26266
26237
  *
26267
26238
  * @example
26268
26239
  * // Background Gradient
26269
- * <Background.Gradient from="blue.500" to="purple.500" animate={true}>
26240
+ * <Background.Gradient from="blue-500" to="purple-500" animate={true}>
26270
26241
  * <Text color="white">Content over gradient</Text>
26271
26242
  * </Background.Gradient>
26272
26243
  */
@@ -26567,7 +26538,7 @@
26567
26538
  alignItems: "center",
26568
26539
  justifyContent: "center",
26569
26540
  flex: 1,
26570
- color: "color.gray.400"
26541
+ color: "color-gray-400"
26571
26542
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26572
26543
  fontSize: "14px"
26573
26544
  }, "No messages yet. Start a conversation!"))) : messages.map(message => (/*#__PURE__*/React__default.createElement(ChatBubble, {
@@ -26599,7 +26570,7 @@
26599
26570
  animation: 'spin 1s linear infinite'
26600
26571
  }
26601
26572
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26602
- color: "color.gray.500",
26573
+ color: "color-gray-500",
26603
26574
  fontSize: "14px"
26604
26575
  }, loadingText)))), /*#__PURE__*/React__default.createElement(appStudio.View, null, selectedContextElements.length > 0 && (/*#__PURE__*/React__default.createElement(appStudio.Horizontal, Object.assign({
26605
26576
  gap: 8,
@@ -26616,7 +26587,7 @@
26616
26587
  gap: 6
26617
26588
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26618
26589
  fontSize: "12px",
26619
- color: "color.blue.700",
26590
+ color: "color-blue-700",
26620
26591
  fontWeight: "500"
26621
26592
  }, element.name), /*#__PURE__*/React__default.createElement(appStudio.View, {
26622
26593
  as: "button",
@@ -26629,7 +26600,7 @@
26629
26600
  alignItems: "center"
26630
26601
  }, /*#__PURE__*/React__default.createElement(CloseIcon, {
26631
26602
  widthHeight: 12,
26632
- color: "color.blue.700"
26603
+ color: "color-blue-700"
26633
26604
  }))))))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26634
26605
  as: "form",
26635
26606
  onSubmit: handleSubmit
@@ -26638,11 +26609,11 @@
26638
26609
  type: "button"
26639
26610
  }, DefaultChatWidgetStyles.attachmentButton, styles.attachmentButton, {
26640
26611
  _hover: {
26641
- backgroundColor: 'color.gray.100'
26612
+ backgroundColor: 'color-gray-100'
26642
26613
  }
26643
26614
  }), /*#__PURE__*/React__default.createElement(AttachmentIcon, {
26644
26615
  widthHeight: 16,
26645
- color: "color.gray.600"
26616
+ color: "color-gray-600"
26646
26617
  }))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26647
26618
  as: "textarea",
26648
26619
  ref: inputRef,
@@ -26664,20 +26635,20 @@
26664
26635
  onClick: onContextPickerClick
26665
26636
  }, DefaultChatWidgetStyles.attachmentButton, styles.contextPickerButton, {
26666
26637
  _hover: Object.assign({
26667
- backgroundColor: 'color.gray.100'
26638
+ backgroundColor: 'color-gray-100'
26668
26639
  }, (_styles$contextPicker = styles.contextPickerButton) == null ? void 0 : _styles$contextPicker._hover),
26669
26640
  title: "Select element from page"
26670
26641
  }), /*#__PURE__*/React__default.createElement(MousePointerIcon, {
26671
26642
  widthHeight: 16,
26672
- color: "color.gray.600"
26643
+ color: "color-gray-600"
26673
26644
  }))), /*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26674
26645
  as: "button",
26675
26646
  type: "submit",
26676
26647
  disabled: !hasText || disableInput || isLoading
26677
26648
  }, DefaultChatWidgetStyles.sendButton, {
26678
- backgroundColor: hasText ? 'theme.primary' : 'color.gray.300',
26649
+ backgroundColor: hasText ? 'theme-primary' : 'color-gray-300',
26679
26650
  _hover: {
26680
- backgroundColor: hasText ? 'color.blue.600' : 'color.gray.300'
26651
+ backgroundColor: hasText ? 'color-blue-600' : 'color-gray-300'
26681
26652
  }
26682
26653
  }, styles.sendButton, {
26683
26654
  style: {
@@ -26686,7 +26657,7 @@
26686
26657
  }
26687
26658
  }), /*#__PURE__*/React__default.createElement(SendIcon, {
26688
26659
  widthHeight: 16,
26689
- color: "color.white",
26660
+ color: "color-white",
26690
26661
  filled: false
26691
26662
  }))))));
26692
26663
  };
@@ -26716,10 +26687,10 @@
26716
26687
  opacity: 0.7
26717
26688
  }, /*#__PURE__*/React__default.createElement(InfoIcon, {
26718
26689
  widthHeight: 12,
26719
- color: "color.gray.600"
26690
+ color: "color-gray-600"
26720
26691
  }), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26721
26692
  fontSize: "12px",
26722
- color: "color.gray.600",
26693
+ color: "color-gray-600",
26723
26694
  fontStyle: "italic"
26724
26695
  }, message.content)));
26725
26696
  }
@@ -26740,16 +26711,16 @@
26740
26711
  border: "1px solid rgba(0,0,0,0.05)"
26741
26712
  }, /*#__PURE__*/React__default.createElement(SettingsIcon, {
26742
26713
  widthHeight: 14,
26743
- color: "color.gray.600"
26714
+ color: "color-gray-600"
26744
26715
  }), /*#__PURE__*/React__default.createElement(appStudio.Vertical, {
26745
26716
  gap: 2
26746
26717
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26747
26718
  fontSize: "11px",
26748
26719
  fontWeight: "600",
26749
- color: "color.gray.700"
26720
+ color: "color-gray-700"
26750
26721
  }, "Tool Usage"), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26751
26722
  fontSize: "12px",
26752
- color: "color.gray.600",
26723
+ color: "color-gray-600",
26753
26724
  fontFamily: "monospace"
26754
26725
  }, message.content))));
26755
26726
  }
@@ -26797,12 +26768,12 @@
26797
26768
  padding: 0
26798
26769
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26799
26770
  fontSize: "11px",
26800
- color: "color.gray.500",
26771
+ color: "color-gray-500",
26801
26772
  fontWeight: "600"
26802
26773
  }, "Thinking Process"), /*#__PURE__*/React__default.createElement(ChevronIcon, {
26803
26774
  orientation: isReasoningOpen ? 'down' : 'right',
26804
26775
  widthHeight: 10,
26805
- color: "color.gray.500"
26776
+ color: "color-gray-500"
26806
26777
  })), isReasoningOpen && (/*#__PURE__*/React__default.createElement(appStudio.View, Object.assign({
26807
26778
  padding: "8px",
26808
26779
  backgroundColor: "rgba(0,0,0,0.03)",
@@ -26810,7 +26781,7 @@
26810
26781
  marginTop: "4px"
26811
26782
  }, styles.reasoningContent), /*#__PURE__*/React__default.createElement(appStudio.Text, {
26812
26783
  fontSize: "12px",
26813
- color: "color.gray.600",
26784
+ color: "color-gray-600",
26814
26785
  fontStyle: "italic"
26815
26786
  }, message.reasoning))))), /*#__PURE__*/React__default.createElement(appStudio.View, {
26816
26787
  whiteSpace: "pre-wrap",
@@ -26843,7 +26814,7 @@
26843
26814
  fontSize: "11px",
26844
26815
  border: "1px solid rgba(37, 99, 235, 0.2)"
26845
26816
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
26846
- color: "color.blue.700",
26817
+ color: "color-blue-700",
26847
26818
  fontWeight: "500"
26848
26819
  }, element.name))))))));
26849
26820
  };
@@ -27116,7 +27087,7 @@
27116
27087
  alignItems: "center"
27117
27088
  }, /*#__PURE__*/React__default.createElement(appStudio.Text, {
27118
27089
  fontWeight: "bold",
27119
- color: "color.gray.800"
27090
+ color: "color-gray-800"
27120
27091
  }, "ChatWidget Assistant"), /*#__PURE__*/React__default.createElement(appStudio.View, {
27121
27092
  as: "button",
27122
27093
  onClick: () => setIsOpen(false),
@@ -27130,7 +27101,7 @@
27130
27101
  }
27131
27102
  }, /*#__PURE__*/React__default.createElement(CloseIcon, {
27132
27103
  widthHeight: 16,
27133
- color: "color.gray.500"
27104
+ color: "color-gray-500"
27134
27105
  }))), /*#__PURE__*/React__default.createElement(ChatWidget, {
27135
27106
  messages: messages,
27136
27107
  onSubmit: handleSubmit,
@@ -27157,7 +27128,7 @@
27157
27128
  width: "56px",
27158
27129
  height: "56px",
27159
27130
  borderRadius: "50%",
27160
- backgroundColor: "theme.primary",
27131
+ backgroundColor: "theme-primary",
27161
27132
  border: "none",
27162
27133
  boxShadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
27163
27134
  cursor: "pointer",