@salutejs/sdds-finportal 0.149.0-canary.1506.11556906282.0 → 0.149.0-canary.1506.11570845312.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/sdds-finportal.api.md +80 -2
- package/components/Autocomplete/Autocomplete.config.js +4 -4
- package/components/Calendar/CalendarBase.config.js +1 -1
- package/components/Calendar/CalendarDouble.config.js +1 -1
- package/components/Combobox/Combobox.config.js +4 -4
- package/components/DatePicker/DatePicker.config.js +1 -1
- package/components/Dropdown/Dropdown.config.js +1 -1
- package/components/Slider/Slider.config.js +3 -3
- package/components/Slider/Slider.d.ts +88 -2
- package/components/Toast/Toast.config.js +1 -1
- package/es/components/Autocomplete/Autocomplete.config.js +4 -4
- package/es/components/Calendar/CalendarBase.config.js +1 -1
- package/es/components/Calendar/CalendarDouble.config.js +1 -1
- package/es/components/Combobox/Combobox.config.js +4 -4
- package/es/components/DatePicker/DatePicker.config.js +1 -1
- package/es/components/Dropdown/Dropdown.config.js +1 -1
- package/es/components/Slider/Slider.config.js +3 -3
- package/es/components/Toast/Toast.config.js +1 -1
- package/package.json +3 -3
- package/temp/sdds-finportal.api.md +80 -2
@@ -3446,37 +3446,115 @@ onChange?: ((event: FormTypeNumber) => void) | undefined;
|
|
3446
3446
|
name: string;
|
3447
3447
|
value?: undefined;
|
3448
3448
|
defaultValue?: number | undefined;
|
3449
|
+
} & {
|
3450
|
+
orientation?: "horizontal" | undefined;
|
3451
|
+
labelPlacement?: "none" | "top" | "left" | undefined;
|
3452
|
+
scaleAlign?: "none" | "bottom" | "side" | undefined;
|
3453
|
+
sliderAlign?: "none" | undefined;
|
3454
|
+
reversed?: undefined;
|
3455
|
+
labelReversed?: undefined;
|
3456
|
+
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3457
|
+
onChangeCommitted?: ((value: number) => void) | undefined;
|
3458
|
+
ariaLabel?: string | undefined;
|
3459
|
+
showCurrentValue?: boolean | undefined;
|
3460
|
+
showRangeValues?: boolean | undefined;
|
3461
|
+
rangeValuesPlacement?: string | undefined;
|
3462
|
+
showScale?: boolean | undefined;
|
3463
|
+
hideMinValueDiff?: number | undefined;
|
3464
|
+
hideMaxValueDiff?: number | undefined;
|
3465
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
3466
|
+
labelContentLeft?: ReactNode;
|
3467
|
+
labelContent?: ReactNode;
|
3468
|
+
multipleStepSize?: number | undefined;
|
3469
|
+
view?: string | undefined;
|
3470
|
+
size?: "s" | "m" | "l" | undefined;
|
3471
|
+
type?: "single" | undefined;
|
3472
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3473
|
+
} & RefAttributes<HTMLDivElement>) | (SliderBaseProps & SliderInternalProps & {
|
3474
|
+
onChange?: ((event: FormTypeNumber) => void) | undefined;
|
3475
|
+
name: string;
|
3476
|
+
value?: undefined;
|
3477
|
+
defaultValue?: number | undefined;
|
3478
|
+
} & {
|
3479
|
+
orientation: "vertical";
|
3480
|
+
sliderAlign?: "none" | "center" | "right" | "left" | undefined;
|
3481
|
+
scaleAlign?: undefined;
|
3482
|
+
reversed?: boolean | undefined;
|
3483
|
+
labelReversed?: boolean | undefined;
|
3449
3484
|
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3450
3485
|
onChangeCommitted?: ((value: number) => void) | undefined;
|
3451
3486
|
ariaLabel?: string | undefined;
|
3452
3487
|
showCurrentValue?: boolean | undefined;
|
3453
3488
|
showRangeValues?: boolean | undefined;
|
3489
|
+
rangeValuesPlacement?: string | undefined;
|
3490
|
+
showScale?: boolean | undefined;
|
3454
3491
|
hideMinValueDiff?: number | undefined;
|
3455
3492
|
hideMaxValueDiff?: number | undefined;
|
3456
|
-
rangeValuesPlacement?: "outer" | "inner" | undefined;
|
3457
3493
|
labelPlacement?: "outer" | "inner" | undefined;
|
3494
|
+
labelContentLeft?: ReactNode;
|
3495
|
+
labelContent?: ReactNode;
|
3458
3496
|
multipleStepSize?: number | undefined;
|
3459
3497
|
view?: string | undefined;
|
3460
3498
|
size?: "s" | "m" | "l" | undefined;
|
3461
3499
|
type?: "single" | undefined;
|
3500
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3462
3501
|
} & RefAttributes<HTMLDivElement>) | (SliderBaseProps & SliderInternalProps & {
|
3463
3502
|
onChange?: ((value: number) => void) | undefined;
|
3464
3503
|
value: number;
|
3465
3504
|
name?: undefined;
|
3466
3505
|
defaultValue?: undefined;
|
3506
|
+
} & {
|
3507
|
+
orientation?: "horizontal" | undefined;
|
3508
|
+
labelPlacement?: "none" | "top" | "left" | undefined;
|
3509
|
+
scaleAlign?: "none" | "bottom" | "side" | undefined;
|
3510
|
+
sliderAlign?: "none" | undefined;
|
3511
|
+
reversed?: undefined;
|
3512
|
+
labelReversed?: undefined;
|
3513
|
+
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3514
|
+
onChangeCommitted?: ((value: number) => void) | undefined;
|
3515
|
+
ariaLabel?: string | undefined;
|
3516
|
+
showCurrentValue?: boolean | undefined;
|
3517
|
+
showRangeValues?: boolean | undefined;
|
3518
|
+
rangeValuesPlacement?: string | undefined;
|
3519
|
+
showScale?: boolean | undefined;
|
3520
|
+
hideMinValueDiff?: number | undefined;
|
3521
|
+
hideMaxValueDiff?: number | undefined;
|
3522
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
3523
|
+
labelContentLeft?: ReactNode;
|
3524
|
+
labelContent?: ReactNode;
|
3525
|
+
multipleStepSize?: number | undefined;
|
3526
|
+
view?: string | undefined;
|
3527
|
+
size?: "s" | "m" | "l" | undefined;
|
3528
|
+
type?: "single" | undefined;
|
3529
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3530
|
+
} & RefAttributes<HTMLDivElement>) | (SliderBaseProps & SliderInternalProps & {
|
3531
|
+
onChange?: ((value: number) => void) | undefined;
|
3532
|
+
value: number;
|
3533
|
+
name?: undefined;
|
3534
|
+
defaultValue?: undefined;
|
3535
|
+
} & {
|
3536
|
+
orientation: "vertical";
|
3537
|
+
sliderAlign?: "none" | "center" | "right" | "left" | undefined;
|
3538
|
+
scaleAlign?: undefined;
|
3539
|
+
reversed?: boolean | undefined;
|
3540
|
+
labelReversed?: boolean | undefined;
|
3467
3541
|
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3468
3542
|
onChangeCommitted?: ((value: number) => void) | undefined;
|
3469
3543
|
ariaLabel?: string | undefined;
|
3470
3544
|
showCurrentValue?: boolean | undefined;
|
3471
3545
|
showRangeValues?: boolean | undefined;
|
3546
|
+
rangeValuesPlacement?: string | undefined;
|
3547
|
+
showScale?: boolean | undefined;
|
3472
3548
|
hideMinValueDiff?: number | undefined;
|
3473
3549
|
hideMaxValueDiff?: number | undefined;
|
3474
|
-
rangeValuesPlacement?: "outer" | "inner" | undefined;
|
3475
3550
|
labelPlacement?: "outer" | "inner" | undefined;
|
3551
|
+
labelContentLeft?: ReactNode;
|
3552
|
+
labelContent?: ReactNode;
|
3476
3553
|
multipleStepSize?: number | undefined;
|
3477
3554
|
view?: string | undefined;
|
3478
3555
|
size?: "s" | "m" | "l" | undefined;
|
3479
3556
|
type?: "single" | undefined;
|
3557
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3480
3558
|
} & RefAttributes<HTMLDivElement>) | (Omit<DoubleSliderProps, "onChange" | "defaultValue" | "value"> & {
|
3481
3559
|
onChange?: ((event: FormTypeString) => void) | undefined;
|
3482
3560
|
name?: string | undefined;
|
@@ -15,10 +15,10 @@ var config = exports.config = {
|
|
15
15
|
},
|
16
16
|
variations: {
|
17
17
|
view: {
|
18
|
-
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor),
|
19
|
-
positive: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor),
|
20
|
-
warning: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor),
|
21
|
-
negative: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor)
|
18
|
+
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.textFieldContentSlotColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldContentSlotRightColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor),
|
19
|
+
positive: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.textFieldContentSlotColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldContentSlotRightColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor),
|
20
|
+
warning: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.textFieldContentSlotColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldContentSlotRightColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor),
|
21
|
+
negative: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldBackgroundColor, _styledComponents.autocompleteTokens.textFieldBackgroundColorFocus, _styledComponents.autocompleteTokens.textFieldCaretColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColor, _styledComponents.autocompleteTokens.textFieldPlaceholderColorFocus, _styledComponents.autocompleteTokens.textFieldTextBeforeColor, _styledComponents.autocompleteTokens.textFieldTextAfterColor, _styledComponents.autocompleteTokens.textFieldLabelColor, _styledComponents.autocompleteTokens.textFieldLeftHelperColor, _styledComponents.autocompleteTokens.textFieldFocusColor, _styledComponents.autocompleteTokens.background, _styledComponents.autocompleteTokens.boxShadow, _styledComponents.autocompleteTokens.itemBackground, _styledComponents.autocompleteTokens.itemBackgroundHover, _styledComponents.autocompleteTokens.itemColor, _styledComponents.autocompleteTokens.focusColor, _styledComponents.autocompleteTokens.textFieldContentSlotColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.textFieldContentSlotRightColor, _styledComponents.autocompleteTokens.textFieldColor, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerColor)
|
22
22
|
},
|
23
23
|
size: {
|
24
24
|
l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 3.5rem;\n ", ": 1.0625rem 1.125rem 1.0625rem 1.125rem;\n ", ": 0.875rem;\n ", ": -0.0625rem 0.5rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.125rem -0.0625rem 0.75rem;\n ", ": 0 0.25rem 0 0;\n ", ": 0 0 0 0.25rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": 0.25rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n ", ": 0.5625rem 0 0.125rem 0;\n ", ": 1.5625rem 0 0.5625rem 0;\n\n ", ": 0.875rem;\n ", ": 0.125rem;\n ", ": 1.0625rem 1rem;\n ", ": 0.75rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 2rem 1rem 1rem 1rem;\n ", ": 0.5rem;\n\n ", ": 1.5rem;\n ", ": 0.5rem;\n "])), _styledComponents.autocompleteTokens.textFieldHeight, _styledComponents.autocompleteTokens.textFieldPadding, _styledComponents.autocompleteTokens.textFieldBorderRadius, _styledComponents.autocompleteTokens.textFieldLeftContentMargin, _styledComponents.autocompleteTokens.textFieldRightContentMargin, _styledComponents.autocompleteTokens.textFieldTextBeforeMargin, _styledComponents.autocompleteTokens.textFieldTextAfterMargin, _styledComponents.autocompleteTokens.textFieldFontFamily, _styledComponents.autocompleteTokens.textFieldFontSize, _styledComponents.autocompleteTokens.textFieldFontStyle, _styledComponents.autocompleteTokens.textFieldFontWeight, _styledComponents.autocompleteTokens.textFieldLetterSpacing, _styledComponents.autocompleteTokens.textFieldLineHeight, _styledComponents.autocompleteTokens.textFieldLabelOffset, _styledComponents.autocompleteTokens.textFieldLabelFontFamily, _styledComponents.autocompleteTokens.textFieldLabelFontSize, _styledComponents.autocompleteTokens.textFieldLabelFontStyle, _styledComponents.autocompleteTokens.textFieldLabelFontWeight, _styledComponents.autocompleteTokens.textFieldLabelLetterSpacing, _styledComponents.autocompleteTokens.textFieldLabelLineHeight, _styledComponents.autocompleteTokens.textFieldLeftHelperOffset, _styledComponents.autocompleteTokens.textFieldLeftHelperFontFamily, _styledComponents.autocompleteTokens.textFieldLeftHelperFontSize, _styledComponents.autocompleteTokens.textFieldLeftHelperFontStyle, _styledComponents.autocompleteTokens.textFieldLeftHelperFontWeight, _styledComponents.autocompleteTokens.textFieldLeftHelperLetterSpacing, _styledComponents.autocompleteTokens.textFieldLeftHelperLineHeight, _styledComponents.autocompleteTokens.textFieldLabelInnerPadding, _styledComponents.autocompleteTokens.textFieldContentLabelInnerPadding, _styledComponents.autocompleteTokens.borderRadius, _styledComponents.autocompleteTokens.padding, _styledComponents.autocompleteTokens.itemPadding, _styledComponents.autocompleteTokens.itemBorderRadius, _styledComponents.autocompleteTokens.itemFontFamily, _styledComponents.autocompleteTokens.itemFontSize, _styledComponents.autocompleteTokens.itemFontStyle, _styledComponents.autocompleteTokens.itemFontWeight, _styledComponents.autocompleteTokens.itemFontLetterSpacing, _styledComponents.autocompleteTokens.itemFontLineHeight, _styledComponents.autocompleteTokens.emptyStatePadding, _styledComponents.autocompleteTokens.emptyStateGap, _styledComponents.autocompleteTokens.infiniteLoaderSpinnerSize, _styledComponents.autocompleteTokens.infiniteLoaderGap),
|
@@ -14,7 +14,7 @@ var config = exports.config = {
|
|
14
14
|
},
|
15
15
|
variations: {
|
16
16
|
view: {
|
17
|
-
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), _styledComponents.calendarBaseTokens.calendarSelectedItemBackground, _styledComponents.calendarBaseTokens.calendarSelectedItemColor, _styledComponents.calendarBaseTokens.calendarSelectableItemBackgroundHover, _styledComponents.calendarBaseTokens.calendarCurrentItemBorderColor, _styledComponents.calendarBaseTokens.calendarCurrentItemBackgroundHover, _styledComponents.calendarBaseTokens.calendarCurrentItemColorHover, _styledComponents.calendarBaseTokens.calendarCurrentItemChildBackgroundHover, _styledComponents.calendarBaseTokens.calendarActiveItemBackground, _styledComponents.calendarBaseTokens.calendarActiveItemColor, _styledComponents.calendarBaseTokens.calendarHoveredItemBackground, _styledComponents.calendarBaseTokens.calendarHoveredItemColor, _styledComponents.calendarBaseTokens.calendarRangeBackground, _styledComponents.calendarBaseTokens.calendarOutlineFocusColor, _styledComponents.calendarBaseTokens.calendarContentPrimaryColor, _styledComponents.calendarBaseTokens.calendarContentSecondaryColor, _styledComponents.calendarBaseTokens.calendarDayOfWeekColor, _styledComponents.calendarBaseTokens.iconButtonColor, _styledComponents.calendarBaseTokens.iconButtonBackgroundColor, _styledComponents.calendarBaseTokens.iconButtonColorHover, _styledComponents.calendarBaseTokens.iconButtonBackgroundColorHover, _styledComponents.calendarBaseTokens.iconButtonColorActive, _styledComponents.calendarBaseTokens.iconButtonBackgroundColorActive, _styledComponents.calendarBaseTokens.iconButtonFocusColor)
|
17
|
+
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n ", ": ", ";\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), _styledComponents.calendarBaseTokens.calendarSelectedItemBackground, _styledComponents.calendarBaseTokens.calendarSelectedItemColor, _styledComponents.calendarBaseTokens.calendarSelectableItemBackgroundHover, _styledComponents.calendarBaseTokens.calendarCurrentItemBorderColor, _styledComponents.calendarBaseTokens.calendarCurrentItemBackgroundHover, _styledComponents.calendarBaseTokens.calendarCurrentItemColorHover, _styledComponents.calendarBaseTokens.calendarCurrentItemChildBackgroundHover, _styledComponents.calendarBaseTokens.calendarActiveItemBackground, _styledComponents.calendarBaseTokens.calendarActiveItemColor, _styledComponents.calendarBaseTokens.calendarHoveredItemBackground, _styledComponents.calendarBaseTokens.calendarHoveredItemColor, _styledComponents.calendarBaseTokens.calendarRangeBackground, _styledComponents.calendarBaseTokens.calendarOutlineFocusColor, _styledComponents.calendarBaseTokens.calendarContentPrimaryColor, _styledComponents.calendarBaseTokens.calendarContentSecondaryColor, _styledComponents.calendarBaseTokens.calendarHeaderArrowColor, _styledComponents.calendarBaseTokens.calendarContentPrimaryColor, _styledComponents.calendarBaseTokens.calendarDayOfWeekColor, _styledComponents.calendarBaseTokens.iconButtonColor, _styledComponents.calendarBaseTokens.iconButtonBackgroundColor, _styledComponents.calendarBaseTokens.iconButtonColorHover, _styledComponents.calendarBaseTokens.iconButtonBackgroundColorHover, _styledComponents.calendarBaseTokens.iconButtonColorActive, _styledComponents.calendarBaseTokens.iconButtonBackgroundColorActive, _styledComponents.calendarBaseTokens.iconButtonFocusColor)
|
18
18
|
},
|
19
19
|
size: {
|
20
20
|
l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 24.5rem;\n ", ": 25rem;\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 11.75rem;\n ", ": 10.5rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0 0 0;\n ", ": 0.75rem;\n ", ": 3.5rem;\n ", ": 3rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.063rem;\n\n ", ": 0.5rem;\n\n ", ": 0 0 0 1rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h4-font-family);\n ", ": var(--plasma-typo-h4-font-size);\n ", ": var(--plasma-typo-h4-font-style);\n ", ": var(--plasma-typo-h4-letter-spacing);\n ", ": var(--plasma-typo-h4-line-height);\n ", ": var(--plasma-typo-h4-font-weight);\n ", ": var(--plasma-typo-h4-bold-font-weight);\n\n ", ": 3.5rem;\n ", ": 3.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\n "])), _styledComponents.calendarBaseTokens.calendarWidth, _styledComponents.calendarBaseTokens.calendarHeight, _styledComponents.calendarBaseTokens.calendarYearsPadding, _styledComponents.calendarBaseTokens.calendarYearItemBorderRadius, _styledComponents.calendarBaseTokens.calendarYearItemWidth, _styledComponents.calendarBaseTokens.calendarYearItemHeight, _styledComponents.calendarBaseTokens.calendarYearFontFamily, _styledComponents.calendarBaseTokens.calendarYearFontSize, _styledComponents.calendarBaseTokens.calendarYearFontStyle, _styledComponents.calendarBaseTokens.calendarYearFontLetterSpacing, _styledComponents.calendarBaseTokens.calendarYearFontLineHeight, _styledComponents.calendarBaseTokens.calendarYearFontWeight, _styledComponents.calendarBaseTokens.calendarYearSelectedFontWeight, _styledComponents.calendarBaseTokens.calendarQuartersPadding, _styledComponents.calendarBaseTokens.calendarQuarterItemBorderRadius, _styledComponents.calendarBaseTokens.calendarQuarterItemWidth, _styledComponents.calendarBaseTokens.calendarQuarterItemHeight, _styledComponents.calendarBaseTokens.calendarQuarterFontFamily, _styledComponents.calendarBaseTokens.calendarQuarterFontSize, _styledComponents.calendarBaseTokens.calendarQuarterFontStyle, _styledComponents.calendarBaseTokens.calendarQuarterFontLetterSpacing, _styledComponents.calendarBaseTokens.calendarQuarterFontLineHeight, _styledComponents.calendarBaseTokens.calendarQuarterFontWeight, _styledComponents.calendarBaseTokens.calendarQuarterSelectedFontWeight, _styledComponents.calendarBaseTokens.calendarMonthsPadding, _styledComponents.calendarBaseTokens.calendarMonthItemBorderRadius, _styledComponents.calendarBaseTokens.calendarMonthItemWidth, _styledComponents.calendarBaseTokens.calendarMonthItemHeight, _styledComponents.calendarBaseTokens.calendarMonthFontFamily, _styledComponents.calendarBaseTokens.calendarMonthFontSize, _styledComponents.calendarBaseTokens.calendarMonthFontStyle, _styledComponents.calendarBaseTokens.calendarMonthFontLetterSpacing, _styledComponents.calendarBaseTokens.calendarMonthFontLineHeight, _styledComponents.calendarBaseTokens.calendarMonthFontWeight, _styledComponents.calendarBaseTokens.calendarMonthSelectedFontWeight, _styledComponents.calendarBaseTokens.calendarDaysPadding, _styledComponents.calendarBaseTokens.calendarDayItemBorderRadius, _styledComponents.calendarBaseTokens.calendarDayItemWidth, _styledComponents.calendarBaseTokens.calendarDayItemHeight, _styledComponents.calendarBaseTokens.calendarDayFontFamily, _styledComponents.calendarBaseTokens.calendarDayFontSize, _styledComponents.calendarBaseTokens.calendarDayFontStyle, _styledComponents.calendarBaseTokens.calendarDayFontLetterSpacing, _styledComponents.calendarBaseTokens.calendarDayFontLineHeight, _styledComponents.calendarBaseTokens.calendarDayFontWeight, _styledComponents.calendarBaseTokens.calendarDaySelectedFontWeight, _styledComponents.calendarBaseTokens.calendarCurrentItemBorderWidth, _styledComponents.calendarBaseTokens.calendarHeaderArrowGap, _styledComponents.calendarBaseTokens.calendarHeaderPadding, _styledComponents.calendarBaseTokens.calendarHeaderDateGap, _styledComponents.calendarBaseTokens.calendarHeaderFontFamily, _styledComponents.calendarBaseTokens.calendarHeaderFontSize, _styledComponents.calendarBaseTokens.calendarHeaderFontStyle, _styledComponents.calendarBaseTokens.calendarHeaderFontLetterSpacing, _styledComponents.calendarBaseTokens.calendarHeaderFontLineHeight, _styledComponents.calendarBaseTokens.calendarHeaderFontWeight, _styledComponents.calendarBaseTokens.calendarHeaderFontWeightBold, _styledComponents.calendarBaseTokens.iconButtonHeight, _styledComponents.calendarBaseTokens.iconButtonWidth, _styledComponents.calendarBaseTokens.iconButtonPadding, _styledComponents.calendarBaseTokens.iconButtonRadius),
|
@@ -14,7 +14,7 @@ var config = exports.config = {
|
|
14
14
|
},
|
15
15
|
variations: {
|
16
16
|
view: {
|
17
|
-
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-secondary);\n ", ": transparent;\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), _styledComponents.calendarDoubleTokens.calendarSeparatorBackground, _styledComponents.calendarDoubleTokens.calendarBackgroundColor, _styledComponents.calendarDoubleTokens.calendarSelectedItemBackground, _styledComponents.calendarDoubleTokens.calendarSelectedItemColor, _styledComponents.calendarDoubleTokens.calendarSelectableItemBackgroundHover, _styledComponents.calendarDoubleTokens.calendarCurrentItemBorderColor, _styledComponents.calendarDoubleTokens.calendarCurrentItemBackgroundHover, _styledComponents.calendarDoubleTokens.calendarCurrentItemColorHover, _styledComponents.calendarDoubleTokens.calendarCurrentItemChildBackgroundHover, _styledComponents.calendarDoubleTokens.calendarActiveItemBackground, _styledComponents.calendarDoubleTokens.calendarActiveItemColor, _styledComponents.calendarDoubleTokens.calendarHoveredItemBackground, _styledComponents.calendarDoubleTokens.calendarHoveredItemColor, _styledComponents.calendarDoubleTokens.calendarRangeBackground, _styledComponents.calendarDoubleTokens.calendarOutlineFocusColor, _styledComponents.calendarDoubleTokens.calendarContentPrimaryColor, _styledComponents.calendarDoubleTokens.calendarContentSecondaryColor, _styledComponents.calendarDoubleTokens.iconButtonColor, _styledComponents.calendarDoubleTokens.iconButtonBackgroundColor, _styledComponents.calendarDoubleTokens.iconButtonColorHover, _styledComponents.calendarDoubleTokens.iconButtonBackgroundColorHover, _styledComponents.calendarDoubleTokens.iconButtonColorActive, _styledComponents.calendarDoubleTokens.iconButtonBackgroundColorActive, _styledComponents.calendarDoubleTokens.iconButtonFocusColor)
|
17
|
+
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-secondary);\n ", ": transparent;\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": ", ";\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), _styledComponents.calendarDoubleTokens.calendarSeparatorBackground, _styledComponents.calendarDoubleTokens.calendarBackgroundColor, _styledComponents.calendarDoubleTokens.calendarSelectedItemBackground, _styledComponents.calendarDoubleTokens.calendarSelectedItemColor, _styledComponents.calendarDoubleTokens.calendarSelectableItemBackgroundHover, _styledComponents.calendarDoubleTokens.calendarCurrentItemBorderColor, _styledComponents.calendarDoubleTokens.calendarCurrentItemBackgroundHover, _styledComponents.calendarDoubleTokens.calendarCurrentItemColorHover, _styledComponents.calendarDoubleTokens.calendarCurrentItemChildBackgroundHover, _styledComponents.calendarDoubleTokens.calendarActiveItemBackground, _styledComponents.calendarDoubleTokens.calendarActiveItemColor, _styledComponents.calendarDoubleTokens.calendarHoveredItemBackground, _styledComponents.calendarDoubleTokens.calendarHoveredItemColor, _styledComponents.calendarDoubleTokens.calendarRangeBackground, _styledComponents.calendarDoubleTokens.calendarOutlineFocusColor, _styledComponents.calendarDoubleTokens.calendarContentPrimaryColor, _styledComponents.calendarDoubleTokens.calendarHeaderArrowColor, _styledComponents.calendarDoubleTokens.calendarContentPrimaryColor, _styledComponents.calendarDoubleTokens.calendarContentSecondaryColor, _styledComponents.calendarDoubleTokens.iconButtonColor, _styledComponents.calendarDoubleTokens.iconButtonBackgroundColor, _styledComponents.calendarDoubleTokens.iconButtonColorHover, _styledComponents.calendarDoubleTokens.iconButtonBackgroundColorHover, _styledComponents.calendarDoubleTokens.iconButtonColorActive, _styledComponents.calendarDoubleTokens.iconButtonBackgroundColorActive, _styledComponents.calendarDoubleTokens.iconButtonFocusColor)
|
18
18
|
},
|
19
19
|
size: {
|
20
20
|
l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 51.063rem;\n ", ": 25rem;\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 11.75rem;\n ", ": 10.5rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.75rem;\n ", ": 3.5rem;\n ", ": 3rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.063rem;\n\n ", ": 0.5rem;\n\n ", ": 0.5rem 0 0 0;\n ", ": 0 0 0 1rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h4-font-family);\n ", ": var(--plasma-typo-h4-font-size);\n ", ": var(--plasma-typo-h4-font-style);\n ", ": var(--plasma-typo-h4-letter-spacing);\n ", ": var(--plasma-typo-h4-line-height);\n ", ": var(--plasma-typo-h4-font-weight);\n ", ": var(--plasma-typo-h4-bold-font-weight);\n\n ", ": 3.5rem;\n ", ": 3.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\n "])), _styledComponents.calendarDoubleTokens.calendarWidth, _styledComponents.calendarDoubleTokens.calendarHeight, _styledComponents.calendarDoubleTokens.calendarYearsPadding, _styledComponents.calendarDoubleTokens.calendarYearItemBorderRadius, _styledComponents.calendarDoubleTokens.calendarYearItemWidth, _styledComponents.calendarDoubleTokens.calendarYearItemHeight, _styledComponents.calendarDoubleTokens.calendarYearFontFamily, _styledComponents.calendarDoubleTokens.calendarYearFontSize, _styledComponents.calendarDoubleTokens.calendarYearFontStyle, _styledComponents.calendarDoubleTokens.calendarYearFontLetterSpacing, _styledComponents.calendarDoubleTokens.calendarYearFontLineHeight, _styledComponents.calendarDoubleTokens.calendarYearFontWeight, _styledComponents.calendarDoubleTokens.calendarYearSelectedFontWeight, _styledComponents.calendarDoubleTokens.calendarQuartersPadding, _styledComponents.calendarDoubleTokens.calendarQuarterItemBorderRadius, _styledComponents.calendarDoubleTokens.calendarQuarterItemWidth, _styledComponents.calendarDoubleTokens.calendarQuarterItemHeight, _styledComponents.calendarDoubleTokens.calendarQuarterFontFamily, _styledComponents.calendarDoubleTokens.calendarQuarterFontSize, _styledComponents.calendarDoubleTokens.calendarQuarterFontStyle, _styledComponents.calendarDoubleTokens.calendarQuarterFontLetterSpacing, _styledComponents.calendarDoubleTokens.calendarQuarterFontLineHeight, _styledComponents.calendarDoubleTokens.calendarQuarterFontWeight, _styledComponents.calendarDoubleTokens.calendarQuarterSelectedFontWeight, _styledComponents.calendarDoubleTokens.calendarMonthsPadding, _styledComponents.calendarDoubleTokens.calendarMonthItemBorderRadius, _styledComponents.calendarDoubleTokens.calendarMonthItemWidth, _styledComponents.calendarDoubleTokens.calendarMonthItemHeight, _styledComponents.calendarDoubleTokens.calendarMonthFontFamily, _styledComponents.calendarDoubleTokens.calendarMonthFontSize, _styledComponents.calendarDoubleTokens.calendarMonthFontStyle, _styledComponents.calendarDoubleTokens.calendarMonthFontLetterSpacing, _styledComponents.calendarDoubleTokens.calendarMonthFontLineHeight, _styledComponents.calendarDoubleTokens.calendarMonthFontWeight, _styledComponents.calendarDoubleTokens.calendarMonthSelectedFontWeight, _styledComponents.calendarDoubleTokens.calendarDayItemBorderRadius, _styledComponents.calendarDoubleTokens.calendarDayItemWidth, _styledComponents.calendarDoubleTokens.calendarDayItemHeight, _styledComponents.calendarDoubleTokens.calendarDayFontFamily, _styledComponents.calendarDoubleTokens.calendarDayFontSize, _styledComponents.calendarDoubleTokens.calendarDayFontStyle, _styledComponents.calendarDoubleTokens.calendarDayFontLetterSpacing, _styledComponents.calendarDoubleTokens.calendarDayFontLineHeight, _styledComponents.calendarDoubleTokens.calendarDayFontWeight, _styledComponents.calendarDoubleTokens.calendarDaySelectedFontWeight, _styledComponents.calendarDoubleTokens.calendarCurrentItemBorderWidth, _styledComponents.calendarDoubleTokens.calendarHeaderArrowGap, _styledComponents.calendarDoubleTokens.calendarDaysPadding, _styledComponents.calendarDoubleTokens.calendarHeaderPadding, _styledComponents.calendarDoubleTokens.calendarHeaderDateGap, _styledComponents.calendarDoubleTokens.calendarHeaderFontFamily, _styledComponents.calendarDoubleTokens.calendarHeaderFontSize, _styledComponents.calendarDoubleTokens.calendarHeaderFontStyle, _styledComponents.calendarDoubleTokens.calendarHeaderFontLetterSpacing, _styledComponents.calendarDoubleTokens.calendarHeaderFontLineHeight, _styledComponents.calendarDoubleTokens.calendarHeaderFontWeight, _styledComponents.calendarDoubleTokens.calendarHeaderFontWeightBold, _styledComponents.calendarDoubleTokens.iconButtonHeight, _styledComponents.calendarDoubleTokens.iconButtonWidth, _styledComponents.calendarDoubleTokens.iconButtonPadding, _styledComponents.calendarDoubleTokens.iconButtonRadius),
|
@@ -15,10 +15,10 @@ var config = exports.config = {
|
|
15
15
|
},
|
16
16
|
variations: {
|
17
17
|
view: {
|
18
|
-
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly),
|
19
|
-
positive: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly),
|
20
|
-
warning: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly),
|
21
|
-
negative: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly)
|
18
|
+
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.disclosureIconColor, _styledComponents.comboboxNewTokens.disclosureIconColorHover, _styledComponents.comboboxNewTokens.itemBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly),
|
19
|
+
positive: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.disclosureIconColor, _styledComponents.comboboxNewTokens.disclosureIconColorHover, _styledComponents.comboboxNewTokens.itemBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly),
|
20
|
+
warning: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.disclosureIconColor, _styledComponents.comboboxNewTokens.disclosureIconColorHover, _styledComponents.comboboxNewTokens.itemBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly),
|
21
|
+
negative: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), _styledComponents.comboboxNewTokens.textFieldColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColor, _styledComponents.comboboxNewTokens.textFieldBackgroundColorFocus, _styledComponents.comboboxNewTokens.textFieldCaretColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColor, _styledComponents.comboboxNewTokens.textFieldPlaceholderColorFocus, _styledComponents.comboboxNewTokens.textFieldTextBeforeColor, _styledComponents.comboboxNewTokens.textFieldTextAfterColor, _styledComponents.comboboxNewTokens.textFieldLabelColor, _styledComponents.comboboxNewTokens.textFieldLeftHelperColor, _styledComponents.comboboxNewTokens.textFieldFocusColor, _styledComponents.comboboxNewTokens.disclosureIconColor, _styledComponents.comboboxNewTokens.disclosureIconColorHover, _styledComponents.comboboxNewTokens.itemBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipCloseIconColor, _styledComponents.comboboxNewTokens.textFieldChipColor, _styledComponents.comboboxNewTokens.textFieldChipBackground, _styledComponents.comboboxNewTokens.textFieldChipColorHover, _styledComponents.comboboxNewTokens.textFieldChipBackgroundHover, _styledComponents.comboboxNewTokens.textFieldChipColorActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundActive, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnly, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnly, _styledComponents.comboboxNewTokens.textFieldChipBackgroundReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipColorReadOnlyHover, _styledComponents.comboboxNewTokens.textFieldChipOpacityReadonly)
|
22
22
|
},
|
23
23
|
size: {
|
24
24
|
l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 3.5rem;\n ", ": 1.0625rem 1.125rem 1.0625rem 1.125rem;\n ", ": 0.375rem;\n ", ": 0.875rem;\n\n ", ": -0.0625rem 0.5rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.125rem -0.0625rem 0.75rem;\n\n ", ": 0 0.25rem 0 0;\n ", ": 0 0 0 0.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.25rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.5625rem 0 0.125rem 0;\n ", ": 1.5625rem 0 0.5625rem 0;\n\n ", ": 0.25rem;\n ", ": 0.5rem;\n ", ": auto;\n ", ": 2.75rem;\n ", ": 0.75rem;\n ", ": 1rem;\n ", ": 0.625rem;\n ", ": 0rem;\n ", ": 1.5rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1rem;\n ", ": 0.125rem;\n ", ": 0.875rem;\n\n ", ": 1.5rem;\n ", ": 1rem 1.125rem;\n ", ": 0.75rem 1.125rem;\n ", ": 0.75rem;\n ", ": 0 0.5rem 0 0;\n ", ": 1.5rem;\n ", ": 1.5rem;\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0.125rem;\n ", ": 0.375rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1.25rem;\n ", ": 1.25rem;\n ", ": 0.375rem;\n ", ": 0.375rem;\n ", ": var(--text-accent);\n ", ": var(--on-dark-text-primary);\n ", ": var(--text-secondary);\n\n ", ": 0.375rem;\n "])), _styledComponents.comboboxNewTokens.textFieldHeight, _styledComponents.comboboxNewTokens.textFieldPadding, _styledComponents.comboboxNewTokens.textFieldPaddingWithChips, _styledComponents.comboboxNewTokens.textFieldBorderRadius, _styledComponents.comboboxNewTokens.textFieldLeftContentMargin, _styledComponents.comboboxNewTokens.textFieldRightContentMargin, _styledComponents.comboboxNewTokens.textFieldTextBeforeMargin, _styledComponents.comboboxNewTokens.textFieldTextAfterMargin, _styledComponents.comboboxNewTokens.textFieldFontFamily, _styledComponents.comboboxNewTokens.textFieldFontSize, _styledComponents.comboboxNewTokens.textFieldFontStyle, _styledComponents.comboboxNewTokens.textFieldFontWeight, _styledComponents.comboboxNewTokens.textFieldLetterSpacing, _styledComponents.comboboxNewTokens.textFieldLineHeight, _styledComponents.comboboxNewTokens.textFieldLabelOffset, _styledComponents.comboboxNewTokens.textFieldLabelFontFamily, _styledComponents.comboboxNewTokens.textFieldLabelFontSize, _styledComponents.comboboxNewTokens.textFieldLabelFontStyle, _styledComponents.comboboxNewTokens.textFieldLabelFontWeight, _styledComponents.comboboxNewTokens.textFieldLabelLetterSpacing, _styledComponents.comboboxNewTokens.textFieldLabelLineHeight, _styledComponents.comboboxNewTokens.textFieldLeftHelperOffset, _styledComponents.comboboxNewTokens.textFieldLeftHelperFontFamily, _styledComponents.comboboxNewTokens.textFieldLeftHelperFontSize, _styledComponents.comboboxNewTokens.textFieldLeftHelperFontStyle, _styledComponents.comboboxNewTokens.textFieldLeftHelperFontWeight, _styledComponents.comboboxNewTokens.textFieldLeftHelperLetterSpacing, _styledComponents.comboboxNewTokens.textFieldLeftHelperLineHeight, _styledComponents.comboboxNewTokens.textFieldLabelInnerPadding, _styledComponents.comboboxNewTokens.textFieldContentLabelInnerPadding, _styledComponents.comboboxNewTokens.textFieldChipGap, _styledComponents.comboboxNewTokens.textFieldChipBorderRadius, _styledComponents.comboboxNewTokens.textFieldChipWidth, _styledComponents.comboboxNewTokens.textFieldChipHeight, _styledComponents.comboboxNewTokens.textFieldChipPaddingRight, _styledComponents.comboboxNewTokens.textFieldChipPaddingLeft, _styledComponents.comboboxNewTokens.textFieldChipClearContentMarginLeft, _styledComponents.comboboxNewTokens.textFieldChipClearContentMarginRight, _styledComponents.comboboxNewTokens.textFieldChipCloseIconSize, _styledComponents.comboboxNewTokens.textFieldChipFontFamily, _styledComponents.comboboxNewTokens.textFieldChipFontSize, _styledComponents.comboboxNewTokens.textFieldChipFontStyle, _styledComponents.comboboxNewTokens.textFieldChipFontWeight, _styledComponents.comboboxNewTokens.textFieldChipLetterSpacing, _styledComponents.comboboxNewTokens.textFieldChipLineHeight, _styledComponents.comboboxNewTokens.emptyStatePadding, _styledComponents.comboboxNewTokens.padding, _styledComponents.comboboxNewTokens.borderRadius, _styledComponents.comboboxNewTokens.itemHeight, _styledComponents.comboboxNewTokens.itemPadding, _styledComponents.comboboxNewTokens.itemPaddingTight, _styledComponents.comboboxNewTokens.itemBorderRadius, _styledComponents.comboboxNewTokens.itemIconMargin, _styledComponents.comboboxNewTokens.itemIconSize, _styledComponents.comboboxNewTokens.itemIconSizeTight, _styledComponents.comboboxNewTokens.cellPadding, _styledComponents.comboboxNewTokens.cellPaddingLeftContent, _styledComponents.comboboxNewTokens.cellPaddingContent, _styledComponents.comboboxNewTokens.cellPaddingRightContent, _styledComponents.comboboxNewTokens.cellTextboxGap, _styledComponents.comboboxNewTokens.cellGap, _styledComponents.comboboxNewTokens.cellTitleFontFamily, _styledComponents.comboboxNewTokens.cellTitleFontSize, _styledComponents.comboboxNewTokens.cellTitleFontStyle, _styledComponents.comboboxNewTokens.cellTitleFontWeight, _styledComponents.comboboxNewTokens.cellTitleLetterSpacing, _styledComponents.comboboxNewTokens.cellTitleLineHeight, _styledComponents.comboboxNewTokens.fontFamily, _styledComponents.comboboxNewTokens.fontSize, _styledComponents.comboboxNewTokens.fontStyle, _styledComponents.comboboxNewTokens.fontWeight, _styledComponents.comboboxNewTokens.fontLetterSpacing, _styledComponents.comboboxNewTokens.fontLineHeight, _styledComponents.comboboxNewTokens.checkboxTriggerSize, _styledComponents.comboboxNewTokens.checkboxTriggerSizeTight, _styledComponents.comboboxNewTokens.checkboxTriggerBorderRadius, _styledComponents.comboboxNewTokens.checkboxTriggerBorderRadiusTight, _styledComponents.comboboxNewTokens.checkboxFillColor, _styledComponents.comboboxNewTokens.checkboxIconColor, _styledComponents.comboboxNewTokens.checkboxTriggerBorderColor, _styledComponents.comboboxNewTokens.indicatorSize),
|
@@ -14,7 +14,7 @@ var config = exports.config = {
|
|
14
14
|
},
|
15
15
|
variations: {
|
16
16
|
view: {
|
17
|
-
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-positive);\n\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-accent);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n\n ", ": var(--text-accent);\n\n ", ": var(--shadow-down-soft-s);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-card);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), _styledComponents.datePickerTokens.background, _styledComponents.datePickerTokens.backgroundError, _styledComponents.datePickerTokens.backgroundSuccess, _styledComponents.datePickerTokens.dividerColor, _styledComponents.datePickerTokens.labelColor, _styledComponents.datePickerTokens.leftHelperColor, _styledComponents.datePickerTokens.textFieldColor, _styledComponents.datePickerTokens.textFieldPlaceholderColor, _styledComponents.datePickerTokens.textFieldPlaceholderColorFocus, _styledComponents.datePickerTokens.textFieldCaretColor, _styledComponents.datePickerTokens.labelInnerFontFamily, _styledComponents.datePickerTokens.labelInnerFontSize, _styledComponents.datePickerTokens.labelInnerFontStyle, _styledComponents.datePickerTokens.labelInnerFontWeight, _styledComponents.datePickerTokens.labelInnerLetterSpacing, _styledComponents.datePickerTokens.labelInnerLineHeight, _styledComponents.datePickerTokens.textFieldBackgroundColor, _styledComponents.datePickerTokens.textFieldBackgroundColorFocus, _styledComponents.datePickerTokens.textFieldBackgroundErrorColor, _styledComponents.datePickerTokens.textFieldBackgroundErrorColorFocus, _styledComponents.datePickerTokens.textFieldBackgroundSuccessColor, _styledComponents.datePickerTokens.textFieldBackgroundSuccessColorFocus, _styledComponents.datePickerTokens.textFieldTextBeforeColor, _styledComponents.datePickerTokens.textFieldTextAfterColor, _styledComponents.datePickerTokens.focusColor, _styledComponents.datePickerTokens.calendarShadow, _styledComponents.datePickerTokens.calendarSeparatorBackground, _styledComponents.datePickerTokens.calendarBackgroundColor, _styledComponents.datePickerTokens.calendarSelectedItemBackground, _styledComponents.datePickerTokens.calendarSelectedItemColor, _styledComponents.datePickerTokens.calendarSelectableItemBackgroundHover, _styledComponents.datePickerTokens.calendarCurrentItemBorderColor, _styledComponents.datePickerTokens.calendarCurrentItemBackgroundHover, _styledComponents.datePickerTokens.calendarCurrentItemColorHover, _styledComponents.datePickerTokens.calendarCurrentItemChildBackgroundHover, _styledComponents.datePickerTokens.calendarActiveItemBackground, _styledComponents.datePickerTokens.calendarActiveItemColor, _styledComponents.datePickerTokens.calendarHoveredItemBackground, _styledComponents.datePickerTokens.calendarHoveredItemColor, _styledComponents.datePickerTokens.calendarRangeBackground, _styledComponents.datePickerTokens.calendarOutlineFocusColor, _styledComponents.datePickerTokens.calendarContentPrimaryColor, _styledComponents.datePickerTokens.calendarContentSecondaryColor, _styledComponents.datePickerTokens.iconButtonColor, _styledComponents.datePickerTokens.iconButtonBackgroundColor, _styledComponents.datePickerTokens.iconButtonColorHover, _styledComponents.datePickerTokens.iconButtonBackgroundColorHover, _styledComponents.datePickerTokens.iconButtonColorActive, _styledComponents.datePickerTokens.iconButtonBackgroundColorActive, _styledComponents.datePickerTokens.iconButtonFocusColor)
|
17
|
+
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-positive);\n\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-accent);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n\n ", ": var(--text-accent);\n\n ", ": var(--shadow-down-soft-s);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-card);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": ", ";\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), _styledComponents.datePickerTokens.background, _styledComponents.datePickerTokens.backgroundError, _styledComponents.datePickerTokens.backgroundSuccess, _styledComponents.datePickerTokens.dividerColor, _styledComponents.datePickerTokens.labelColor, _styledComponents.datePickerTokens.leftHelperColor, _styledComponents.datePickerTokens.textFieldColor, _styledComponents.datePickerTokens.textFieldPlaceholderColor, _styledComponents.datePickerTokens.textFieldPlaceholderColorFocus, _styledComponents.datePickerTokens.textFieldCaretColor, _styledComponents.datePickerTokens.labelInnerFontFamily, _styledComponents.datePickerTokens.labelInnerFontSize, _styledComponents.datePickerTokens.labelInnerFontStyle, _styledComponents.datePickerTokens.labelInnerFontWeight, _styledComponents.datePickerTokens.labelInnerLetterSpacing, _styledComponents.datePickerTokens.labelInnerLineHeight, _styledComponents.datePickerTokens.textFieldBackgroundColor, _styledComponents.datePickerTokens.textFieldBackgroundColorFocus, _styledComponents.datePickerTokens.textFieldBackgroundErrorColor, _styledComponents.datePickerTokens.textFieldBackgroundErrorColorFocus, _styledComponents.datePickerTokens.textFieldBackgroundSuccessColor, _styledComponents.datePickerTokens.textFieldBackgroundSuccessColorFocus, _styledComponents.datePickerTokens.textFieldTextBeforeColor, _styledComponents.datePickerTokens.textFieldTextAfterColor, _styledComponents.datePickerTokens.focusColor, _styledComponents.datePickerTokens.calendarShadow, _styledComponents.datePickerTokens.calendarSeparatorBackground, _styledComponents.datePickerTokens.calendarBackgroundColor, _styledComponents.datePickerTokens.calendarSelectedItemBackground, _styledComponents.datePickerTokens.calendarSelectedItemColor, _styledComponents.datePickerTokens.calendarSelectableItemBackgroundHover, _styledComponents.datePickerTokens.calendarCurrentItemBorderColor, _styledComponents.datePickerTokens.calendarCurrentItemBackgroundHover, _styledComponents.datePickerTokens.calendarCurrentItemColorHover, _styledComponents.datePickerTokens.calendarCurrentItemChildBackgroundHover, _styledComponents.datePickerTokens.calendarActiveItemBackground, _styledComponents.datePickerTokens.calendarActiveItemColor, _styledComponents.datePickerTokens.calendarHoveredItemBackground, _styledComponents.datePickerTokens.calendarHoveredItemColor, _styledComponents.datePickerTokens.calendarRangeBackground, _styledComponents.datePickerTokens.calendarOutlineFocusColor, _styledComponents.datePickerTokens.calendarContentPrimaryColor, _styledComponents.datePickerTokens.calendarHeaderArrowColor, _styledComponents.datePickerTokens.calendarContentPrimaryColor, _styledComponents.datePickerTokens.calendarContentSecondaryColor, _styledComponents.datePickerTokens.iconButtonColor, _styledComponents.datePickerTokens.iconButtonBackgroundColor, _styledComponents.datePickerTokens.iconButtonColorHover, _styledComponents.datePickerTokens.iconButtonBackgroundColorHover, _styledComponents.datePickerTokens.iconButtonColorActive, _styledComponents.datePickerTokens.iconButtonBackgroundColorActive, _styledComponents.datePickerTokens.iconButtonFocusColor)
|
18
18
|
},
|
19
19
|
size: {
|
20
20
|
l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 26.5rem;\n ", ": 0.875rem;\n\n ", ": 0 0.375rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0 0 0 1rem;\n ", ": 0;\n\n ", ": 0 0 0.75rem 0;\n ", ": 0.5625rem 0 0.125rem 0;\n ", ": 1.5625rem 0 0.5625rem 0;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 3.5rem;\n ", ": 0.875rem;\n ", ": 1.0625rem 1.125rem 1.0625rem 1.125rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.25rem 0 0 0;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": -0.0625rem 0.5rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.125rem -0.0625rem 0.75rem;\n ", ": 0 0.25rem 0 0;\n ", ": 0 0 0 0.25rem;\n\n ", ": 0.875rem;\n ", ": 26.5rem;\n\n ", ": 0.5rem 1rem 1.125rem 1rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 1rem 1.125rem 1rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 11.75rem;\n ", ": 10.5rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 1rem 1.125rem 1rem;\n ", ": 0.75rem;\n ", ": 3.5rem;\n ", ": 3rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.063rem;\n\n ", ": 0.875rem 1rem 0 1rem;\n ", ": 0.5rem;\n\n ", ": 0 0 0 1rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h3-font-family);\n ", ": var(--plasma-typo-h3-font-size);\n ", ": var(--plasma-typo-h3-font-style);\n ", ": var(--plasma-typo-h3-letter-spacing);\n ", ": var(--plasma-typo-h3-line-height);\n ", ": var(--plasma-typo-h3-font-weight);\n ", ": var(--plasma-typo-h3-bold-font-weight);\n\n ", ": 3.5rem;\n ", ": 3.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\n "])), _styledComponents.datePickerTokens.width, _styledComponents.datePickerTokens.borderRadius, _styledComponents.datePickerTokens.dividerPadding, _styledComponents.datePickerTokens.dividerFontFamily, _styledComponents.datePickerTokens.dividerFontStyle, _styledComponents.datePickerTokens.dividerFontSize, _styledComponents.datePickerTokens.dividerFontWeight, _styledComponents.datePickerTokens.dividerLetterSpacing, _styledComponents.datePickerTokens.dividerLineHeight, _styledComponents.datePickerTokens.leftContentMargin, _styledComponents.datePickerTokens.rightContentMargin, _styledComponents.datePickerTokens.labelOffset, _styledComponents.datePickerTokens.labelInnerPadding, _styledComponents.datePickerTokens.contentLabelInnerPadding, _styledComponents.datePickerTokens.labelFontFamily, _styledComponents.datePickerTokens.labelFontStyle, _styledComponents.datePickerTokens.labelFontSize, _styledComponents.datePickerTokens.labelFontWeight, _styledComponents.datePickerTokens.labelLetterSpacing, _styledComponents.datePickerTokens.labelLineHeight, _styledComponents.datePickerTokens.textFieldHeight, _styledComponents.datePickerTokens.textFieldBorderRadius, _styledComponents.datePickerTokens.textFieldPadding, _styledComponents.datePickerTokens.textFieldFontFamily, _styledComponents.datePickerTokens.textFieldFontStyle, _styledComponents.datePickerTokens.textFieldFontSize, _styledComponents.datePickerTokens.textFieldFontWeight, _styledComponents.datePickerTokens.textFieldLetterSpacing, _styledComponents.datePickerTokens.textFieldLineHeight, _styledComponents.datePickerTokens.leftHelperOffset, _styledComponents.datePickerTokens.leftHelperFontFamily, _styledComponents.datePickerTokens.leftHelperFontStyle, _styledComponents.datePickerTokens.leftHelperFontSize, _styledComponents.datePickerTokens.leftHelperFontWeight, _styledComponents.datePickerTokens.leftHelperLetterSpacing, _styledComponents.datePickerTokens.leftHelperLineHeight, _styledComponents.datePickerTokens.textFieldLeftContentMargin, _styledComponents.datePickerTokens.textFieldRightContentMargin, _styledComponents.datePickerTokens.textFieldTextBeforeMargin, _styledComponents.datePickerTokens.textFieldTextAfterMargin, _styledComponents.datePickerTokens.calendarBorderRadius, _styledComponents.datePickerTokens.calendarWidth, _styledComponents.datePickerTokens.calendarYearsPadding, _styledComponents.datePickerTokens.calendarYearItemBorderRadius, _styledComponents.datePickerTokens.calendarYearItemWidth, _styledComponents.datePickerTokens.calendarYearItemHeight, _styledComponents.datePickerTokens.calendarYearFontFamily, _styledComponents.datePickerTokens.calendarYearFontSize, _styledComponents.datePickerTokens.calendarYearFontStyle, _styledComponents.datePickerTokens.calendarYearFontLetterSpacing, _styledComponents.datePickerTokens.calendarYearFontLineHeight, _styledComponents.datePickerTokens.calendarYearFontWeight, _styledComponents.datePickerTokens.calendarYearSelectedFontWeight, _styledComponents.datePickerTokens.calendarMonthsPadding, _styledComponents.datePickerTokens.calendarMonthItemBorderRadius, _styledComponents.datePickerTokens.calendarMonthItemWidth, _styledComponents.datePickerTokens.calendarMonthItemHeight, _styledComponents.datePickerTokens.calendarMonthFontFamily, _styledComponents.datePickerTokens.calendarMonthFontSize, _styledComponents.datePickerTokens.calendarMonthFontStyle, _styledComponents.datePickerTokens.calendarMonthFontLetterSpacing, _styledComponents.datePickerTokens.calendarMonthFontLineHeight, _styledComponents.datePickerTokens.calendarMonthFontWeight, _styledComponents.datePickerTokens.calendarMonthSelectedFontWeight, _styledComponents.datePickerTokens.calendarQuartersPadding, _styledComponents.datePickerTokens.calendarQuarterItemBorderRadius, _styledComponents.datePickerTokens.calendarQuarterItemWidth, _styledComponents.datePickerTokens.calendarQuarterItemHeight, _styledComponents.datePickerTokens.calendarQuarterFontFamily, _styledComponents.datePickerTokens.calendarQuarterFontSize, _styledComponents.datePickerTokens.calendarQuarterFontStyle, _styledComponents.datePickerTokens.calendarQuarterFontLetterSpacing, _styledComponents.datePickerTokens.calendarQuarterFontLineHeight, _styledComponents.datePickerTokens.calendarQuarterFontWeight, _styledComponents.datePickerTokens.calendarQuarterSelectedFontWeight, _styledComponents.datePickerTokens.calendarDaysPadding, _styledComponents.datePickerTokens.calendarDayItemBorderRadius, _styledComponents.datePickerTokens.calendarDayItemWidth, _styledComponents.datePickerTokens.calendarDayItemHeight, _styledComponents.datePickerTokens.calendarDayFontFamily, _styledComponents.datePickerTokens.calendarDayFontSize, _styledComponents.datePickerTokens.calendarDayFontStyle, _styledComponents.datePickerTokens.calendarDayFontLetterSpacing, _styledComponents.datePickerTokens.calendarDayFontLineHeight, _styledComponents.datePickerTokens.calendarDayFontWeight, _styledComponents.datePickerTokens.calendarDaySelectedFontWeight, _styledComponents.datePickerTokens.calendarCurrentItemBorderWidth, _styledComponents.datePickerTokens.calendarHeaderWrapperPadding, _styledComponents.datePickerTokens.calendarHeaderArrowGap, _styledComponents.datePickerTokens.calendarHeaderPadding, _styledComponents.datePickerTokens.calendarHeaderDateGap, _styledComponents.datePickerTokens.calendarHeaderFontFamily, _styledComponents.datePickerTokens.calendarHeaderFontSize, _styledComponents.datePickerTokens.calendarHeaderFontStyle, _styledComponents.datePickerTokens.calendarHeaderFontLetterSpacing, _styledComponents.datePickerTokens.calendarHeaderFontLineHeight, _styledComponents.datePickerTokens.calendarHeaderFontWeight, _styledComponents.datePickerTokens.calendarHeaderFontWeightBold, _styledComponents.datePickerTokens.iconButtonHeight, _styledComponents.datePickerTokens.iconButtonWidth, _styledComponents.datePickerTokens.iconButtonPadding, _styledComponents.datePickerTokens.iconButtonRadius),
|
@@ -20,7 +20,7 @@ var config = exports.config = {
|
|
20
20
|
xs: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.125rem;\n ", ": 10rem;\n ", ": 0.5rem;\n\n ", ": 1rem;\n ", ": 0.5rem;\n ", ": 0.25rem 0.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.5rem;\n ", ": 0.25rem;\n ", ": 0.5rem;\n ", ": 0.125rem;\n ", ": 0.125rem;\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0.125rem;\n ", ": 0.25rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n "])), _styledComponents.dropdownTokens.padding, _styledComponents.dropdownTokens.width, _styledComponents.dropdownTokens.borderRadius, _styledComponents.dropdownTokens.itemHeight, _styledComponents.dropdownTokens.itemPadding, _styledComponents.dropdownTokens.itemPaddingTight, _styledComponents.dropdownTokens.itemBorderRadius, _styledComponents.dropdownTokens.dividerMarginTop, _styledComponents.dropdownTokens.dividerMarginRight, _styledComponents.dropdownTokens.dividerMarginBottom, _styledComponents.dropdownTokens.dividerMarginLeft, _styledComponents.dropdownTokens.dividerMarginTopTight, _styledComponents.dropdownTokens.dividerMarginBottomTight, _styledComponents.dropdownTokens.itemFontFamily, _styledComponents.dropdownTokens.itemFontSize, _styledComponents.dropdownTokens.itemFontStyle, _styledComponents.dropdownTokens.itemFontWeightBold, _styledComponents.dropdownTokens.itemFontLetterSpacing, _styledComponents.dropdownTokens.itemFontLineHeight, _styledComponents.dropdownTokens.cellPadding, _styledComponents.dropdownTokens.cellPaddingLeftContent, _styledComponents.dropdownTokens.cellPaddingContent, _styledComponents.dropdownTokens.cellPaddingRightContent, _styledComponents.dropdownTokens.cellTextboxGap, _styledComponents.dropdownTokens.cellGap, _styledComponents.dropdownTokens.cellTitleFontFamily, _styledComponents.dropdownTokens.cellTitleFontSize, _styledComponents.dropdownTokens.cellTitleFontStyle, _styledComponents.dropdownTokens.cellTitleFontWeight, _styledComponents.dropdownTokens.cellTitleLetterSpacing, _styledComponents.dropdownTokens.cellTitleLineHeight)
|
21
21
|
},
|
22
22
|
view: {
|
23
|
-
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-tertiary);\n "])), _styledComponents.dropdownTokens.dividerColor)
|
23
|
+
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-transparent-tertiary);\n "])), _styledComponents.dropdownTokens.itemBackgroundHover, _styledComponents.dropdownTokens.dividerColor)
|
24
24
|
}
|
25
25
|
}
|
26
26
|
};
|
@@ -19,9 +19,9 @@ var config = exports.config = {
|
|
19
19
|
gradient: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n\n ", ": var(--text-secondary);\n\n ", ": var(--surface-solid-tertiary);\n ", ": var(--on-light-surface-solid-card);\n ", ": var(--surface-accent-gradient);\n\n ", ": var(--surface-solid-tertiary);\n\n ", ": var(--surface-accent-gradient);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n "])), _styledComponents.sliderTokens.labelColor, _styledComponents.sliderTokens.rangeValueColor, _styledComponents.sliderTokens.thumbBorderColor, _styledComponents.sliderTokens.thumbBackgroundColor, _styledComponents.sliderTokens.thumbFocusBorderColor, _styledComponents.sliderTokens.railBackgroundColor, _styledComponents.sliderTokens.fillColor, _styledComponents.sliderTokens.textFieldColor, _styledComponents.sliderTokens.textFieldBackgroundColor, _styledComponents.sliderTokens.textFieldCaretColor, _styledComponents.sliderTokens.textFieldPlaceholderColor, _styledComponents.sliderTokens.textFiledFocusColor, _styledComponents.sliderTokens.textFieldActiveColor)
|
20
20
|
},
|
21
21
|
size: {
|
22
|
-
l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.75rem;\n ", ": 0.
|
23
|
-
m: /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 0.75rem;\n ", ": 0.75rem;\n ", ":
|
24
|
-
s: /*#__PURE__*/(0, _styledComponents.css)(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 0.5rem;\n ", ": 0.
|
22
|
+
l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n ", ": 1rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.75rem;\n ", ": 0.875rem;\n ", ": 0.875rem;\n ", ": 0.75rem;\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 1rem;\n ", ": 1.25rem;\n ", ": 0.0625rem solid;\n\n ", ": 1.625rem;\n\n ", ": 0.25rem;\n ", ": 0.125rem;\n ", ": 0.75rem;\n\n ", ": 0.125rem;\n\n ", ": 3.5rem;\n ", ": 1.25rem 1rem 1.25rem 1rem;\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n "])), _styledComponents.sliderTokens.size, _styledComponents.sliderTokens.doubleWrapperGap, _styledComponents.sliderTokens.labelWrapperGap, _styledComponents.sliderTokens.labelWrapperMarginBottom, _styledComponents.sliderTokens.labelWrapperMarginRight, _styledComponents.sliderTokens.labelWrapperVerticalMargin, _styledComponents.sliderTokens.labelFontFamily, _styledComponents.sliderTokens.labelFontSize, _styledComponents.sliderTokens.labelFontStyle, _styledComponents.sliderTokens.labelFontWeight, _styledComponents.sliderTokens.labelLetterSpacing, _styledComponents.sliderTokens.labelLineHeight, _styledComponents.sliderTokens.rangeValueHorizontalMargin, _styledComponents.sliderTokens.rangeValueBottomOffset, _styledComponents.sliderTokens.rangeValueHorizontalOffset, _styledComponents.sliderTokens.rangeValueVerticalMargin, _styledComponents.sliderTokens.valueFontFamily, _styledComponents.sliderTokens.valueFontSize, _styledComponents.sliderTokens.valueFontStyle, _styledComponents.sliderTokens.valueFontWeight, _styledComponents.sliderTokens.valueLetterSpacing, _styledComponents.sliderTokens.valueLineHeight, _styledComponents.sliderTokens.thumbSize, _styledComponents.sliderTokens.thumbSizeLarge, _styledComponents.sliderTokens.thumbBorder, _styledComponents.sliderTokens.currentValueTopOffset, _styledComponents.sliderTokens.railThickness, _styledComponents.sliderTokens.railBorderRadius, _styledComponents.sliderTokens.railIndent, _styledComponents.sliderTokens.textFieldWrapperGap, _styledComponents.sliderTokens.textFieldHeight, _styledComponents.sliderTokens.textFieldPadding, _styledComponents.sliderTokens.textFieldBorderRadius, _styledComponents.sliderTokens.textFieldFontFamily, _styledComponents.sliderTokens.textFieldFontSize, _styledComponents.sliderTokens.textFieldFontStyle, _styledComponents.sliderTokens.textFieldFontWeight, _styledComponents.sliderTokens.textFieldLetterSpacing, _styledComponents.sliderTokens.textFieldLineHeight),
|
23
|
+
m: /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n ", ": 0.75rem;\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 0.75rem;\n ", ": 0.75rem;\n ", ": 0.875rem;\n ", ": 0.625rem;\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 1rem;\n ", ": 1.25rem;\n ", ": 0.0625rem solid;\n\n ", ": 1.75rem;\n\n ", ": 0.25rem;\n ", ": 0.125rem;\n ", ": 0.75rem;\n\n ", ": 0.125rem;\n\n ", ": 3rem;\n ", ": 0.875rem 1rem 0.875rem 1rem;\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n "])), _styledComponents.sliderTokens.size, _styledComponents.sliderTokens.doubleWrapperGap, _styledComponents.sliderTokens.labelWrapperGap, _styledComponents.sliderTokens.labelWrapperMarginBottom, _styledComponents.sliderTokens.labelWrapperMarginRight, _styledComponents.sliderTokens.labelWrapperVerticalMargin, _styledComponents.sliderTokens.labelFontFamily, _styledComponents.sliderTokens.labelFontSize, _styledComponents.sliderTokens.labelFontStyle, _styledComponents.sliderTokens.labelFontWeight, _styledComponents.sliderTokens.labelLetterSpacing, _styledComponents.sliderTokens.labelLineHeight, _styledComponents.sliderTokens.rangeValueHorizontalMargin, _styledComponents.sliderTokens.rangeValueBottomOffset, _styledComponents.sliderTokens.rangeValueHorizontalOffset, _styledComponents.sliderTokens.rangeValueVerticalMargin, _styledComponents.sliderTokens.valueFontFamily, _styledComponents.sliderTokens.valueFontSize, _styledComponents.sliderTokens.valueFontStyle, _styledComponents.sliderTokens.valueFontWeight, _styledComponents.sliderTokens.valueLetterSpacing, _styledComponents.sliderTokens.valueLineHeight, _styledComponents.sliderTokens.thumbSize, _styledComponents.sliderTokens.thumbSizeLarge, _styledComponents.sliderTokens.thumbBorder, _styledComponents.sliderTokens.currentValueTopOffset, _styledComponents.sliderTokens.railThickness, _styledComponents.sliderTokens.railBorderRadius, _styledComponents.sliderTokens.railIndent, _styledComponents.sliderTokens.textFieldWrapperGap, _styledComponents.sliderTokens.textFieldHeight, _styledComponents.sliderTokens.textFieldPadding, _styledComponents.sliderTokens.textFieldBorderRadius, _styledComponents.sliderTokens.textFieldFontFamily, _styledComponents.sliderTokens.textFieldFontSize, _styledComponents.sliderTokens.textFieldFontStyle, _styledComponents.sliderTokens.textFieldFontWeight, _styledComponents.sliderTokens.textFieldLetterSpacing, _styledComponents.sliderTokens.textFieldLineHeight),
|
24
|
+
s: /*#__PURE__*/(0, _styledComponents.css)(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n ", ": 0.625rem;\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 0.5rem;\n ", ": 0.625rem;\n ", ": 0.625rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": 1.25rem;\n ", ": 0.0625rem solid;\n\n ", ": 1.25rem;\n\n ", ": 0.25rem;\n ", ": 0.125rem;\n ", ": 0.75rem;\n\n ", ": 0.125rem;\n\n ", ": 2.5rem;\n ", ": 0.5rem 1rem 0.5rem 1rem;\n ", ": 0.625rem;\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n "])), _styledComponents.sliderTokens.size, _styledComponents.sliderTokens.doubleWrapperGap, _styledComponents.sliderTokens.labelWrapperGap, _styledComponents.sliderTokens.labelWrapperMarginBottom, _styledComponents.sliderTokens.labelWrapperMarginRight, _styledComponents.sliderTokens.labelWrapperVerticalMargin, _styledComponents.sliderTokens.labelFontFamily, _styledComponents.sliderTokens.labelFontSize, _styledComponents.sliderTokens.labelFontStyle, _styledComponents.sliderTokens.labelFontWeight, _styledComponents.sliderTokens.labelLetterSpacing, _styledComponents.sliderTokens.labelLineHeight, _styledComponents.sliderTokens.rangeValueHorizontalMargin, _styledComponents.sliderTokens.rangeValueBottomOffset, _styledComponents.sliderTokens.rangeValueHorizontalOffset, _styledComponents.sliderTokens.rangeValueVerticalMargin, _styledComponents.sliderTokens.valueFontFamily, _styledComponents.sliderTokens.valueFontSize, _styledComponents.sliderTokens.valueFontStyle, _styledComponents.sliderTokens.valueFontWeight, _styledComponents.sliderTokens.valueLetterSpacing, _styledComponents.sliderTokens.valueLineHeight, _styledComponents.sliderTokens.thumbSize, _styledComponents.sliderTokens.thumbSizeLarge, _styledComponents.sliderTokens.thumbBorder, _styledComponents.sliderTokens.currentValueTopOffset, _styledComponents.sliderTokens.railThickness, _styledComponents.sliderTokens.railBorderRadius, _styledComponents.sliderTokens.railIndent, _styledComponents.sliderTokens.textFieldWrapperGap, _styledComponents.sliderTokens.textFieldHeight, _styledComponents.sliderTokens.textFieldPadding, _styledComponents.sliderTokens.textFieldBorderRadius, _styledComponents.sliderTokens.textFieldFontFamily, _styledComponents.sliderTokens.textFieldFontSize, _styledComponents.sliderTokens.textFieldFontStyle, _styledComponents.sliderTokens.textFieldFontWeight, _styledComponents.sliderTokens.textFieldLetterSpacing, _styledComponents.sliderTokens.textFieldLineHeight)
|
25
25
|
},
|
26
26
|
disabled: {
|
27
27
|
"true": /*#__PURE__*/(0, _styledComponents.css)(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.4;\n "])), _styledComponents.sliderTokens.disabledOpacity)
|
@@ -18,41 +18,127 @@ export declare const Slider: import("react").FunctionComponent<import("@salutejs
|
|
18
18
|
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
19
19
|
};
|
20
20
|
}> & ((import("@salutejs/plasma-new-hope/types/components/Slider/components/SliderBase/SliderBase.types").SliderBaseProps & import("@salutejs/plasma-new-hope/types/components/Slider/components").SliderInternalProps & {
|
21
|
+
/**
|
22
|
+
* Слайдер позволяет определить числовое значение в пределах указанного промежутка.
|
23
|
+
* Можно указать два значения.
|
24
|
+
*/
|
21
25
|
onChange?: ((event: import("@salutejs/plasma-new-hope/types/types/FormType").FormTypeNumber) => void) | undefined;
|
22
26
|
name: string;
|
23
27
|
value?: undefined;
|
24
28
|
defaultValue?: number | undefined;
|
29
|
+
} & {
|
30
|
+
orientation?: "horizontal" | undefined;
|
31
|
+
labelPlacement?: "none" | "top" | "left" | undefined;
|
32
|
+
scaleAlign?: "none" | "bottom" | "side" | undefined;
|
33
|
+
sliderAlign?: "none" | undefined;
|
34
|
+
reversed?: undefined;
|
35
|
+
labelReversed?: undefined;
|
25
36
|
} & Omit<import("react").HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
26
37
|
onChangeCommitted?: ((value: number) => void) | undefined;
|
27
38
|
ariaLabel?: string | undefined;
|
28
39
|
showCurrentValue?: boolean | undefined;
|
29
40
|
showRangeValues?: boolean | undefined;
|
41
|
+
rangeValuesPlacement?: string | undefined;
|
42
|
+
showScale?: boolean | undefined;
|
30
43
|
hideMinValueDiff?: number | undefined;
|
31
44
|
hideMaxValueDiff?: number | undefined;
|
32
|
-
rangeValuesPlacement?: "outer" | "inner" | undefined;
|
33
45
|
labelPlacement?: "outer" | "inner" | undefined;
|
46
|
+
labelContentLeft?: import("react").ReactNode;
|
47
|
+
labelContent?: import("react").ReactNode;
|
34
48
|
multipleStepSize?: number | undefined;
|
35
49
|
view?: string | undefined;
|
36
50
|
size?: "s" | "m" | "l" | undefined;
|
37
51
|
type?: "single" | undefined;
|
52
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
53
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("@salutejs/plasma-new-hope/types/components/Slider/components/SliderBase/SliderBase.types").SliderBaseProps & import("@salutejs/plasma-new-hope/types/components/Slider/components").SliderInternalProps & {
|
54
|
+
/**
|
55
|
+
* Слайдер позволяет определить числовое значение в пределах указанного промежутка.
|
56
|
+
* Можно указать два значения.
|
57
|
+
*/
|
58
|
+
onChange?: ((event: import("@salutejs/plasma-new-hope/types/types/FormType").FormTypeNumber) => void) | undefined;
|
59
|
+
name: string;
|
60
|
+
value?: undefined;
|
61
|
+
defaultValue?: number | undefined;
|
62
|
+
} & {
|
63
|
+
orientation: "vertical";
|
64
|
+
sliderAlign?: "none" | "center" | "right" | "left" | undefined;
|
65
|
+
scaleAlign?: undefined;
|
66
|
+
reversed?: boolean | undefined;
|
67
|
+
labelReversed?: boolean | undefined;
|
68
|
+
} & Omit<import("react").HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
69
|
+
onChangeCommitted?: ((value: number) => void) | undefined;
|
70
|
+
ariaLabel?: string | undefined;
|
71
|
+
showCurrentValue?: boolean | undefined;
|
72
|
+
showRangeValues?: boolean | undefined;
|
73
|
+
rangeValuesPlacement?: string | undefined;
|
74
|
+
showScale?: boolean | undefined;
|
75
|
+
hideMinValueDiff?: number | undefined;
|
76
|
+
hideMaxValueDiff?: number | undefined;
|
77
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
78
|
+
labelContentLeft?: import("react").ReactNode;
|
79
|
+
labelContent?: import("react").ReactNode;
|
80
|
+
multipleStepSize?: number | undefined;
|
81
|
+
view?: string | undefined;
|
82
|
+
size?: "s" | "m" | "l" | undefined;
|
83
|
+
type?: "single" | undefined;
|
84
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
85
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("@salutejs/plasma-new-hope/types/components/Slider/components/SliderBase/SliderBase.types").SliderBaseProps & import("@salutejs/plasma-new-hope/types/components/Slider/components").SliderInternalProps & {
|
86
|
+
onChange?: ((value: number) => void) | undefined;
|
87
|
+
value: number;
|
88
|
+
name?: undefined;
|
89
|
+
defaultValue?: undefined;
|
90
|
+
} & {
|
91
|
+
orientation?: "horizontal" | undefined;
|
92
|
+
labelPlacement?: "none" | "top" | "left" | undefined;
|
93
|
+
scaleAlign?: "none" | "bottom" | "side" | undefined;
|
94
|
+
sliderAlign?: "none" | undefined;
|
95
|
+
reversed?: undefined;
|
96
|
+
labelReversed?: undefined;
|
97
|
+
} & Omit<import("react").HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
98
|
+
onChangeCommitted?: ((value: number) => void) | undefined;
|
99
|
+
ariaLabel?: string | undefined;
|
100
|
+
showCurrentValue?: boolean | undefined;
|
101
|
+
showRangeValues?: boolean | undefined;
|
102
|
+
rangeValuesPlacement?: string | undefined;
|
103
|
+
showScale?: boolean | undefined;
|
104
|
+
hideMinValueDiff?: number | undefined;
|
105
|
+
hideMaxValueDiff?: number | undefined;
|
106
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
107
|
+
labelContentLeft?: import("react").ReactNode;
|
108
|
+
labelContent?: import("react").ReactNode;
|
109
|
+
multipleStepSize?: number | undefined;
|
110
|
+
view?: string | undefined;
|
111
|
+
size?: "s" | "m" | "l" | undefined;
|
112
|
+
type?: "single" | undefined;
|
113
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
38
114
|
} & import("react").RefAttributes<HTMLDivElement>) | (import("@salutejs/plasma-new-hope/types/components/Slider/components/SliderBase/SliderBase.types").SliderBaseProps & import("@salutejs/plasma-new-hope/types/components/Slider/components").SliderInternalProps & {
|
39
115
|
onChange?: ((value: number) => void) | undefined;
|
40
116
|
value: number;
|
41
117
|
name?: undefined;
|
42
118
|
defaultValue?: undefined;
|
119
|
+
} & {
|
120
|
+
orientation: "vertical";
|
121
|
+
sliderAlign?: "none" | "center" | "right" | "left" | undefined;
|
122
|
+
scaleAlign?: undefined;
|
123
|
+
reversed?: boolean | undefined;
|
124
|
+
labelReversed?: boolean | undefined;
|
43
125
|
} & Omit<import("react").HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
44
126
|
onChangeCommitted?: ((value: number) => void) | undefined;
|
45
127
|
ariaLabel?: string | undefined;
|
46
128
|
showCurrentValue?: boolean | undefined;
|
47
129
|
showRangeValues?: boolean | undefined;
|
130
|
+
rangeValuesPlacement?: string | undefined;
|
131
|
+
showScale?: boolean | undefined;
|
48
132
|
hideMinValueDiff?: number | undefined;
|
49
133
|
hideMaxValueDiff?: number | undefined;
|
50
|
-
rangeValuesPlacement?: "outer" | "inner" | undefined;
|
51
134
|
labelPlacement?: "outer" | "inner" | undefined;
|
135
|
+
labelContentLeft?: import("react").ReactNode;
|
136
|
+
labelContent?: import("react").ReactNode;
|
52
137
|
multipleStepSize?: number | undefined;
|
53
138
|
view?: string | undefined;
|
54
139
|
size?: "s" | "m" | "l" | undefined;
|
55
140
|
type?: "single" | undefined;
|
141
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
56
142
|
} & import("react").RefAttributes<HTMLDivElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").DoubleSliderProps, "onChange" | "defaultValue" | "value"> & {
|
57
143
|
onChange?: ((event: import("@salutejs/plasma-new-hope/types/types/FormType").FormTypeString) => void) | undefined;
|
58
144
|
name?: string | undefined;
|
@@ -19,7 +19,7 @@ var config = exports.config = {
|
|
19
19
|
light: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-light-text-primary);\n ", ": var(--on-light-surface-solid-primary-brightness);\n\n ", ": var(--on-light-text-secondary);\n ", ": var(--on-light-text-secondary);\n "])), _styledComponents.toastTokens.color, _styledComponents.toastTokens.background, _styledComponents.toastTokens.closeIconColor, _styledComponents.toastTokens.closeIconColorOnHover)
|
20
20
|
},
|
21
21
|
size: {
|
22
|
-
m: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.75rem;\n ", ": calc(100vw - 5rem);\n ", ": 0.5625rem 0.75rem;\n\n ", ": 1rem;\n ", ":
|
22
|
+
m: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.75rem;\n ", ": calc(100vw - 5rem);\n ", ": 0.5625rem 0.75rem;\n\n ", ": 1rem;\n ", ": 1.5rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": -0.0625rem 0.375rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.25rem -0.0625rem 0.5rem;\n "])), _styledComponents.toastTokens.borderRadius, _styledComponents.toastTokens.maxWidth, _styledComponents.toastTokens.padding, _styledComponents.toastTokens.closeIconButtonSize, _styledComponents.toastTokens.closeIconSize, _styledComponents.toastTokens.fontFamily, _styledComponents.toastTokens.fontSize, _styledComponents.toastTokens.fontStyle, _styledComponents.toastTokens.fontWeight, _styledComponents.toastTokens.letterSpacing, _styledComponents.toastTokens.lineHeight, _styledComponents.toastTokens.leftContentMargin, _styledComponents.toastTokens.closeIconMargin)
|
23
23
|
},
|
24
24
|
pilled: {
|
25
25
|
"true": /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n\n ", ": -0.0625rem 0.375rem -0.0625rem -0.25rem;\n ", ": -0.0625rem -0.25rem -0.0625rem 0.375rem;\n "])), _styledComponents.toastTokens.pilledBorderRadius, _styledComponents.toastTokens.leftContentMargin, _styledComponents.toastTokens.closeIconMargin)
|
@@ -9,10 +9,10 @@ export var config = {
|
|
9
9
|
},
|
10
10
|
variations: {
|
11
11
|
view: {
|
12
|
-
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.infiniteLoaderSpinnerColor),
|
13
|
-
positive: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.infiniteLoaderSpinnerColor),
|
14
|
-
warning: /*#__PURE__*/css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.infiniteLoaderSpinnerColor),
|
15
|
-
negative: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.infiniteLoaderSpinnerColor)
|
12
|
+
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.textFieldContentSlotColor, tokens.textFieldColor, tokens.textFieldContentSlotRightColor, tokens.textFieldColor, tokens.infiniteLoaderSpinnerColor),
|
13
|
+
positive: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.textFieldContentSlotColor, tokens.textFieldColor, tokens.textFieldContentSlotRightColor, tokens.textFieldColor, tokens.infiniteLoaderSpinnerColor),
|
14
|
+
warning: /*#__PURE__*/css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.textFieldContentSlotColor, tokens.textFieldColor, tokens.textFieldContentSlotRightColor, tokens.textFieldColor, tokens.infiniteLoaderSpinnerColor),
|
15
|
+
negative: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--surface-solid-card);\n ", ": 0px 4px 14px -4px rgba(8, 8, 8, 0.08), 0px 1px 4px -1px rgba(0, 0, 0, 0.04);\n ", ": var(--plasma-colors-transparent);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-accent);\n\n ", ": ", ";\n ", ": ", ";\n ", ": var(--text-primary);\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.background, tokens.boxShadow, tokens.itemBackground, tokens.itemBackgroundHover, tokens.itemColor, tokens.focusColor, tokens.textFieldContentSlotColor, tokens.textFieldColor, tokens.textFieldContentSlotRightColor, tokens.textFieldColor, tokens.infiniteLoaderSpinnerColor)
|
16
16
|
},
|
17
17
|
size: {
|
18
18
|
l: /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 3.5rem;\n ", ": 1.0625rem 1.125rem 1.0625rem 1.125rem;\n ", ": 0.875rem;\n ", ": -0.0625rem 0.5rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.125rem -0.0625rem 0.75rem;\n ", ": 0 0.25rem 0 0;\n ", ": 0 0 0 0.25rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": 0.25rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n ", ": 0.5625rem 0 0.125rem 0;\n ", ": 1.5625rem 0 0.5625rem 0;\n\n ", ": 0.875rem;\n ", ": 0.125rem;\n ", ": 1.0625rem 1rem;\n ", ": 0.75rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 2rem 1rem 1rem 1rem;\n ", ": 0.5rem;\n\n ", ": 1.5rem;\n ", ": 0.5rem;\n "])), tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.borderRadius, tokens.padding, tokens.itemPadding, tokens.itemBorderRadius, tokens.itemFontFamily, tokens.itemFontSize, tokens.itemFontStyle, tokens.itemFontWeight, tokens.itemFontLetterSpacing, tokens.itemFontLineHeight, tokens.emptyStatePadding, tokens.emptyStateGap, tokens.infiniteLoaderSpinnerSize, tokens.infiniteLoaderGap),
|
@@ -8,7 +8,7 @@ export var config = {
|
|
8
8
|
},
|
9
9
|
variations: {
|
10
10
|
view: {
|
11
|
-
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), calendarBaseTokens.calendarSelectedItemBackground, calendarBaseTokens.calendarSelectedItemColor, calendarBaseTokens.calendarSelectableItemBackgroundHover, calendarBaseTokens.calendarCurrentItemBorderColor, calendarBaseTokens.calendarCurrentItemBackgroundHover, calendarBaseTokens.calendarCurrentItemColorHover, calendarBaseTokens.calendarCurrentItemChildBackgroundHover, calendarBaseTokens.calendarActiveItemBackground, calendarBaseTokens.calendarActiveItemColor, calendarBaseTokens.calendarHoveredItemBackground, calendarBaseTokens.calendarHoveredItemColor, calendarBaseTokens.calendarRangeBackground, calendarBaseTokens.calendarOutlineFocusColor, calendarBaseTokens.calendarContentPrimaryColor, calendarBaseTokens.calendarContentSecondaryColor, calendarBaseTokens.calendarDayOfWeekColor, calendarBaseTokens.iconButtonColor, calendarBaseTokens.iconButtonBackgroundColor, calendarBaseTokens.iconButtonColorHover, calendarBaseTokens.iconButtonBackgroundColorHover, calendarBaseTokens.iconButtonColorActive, calendarBaseTokens.iconButtonBackgroundColorActive, calendarBaseTokens.iconButtonFocusColor)
|
11
|
+
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n ", ": ", ";\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), calendarBaseTokens.calendarSelectedItemBackground, calendarBaseTokens.calendarSelectedItemColor, calendarBaseTokens.calendarSelectableItemBackgroundHover, calendarBaseTokens.calendarCurrentItemBorderColor, calendarBaseTokens.calendarCurrentItemBackgroundHover, calendarBaseTokens.calendarCurrentItemColorHover, calendarBaseTokens.calendarCurrentItemChildBackgroundHover, calendarBaseTokens.calendarActiveItemBackground, calendarBaseTokens.calendarActiveItemColor, calendarBaseTokens.calendarHoveredItemBackground, calendarBaseTokens.calendarHoveredItemColor, calendarBaseTokens.calendarRangeBackground, calendarBaseTokens.calendarOutlineFocusColor, calendarBaseTokens.calendarContentPrimaryColor, calendarBaseTokens.calendarContentSecondaryColor, calendarBaseTokens.calendarHeaderArrowColor, calendarBaseTokens.calendarContentPrimaryColor, calendarBaseTokens.calendarDayOfWeekColor, calendarBaseTokens.iconButtonColor, calendarBaseTokens.iconButtonBackgroundColor, calendarBaseTokens.iconButtonColorHover, calendarBaseTokens.iconButtonBackgroundColorHover, calendarBaseTokens.iconButtonColorActive, calendarBaseTokens.iconButtonBackgroundColorActive, calendarBaseTokens.iconButtonFocusColor)
|
12
12
|
},
|
13
13
|
size: {
|
14
14
|
l: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 24.5rem;\n ", ": 25rem;\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 11.75rem;\n ", ": 10.5rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0 0 0;\n ", ": 0.75rem;\n ", ": 3.5rem;\n ", ": 3rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.063rem;\n\n ", ": 0.5rem;\n\n ", ": 0 0 0 1rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h4-font-family);\n ", ": var(--plasma-typo-h4-font-size);\n ", ": var(--plasma-typo-h4-font-style);\n ", ": var(--plasma-typo-h4-letter-spacing);\n ", ": var(--plasma-typo-h4-line-height);\n ", ": var(--plasma-typo-h4-font-weight);\n ", ": var(--plasma-typo-h4-bold-font-weight);\n\n ", ": 3.5rem;\n ", ": 3.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\n "])), calendarBaseTokens.calendarWidth, calendarBaseTokens.calendarHeight, calendarBaseTokens.calendarYearsPadding, calendarBaseTokens.calendarYearItemBorderRadius, calendarBaseTokens.calendarYearItemWidth, calendarBaseTokens.calendarYearItemHeight, calendarBaseTokens.calendarYearFontFamily, calendarBaseTokens.calendarYearFontSize, calendarBaseTokens.calendarYearFontStyle, calendarBaseTokens.calendarYearFontLetterSpacing, calendarBaseTokens.calendarYearFontLineHeight, calendarBaseTokens.calendarYearFontWeight, calendarBaseTokens.calendarYearSelectedFontWeight, calendarBaseTokens.calendarQuartersPadding, calendarBaseTokens.calendarQuarterItemBorderRadius, calendarBaseTokens.calendarQuarterItemWidth, calendarBaseTokens.calendarQuarterItemHeight, calendarBaseTokens.calendarQuarterFontFamily, calendarBaseTokens.calendarQuarterFontSize, calendarBaseTokens.calendarQuarterFontStyle, calendarBaseTokens.calendarQuarterFontLetterSpacing, calendarBaseTokens.calendarQuarterFontLineHeight, calendarBaseTokens.calendarQuarterFontWeight, calendarBaseTokens.calendarQuarterSelectedFontWeight, calendarBaseTokens.calendarMonthsPadding, calendarBaseTokens.calendarMonthItemBorderRadius, calendarBaseTokens.calendarMonthItemWidth, calendarBaseTokens.calendarMonthItemHeight, calendarBaseTokens.calendarMonthFontFamily, calendarBaseTokens.calendarMonthFontSize, calendarBaseTokens.calendarMonthFontStyle, calendarBaseTokens.calendarMonthFontLetterSpacing, calendarBaseTokens.calendarMonthFontLineHeight, calendarBaseTokens.calendarMonthFontWeight, calendarBaseTokens.calendarMonthSelectedFontWeight, calendarBaseTokens.calendarDaysPadding, calendarBaseTokens.calendarDayItemBorderRadius, calendarBaseTokens.calendarDayItemWidth, calendarBaseTokens.calendarDayItemHeight, calendarBaseTokens.calendarDayFontFamily, calendarBaseTokens.calendarDayFontSize, calendarBaseTokens.calendarDayFontStyle, calendarBaseTokens.calendarDayFontLetterSpacing, calendarBaseTokens.calendarDayFontLineHeight, calendarBaseTokens.calendarDayFontWeight, calendarBaseTokens.calendarDaySelectedFontWeight, calendarBaseTokens.calendarCurrentItemBorderWidth, calendarBaseTokens.calendarHeaderArrowGap, calendarBaseTokens.calendarHeaderPadding, calendarBaseTokens.calendarHeaderDateGap, calendarBaseTokens.calendarHeaderFontFamily, calendarBaseTokens.calendarHeaderFontSize, calendarBaseTokens.calendarHeaderFontStyle, calendarBaseTokens.calendarHeaderFontLetterSpacing, calendarBaseTokens.calendarHeaderFontLineHeight, calendarBaseTokens.calendarHeaderFontWeight, calendarBaseTokens.calendarHeaderFontWeightBold, calendarBaseTokens.iconButtonHeight, calendarBaseTokens.iconButtonWidth, calendarBaseTokens.iconButtonPadding, calendarBaseTokens.iconButtonRadius),
|
@@ -8,7 +8,7 @@ export var config = {
|
|
8
8
|
},
|
9
9
|
variations: {
|
10
10
|
view: {
|
11
|
-
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-secondary);\n ", ": transparent;\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), calendarDoubleTokens.calendarSeparatorBackground, calendarDoubleTokens.calendarBackgroundColor, calendarDoubleTokens.calendarSelectedItemBackground, calendarDoubleTokens.calendarSelectedItemColor, calendarDoubleTokens.calendarSelectableItemBackgroundHover, calendarDoubleTokens.calendarCurrentItemBorderColor, calendarDoubleTokens.calendarCurrentItemBackgroundHover, calendarDoubleTokens.calendarCurrentItemColorHover, calendarDoubleTokens.calendarCurrentItemChildBackgroundHover, calendarDoubleTokens.calendarActiveItemBackground, calendarDoubleTokens.calendarActiveItemColor, calendarDoubleTokens.calendarHoveredItemBackground, calendarDoubleTokens.calendarHoveredItemColor, calendarDoubleTokens.calendarRangeBackground, calendarDoubleTokens.calendarOutlineFocusColor, calendarDoubleTokens.calendarContentPrimaryColor, calendarDoubleTokens.calendarContentSecondaryColor, calendarDoubleTokens.iconButtonColor, calendarDoubleTokens.iconButtonBackgroundColor, calendarDoubleTokens.iconButtonColorHover, calendarDoubleTokens.iconButtonBackgroundColorHover, calendarDoubleTokens.iconButtonColorActive, calendarDoubleTokens.iconButtonBackgroundColorActive, calendarDoubleTokens.iconButtonFocusColor)
|
11
|
+
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-secondary);\n ", ": transparent;\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": ", ";\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), calendarDoubleTokens.calendarSeparatorBackground, calendarDoubleTokens.calendarBackgroundColor, calendarDoubleTokens.calendarSelectedItemBackground, calendarDoubleTokens.calendarSelectedItemColor, calendarDoubleTokens.calendarSelectableItemBackgroundHover, calendarDoubleTokens.calendarCurrentItemBorderColor, calendarDoubleTokens.calendarCurrentItemBackgroundHover, calendarDoubleTokens.calendarCurrentItemColorHover, calendarDoubleTokens.calendarCurrentItemChildBackgroundHover, calendarDoubleTokens.calendarActiveItemBackground, calendarDoubleTokens.calendarActiveItemColor, calendarDoubleTokens.calendarHoveredItemBackground, calendarDoubleTokens.calendarHoveredItemColor, calendarDoubleTokens.calendarRangeBackground, calendarDoubleTokens.calendarOutlineFocusColor, calendarDoubleTokens.calendarContentPrimaryColor, calendarDoubleTokens.calendarHeaderArrowColor, calendarDoubleTokens.calendarContentPrimaryColor, calendarDoubleTokens.calendarContentSecondaryColor, calendarDoubleTokens.iconButtonColor, calendarDoubleTokens.iconButtonBackgroundColor, calendarDoubleTokens.iconButtonColorHover, calendarDoubleTokens.iconButtonBackgroundColorHover, calendarDoubleTokens.iconButtonColorActive, calendarDoubleTokens.iconButtonBackgroundColorActive, calendarDoubleTokens.iconButtonFocusColor)
|
12
12
|
},
|
13
13
|
size: {
|
14
14
|
l: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 51.063rem;\n ", ": 25rem;\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 11.75rem;\n ", ": 10.5rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.75rem;\n ", ": 3.5rem;\n ", ": 3rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.063rem;\n\n ", ": 0.5rem;\n\n ", ": 0.5rem 0 0 0;\n ", ": 0 0 0 1rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h4-font-family);\n ", ": var(--plasma-typo-h4-font-size);\n ", ": var(--plasma-typo-h4-font-style);\n ", ": var(--plasma-typo-h4-letter-spacing);\n ", ": var(--plasma-typo-h4-line-height);\n ", ": var(--plasma-typo-h4-font-weight);\n ", ": var(--plasma-typo-h4-bold-font-weight);\n\n ", ": 3.5rem;\n ", ": 3.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\n "])), calendarDoubleTokens.calendarWidth, calendarDoubleTokens.calendarHeight, calendarDoubleTokens.calendarYearsPadding, calendarDoubleTokens.calendarYearItemBorderRadius, calendarDoubleTokens.calendarYearItemWidth, calendarDoubleTokens.calendarYearItemHeight, calendarDoubleTokens.calendarYearFontFamily, calendarDoubleTokens.calendarYearFontSize, calendarDoubleTokens.calendarYearFontStyle, calendarDoubleTokens.calendarYearFontLetterSpacing, calendarDoubleTokens.calendarYearFontLineHeight, calendarDoubleTokens.calendarYearFontWeight, calendarDoubleTokens.calendarYearSelectedFontWeight, calendarDoubleTokens.calendarQuartersPadding, calendarDoubleTokens.calendarQuarterItemBorderRadius, calendarDoubleTokens.calendarQuarterItemWidth, calendarDoubleTokens.calendarQuarterItemHeight, calendarDoubleTokens.calendarQuarterFontFamily, calendarDoubleTokens.calendarQuarterFontSize, calendarDoubleTokens.calendarQuarterFontStyle, calendarDoubleTokens.calendarQuarterFontLetterSpacing, calendarDoubleTokens.calendarQuarterFontLineHeight, calendarDoubleTokens.calendarQuarterFontWeight, calendarDoubleTokens.calendarQuarterSelectedFontWeight, calendarDoubleTokens.calendarMonthsPadding, calendarDoubleTokens.calendarMonthItemBorderRadius, calendarDoubleTokens.calendarMonthItemWidth, calendarDoubleTokens.calendarMonthItemHeight, calendarDoubleTokens.calendarMonthFontFamily, calendarDoubleTokens.calendarMonthFontSize, calendarDoubleTokens.calendarMonthFontStyle, calendarDoubleTokens.calendarMonthFontLetterSpacing, calendarDoubleTokens.calendarMonthFontLineHeight, calendarDoubleTokens.calendarMonthFontWeight, calendarDoubleTokens.calendarMonthSelectedFontWeight, calendarDoubleTokens.calendarDayItemBorderRadius, calendarDoubleTokens.calendarDayItemWidth, calendarDoubleTokens.calendarDayItemHeight, calendarDoubleTokens.calendarDayFontFamily, calendarDoubleTokens.calendarDayFontSize, calendarDoubleTokens.calendarDayFontStyle, calendarDoubleTokens.calendarDayFontLetterSpacing, calendarDoubleTokens.calendarDayFontLineHeight, calendarDoubleTokens.calendarDayFontWeight, calendarDoubleTokens.calendarDaySelectedFontWeight, calendarDoubleTokens.calendarCurrentItemBorderWidth, calendarDoubleTokens.calendarHeaderArrowGap, calendarDoubleTokens.calendarDaysPadding, calendarDoubleTokens.calendarHeaderPadding, calendarDoubleTokens.calendarHeaderDateGap, calendarDoubleTokens.calendarHeaderFontFamily, calendarDoubleTokens.calendarHeaderFontSize, calendarDoubleTokens.calendarHeaderFontStyle, calendarDoubleTokens.calendarHeaderFontLetterSpacing, calendarDoubleTokens.calendarHeaderFontLineHeight, calendarDoubleTokens.calendarHeaderFontWeight, calendarDoubleTokens.calendarHeaderFontWeightBold, calendarDoubleTokens.iconButtonHeight, calendarDoubleTokens.iconButtonWidth, calendarDoubleTokens.iconButtonPadding, calendarDoubleTokens.iconButtonRadius),
|
@@ -9,10 +9,10 @@ export var config = {
|
|
9
9
|
},
|
10
10
|
variations: {
|
11
11
|
view: {
|
12
|
-
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly),
|
13
|
-
positive: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly),
|
14
|
-
warning: /*#__PURE__*/css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly),
|
15
|
-
negative: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly)
|
12
|
+
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.disclosureIconColor, tokens.disclosureIconColorHover, tokens.itemBackgroundHover, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly),
|
13
|
+
positive: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-positive);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.disclosureIconColor, tokens.disclosureIconColorHover, tokens.itemBackgroundHover, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly),
|
14
|
+
warning: /*#__PURE__*/css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-warning);\n ", ": var(--surface-transparent-warning-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-warning);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.disclosureIconColor, tokens.disclosureIconColorHover, tokens.itemBackgroundHover, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly),
|
15
|
+
negative: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-colors-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--text-accent);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n ", ": var(--text-primary);\n ", ": var(--text-negative);\n ", ": var(--text-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--text-primary);\n ", ": 0.72;\n "])), tokens.textFieldColor, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldCaretColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.textFieldLabelColor, tokens.textFieldLeftHelperColor, tokens.textFieldFocusColor, tokens.disclosureIconColor, tokens.disclosureIconColorHover, tokens.itemBackgroundHover, tokens.textFieldChipCloseIconColor, tokens.textFieldChipColor, tokens.textFieldChipBackground, tokens.textFieldChipColorHover, tokens.textFieldChipBackgroundHover, tokens.textFieldChipColorActive, tokens.textFieldChipBackgroundActive, tokens.textFieldChipBackgroundReadOnly, tokens.textFieldChipColorReadOnly, tokens.textFieldChipBackgroundReadOnlyHover, tokens.textFieldChipColorReadOnlyHover, tokens.textFieldChipOpacityReadonly)
|
16
16
|
},
|
17
17
|
size: {
|
18
18
|
l: /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 3.5rem;\n ", ": 1.0625rem 1.125rem 1.0625rem 1.125rem;\n ", ": 0.375rem;\n ", ": 0.875rem;\n\n ", ": -0.0625rem 0.5rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.125rem -0.0625rem 0.75rem;\n\n ", ": 0 0.25rem 0 0;\n ", ": 0 0 0 0.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.25rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0.5625rem 0 0.125rem 0;\n ", ": 1.5625rem 0 0.5625rem 0;\n\n ", ": 0.25rem;\n ", ": 0.5rem;\n ", ": auto;\n ", ": 2.75rem;\n ", ": 0.75rem;\n ", ": 1rem;\n ", ": 0.625rem;\n ", ": 0rem;\n ", ": 1.5rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1rem;\n ", ": 0.125rem;\n ", ": 0.875rem;\n\n ", ": 1.5rem;\n ", ": 1rem 1.125rem;\n ", ": 0.75rem 1.125rem;\n ", ": 0.75rem;\n ", ": 0 0.5rem 0 0;\n ", ": 1.5rem;\n ", ": 1.5rem;\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0.125rem;\n ", ": 0.375rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1.25rem;\n ", ": 1.25rem;\n ", ": 0.375rem;\n ", ": 0.375rem;\n ", ": var(--text-accent);\n ", ": var(--on-dark-text-primary);\n ", ": var(--text-secondary);\n\n ", ": 0.375rem;\n "])), tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPaddingRight, tokens.textFieldChipPaddingLeft, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconMargin, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxFillColor, tokens.checkboxIconColor, tokens.checkboxTriggerBorderColor, tokens.indicatorSize),
|
@@ -8,7 +8,7 @@ export var config = {
|
|
8
8
|
},
|
9
9
|
variations: {
|
10
10
|
view: {
|
11
|
-
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-positive);\n\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-accent);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n\n ", ": var(--text-accent);\n\n ", ": var(--shadow-down-soft-s);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-card);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), tokens.background, tokens.backgroundError, tokens.backgroundSuccess, tokens.dividerColor, tokens.labelColor, tokens.leftHelperColor, tokens.textFieldColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldCaretColor, tokens.labelInnerFontFamily, tokens.labelInnerFontSize, tokens.labelInnerFontStyle, tokens.labelInnerFontWeight, tokens.labelInnerLetterSpacing, tokens.labelInnerLineHeight, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldBackgroundErrorColor, tokens.textFieldBackgroundErrorColorFocus, tokens.textFieldBackgroundSuccessColor, tokens.textFieldBackgroundSuccessColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.focusColor, tokens.calendarShadow, tokens.calendarSeparatorBackground, tokens.calendarBackgroundColor, tokens.calendarSelectedItemBackground, tokens.calendarSelectedItemColor, tokens.calendarSelectableItemBackgroundHover, tokens.calendarCurrentItemBorderColor, tokens.calendarCurrentItemBackgroundHover, tokens.calendarCurrentItemColorHover, tokens.calendarCurrentItemChildBackgroundHover, tokens.calendarActiveItemBackground, tokens.calendarActiveItemColor, tokens.calendarHoveredItemBackground, tokens.calendarHoveredItemColor, tokens.calendarRangeBackground, tokens.calendarOutlineFocusColor, tokens.calendarContentPrimaryColor, tokens.calendarContentSecondaryColor, tokens.iconButtonColor, tokens.iconButtonBackgroundColor, tokens.iconButtonColorHover, tokens.iconButtonBackgroundColorHover, tokens.iconButtonColorActive, tokens.iconButtonBackgroundColorActive, tokens.iconButtonFocusColor)
|
11
|
+
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-positive);\n\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-tertiary);\n ", ": var(--text-accent);\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": var(--surface-transparent-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-transparent-negative);\n ", ": var(--surface-transparent-negative-active);\n ", ": var(--surface-transparent-positive);\n ", ": var(--surface-transparent-positive-active);\n\n ", ": var(--text-tertiary);\n ", ": var(--text-tertiary);\n\n ", ": var(--text-accent);\n\n ", ": var(--shadow-down-soft-s);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-card);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": transparent;\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-accent);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-accent);\n ", ": var(--surface-solid-default);\n ", ": ", ";\n ", ": var(--text-secondary);\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--surface-accent);\n "])), tokens.background, tokens.backgroundError, tokens.backgroundSuccess, tokens.dividerColor, tokens.labelColor, tokens.leftHelperColor, tokens.textFieldColor, tokens.textFieldPlaceholderColor, tokens.textFieldPlaceholderColorFocus, tokens.textFieldCaretColor, tokens.labelInnerFontFamily, tokens.labelInnerFontSize, tokens.labelInnerFontStyle, tokens.labelInnerFontWeight, tokens.labelInnerLetterSpacing, tokens.labelInnerLineHeight, tokens.textFieldBackgroundColor, tokens.textFieldBackgroundColorFocus, tokens.textFieldBackgroundErrorColor, tokens.textFieldBackgroundErrorColorFocus, tokens.textFieldBackgroundSuccessColor, tokens.textFieldBackgroundSuccessColorFocus, tokens.textFieldTextBeforeColor, tokens.textFieldTextAfterColor, tokens.focusColor, tokens.calendarShadow, tokens.calendarSeparatorBackground, tokens.calendarBackgroundColor, tokens.calendarSelectedItemBackground, tokens.calendarSelectedItemColor, tokens.calendarSelectableItemBackgroundHover, tokens.calendarCurrentItemBorderColor, tokens.calendarCurrentItemBackgroundHover, tokens.calendarCurrentItemColorHover, tokens.calendarCurrentItemChildBackgroundHover, tokens.calendarActiveItemBackground, tokens.calendarActiveItemColor, tokens.calendarHoveredItemBackground, tokens.calendarHoveredItemColor, tokens.calendarRangeBackground, tokens.calendarOutlineFocusColor, tokens.calendarContentPrimaryColor, tokens.calendarHeaderArrowColor, tokens.calendarContentPrimaryColor, tokens.calendarContentSecondaryColor, tokens.iconButtonColor, tokens.iconButtonBackgroundColor, tokens.iconButtonColorHover, tokens.iconButtonBackgroundColorHover, tokens.iconButtonColorActive, tokens.iconButtonBackgroundColorActive, tokens.iconButtonFocusColor)
|
12
12
|
},
|
13
13
|
size: {
|
14
14
|
l: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 26.5rem;\n ", ": 0.875rem;\n\n ", ": 0 0.375rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0 0 0 1rem;\n ", ": 0;\n\n ", ": 0 0 0.75rem 0;\n ", ": 0.5625rem 0 0.125rem 0;\n ", ": 1.5625rem 0 0.5625rem 0;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 3.5rem;\n ", ": 0.875rem;\n ", ": 1.0625rem 1.125rem 1.0625rem 1.125rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.25rem 0 0 0;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": -0.0625rem 0.5rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.125rem -0.0625rem 0.75rem;\n ", ": 0 0.25rem 0 0;\n ", ": 0 0 0 0.25rem;\n\n ", ": 0.875rem;\n ", ": 26.5rem;\n\n ", ": 0.5rem 1rem 1.125rem 1rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 1rem 1.125rem 1rem;\n ", ": 0.75rem;\n ", ": 7.8125rem;\n ", ": 5.25rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 0.5rem 0 0.5rem;\n ", ": 0.75rem;\n ", ": 11.75rem;\n ", ": 10.5rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.5rem 1rem 1.125rem 1rem;\n ", ": 0.75rem;\n ", ": 3.5rem;\n ", ": 3rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-bold-font-weight);\n\n ", ": 0.063rem;\n\n ", ": 0.875rem 1rem 0 1rem;\n ", ": 0.5rem;\n\n ", ": 0 0 0 1rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h3-font-family);\n ", ": var(--plasma-typo-h3-font-size);\n ", ": var(--plasma-typo-h3-font-style);\n ", ": var(--plasma-typo-h3-letter-spacing);\n ", ": var(--plasma-typo-h3-line-height);\n ", ": var(--plasma-typo-h3-font-weight);\n ", ": var(--plasma-typo-h3-bold-font-weight);\n\n ", ": 3.5rem;\n ", ": 3.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\n "])), tokens.width, tokens.borderRadius, tokens.dividerPadding, tokens.dividerFontFamily, tokens.dividerFontStyle, tokens.dividerFontSize, tokens.dividerFontWeight, tokens.dividerLetterSpacing, tokens.dividerLineHeight, tokens.leftContentMargin, tokens.rightContentMargin, tokens.labelOffset, tokens.labelInnerPadding, tokens.contentLabelInnerPadding, tokens.labelFontFamily, tokens.labelFontStyle, tokens.labelFontSize, tokens.labelFontWeight, tokens.labelLetterSpacing, tokens.labelLineHeight, tokens.textFieldHeight, tokens.textFieldBorderRadius, tokens.textFieldPadding, tokens.textFieldFontFamily, tokens.textFieldFontStyle, tokens.textFieldFontSize, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.leftHelperOffset, tokens.leftHelperFontFamily, tokens.leftHelperFontStyle, tokens.leftHelperFontSize, tokens.leftHelperFontWeight, tokens.leftHelperLetterSpacing, tokens.leftHelperLineHeight, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.calendarBorderRadius, tokens.calendarWidth, tokens.calendarYearsPadding, tokens.calendarYearItemBorderRadius, tokens.calendarYearItemWidth, tokens.calendarYearItemHeight, tokens.calendarYearFontFamily, tokens.calendarYearFontSize, tokens.calendarYearFontStyle, tokens.calendarYearFontLetterSpacing, tokens.calendarYearFontLineHeight, tokens.calendarYearFontWeight, tokens.calendarYearSelectedFontWeight, tokens.calendarMonthsPadding, tokens.calendarMonthItemBorderRadius, tokens.calendarMonthItemWidth, tokens.calendarMonthItemHeight, tokens.calendarMonthFontFamily, tokens.calendarMonthFontSize, tokens.calendarMonthFontStyle, tokens.calendarMonthFontLetterSpacing, tokens.calendarMonthFontLineHeight, tokens.calendarMonthFontWeight, tokens.calendarMonthSelectedFontWeight, tokens.calendarQuartersPadding, tokens.calendarQuarterItemBorderRadius, tokens.calendarQuarterItemWidth, tokens.calendarQuarterItemHeight, tokens.calendarQuarterFontFamily, tokens.calendarQuarterFontSize, tokens.calendarQuarterFontStyle, tokens.calendarQuarterFontLetterSpacing, tokens.calendarQuarterFontLineHeight, tokens.calendarQuarterFontWeight, tokens.calendarQuarterSelectedFontWeight, tokens.calendarDaysPadding, tokens.calendarDayItemBorderRadius, tokens.calendarDayItemWidth, tokens.calendarDayItemHeight, tokens.calendarDayFontFamily, tokens.calendarDayFontSize, tokens.calendarDayFontStyle, tokens.calendarDayFontLetterSpacing, tokens.calendarDayFontLineHeight, tokens.calendarDayFontWeight, tokens.calendarDaySelectedFontWeight, tokens.calendarCurrentItemBorderWidth, tokens.calendarHeaderWrapperPadding, tokens.calendarHeaderArrowGap, tokens.calendarHeaderPadding, tokens.calendarHeaderDateGap, tokens.calendarHeaderFontFamily, tokens.calendarHeaderFontSize, tokens.calendarHeaderFontStyle, tokens.calendarHeaderFontLetterSpacing, tokens.calendarHeaderFontLineHeight, tokens.calendarHeaderFontWeight, tokens.calendarHeaderFontWeightBold, tokens.iconButtonHeight, tokens.iconButtonWidth, tokens.iconButtonPadding, tokens.iconButtonRadius),
|
@@ -14,7 +14,7 @@ export var config = {
|
|
14
14
|
xs: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.125rem;\n ", ": 10rem;\n ", ": 0.5rem;\n\n ", ": 1rem;\n ", ": 0.5rem;\n ", ": 0.25rem 0.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.5rem;\n ", ": 0.25rem;\n ", ": 0.5rem;\n ", ": 0.125rem;\n ", ": 0.125rem;\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0.125rem;\n ", ": 0.25rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n "])), tokens.padding, tokens.width, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight, tokens.itemFontFamily, tokens.itemFontSize, tokens.itemFontStyle, tokens.itemFontWeightBold, tokens.itemFontLetterSpacing, tokens.itemFontLineHeight, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight)
|
15
15
|
},
|
16
16
|
view: {
|
17
|
-
"default": /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-tertiary);\n "])), tokens.dividerColor)
|
17
|
+
"default": /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-transparent-secondary);\n ", ": var(--surface-transparent-tertiary);\n "])), tokens.itemBackgroundHover, tokens.dividerColor)
|
18
18
|
}
|
19
19
|
}
|
20
20
|
};
|
@@ -13,9 +13,9 @@ export var config = {
|
|
13
13
|
gradient: /*#__PURE__*/css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n\n ", ": var(--text-secondary);\n\n ", ": var(--surface-solid-tertiary);\n ", ": var(--on-light-surface-solid-card);\n ", ": var(--surface-accent-gradient);\n\n ", ": var(--surface-solid-tertiary);\n\n ", ": var(--surface-accent-gradient);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-transparent-primary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-primary);\n "])), sliderTokens.labelColor, sliderTokens.rangeValueColor, sliderTokens.thumbBorderColor, sliderTokens.thumbBackgroundColor, sliderTokens.thumbFocusBorderColor, sliderTokens.railBackgroundColor, sliderTokens.fillColor, sliderTokens.textFieldColor, sliderTokens.textFieldBackgroundColor, sliderTokens.textFieldCaretColor, sliderTokens.textFieldPlaceholderColor, sliderTokens.textFiledFocusColor, sliderTokens.textFieldActiveColor)
|
14
14
|
},
|
15
15
|
size: {
|
16
|
-
l: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.75rem;\n ", ": 0.
|
17
|
-
m: /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 0.75rem;\n ", ": 0.75rem;\n ", ":
|
18
|
-
s: /*#__PURE__*/css(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 0.5rem;\n ", ": 0.
|
16
|
+
l: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n ", ": 1rem;\n\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 0.75rem;\n ", ": 0.875rem;\n ", ": 0.875rem;\n ", ": 0.75rem;\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 1rem;\n ", ": 1.25rem;\n ", ": 0.0625rem solid;\n\n ", ": 1.625rem;\n\n ", ": 0.25rem;\n ", ": 0.125rem;\n ", ": 0.75rem;\n\n ", ": 0.125rem;\n\n ", ": 3.5rem;\n ", ": 1.25rem 1rem 1.25rem 1rem;\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-l-font-family);\n ", ": var(--plasma-typo-body-l-font-size);\n ", ": var(--plasma-typo-body-l-font-style);\n ", ": var(--plasma-typo-body-l-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n "])), sliderTokens.size, sliderTokens.doubleWrapperGap, sliderTokens.labelWrapperGap, sliderTokens.labelWrapperMarginBottom, sliderTokens.labelWrapperMarginRight, sliderTokens.labelWrapperVerticalMargin, sliderTokens.labelFontFamily, sliderTokens.labelFontSize, sliderTokens.labelFontStyle, sliderTokens.labelFontWeight, sliderTokens.labelLetterSpacing, sliderTokens.labelLineHeight, sliderTokens.rangeValueHorizontalMargin, sliderTokens.rangeValueBottomOffset, sliderTokens.rangeValueHorizontalOffset, sliderTokens.rangeValueVerticalMargin, sliderTokens.valueFontFamily, sliderTokens.valueFontSize, sliderTokens.valueFontStyle, sliderTokens.valueFontWeight, sliderTokens.valueLetterSpacing, sliderTokens.valueLineHeight, sliderTokens.thumbSize, sliderTokens.thumbSizeLarge, sliderTokens.thumbBorder, sliderTokens.currentValueTopOffset, sliderTokens.railThickness, sliderTokens.railBorderRadius, sliderTokens.railIndent, sliderTokens.textFieldWrapperGap, sliderTokens.textFieldHeight, sliderTokens.textFieldPadding, sliderTokens.textFieldBorderRadius, sliderTokens.textFieldFontFamily, sliderTokens.textFieldFontSize, sliderTokens.textFieldFontStyle, sliderTokens.textFieldFontWeight, sliderTokens.textFieldLetterSpacing, sliderTokens.textFieldLineHeight),
|
17
|
+
m: /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n ", ": 0.75rem;\n\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 0.75rem;\n ", ": 0.75rem;\n ", ": 0.875rem;\n ", ": 0.625rem;\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 1rem;\n ", ": 1.25rem;\n ", ": 0.0625rem solid;\n\n ", ": 1.75rem;\n\n ", ": 0.25rem;\n ", ": 0.125rem;\n ", ": 0.75rem;\n\n ", ": 0.125rem;\n\n ", ": 3rem;\n ", ": 0.875rem 1rem 0.875rem 1rem;\n ", ": 0.75rem;\n ", ": var(--plasma-typo-body-m-font-family);\n ", ": var(--plasma-typo-body-m-font-size);\n ", ": var(--plasma-typo-body-m-font-style);\n ", ": var(--plasma-typo-body-m-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n "])), sliderTokens.size, sliderTokens.doubleWrapperGap, sliderTokens.labelWrapperGap, sliderTokens.labelWrapperMarginBottom, sliderTokens.labelWrapperMarginRight, sliderTokens.labelWrapperVerticalMargin, sliderTokens.labelFontFamily, sliderTokens.labelFontSize, sliderTokens.labelFontStyle, sliderTokens.labelFontWeight, sliderTokens.labelLetterSpacing, sliderTokens.labelLineHeight, sliderTokens.rangeValueHorizontalMargin, sliderTokens.rangeValueBottomOffset, sliderTokens.rangeValueHorizontalOffset, sliderTokens.rangeValueVerticalMargin, sliderTokens.valueFontFamily, sliderTokens.valueFontSize, sliderTokens.valueFontStyle, sliderTokens.valueFontWeight, sliderTokens.valueLetterSpacing, sliderTokens.valueLineHeight, sliderTokens.thumbSize, sliderTokens.thumbSizeLarge, sliderTokens.thumbBorder, sliderTokens.currentValueTopOffset, sliderTokens.railThickness, sliderTokens.railBorderRadius, sliderTokens.railIndent, sliderTokens.textFieldWrapperGap, sliderTokens.textFieldHeight, sliderTokens.textFieldPadding, sliderTokens.textFieldBorderRadius, sliderTokens.textFieldFontFamily, sliderTokens.textFieldFontSize, sliderTokens.textFieldFontStyle, sliderTokens.textFieldFontWeight, sliderTokens.textFieldLetterSpacing, sliderTokens.textFieldLineHeight),
|
18
|
+
s: /*#__PURE__*/css(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1rem;\n ", ": 0.375rem;\n\n ", ": 0.25rem;\n ", ": 0.25rem;\n ", ": 0.875rem;\n ", ": 0.625rem;\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 0.5rem;\n ", ": 0.625rem;\n ", ": 0.625rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": 1.25rem;\n ", ": 0.0625rem solid;\n\n ", ": 1.25rem;\n\n ", ": 0.25rem;\n ", ": 0.125rem;\n ", ": 0.75rem;\n\n ", ": 0.125rem;\n\n ", ": 2.5rem;\n ", ": 0.5rem 1rem 0.5rem 1rem;\n ", ": 0.625rem;\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n "])), sliderTokens.size, sliderTokens.doubleWrapperGap, sliderTokens.labelWrapperGap, sliderTokens.labelWrapperMarginBottom, sliderTokens.labelWrapperMarginRight, sliderTokens.labelWrapperVerticalMargin, sliderTokens.labelFontFamily, sliderTokens.labelFontSize, sliderTokens.labelFontStyle, sliderTokens.labelFontWeight, sliderTokens.labelLetterSpacing, sliderTokens.labelLineHeight, sliderTokens.rangeValueHorizontalMargin, sliderTokens.rangeValueBottomOffset, sliderTokens.rangeValueHorizontalOffset, sliderTokens.rangeValueVerticalMargin, sliderTokens.valueFontFamily, sliderTokens.valueFontSize, sliderTokens.valueFontStyle, sliderTokens.valueFontWeight, sliderTokens.valueLetterSpacing, sliderTokens.valueLineHeight, sliderTokens.thumbSize, sliderTokens.thumbSizeLarge, sliderTokens.thumbBorder, sliderTokens.currentValueTopOffset, sliderTokens.railThickness, sliderTokens.railBorderRadius, sliderTokens.railIndent, sliderTokens.textFieldWrapperGap, sliderTokens.textFieldHeight, sliderTokens.textFieldPadding, sliderTokens.textFieldBorderRadius, sliderTokens.textFieldFontFamily, sliderTokens.textFieldFontSize, sliderTokens.textFieldFontStyle, sliderTokens.textFieldFontWeight, sliderTokens.textFieldLetterSpacing, sliderTokens.textFieldLineHeight)
|
19
19
|
},
|
20
20
|
disabled: {
|
21
21
|
"true": /*#__PURE__*/css(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.4;\n "])), sliderTokens.disabledOpacity)
|
@@ -13,7 +13,7 @@ export var config = {
|
|
13
13
|
light: /*#__PURE__*/css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-light-text-primary);\n ", ": var(--on-light-surface-solid-primary-brightness);\n\n ", ": var(--on-light-text-secondary);\n ", ": var(--on-light-text-secondary);\n "])), toastTokens.color, toastTokens.background, toastTokens.closeIconColor, toastTokens.closeIconColorOnHover)
|
14
14
|
},
|
15
15
|
size: {
|
16
|
-
m: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.75rem;\n ", ": calc(100vw - 5rem);\n ", ": 0.5625rem 0.75rem;\n\n ", ": 1rem;\n ", ":
|
16
|
+
m: /*#__PURE__*/css(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.75rem;\n ", ": calc(100vw - 5rem);\n ", ": 0.5625rem 0.75rem;\n\n ", ": 1rem;\n ", ": 1.5rem;\n ", ": var(--plasma-typo-body-xs-font-family);\n ", ": var(--plasma-typo-body-xs-font-size);\n ", ": var(--plasma-typo-body-xs-font-style);\n ", ": var(--plasma-typo-body-xs-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": -0.0625rem 0.375rem -0.0625rem -0.125rem;\n ", ": -0.0625rem -0.25rem -0.0625rem 0.5rem;\n "])), toastTokens.borderRadius, toastTokens.maxWidth, toastTokens.padding, toastTokens.closeIconButtonSize, toastTokens.closeIconSize, toastTokens.fontFamily, toastTokens.fontSize, toastTokens.fontStyle, toastTokens.fontWeight, toastTokens.letterSpacing, toastTokens.lineHeight, toastTokens.leftContentMargin, toastTokens.closeIconMargin)
|
17
17
|
},
|
18
18
|
pilled: {
|
19
19
|
"true": /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n\n ", ": -0.0625rem 0.375rem -0.0625rem -0.25rem;\n ", ": -0.0625rem -0.25rem -0.0625rem 0.375rem;\n "])), toastTokens.pilledBorderRadius, toastTokens.leftContentMargin, toastTokens.closeIconMargin)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-finportal",
|
3
|
-
"version": "0.149.0-canary.1506.
|
3
|
+
"version": "0.149.0-canary.1506.11570845312.0",
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS FinPortal web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"directory": "packages/sdds-finportal"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@salutejs/plasma-new-hope": "0.176.0-canary.1506.
|
22
|
+
"@salutejs/plasma-new-hope": "0.176.0-canary.1506.11570845312.0",
|
23
23
|
"@salutejs/sdds-themes": "0.25.0-dev.0"
|
24
24
|
},
|
25
25
|
"peerDependencies": {
|
@@ -94,5 +94,5 @@
|
|
94
94
|
"Vasiliy Loginevskiy"
|
95
95
|
],
|
96
96
|
"sideEffects": false,
|
97
|
-
"gitHead": "
|
97
|
+
"gitHead": "8b2fe6583d19c924159f448ac73220132c550e23"
|
98
98
|
}
|
@@ -3446,37 +3446,115 @@ onChange?: ((event: FormTypeNumber) => void) | undefined;
|
|
3446
3446
|
name: string;
|
3447
3447
|
value?: undefined;
|
3448
3448
|
defaultValue?: number | undefined;
|
3449
|
+
} & {
|
3450
|
+
orientation?: "horizontal" | undefined;
|
3451
|
+
labelPlacement?: "none" | "top" | "left" | undefined;
|
3452
|
+
scaleAlign?: "none" | "bottom" | "side" | undefined;
|
3453
|
+
sliderAlign?: "none" | undefined;
|
3454
|
+
reversed?: undefined;
|
3455
|
+
labelReversed?: undefined;
|
3456
|
+
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3457
|
+
onChangeCommitted?: ((value: number) => void) | undefined;
|
3458
|
+
ariaLabel?: string | undefined;
|
3459
|
+
showCurrentValue?: boolean | undefined;
|
3460
|
+
showRangeValues?: boolean | undefined;
|
3461
|
+
rangeValuesPlacement?: string | undefined;
|
3462
|
+
showScale?: boolean | undefined;
|
3463
|
+
hideMinValueDiff?: number | undefined;
|
3464
|
+
hideMaxValueDiff?: number | undefined;
|
3465
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
3466
|
+
labelContentLeft?: ReactNode;
|
3467
|
+
labelContent?: ReactNode;
|
3468
|
+
multipleStepSize?: number | undefined;
|
3469
|
+
view?: string | undefined;
|
3470
|
+
size?: "s" | "m" | "l" | undefined;
|
3471
|
+
type?: "single" | undefined;
|
3472
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3473
|
+
} & RefAttributes<HTMLDivElement>) | (SliderBaseProps & SliderInternalProps & {
|
3474
|
+
onChange?: ((event: FormTypeNumber) => void) | undefined;
|
3475
|
+
name: string;
|
3476
|
+
value?: undefined;
|
3477
|
+
defaultValue?: number | undefined;
|
3478
|
+
} & {
|
3479
|
+
orientation: "vertical";
|
3480
|
+
sliderAlign?: "none" | "center" | "right" | "left" | undefined;
|
3481
|
+
scaleAlign?: undefined;
|
3482
|
+
reversed?: boolean | undefined;
|
3483
|
+
labelReversed?: boolean | undefined;
|
3449
3484
|
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3450
3485
|
onChangeCommitted?: ((value: number) => void) | undefined;
|
3451
3486
|
ariaLabel?: string | undefined;
|
3452
3487
|
showCurrentValue?: boolean | undefined;
|
3453
3488
|
showRangeValues?: boolean | undefined;
|
3489
|
+
rangeValuesPlacement?: string | undefined;
|
3490
|
+
showScale?: boolean | undefined;
|
3454
3491
|
hideMinValueDiff?: number | undefined;
|
3455
3492
|
hideMaxValueDiff?: number | undefined;
|
3456
|
-
rangeValuesPlacement?: "outer" | "inner" | undefined;
|
3457
3493
|
labelPlacement?: "outer" | "inner" | undefined;
|
3494
|
+
labelContentLeft?: ReactNode;
|
3495
|
+
labelContent?: ReactNode;
|
3458
3496
|
multipleStepSize?: number | undefined;
|
3459
3497
|
view?: string | undefined;
|
3460
3498
|
size?: "s" | "m" | "l" | undefined;
|
3461
3499
|
type?: "single" | undefined;
|
3500
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3462
3501
|
} & RefAttributes<HTMLDivElement>) | (SliderBaseProps & SliderInternalProps & {
|
3463
3502
|
onChange?: ((value: number) => void) | undefined;
|
3464
3503
|
value: number;
|
3465
3504
|
name?: undefined;
|
3466
3505
|
defaultValue?: undefined;
|
3506
|
+
} & {
|
3507
|
+
orientation?: "horizontal" | undefined;
|
3508
|
+
labelPlacement?: "none" | "top" | "left" | undefined;
|
3509
|
+
scaleAlign?: "none" | "bottom" | "side" | undefined;
|
3510
|
+
sliderAlign?: "none" | undefined;
|
3511
|
+
reversed?: undefined;
|
3512
|
+
labelReversed?: undefined;
|
3513
|
+
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3514
|
+
onChangeCommitted?: ((value: number) => void) | undefined;
|
3515
|
+
ariaLabel?: string | undefined;
|
3516
|
+
showCurrentValue?: boolean | undefined;
|
3517
|
+
showRangeValues?: boolean | undefined;
|
3518
|
+
rangeValuesPlacement?: string | undefined;
|
3519
|
+
showScale?: boolean | undefined;
|
3520
|
+
hideMinValueDiff?: number | undefined;
|
3521
|
+
hideMaxValueDiff?: number | undefined;
|
3522
|
+
labelPlacement?: "outer" | "inner" | undefined;
|
3523
|
+
labelContentLeft?: ReactNode;
|
3524
|
+
labelContent?: ReactNode;
|
3525
|
+
multipleStepSize?: number | undefined;
|
3526
|
+
view?: string | undefined;
|
3527
|
+
size?: "s" | "m" | "l" | undefined;
|
3528
|
+
type?: "single" | undefined;
|
3529
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3530
|
+
} & RefAttributes<HTMLDivElement>) | (SliderBaseProps & SliderInternalProps & {
|
3531
|
+
onChange?: ((value: number) => void) | undefined;
|
3532
|
+
value: number;
|
3533
|
+
name?: undefined;
|
3534
|
+
defaultValue?: undefined;
|
3535
|
+
} & {
|
3536
|
+
orientation: "vertical";
|
3537
|
+
sliderAlign?: "none" | "center" | "right" | "left" | undefined;
|
3538
|
+
scaleAlign?: undefined;
|
3539
|
+
reversed?: boolean | undefined;
|
3540
|
+
labelReversed?: boolean | undefined;
|
3467
3541
|
} & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> & {
|
3468
3542
|
onChangeCommitted?: ((value: number) => void) | undefined;
|
3469
3543
|
ariaLabel?: string | undefined;
|
3470
3544
|
showCurrentValue?: boolean | undefined;
|
3471
3545
|
showRangeValues?: boolean | undefined;
|
3546
|
+
rangeValuesPlacement?: string | undefined;
|
3547
|
+
showScale?: boolean | undefined;
|
3472
3548
|
hideMinValueDiff?: number | undefined;
|
3473
3549
|
hideMaxValueDiff?: number | undefined;
|
3474
|
-
rangeValuesPlacement?: "outer" | "inner" | undefined;
|
3475
3550
|
labelPlacement?: "outer" | "inner" | undefined;
|
3551
|
+
labelContentLeft?: ReactNode;
|
3552
|
+
labelContent?: ReactNode;
|
3476
3553
|
multipleStepSize?: number | undefined;
|
3477
3554
|
view?: string | undefined;
|
3478
3555
|
size?: "s" | "m" | "l" | undefined;
|
3479
3556
|
type?: "single" | undefined;
|
3557
|
+
pointerSize?: "none" | "small" | "large" | undefined;
|
3480
3558
|
} & RefAttributes<HTMLDivElement>) | (Omit<DoubleSliderProps, "onChange" | "defaultValue" | "value"> & {
|
3481
3559
|
onChange?: ((event: FormTypeString) => void) | undefined;
|
3482
3560
|
name?: string | undefined;
|