@rarui/styles 1.15.0 → 1.17.0-rc.1
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/CHANGELOG.md +14 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +387 -106
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/themes/dark.js +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -3590,7 +3590,7 @@ declare namespace Property {
|
|
|
3590
3590
|
type ObjectFit = "contain" | "cover" | "fill" | "none" | "scale-down";
|
|
3591
3591
|
type ObjectPosition = DataType.Position;
|
|
3592
3592
|
type OffsetAnchor = DataType.Position | "auto";
|
|
3593
|
-
type Opacity =
|
|
3593
|
+
type Opacity = string;
|
|
3594
3594
|
type Order = number;
|
|
3595
3595
|
type Orphans = OnlyNumber;
|
|
3596
3596
|
type Outline = DataType.Color | DataType.LineStyle | DataType.LineWidth | "auto" | "invert" | OnlyString;
|
|
@@ -4136,7 +4136,7 @@ export interface BoxConditions<T> extends Conditions<T> {
|
|
|
4136
4136
|
hover?: T;
|
|
4137
4137
|
disabled?: T;
|
|
4138
4138
|
}
|
|
4139
|
-
export type BoxDynamicProperties = Pick<StandardLonghandProperties, "display" | "width" | "height" | "maxWidth" | "maxHeight" | "minWidth" | "minHeight" | "bottom" | "left" | "right" | "top" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "flexShrink" | "flexGrow" | "order" | "transitionDelay" | "transitionProperty" | "backgroundImage" | "backgroundBlendMode" | "backgroundRepeat" | "backgroundSize" | "flexDirection" | "flexWrap" | "flexBasis" | "justifyContent" | "justifyItems" | "alignContent" | "alignItems" | "alignSelf" | "pointerEvents" | "position" | "boxSizing" | "cursor" | "overflowX" | "overflowY" | "transitionTimingFunction" | "textAlign"> & Pick<StandardShorthandProperties, "flex" | "gridArea" | "backgroundPosition" | "flexFlow" | "borderStyle" | "overflow" | "textDecoration">;
|
|
4139
|
+
export type BoxDynamicProperties = Pick<StandardLonghandProperties, "display" | "width" | "height" | "maxWidth" | "maxHeight" | "minWidth" | "minHeight" | "bottom" | "left" | "right" | "top" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "flexShrink" | "flexGrow" | "order" | "transitionDelay" | "transitionProperty" | "backgroundImage" | "backgroundBlendMode" | "backgroundRepeat" | "backgroundSize" | "flexDirection" | "flexWrap" | "flexBasis" | "justifyContent" | "justifyItems" | "alignContent" | "alignItems" | "alignSelf" | "pointerEvents" | "position" | "boxSizing" | "cursor" | "overflowX" | "overflowY" | "transitionTimingFunction" | "textAlign" | "opacity"> & Pick<StandardShorthandProperties, "flex" | "gridArea" | "backgroundPosition" | "flexFlow" | "borderStyle" | "overflow" | "textDecoration">;
|
|
4140
4140
|
export interface BoxSprinkle extends BoxDynamicProperties {
|
|
4141
4141
|
/**
|
|
4142
4142
|
* The gap property sets the gaps between rows and columns. It is a shorthand for rowGap and columnGap.
|
|
@@ -6936,6 +6936,18 @@ export declare const box: {
|
|
|
6936
6936
|
conditions: Record<"disabled" | "hover" | "xs" | "xl" | "md" | "lg" | "active" | "focus" | "focusWithin", string>;
|
|
6937
6937
|
};
|
|
6938
6938
|
};
|
|
6939
|
+
opacity: {
|
|
6940
|
+
dynamic: {
|
|
6941
|
+
default: string;
|
|
6942
|
+
conditions: Record<"disabled" | "hover" | "xs" | "xl" | "md" | "lg" | "active" | "focus" | "focusWithin", string>;
|
|
6943
|
+
};
|
|
6944
|
+
dynamicScale: true;
|
|
6945
|
+
name: "opacity";
|
|
6946
|
+
vars: {
|
|
6947
|
+
default: string;
|
|
6948
|
+
conditions: Record<"disabled" | "hover" | "xs" | "xl" | "md" | "lg" | "active" | "focus" | "focusWithin", string>;
|
|
6949
|
+
};
|
|
6950
|
+
};
|
|
6939
6951
|
};
|
|
6940
6952
|
} & {
|
|
6941
6953
|
config: {
|
|
@@ -7352,6 +7364,193 @@ export declare const chip: {
|
|
|
7352
7364
|
overlay: string;
|
|
7353
7365
|
};
|
|
7354
7366
|
};
|
|
7367
|
+
declare const dividerBorderWidthProperties: {
|
|
7368
|
+
"1": string;
|
|
7369
|
+
"2": string;
|
|
7370
|
+
};
|
|
7371
|
+
export type DividerBorderStyle = "solid" | "dashed";
|
|
7372
|
+
export interface DividerSprinkle {
|
|
7373
|
+
/**
|
|
7374
|
+
* The **`size`** CSS property sets an element's area.
|
|
7375
|
+
* @default 100%
|
|
7376
|
+
*/
|
|
7377
|
+
size?: string | Conditions<string>;
|
|
7378
|
+
/**
|
|
7379
|
+
* The **`type`** shorthand CSS property sets the line style for all four sides of an element's.
|
|
7380
|
+
*/
|
|
7381
|
+
type?: AddDollar<DividerBorderStyle> | Conditions<AddDollar<DividerBorderStyle>>;
|
|
7382
|
+
/**
|
|
7383
|
+
* The **`thickness`** shorthand CSS property sets the width of an element's.
|
|
7384
|
+
*/
|
|
7385
|
+
thickness?: AddDollar<keyof typeof dividerBorderWidthProperties> | Conditions<AddDollar<keyof typeof dividerBorderWidthProperties>>;
|
|
7386
|
+
/**
|
|
7387
|
+
* The **`color`** CSS property sets an element's color.
|
|
7388
|
+
*/
|
|
7389
|
+
color?: AddDollar<keyof typeof borderColorProperties> | Conditions<AddDollar<keyof typeof borderColorProperties>>;
|
|
7390
|
+
}
|
|
7391
|
+
export declare const divider: {
|
|
7392
|
+
classnames: {
|
|
7393
|
+
divider: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
7394
|
+
[x: string]: {
|
|
7395
|
+
[x: string]: string | import("@vanilla-extract/css").ComplexStyleRule;
|
|
7396
|
+
};
|
|
7397
|
+
}>;
|
|
7398
|
+
};
|
|
7399
|
+
sprinkle: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[
|
|
7400
|
+
{
|
|
7401
|
+
config: {
|
|
7402
|
+
borderColor: {
|
|
7403
|
+
values: {
|
|
7404
|
+
brand: {
|
|
7405
|
+
default: string;
|
|
7406
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7407
|
+
};
|
|
7408
|
+
disabled: {
|
|
7409
|
+
default: string;
|
|
7410
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7411
|
+
};
|
|
7412
|
+
error: {
|
|
7413
|
+
default: string;
|
|
7414
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7415
|
+
};
|
|
7416
|
+
info: {
|
|
7417
|
+
default: string;
|
|
7418
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7419
|
+
};
|
|
7420
|
+
invert: {
|
|
7421
|
+
default: string;
|
|
7422
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7423
|
+
};
|
|
7424
|
+
"invert-disabled": {
|
|
7425
|
+
default: string;
|
|
7426
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7427
|
+
};
|
|
7428
|
+
primary: {
|
|
7429
|
+
default: string;
|
|
7430
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7431
|
+
};
|
|
7432
|
+
secondary: {
|
|
7433
|
+
default: string;
|
|
7434
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7435
|
+
};
|
|
7436
|
+
success: {
|
|
7437
|
+
default: string;
|
|
7438
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7439
|
+
};
|
|
7440
|
+
warning: {
|
|
7441
|
+
default: string;
|
|
7442
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7443
|
+
};
|
|
7444
|
+
"brand-alt": {
|
|
7445
|
+
default: string;
|
|
7446
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7447
|
+
};
|
|
7448
|
+
divider: {
|
|
7449
|
+
default: string;
|
|
7450
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7451
|
+
};
|
|
7452
|
+
subdued: {
|
|
7453
|
+
default: string;
|
|
7454
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7455
|
+
};
|
|
7456
|
+
transparent: {
|
|
7457
|
+
default: string;
|
|
7458
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7459
|
+
};
|
|
7460
|
+
};
|
|
7461
|
+
staticScale: {
|
|
7462
|
+
transparent: string;
|
|
7463
|
+
brand: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7464
|
+
"brand-alt": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7465
|
+
disabled: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7466
|
+
divider: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7467
|
+
error: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7468
|
+
info: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7469
|
+
invert: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7470
|
+
"invert-disabled": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7471
|
+
primary: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7472
|
+
secondary: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7473
|
+
subdued: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7474
|
+
success: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7475
|
+
warning: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7476
|
+
};
|
|
7477
|
+
name: "borderColor";
|
|
7478
|
+
};
|
|
7479
|
+
borderStyle: {
|
|
7480
|
+
values: {
|
|
7481
|
+
[x: string]: {
|
|
7482
|
+
default: string;
|
|
7483
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7484
|
+
};
|
|
7485
|
+
};
|
|
7486
|
+
staticScale: string[];
|
|
7487
|
+
name: "borderStyle";
|
|
7488
|
+
};
|
|
7489
|
+
borderTopWidth: {
|
|
7490
|
+
values: {
|
|
7491
|
+
1: {
|
|
7492
|
+
default: string;
|
|
7493
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7494
|
+
};
|
|
7495
|
+
2: {
|
|
7496
|
+
default: string;
|
|
7497
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7498
|
+
};
|
|
7499
|
+
};
|
|
7500
|
+
staticScale: {
|
|
7501
|
+
"1": string;
|
|
7502
|
+
"2": string;
|
|
7503
|
+
};
|
|
7504
|
+
name: "borderTopWidth";
|
|
7505
|
+
};
|
|
7506
|
+
borderLeftWidth: {
|
|
7507
|
+
values: {
|
|
7508
|
+
1: {
|
|
7509
|
+
default: string;
|
|
7510
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7511
|
+
};
|
|
7512
|
+
2: {
|
|
7513
|
+
default: string;
|
|
7514
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7515
|
+
};
|
|
7516
|
+
};
|
|
7517
|
+
staticScale: {
|
|
7518
|
+
"1": string;
|
|
7519
|
+
"2": string;
|
|
7520
|
+
};
|
|
7521
|
+
name: "borderLeftWidth";
|
|
7522
|
+
};
|
|
7523
|
+
};
|
|
7524
|
+
} & {
|
|
7525
|
+
config: {
|
|
7526
|
+
width: {
|
|
7527
|
+
dynamic: {
|
|
7528
|
+
default: string;
|
|
7529
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7530
|
+
};
|
|
7531
|
+
dynamicScale: true;
|
|
7532
|
+
name: "width";
|
|
7533
|
+
vars: {
|
|
7534
|
+
default: string;
|
|
7535
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7536
|
+
};
|
|
7537
|
+
};
|
|
7538
|
+
height: {
|
|
7539
|
+
dynamic: {
|
|
7540
|
+
default: string;
|
|
7541
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7542
|
+
};
|
|
7543
|
+
dynamicScale: true;
|
|
7544
|
+
name: "height";
|
|
7545
|
+
vars: {
|
|
7546
|
+
default: string;
|
|
7547
|
+
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
7548
|
+
};
|
|
7549
|
+
};
|
|
7550
|
+
};
|
|
7551
|
+
}
|
|
7552
|
+
]>;
|
|
7553
|
+
};
|
|
7355
7554
|
export type IconDynamicProperties = Pick<StandardLonghandProperties, "cursor">;
|
|
7356
7555
|
export interface IconSprinkle extends IconDynamicProperties {
|
|
7357
7556
|
/**
|
|
@@ -7917,6 +8116,125 @@ export declare const link: {
|
|
|
7917
8116
|
}>;
|
|
7918
8117
|
};
|
|
7919
8118
|
};
|
|
8119
|
+
declare const styles$8: {
|
|
8120
|
+
radioButton: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
8121
|
+
size: {
|
|
8122
|
+
small: {
|
|
8123
|
+
width: "1.25rem";
|
|
8124
|
+
height: "1.25rem";
|
|
8125
|
+
":before": {
|
|
8126
|
+
width: "2rem";
|
|
8127
|
+
height: "2rem";
|
|
8128
|
+
};
|
|
8129
|
+
":after": {
|
|
8130
|
+
width: ".5rem";
|
|
8131
|
+
height: ".5rem";
|
|
8132
|
+
};
|
|
8133
|
+
};
|
|
8134
|
+
large: {
|
|
8135
|
+
width: "1.5rem";
|
|
8136
|
+
height: "1.5rem";
|
|
8137
|
+
":before": {
|
|
8138
|
+
width: "2.75rem";
|
|
8139
|
+
height: "2.75rem";
|
|
8140
|
+
};
|
|
8141
|
+
":after": {
|
|
8142
|
+
width: ".75rem";
|
|
8143
|
+
height: ".75rem";
|
|
8144
|
+
};
|
|
8145
|
+
};
|
|
8146
|
+
};
|
|
8147
|
+
error: {
|
|
8148
|
+
true: {
|
|
8149
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8150
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8151
|
+
selectors: {
|
|
8152
|
+
"&:has(input:disabled)": {
|
|
8153
|
+
opacity: "50%";
|
|
8154
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8155
|
+
};
|
|
8156
|
+
"&:has(input:checked)": {
|
|
8157
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8158
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8159
|
+
};
|
|
8160
|
+
"&:has(input:checked):after": {
|
|
8161
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8162
|
+
};
|
|
8163
|
+
"&:hover:before": {
|
|
8164
|
+
opacity: number;
|
|
8165
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8166
|
+
};
|
|
8167
|
+
"&:active:before": {
|
|
8168
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8169
|
+
};
|
|
8170
|
+
};
|
|
8171
|
+
};
|
|
8172
|
+
};
|
|
8173
|
+
}>;
|
|
8174
|
+
input: string;
|
|
8175
|
+
container: string;
|
|
8176
|
+
};
|
|
8177
|
+
export type RadioButtonVariants = RecipeVariants<typeof styles$8.radioButton>;
|
|
8178
|
+
export declare const radioButton: {
|
|
8179
|
+
classnames: {
|
|
8180
|
+
radioButton: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
8181
|
+
size: {
|
|
8182
|
+
small: {
|
|
8183
|
+
width: "1.25rem";
|
|
8184
|
+
height: "1.25rem";
|
|
8185
|
+
":before": {
|
|
8186
|
+
width: "2rem";
|
|
8187
|
+
height: "2rem";
|
|
8188
|
+
};
|
|
8189
|
+
":after": {
|
|
8190
|
+
width: ".5rem";
|
|
8191
|
+
height: ".5rem";
|
|
8192
|
+
};
|
|
8193
|
+
};
|
|
8194
|
+
large: {
|
|
8195
|
+
width: "1.5rem";
|
|
8196
|
+
height: "1.5rem";
|
|
8197
|
+
":before": {
|
|
8198
|
+
width: "2.75rem";
|
|
8199
|
+
height: "2.75rem";
|
|
8200
|
+
};
|
|
8201
|
+
":after": {
|
|
8202
|
+
width: ".75rem";
|
|
8203
|
+
height: ".75rem";
|
|
8204
|
+
};
|
|
8205
|
+
};
|
|
8206
|
+
};
|
|
8207
|
+
error: {
|
|
8208
|
+
true: {
|
|
8209
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8210
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8211
|
+
selectors: {
|
|
8212
|
+
"&:has(input:disabled)": {
|
|
8213
|
+
opacity: "50%";
|
|
8214
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8215
|
+
};
|
|
8216
|
+
"&:has(input:checked)": {
|
|
8217
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8218
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8219
|
+
};
|
|
8220
|
+
"&:has(input:checked):after": {
|
|
8221
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8222
|
+
};
|
|
8223
|
+
"&:hover:before": {
|
|
8224
|
+
opacity: number;
|
|
8225
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8226
|
+
};
|
|
8227
|
+
"&:active:before": {
|
|
8228
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8229
|
+
};
|
|
8230
|
+
};
|
|
8231
|
+
};
|
|
8232
|
+
};
|
|
8233
|
+
}>;
|
|
8234
|
+
input: string;
|
|
8235
|
+
container: string;
|
|
8236
|
+
};
|
|
8237
|
+
};
|
|
7920
8238
|
export type SkeletonDynamicProperties = Pick<StandardLonghandProperties, "width" | "height" | "maxWidth" | "maxHeight" | "minWidth" | "minHeight">;
|
|
7921
8239
|
export interface SkeletonSprinkle extends SkeletonDynamicProperties {
|
|
7922
8240
|
/**
|
|
@@ -8035,7 +8353,7 @@ export declare const skeleton: {
|
|
|
8035
8353
|
}
|
|
8036
8354
|
]>;
|
|
8037
8355
|
};
|
|
8038
|
-
declare const styles$
|
|
8356
|
+
declare const styles$9: {
|
|
8039
8357
|
status: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
8040
8358
|
appearance: {
|
|
8041
8359
|
success: {
|
|
@@ -8088,7 +8406,7 @@ declare const styles$8: {
|
|
|
8088
8406
|
};
|
|
8089
8407
|
}>;
|
|
8090
8408
|
};
|
|
8091
|
-
export type StatusVariants = RecipeVariants<typeof styles$
|
|
8409
|
+
export type StatusVariants = RecipeVariants<typeof styles$9.status>;
|
|
8092
8410
|
declare const status$1: {
|
|
8093
8411
|
classnames: {
|
|
8094
8412
|
status: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
@@ -8728,7 +9046,7 @@ export declare const title: {
|
|
|
8728
9046
|
}
|
|
8729
9047
|
]>;
|
|
8730
9048
|
};
|
|
8731
|
-
declare const styles$
|
|
9049
|
+
declare const styles$10: {
|
|
8732
9050
|
banner: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
8733
9051
|
appearance: {
|
|
8734
9052
|
brand: {
|
|
@@ -8763,7 +9081,7 @@ declare const styles$9: {
|
|
|
8763
9081
|
};
|
|
8764
9082
|
}>;
|
|
8765
9083
|
};
|
|
8766
|
-
export type BannerVariants = RecipeVariants<typeof styles$
|
|
9084
|
+
export type BannerVariants = RecipeVariants<typeof styles$10.banner>;
|
|
8767
9085
|
export declare const banner: {
|
|
8768
9086
|
classnames: {
|
|
8769
9087
|
banner: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
@@ -8801,7 +9119,7 @@ export declare const banner: {
|
|
|
8801
9119
|
}>;
|
|
8802
9120
|
};
|
|
8803
9121
|
};
|
|
8804
|
-
declare const styles$
|
|
9122
|
+
declare const styles$11: {
|
|
8805
9123
|
toast: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
8806
9124
|
placement: {
|
|
8807
9125
|
topRight: {};
|
|
@@ -8930,7 +9248,7 @@ declare const styles$10: {
|
|
|
8930
9248
|
};
|
|
8931
9249
|
}>;
|
|
8932
9250
|
};
|
|
8933
|
-
export type ToastVariants = RecipeVariants<typeof styles$
|
|
9251
|
+
export type ToastVariants = RecipeVariants<typeof styles$11.toast>;
|
|
8934
9252
|
export declare const toast: {
|
|
8935
9253
|
classnames: {
|
|
8936
9254
|
toast: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
@@ -9062,7 +9380,7 @@ export declare const toast: {
|
|
|
9062
9380
|
}>;
|
|
9063
9381
|
};
|
|
9064
9382
|
};
|
|
9065
|
-
declare const styles$
|
|
9383
|
+
declare const styles$12: {
|
|
9066
9384
|
toggle: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9067
9385
|
size: {
|
|
9068
9386
|
large: {
|
|
@@ -9131,7 +9449,7 @@ declare const styles$11: {
|
|
|
9131
9449
|
};
|
|
9132
9450
|
}>;
|
|
9133
9451
|
};
|
|
9134
|
-
export type ToggleVariants = RecipeVariants<typeof styles$
|
|
9452
|
+
export type ToggleVariants = RecipeVariants<typeof styles$12.toggle>;
|
|
9135
9453
|
export declare const toggle: {
|
|
9136
9454
|
classnames: {
|
|
9137
9455
|
toggle: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
@@ -9203,111 +9521,74 @@ export declare const toggle: {
|
|
|
9203
9521
|
}>;
|
|
9204
9522
|
};
|
|
9205
9523
|
};
|
|
9206
|
-
declare const
|
|
9207
|
-
"
|
|
9208
|
-
|
|
9524
|
+
declare const styles$13: {
|
|
9525
|
+
tooltip: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9526
|
+
inverted: {
|
|
9527
|
+
true: {
|
|
9528
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9529
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9530
|
+
};
|
|
9531
|
+
false: {
|
|
9532
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9533
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9534
|
+
};
|
|
9535
|
+
};
|
|
9536
|
+
padding: {
|
|
9537
|
+
base: {
|
|
9538
|
+
padding: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9539
|
+
};
|
|
9540
|
+
none: {
|
|
9541
|
+
padding: number;
|
|
9542
|
+
};
|
|
9543
|
+
};
|
|
9544
|
+
}>;
|
|
9545
|
+
header: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9546
|
+
padding: {
|
|
9547
|
+
base: {
|
|
9548
|
+
padding: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9549
|
+
};
|
|
9550
|
+
none: {
|
|
9551
|
+
padding: number;
|
|
9552
|
+
};
|
|
9553
|
+
};
|
|
9554
|
+
}>;
|
|
9555
|
+
container: string;
|
|
9209
9556
|
};
|
|
9210
|
-
export type
|
|
9211
|
-
export
|
|
9212
|
-
/**
|
|
9213
|
-
* The **`size`** CSS property sets an element's area.
|
|
9214
|
-
* @default 100%
|
|
9215
|
-
*/
|
|
9216
|
-
size?: string | Conditions<string>;
|
|
9217
|
-
/**
|
|
9218
|
-
* The **`type`** shorthand CSS property sets the line style for all four sides of an element's.
|
|
9219
|
-
*/
|
|
9220
|
-
type?: AddDollar<DividerBorderStyle> | Conditions<AddDollar<DividerBorderStyle>>;
|
|
9221
|
-
/**
|
|
9222
|
-
* The **`thickness`** shorthand CSS property sets the width of an element's.
|
|
9223
|
-
*/
|
|
9224
|
-
thickness?: AddDollar<keyof typeof dividerBorderWidthProperties> | Conditions<AddDollar<keyof typeof dividerBorderWidthProperties>>;
|
|
9225
|
-
}
|
|
9226
|
-
export declare const divider: {
|
|
9557
|
+
export type TooltipVariants = RecipeVariants<typeof styles$13.tooltip>;
|
|
9558
|
+
export declare const tooltip: {
|
|
9227
9559
|
classnames: {
|
|
9228
|
-
|
|
9229
|
-
|
|
9230
|
-
|
|
9231
|
-
|
|
9232
|
-
|
|
9233
|
-
};
|
|
9234
|
-
sprinkle: import("rainbow-sprinkles/dist/declarations/src/createRuntimeFn").SprinklesFn<[
|
|
9235
|
-
{
|
|
9236
|
-
config: {
|
|
9237
|
-
borderStyle: {
|
|
9238
|
-
values: {
|
|
9239
|
-
[x: string]: {
|
|
9240
|
-
default: string;
|
|
9241
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9242
|
-
};
|
|
9243
|
-
};
|
|
9244
|
-
staticScale: string[];
|
|
9245
|
-
name: "borderStyle";
|
|
9560
|
+
tooltip: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9561
|
+
inverted: {
|
|
9562
|
+
true: {
|
|
9563
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9564
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9246
9565
|
};
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
default: string;
|
|
9251
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9252
|
-
};
|
|
9253
|
-
2: {
|
|
9254
|
-
default: string;
|
|
9255
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9256
|
-
};
|
|
9257
|
-
};
|
|
9258
|
-
staticScale: {
|
|
9259
|
-
"1": string;
|
|
9260
|
-
"2": string;
|
|
9261
|
-
};
|
|
9262
|
-
name: "borderTopWidth";
|
|
9566
|
+
false: {
|
|
9567
|
+
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9568
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9263
9569
|
};
|
|
9264
|
-
|
|
9265
|
-
|
|
9266
|
-
|
|
9267
|
-
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
default: string;
|
|
9272
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9273
|
-
};
|
|
9274
|
-
};
|
|
9275
|
-
staticScale: {
|
|
9276
|
-
"1": string;
|
|
9277
|
-
"2": string;
|
|
9278
|
-
};
|
|
9279
|
-
name: "borderLeftWidth";
|
|
9570
|
+
};
|
|
9571
|
+
padding: {
|
|
9572
|
+
base: {
|
|
9573
|
+
padding: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9574
|
+
};
|
|
9575
|
+
none: {
|
|
9576
|
+
padding: number;
|
|
9280
9577
|
};
|
|
9281
9578
|
};
|
|
9282
|
-
}
|
|
9283
|
-
|
|
9284
|
-
|
|
9285
|
-
|
|
9286
|
-
|
|
9287
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9288
|
-
};
|
|
9289
|
-
dynamicScale: true;
|
|
9290
|
-
name: "width";
|
|
9291
|
-
vars: {
|
|
9292
|
-
default: string;
|
|
9293
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9294
|
-
};
|
|
9579
|
+
}>;
|
|
9580
|
+
header: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9581
|
+
padding: {
|
|
9582
|
+
base: {
|
|
9583
|
+
padding: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9295
9584
|
};
|
|
9296
|
-
|
|
9297
|
-
|
|
9298
|
-
default: string;
|
|
9299
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9300
|
-
};
|
|
9301
|
-
dynamicScale: true;
|
|
9302
|
-
name: "height";
|
|
9303
|
-
vars: {
|
|
9304
|
-
default: string;
|
|
9305
|
-
conditions: Record<"xs" | "xl" | "md" | "lg", string>;
|
|
9306
|
-
};
|
|
9585
|
+
none: {
|
|
9586
|
+
padding: number;
|
|
9307
9587
|
};
|
|
9308
9588
|
};
|
|
9309
|
-
}
|
|
9310
|
-
|
|
9589
|
+
}>;
|
|
9590
|
+
container: string;
|
|
9591
|
+
};
|
|
9311
9592
|
};
|
|
9312
9593
|
|
|
9313
9594
|
export {
|