@nimbus-ds/components 5.28.0 → 5.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -923,11 +923,9 @@ export interface IconButtonSprinkle {
923
923
  }
924
924
  declare const propertiesText: {
925
925
  color: {
926
+ "ai-generative": "transparent";
926
927
  currentColor: string;
927
- "primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`; /**
928
- * The color property is used to set the color of the text.
929
- * @default neutral-textLow
930
- */
928
+ "primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
931
929
  "primary-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
932
930
  "primary-textLow": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
933
931
  "primary-textHigh": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -938,9 +936,7 @@ declare const propertiesText: {
938
936
  "warning-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
939
937
  "warning-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
940
938
  "warning-textLow": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
941
- "warning-textHigh": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`; /**
942
- * The textDecoration shorthand property sets the appearance of decorative lines on text.
943
- */
939
+ "warning-textHigh": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
944
940
  "danger-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
945
941
  "danger-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
946
942
  "danger-textLow": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -999,6 +995,7 @@ export interface TextSprinkle {
999
995
  textAlign?: TextAlign | TextConditions<TextAlign>;
1000
996
  /**
1001
997
  * The color property is used to set the color of the text.
998
+ * Note: Gradients like 'ai-generative' changes other properties like 'width' and 'display', which could make the component behave differently. Ensure to visually test the component when dynamically changing the color.
1002
999
  * @default neutral-textLow
1003
1000
  */
1004
1001
  color?: TextColorProperties | TextConditions<TextColorProperties>;
@@ -1093,6 +1090,10 @@ declare const text: {
1093
1090
  default: string;
1094
1091
  conditions: Record<"xs" | "md" | "lg" | "xl", string>;
1095
1092
  };
1093
+ "ai-generative": {
1094
+ default: string;
1095
+ conditions: Record<"xs" | "md" | "lg" | "xl", string>;
1096
+ };
1096
1097
  "primary-textHigh": {
1097
1098
  default: string;
1098
1099
  conditions: Record<"xs" | "md" | "lg" | "xl", string>;
@@ -1119,6 +1120,7 @@ declare const text: {
1119
1120
  };
1120
1121
  };
1121
1122
  staticScale: {
1123
+ "ai-generative": "transparent";
1122
1124
  currentColor: string;
1123
1125
  "primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1124
1126
  "primary-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -1311,6 +1313,7 @@ declare const text: {
1311
1313
  ]>;
1312
1314
  properties: {
1313
1315
  color: {
1316
+ "ai-generative": "transparent";
1314
1317
  currentColor: string;
1315
1318
  "primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
1316
1319
  "primary-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -1354,9 +1357,19 @@ declare const text: {
1354
1357
  wordBreak: WordBreak[];
1355
1358
  textDecoration: TextDecoration[];
1356
1359
  };
1360
+ aiColors: {
1361
+ readonly "ai-generative": "transparent";
1362
+ };
1363
+ aiStyles: {
1364
+ readonly "ai-generative": string;
1365
+ };
1357
1366
  classnames: {
1358
1367
  base: string;
1359
1368
  trim: string;
1369
+ aiGenerative: string;
1370
+ aiStyles: {
1371
+ readonly "ai-generative": string;
1372
+ };
1360
1373
  };
1361
1374
  };
1362
1375
  declare const propertiesTitle: {