@rarui/styles 1.30.1-rc.1 → 1.30.1-rc.2

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
@@ -7395,6 +7395,15 @@ declare const chipStyles: {
7395
7395
  height: "1.5rem";
7396
7396
  };
7397
7397
  };
7398
+ textOverflow: {
7399
+ true: {
7400
+ textOverflow: "ellipsis";
7401
+ whiteSpace: "nowrap";
7402
+ minWidth: "100%";
7403
+ width: "100%";
7404
+ display: "block";
7405
+ };
7406
+ };
7398
7407
  }>;
7399
7408
  close: string;
7400
7409
  overlay: string;
@@ -7404,7 +7413,8 @@ declare const paddingProperties: {
7404
7413
  small: string;
7405
7414
  };
7406
7415
  export type ChipVariants = RecipeVariants<typeof chipStyles.chip>;
7407
- export interface ChipSprinkle {
7416
+ export type ChipDynamicProperties = Pick<StandardLonghandProperties, "textTransform">;
7417
+ export interface ChipSprinkle extends ChipDynamicProperties {
7408
7418
  /**
7409
7419
  * The padding properties are used to generate space around an chip's content area.
7410
7420
  */
@@ -7440,6 +7450,15 @@ export declare const chip: {
7440
7450
  height: "1.5rem";
7441
7451
  };
7442
7452
  };
7453
+ textOverflow: {
7454
+ true: {
7455
+ textOverflow: "ellipsis";
7456
+ whiteSpace: "nowrap";
7457
+ minWidth: "100%";
7458
+ width: "100%";
7459
+ display: "block";
7460
+ };
7461
+ };
7443
7462
  }>;
7444
7463
  close: string;
7445
7464
  overlay: string;
@@ -7465,6 +7484,21 @@ export declare const chip: {
7465
7484
  name: "padding";
7466
7485
  };
7467
7486
  };
7487
+ } & {
7488
+ config: {
7489
+ textTransform: {
7490
+ dynamic: {
7491
+ default: string;
7492
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
7493
+ };
7494
+ dynamicScale: true;
7495
+ name: "textTransform";
7496
+ vars: {
7497
+ default: string;
7498
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
7499
+ };
7500
+ };
7501
+ };
7468
7502
  }
7469
7503
  ]>;
7470
7504
  };
@@ -8893,7 +8927,7 @@ declare const textFontSizeProperties: {
8893
8927
  l: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8894
8928
  xl: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8895
8929
  };
8896
- export type TextDynamicProperties = Pick<StandardLonghandProperties, "textAlign" | "wordBreak" | "textTransform"> & Pick<StandardShorthandProperties, "textDecoration">;
8930
+ export type TextDynamicProperties = Pick<StandardLonghandProperties, "textAlign" | "wordBreak" | "textTransform" | "textOverflow" | "width" | "whiteSpace"> & Pick<StandardShorthandProperties, "textDecoration" | "overflow">;
8897
8931
  export interface TextSprinkle extends TextDynamicProperties {
8898
8932
  /**
8899
8933
  * The color property is used to set the color of the title.
@@ -9183,6 +9217,54 @@ export declare const text: {
9183
9217
  conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9184
9218
  };
9185
9219
  };
9220
+ textOverflow: {
9221
+ dynamic: {
9222
+ default: string;
9223
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9224
+ };
9225
+ dynamicScale: true;
9226
+ name: "textOverflow";
9227
+ vars: {
9228
+ default: string;
9229
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9230
+ };
9231
+ };
9232
+ width: {
9233
+ dynamic: {
9234
+ default: string;
9235
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9236
+ };
9237
+ dynamicScale: true;
9238
+ name: "width";
9239
+ vars: {
9240
+ default: string;
9241
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9242
+ };
9243
+ };
9244
+ overflow: {
9245
+ dynamic: {
9246
+ default: string;
9247
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9248
+ };
9249
+ dynamicScale: true;
9250
+ name: "overflow";
9251
+ vars: {
9252
+ default: string;
9253
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9254
+ };
9255
+ };
9256
+ whiteSpace: {
9257
+ dynamic: {
9258
+ default: string;
9259
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9260
+ };
9261
+ dynamicScale: true;
9262
+ name: "whiteSpace";
9263
+ vars: {
9264
+ default: string;
9265
+ conditions: Record<"xs" | "xl" | "md" | "lg", string>;
9266
+ };
9267
+ };
9186
9268
  };
9187
9269
  }
9188
9270
  ]>;