@salutejs/plasma-web 1.402.1-canary.1448.10995617090.0 → 1.403.0-canary.1437.11008706795.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/api/plasma-web.api.md +225 -2
  2. package/components/Attach/Attach.config.d.ts +27 -0
  3. package/components/Attach/Attach.config.js +36 -0
  4. package/components/Attach/Attach.d.ts +224 -0
  5. package/components/Attach/Attach.js +14 -0
  6. package/components/Attach/index.d.ts +1 -0
  7. package/components/Attach/index.js +12 -0
  8. package/components/Cell/Cell.d.ts +2 -2
  9. package/css/cjs/components/Attach/Attach.config.js +35 -0
  10. package/css/cjs/components/Attach/Attach.config.js.map +1 -0
  11. package/css/cjs/components/Attach/Attach.config_1s3phpr.css +14 -0
  12. package/css/cjs/components/Attach/Attach.css +14 -0
  13. package/css/cjs/components/Attach/Attach.js +16 -0
  14. package/css/cjs/components/Attach/Attach.js.map +1 -0
  15. package/css/cjs/index.css +15 -0
  16. package/css/cjs/index.js +2 -0
  17. package/css/cjs/index.js.map +1 -1
  18. package/css/es/components/Attach/Attach.config.js +31 -0
  19. package/css/es/components/Attach/Attach.config.js.map +1 -0
  20. package/css/es/components/Attach/Attach.config_1s3phpr.css +14 -0
  21. package/css/es/components/Attach/Attach.css +14 -0
  22. package/css/es/components/Attach/Attach.js +12 -0
  23. package/css/es/components/Attach/Attach.js.map +1 -0
  24. package/css/es/index.css +15 -0
  25. package/css/es/index.js +1 -0
  26. package/css/es/index.js.map +1 -1
  27. package/css/index.d.ts +2 -0
  28. package/es/components/Attach/Attach.config.js +30 -0
  29. package/es/components/Attach/Attach.js +8 -0
  30. package/es/components/Attach/index.js +1 -0
  31. package/es/index.js +2 -1
  32. package/index.d.ts +1 -0
  33. package/index.js +11 -0
  34. package/package.json +3 -3
  35. package/temp/plasma-web.api.md +225 -2
@@ -35,6 +35,7 @@ import { AudioPlayerProps } from '@salutejs/plasma-hope';
35
35
  import { AvatarGroupProps } from '@salutejs/plasma-new-hope/styled-components';
36
36
  import { AvatarProps } from '@salutejs/plasma-new-hope/styled-components';
37
37
  import { BadgeProps } from '@salutejs/plasma-new-hope/styled-components';
38
+ import { BaseAttachProps } from '@salutejs/plasma-new-hope/types/components/Attach/Attach.types';
38
39
  import { BaseboxProps } from '@salutejs/plasma-new-hope/styled-components';
39
40
  import { BaseCallbackChangeInstance } from '@salutejs/plasma-new-hope/types/components/Range/Range.types';
40
41
  import { BaseCallbackKeyboardInstance } from '@salutejs/plasma-new-hope/types/components/Range/Range.types';
@@ -392,6 +393,228 @@ export { arrayItemSwapping }
392
393
 
393
394
  export { AsProps }
394
395
 
396
+ // @public
397
+ export const Attach: FunctionComponent<PropsType< {
398
+ view: {
399
+ default: PolymorphicClassName;
400
+ accent: PolymorphicClassName;
401
+ secondary: PolymorphicClassName;
402
+ clear: PolymorphicClassName;
403
+ success: PolymorphicClassName;
404
+ warning: PolymorphicClassName;
405
+ critical: PolymorphicClassName;
406
+ dark: PolymorphicClassName;
407
+ black: PolymorphicClassName;
408
+ white: PolymorphicClassName;
409
+ };
410
+ size: {
411
+ l: PolymorphicClassName;
412
+ m: PolymorphicClassName;
413
+ s: PolymorphicClassName;
414
+ xs: PolymorphicClassName;
415
+ };
416
+ }> & ((HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
417
+ text?: string | undefined;
418
+ contentLeft?: ReactNode;
419
+ contentPlacing?: ("default" | "relaxed") | undefined;
420
+ isLoading?: boolean | undefined;
421
+ loader?: ReactNode;
422
+ stretch?: boolean | undefined;
423
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
424
+ square?: boolean | undefined;
425
+ focused?: boolean | undefined;
426
+ disabled?: boolean | undefined;
427
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
428
+ view?: string | undefined;
429
+ size?: string | undefined;
430
+ outlined?: boolean | undefined;
431
+ shiftLeft?: boolean | undefined;
432
+ shiftRight?: boolean | undefined;
433
+ blur?: "small" | "medium" | "large" | undefined;
434
+ } & {
435
+ value?: string | number | undefined;
436
+ contentRight?: undefined;
437
+ } & BaseAttachProps & {
438
+ buttonType?: "button" | undefined;
439
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
440
+ text?: string | undefined;
441
+ contentLeft?: ReactNode;
442
+ contentPlacing?: ("default" | "relaxed") | undefined;
443
+ isLoading?: boolean | undefined;
444
+ loader?: ReactNode;
445
+ stretch?: boolean | undefined;
446
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
447
+ square?: boolean | undefined;
448
+ focused?: boolean | undefined;
449
+ disabled?: boolean | undefined;
450
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
451
+ view?: string | undefined;
452
+ size?: string | undefined;
453
+ outlined?: boolean | undefined;
454
+ shiftLeft?: boolean | undefined;
455
+ shiftRight?: boolean | undefined;
456
+ blur?: "small" | "medium" | "large" | undefined;
457
+ } & {
458
+ value?: string | number | undefined;
459
+ contentRight?: undefined;
460
+ } & BaseAttachProps & {
461
+ buttonType?: "button" | undefined;
462
+ } & {
463
+ value?: undefined;
464
+ contentRight?: ReactNode;
465
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
466
+ text?: string | undefined;
467
+ contentLeft?: ReactNode;
468
+ contentPlacing?: ("default" | "relaxed") | undefined;
469
+ isLoading?: boolean | undefined;
470
+ loader?: ReactNode;
471
+ stretch?: boolean | undefined;
472
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
473
+ square?: boolean | undefined;
474
+ focused?: boolean | undefined;
475
+ disabled?: boolean | undefined;
476
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
477
+ view?: string | undefined;
478
+ size?: string | undefined;
479
+ outlined?: boolean | undefined;
480
+ shiftLeft?: boolean | undefined;
481
+ shiftRight?: boolean | undefined;
482
+ blur?: "small" | "medium" | "large" | undefined;
483
+ } & {
484
+ value?: string | number | undefined;
485
+ contentRight?: undefined;
486
+ } & BaseAttachProps & {
487
+ buttonType?: "iconButton" | undefined;
488
+ icon?: ReactNode;
489
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
490
+ text?: string | undefined;
491
+ contentLeft?: ReactNode;
492
+ contentPlacing?: ("default" | "relaxed") | undefined;
493
+ isLoading?: boolean | undefined;
494
+ loader?: ReactNode;
495
+ stretch?: boolean | undefined;
496
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
497
+ square?: boolean | undefined;
498
+ focused?: boolean | undefined;
499
+ disabled?: boolean | undefined;
500
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
501
+ view?: string | undefined;
502
+ size?: string | undefined;
503
+ outlined?: boolean | undefined;
504
+ shiftLeft?: boolean | undefined;
505
+ shiftRight?: boolean | undefined;
506
+ blur?: "small" | "medium" | "large" | undefined;
507
+ } & {
508
+ value?: string | number | undefined;
509
+ contentRight?: undefined;
510
+ } & BaseAttachProps & {
511
+ buttonType?: "iconButton" | undefined;
512
+ icon?: ReactNode;
513
+ } & {
514
+ value?: undefined;
515
+ contentRight?: ReactNode;
516
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
517
+ text?: string | undefined;
518
+ contentLeft?: ReactNode;
519
+ contentPlacing?: ("default" | "relaxed") | undefined;
520
+ isLoading?: boolean | undefined;
521
+ loader?: ReactNode;
522
+ stretch?: boolean | undefined;
523
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
524
+ square?: boolean | undefined;
525
+ focused?: boolean | undefined;
526
+ disabled?: boolean | undefined;
527
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
528
+ view?: string | undefined;
529
+ size?: string | undefined;
530
+ outlined?: boolean | undefined;
531
+ shiftLeft?: boolean | undefined;
532
+ shiftRight?: boolean | undefined;
533
+ blur?: "small" | "medium" | "large" | undefined;
534
+ } & {
535
+ value?: undefined;
536
+ contentRight?: ReactNode;
537
+ } & BaseAttachProps & {
538
+ buttonType?: "button" | undefined;
539
+ } & {
540
+ value?: string | number | undefined;
541
+ contentRight?: undefined;
542
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
543
+ text?: string | undefined;
544
+ contentLeft?: ReactNode;
545
+ contentPlacing?: ("default" | "relaxed") | undefined;
546
+ isLoading?: boolean | undefined;
547
+ loader?: ReactNode;
548
+ stretch?: boolean | undefined;
549
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
550
+ square?: boolean | undefined;
551
+ focused?: boolean | undefined;
552
+ disabled?: boolean | undefined;
553
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
554
+ view?: string | undefined;
555
+ size?: string | undefined;
556
+ outlined?: boolean | undefined;
557
+ shiftLeft?: boolean | undefined;
558
+ shiftRight?: boolean | undefined;
559
+ blur?: "small" | "medium" | "large" | undefined;
560
+ } & {
561
+ value?: undefined;
562
+ contentRight?: ReactNode;
563
+ } & BaseAttachProps & {
564
+ buttonType?: "button" | undefined;
565
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
566
+ text?: string | undefined;
567
+ contentLeft?: ReactNode;
568
+ contentPlacing?: ("default" | "relaxed") | undefined;
569
+ isLoading?: boolean | undefined;
570
+ loader?: ReactNode;
571
+ stretch?: boolean | undefined;
572
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
573
+ square?: boolean | undefined;
574
+ focused?: boolean | undefined;
575
+ disabled?: boolean | undefined;
576
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
577
+ view?: string | undefined;
578
+ size?: string | undefined;
579
+ outlined?: boolean | undefined;
580
+ shiftLeft?: boolean | undefined;
581
+ shiftRight?: boolean | undefined;
582
+ blur?: "small" | "medium" | "large" | undefined;
583
+ } & {
584
+ value?: undefined;
585
+ contentRight?: ReactNode;
586
+ } & BaseAttachProps & {
587
+ buttonType?: "iconButton" | undefined;
588
+ icon?: ReactNode;
589
+ } & {
590
+ value?: string | number | undefined;
591
+ contentRight?: undefined;
592
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & Omit<ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<AnchorHTMLAttributes<HTMLElement>, "type"> & AsProps_2<any> & {
593
+ text?: string | undefined;
594
+ contentLeft?: ReactNode;
595
+ contentPlacing?: ("default" | "relaxed") | undefined;
596
+ isLoading?: boolean | undefined;
597
+ loader?: ReactNode;
598
+ stretch?: boolean | undefined;
599
+ stretching?: ("auto" | "fixed" | "filled") | undefined;
600
+ square?: boolean | undefined;
601
+ focused?: boolean | undefined;
602
+ disabled?: boolean | undefined;
603
+ pin?: "square-square" | "square-clear" | "clear-square" | "clear-clear" | "clear-circle" | "circle-clear" | "circle-circle" | undefined;
604
+ view?: string | undefined;
605
+ size?: string | undefined;
606
+ outlined?: boolean | undefined;
607
+ shiftLeft?: boolean | undefined;
608
+ shiftRight?: boolean | undefined;
609
+ blur?: "small" | "medium" | "large" | undefined;
610
+ } & {
611
+ value?: undefined;
612
+ contentRight?: ReactNode;
613
+ } & BaseAttachProps & {
614
+ buttonType?: "iconButton" | undefined;
615
+ icon?: ReactNode;
616
+ } & RefAttributes<HTMLDivElement>))>;
617
+
395
618
  export { AudioPlayer }
396
619
 
397
620
  export { AudioPlayerProps }
@@ -861,7 +1084,7 @@ xs: PolymorphicClassName;
861
1084
  };
862
1085
  }> & (({
863
1086
  size?: string | undefined;
864
- view: string;
1087
+ view?: string | undefined;
865
1088
  contentLeft?: ReactNode;
866
1089
  contentRight?: ReactNode;
867
1090
  alignContentLeft?: AlignProp | undefined;
@@ -876,7 +1099,7 @@ label?: string | undefined;
876
1099
  children?: undefined;
877
1100
  } & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement>) | ({
878
1101
  size?: string | undefined;
879
- view: string;
1102
+ view?: string | undefined;
880
1103
  contentLeft?: ReactNode;
881
1104
  contentRight?: ReactNode;
882
1105
  alignContentLeft?: AlignProp | undefined;
@@ -0,0 +1,27 @@
1
+ export declare const config: {
2
+ defaults: {
3
+ view: string;
4
+ focused: string;
5
+ size: string;
6
+ };
7
+ variations: {
8
+ view: {
9
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
10
+ accent: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
11
+ secondary: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
12
+ clear: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
13
+ success: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
14
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
15
+ critical: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
16
+ dark: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
17
+ black: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
18
+ white: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
19
+ };
20
+ size: {
21
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
22
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
23
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
24
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
25
+ };
26
+ };
27
+ };
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.config = void 0;
7
+ var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
8
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14;
9
+ function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
10
+ var config = exports.config = {
11
+ defaults: {
12
+ view: 'default',
13
+ focused: 'true',
14
+ size: 'm'
15
+ },
16
+ variations: {
17
+ view: {
18
+ "default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--inverse-text-primary);\n ", ": var(--inverse-text-secondary);\n ", ": var(--surface-solid-default);\n ", ": var(", ");\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-solid-default-hover);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-solid-default-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-solid-default);\n ", ": var(", ");\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-solid-default-hover);\n ", ": var(--inverse-text-primary);\n ", ": var(--surface-solid-default-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
19
+ accent: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-dark-text-secondary);\n ", ": var(--surface-accent);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-accent-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-accent-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-accent);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-accent-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-accent-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
20
+ secondary: /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(", ");\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary);\n ", ": var(", ");\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-hover);\n ", ": var(--text-primary);\n ", ": var(--surface-transparent-secondary-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
21
+ clear: /*#__PURE__*/(0, _styledComponents.css)(_templateObject4 || (_templateObject4 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--text-primary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-primary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-primary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
22
+ success: /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-dark-text-secondary);\n ", ": var(--surface-positive);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-positive-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-positive-active);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-positive);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-positive-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-positive-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
23
+ warning: /*#__PURE__*/(0, _styledComponents.css)(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-dark-text-secondary);\n ", ": var(--surface-warning);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-warning-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-warning-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-warning);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-warning-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-warning-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
24
+ critical: /*#__PURE__*/(0, _styledComponents.css)(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-dark-text-secondary);\n ", ": var(--surface-negative);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-negative-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-negative-active);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-negative);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-negative-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--surface-negative-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
25
+ dark: /*#__PURE__*/(0, _styledComponents.css)(_templateObject8 || (_templateObject8 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-dark-text-secondary);\n ", ": var(--on-light-surface-transparent-deep);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-transparent-deep-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-transparent-deep-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-transparent-deep);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-transparent-deep-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-transparent-deep-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
26
+ black: /*#__PURE__*/(0, _styledComponents.css)(_templateObject9 || (_templateObject9 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-dark-text-secondary);\n ", ": var(--on-light-surface-solid-default);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-solid-default-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-solid-default-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-solid-default);\n ", ": var(", ");\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-solid-default-hover);\n ", ": var(--on-dark-text-primary);\n ", ": var(--on-light-surface-solid-default-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor),
27
+ white: /*#__PURE__*/(0, _styledComponents.css)(_templateObject10 || (_templateObject10 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--on-light-text-primary);\n ", ": var(--on-light-text-secondary);\n ", ": var(--on-dark-surface-solid-default);\n ", ": var(", ");\n ", ": var(--on-light-text-primary);\n ", ": var(--on-dark-surface-solid-default-hover);\n ", ": var(--on-light-text-primary);\n ", ": var(--on-dark-surface-solid-default-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n ", ": transparent;\n\n ", ": var(--on-light-text-primary);\n ", ": var(--on-dark-surface-solid-default);\n ", ": var(", ");\n ", ": var(--on-light-text-primary);\n ", ": var(--on-dark-surface-solid-default-hover);\n ", ": var(--on-light-text-primary);\n ", ": var(--on-dark-surface-solid-default-active);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n\n ", ": var(--text-secondary);\n ", ": var(--surface-clear);\n ", ": var(", ");\n ", ": var(--text-secondary-hover);\n ", ": var(--surface-clear);\n ", ": var(--text-secondary-active);\n ", ": var(--surface-clear);\n\n ", ": 0.4;\n ", ": var(--surface-accent);\n "])), _styledComponents.attachTokens.buttonColor, _styledComponents.attachTokens.buttonValueColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonLoadingBackgroundColor, _styledComponents.attachTokens.buttonBackgroundColor, _styledComponents.attachTokens.buttonColorHover, _styledComponents.attachTokens.buttonBackgroundColorHover, _styledComponents.attachTokens.buttonColorActive, _styledComponents.attachTokens.buttonBackgroundColorActive, _styledComponents.attachTokens.buttonDisabledOpacity, _styledComponents.attachTokens.buttonFocusColor, _styledComponents.attachTokens.cellColor, _styledComponents.attachTokens.cellLabelColor, _styledComponents.attachTokens.cellTitleColor, _styledComponents.attachTokens.cellSubtitleColor, _styledComponents.attachTokens.cellBackgroundColor, _styledComponents.attachTokens.iconButtonColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonBackgroundColor, _styledComponents.attachTokens.iconButtonColorHover, _styledComponents.attachTokens.iconButtonBackgroundColorHover, _styledComponents.attachTokens.iconButtonColorActive, _styledComponents.attachTokens.iconButtonBackgroundColorActive, _styledComponents.attachTokens.iconButtonDisabledOpacity, _styledComponents.attachTokens.iconButtonFocusColor, _styledComponents.attachTokens.iconButtonCancelColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelLoadingBackgroundColor, _styledComponents.attachTokens.iconButtonCancelBackgroundColor, _styledComponents.attachTokens.iconButtonCancelColorHover, _styledComponents.attachTokens.iconButtonCancelBackgroundColorHover, _styledComponents.attachTokens.iconButtonCancelColorActive, _styledComponents.attachTokens.iconButtonCancelBackgroundColorActive, _styledComponents.attachTokens.iconButtonCancelDisabledOpacity, _styledComponents.attachTokens.iconButtonCancelFocusColor)
28
+ },
29
+ size: {
30
+ l: /*#__PURE__*/(0, _styledComponents.css)(_templateObject11 || (_templateObject11 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 0.5rem;\n\n ", ": 3.5rem;\n ", ": 12.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\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-bold-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1.375rem;\n ", ": inherit;\n\n ", ": 0 0.5rem 0 -0.125rem;\n ", ": 0 -0.125rem 0 0.5rem;\n ", ": 0 0 0 0.25rem;\n\n ", ": fit-content;\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n\n ", ": 0.125rem;\n ", ": 0.375rem;\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 ", ": 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-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 ", ": 3.5rem;\n ", ": 3.5rem;\n ", ": 1.5rem;\n ", ": 0.875rem;\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-bold-font-weight);\n ", ": var(--plasma-typo-body-l-letter-spacing);\n ", ": var(--plasma-typo-body-l-line-height);\n\n ", ": 1.375rem;\n ", ": inherit;\n\n ", ": 2rem;\n ", ": 2rem;\n ", ": 0.75rem;\n ", ": 0.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-bold-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": inherit;\n "])), _styledComponents.attachTokens.horizontalGap, _styledComponents.attachTokens.verticalGap, _styledComponents.attachTokens.buttonHeight, _styledComponents.attachTokens.buttonWidth, _styledComponents.attachTokens.buttonPadding, _styledComponents.attachTokens.buttonRadius, _styledComponents.attachTokens.buttonFontFamily, _styledComponents.attachTokens.buttonFontSize, _styledComponents.attachTokens.buttonFontStyle, _styledComponents.attachTokens.buttonFontWeight, _styledComponents.attachTokens.buttonLetterSpacing, _styledComponents.attachTokens.buttonLineHeight, _styledComponents.attachTokens.buttonSpinnerSize, _styledComponents.attachTokens.buttonSpinnerColor, _styledComponents.attachTokens.buttonLeftContentMargin, _styledComponents.attachTokens.buttonRightContentMargin, _styledComponents.attachTokens.buttonValueMargin, _styledComponents.attachTokens.cellWidth, _styledComponents.attachTokens.cellPadding, _styledComponents.attachTokens.cellPaddingLeftContent, _styledComponents.attachTokens.cellPaddingContent, _styledComponents.attachTokens.cellPaddingRightContent, _styledComponents.attachTokens.cellTextboxGap, _styledComponents.attachTokens.cellGap, _styledComponents.attachTokens.cellLabelFontFamily, _styledComponents.attachTokens.cellLabelFontSize, _styledComponents.attachTokens.cellLabelFontStyle, _styledComponents.attachTokens.cellLabelFontWeight, _styledComponents.attachTokens.cellLabelLetterSpacing, _styledComponents.attachTokens.cellLabelLineHeight, _styledComponents.attachTokens.cellTitleFontFamily, _styledComponents.attachTokens.cellTitleFontSize, _styledComponents.attachTokens.cellTitleFontStyle, _styledComponents.attachTokens.cellTitleFontWeight, _styledComponents.attachTokens.cellTitleLetterSpacing, _styledComponents.attachTokens.cellTitleLineHeight, _styledComponents.attachTokens.cellSubtitleFontFamily, _styledComponents.attachTokens.cellSubtitleFontSize, _styledComponents.attachTokens.cellSubtitleFontStyle, _styledComponents.attachTokens.cellSubtitleFontWeight, _styledComponents.attachTokens.cellSubtitleLetterSpacing, _styledComponents.attachTokens.cellSubtitleLineHeight, _styledComponents.attachTokens.iconButtonHeight, _styledComponents.attachTokens.iconButtonWidth, _styledComponents.attachTokens.iconButtonPadding, _styledComponents.attachTokens.iconButtonRadius, _styledComponents.attachTokens.iconButtonFontFamily, _styledComponents.attachTokens.iconButtonFontSize, _styledComponents.attachTokens.iconButtonFontStyle, _styledComponents.attachTokens.iconButtonFontWeight, _styledComponents.attachTokens.iconButtonLetterSpacing, _styledComponents.attachTokens.iconButtonLineHeight, _styledComponents.attachTokens.iconButtonSpinnerSize, _styledComponents.attachTokens.iconButtonSpinnerColor, _styledComponents.attachTokens.iconButtonCancelHeight, _styledComponents.attachTokens.iconButtonCancelWidth, _styledComponents.attachTokens.iconButtonCancelPadding, _styledComponents.attachTokens.iconButtonCancelRadius, _styledComponents.attachTokens.iconButtonCancelFontFamily, _styledComponents.attachTokens.iconButtonCancelFontSize, _styledComponents.attachTokens.iconButtonCancelFontStyle, _styledComponents.attachTokens.iconButtonCancelFontWeight, _styledComponents.attachTokens.iconButtonCancelLetterSpacing, _styledComponents.attachTokens.iconButtonCancelLineHeight, _styledComponents.attachTokens.iconButtonCancelSpinnerSize, _styledComponents.attachTokens.iconButtonCancelSpinnerColor),
31
+ m: /*#__PURE__*/(0, _styledComponents.css)(_templateObject12 || (_templateObject12 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.25rem;\n ", ": 0.5rem;\n\n ", ": 3rem;\n ", ": 11.25rem;\n ", ": 1.25rem;\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-bold-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 1.375rem;\n ", ": inherit;\n\n ", ": 0 0.375rem 0 -0.125rem;\n ", ": 0 -0.125rem 0 0.375rem;\n ", ": 0 0 0 0.25rem;\n\n ", ": fit-content;\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n\n ", ": 0.125rem;\n ", ": 0.375rem;\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 ", ": 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 ", ": 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 ", ": 3rem;\n ", ": 3rem;\n ", ": 1.25rem;\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-bold-font-weight);\n ", ": var(--plasma-typo-body-m-letter-spacing);\n ", ": var(--plasma-typo-body-m-line-height);\n\n ", ": 1.375rem;\n ", ": inherit;\n\n ", ": 2rem;\n ", ": 2rem;\n ", ": 0.75rem;\n ", ": 0.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-bold-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": inherit;\n "])), _styledComponents.attachTokens.horizontalGap, _styledComponents.attachTokens.verticalGap, _styledComponents.attachTokens.buttonHeight, _styledComponents.attachTokens.buttonWidth, _styledComponents.attachTokens.buttonPadding, _styledComponents.attachTokens.buttonRadius, _styledComponents.attachTokens.buttonFontFamily, _styledComponents.attachTokens.buttonFontSize, _styledComponents.attachTokens.buttonFontStyle, _styledComponents.attachTokens.buttonFontWeight, _styledComponents.attachTokens.buttonLetterSpacing, _styledComponents.attachTokens.buttonLineHeight, _styledComponents.attachTokens.buttonSpinnerSize, _styledComponents.attachTokens.buttonSpinnerColor, _styledComponents.attachTokens.buttonLeftContentMargin, _styledComponents.attachTokens.buttonRightContentMargin, _styledComponents.attachTokens.buttonValueMargin, _styledComponents.attachTokens.cellWidth, _styledComponents.attachTokens.cellPadding, _styledComponents.attachTokens.cellPaddingLeftContent, _styledComponents.attachTokens.cellPaddingContent, _styledComponents.attachTokens.cellPaddingRightContent, _styledComponents.attachTokens.cellTextboxGap, _styledComponents.attachTokens.cellGap, _styledComponents.attachTokens.cellLabelFontFamily, _styledComponents.attachTokens.cellLabelFontSize, _styledComponents.attachTokens.cellLabelFontStyle, _styledComponents.attachTokens.cellLabelFontWeight, _styledComponents.attachTokens.cellLabelLetterSpacing, _styledComponents.attachTokens.cellLabelLineHeight, _styledComponents.attachTokens.cellTitleFontFamily, _styledComponents.attachTokens.cellTitleFontSize, _styledComponents.attachTokens.cellTitleFontStyle, _styledComponents.attachTokens.cellTitleFontWeight, _styledComponents.attachTokens.cellTitleLetterSpacing, _styledComponents.attachTokens.cellTitleLineHeight, _styledComponents.attachTokens.cellSubtitleFontFamily, _styledComponents.attachTokens.cellSubtitleFontSize, _styledComponents.attachTokens.cellSubtitleFontStyle, _styledComponents.attachTokens.cellSubtitleFontWeight, _styledComponents.attachTokens.cellSubtitleLetterSpacing, _styledComponents.attachTokens.cellSubtitleLineHeight, _styledComponents.attachTokens.iconButtonHeight, _styledComponents.attachTokens.iconButtonWidth, _styledComponents.attachTokens.iconButtonPadding, _styledComponents.attachTokens.iconButtonRadius, _styledComponents.attachTokens.iconButtonFontFamily, _styledComponents.attachTokens.iconButtonFontSize, _styledComponents.attachTokens.iconButtonFontStyle, _styledComponents.attachTokens.iconButtonFontWeight, _styledComponents.attachTokens.iconButtonLetterSpacing, _styledComponents.attachTokens.iconButtonLineHeight, _styledComponents.attachTokens.iconButtonSpinnerSize, _styledComponents.attachTokens.iconButtonSpinnerColor, _styledComponents.attachTokens.iconButtonCancelHeight, _styledComponents.attachTokens.iconButtonCancelWidth, _styledComponents.attachTokens.iconButtonCancelPadding, _styledComponents.attachTokens.iconButtonCancelRadius, _styledComponents.attachTokens.iconButtonCancelFontFamily, _styledComponents.attachTokens.iconButtonCancelFontSize, _styledComponents.attachTokens.iconButtonCancelFontStyle, _styledComponents.attachTokens.iconButtonCancelFontWeight, _styledComponents.attachTokens.iconButtonCancelLetterSpacing, _styledComponents.attachTokens.iconButtonCancelLineHeight, _styledComponents.attachTokens.iconButtonCancelSpinnerSize, _styledComponents.attachTokens.iconButtonCancelSpinnerColor),
32
+ s: /*#__PURE__*/(0, _styledComponents.css)(_templateObject13 || (_templateObject13 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1rem;\n ", ": 0.375rem;\n\n ", ": 2.5rem;\n ", ": 11.25rem;\n ", ": 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-bold-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 1.375rem;\n ", ": inherit;\n\n ", ": 0 0.25rem 0 -0.125rem;\n ", ": 0 -0.125rem 0 0.25rem;\n ", ": 0 0 0 0.25rem;\n\n ", ": fit-content;\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n\n ", ": 0.125rem;\n ", ": 0.375rem;\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(--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 ", ": 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 ", ": 2.5rem;\n ", ": 2.5rem;\n ", ": 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-bold-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n\n ", ": 1.375rem;\n ", ": inherit;\n\n ", ": 2rem;\n ", ": 2rem;\n ", ": 0.75rem;\n ", ": 0.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-bold-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": inherit;\n "])), _styledComponents.attachTokens.horizontalGap, _styledComponents.attachTokens.verticalGap, _styledComponents.attachTokens.buttonHeight, _styledComponents.attachTokens.buttonWidth, _styledComponents.attachTokens.buttonPadding, _styledComponents.attachTokens.buttonRadius, _styledComponents.attachTokens.buttonFontFamily, _styledComponents.attachTokens.buttonFontSize, _styledComponents.attachTokens.buttonFontStyle, _styledComponents.attachTokens.buttonFontWeight, _styledComponents.attachTokens.buttonLetterSpacing, _styledComponents.attachTokens.buttonLineHeight, _styledComponents.attachTokens.buttonSpinnerSize, _styledComponents.attachTokens.buttonSpinnerColor, _styledComponents.attachTokens.buttonLeftContentMargin, _styledComponents.attachTokens.buttonRightContentMargin, _styledComponents.attachTokens.buttonValueMargin, _styledComponents.attachTokens.cellWidth, _styledComponents.attachTokens.cellPadding, _styledComponents.attachTokens.cellPaddingLeftContent, _styledComponents.attachTokens.cellPaddingContent, _styledComponents.attachTokens.cellPaddingRightContent, _styledComponents.attachTokens.cellTextboxGap, _styledComponents.attachTokens.cellGap, _styledComponents.attachTokens.cellLabelFontFamily, _styledComponents.attachTokens.cellLabelFontSize, _styledComponents.attachTokens.cellLabelFontStyle, _styledComponents.attachTokens.cellLabelFontWeight, _styledComponents.attachTokens.cellLabelLetterSpacing, _styledComponents.attachTokens.cellLabelLineHeight, _styledComponents.attachTokens.cellTitleFontFamily, _styledComponents.attachTokens.cellTitleFontSize, _styledComponents.attachTokens.cellTitleFontStyle, _styledComponents.attachTokens.cellTitleFontWeight, _styledComponents.attachTokens.cellTitleLetterSpacing, _styledComponents.attachTokens.cellTitleLineHeight, _styledComponents.attachTokens.cellSubtitleFontFamily, _styledComponents.attachTokens.cellSubtitleFontSize, _styledComponents.attachTokens.cellSubtitleFontStyle, _styledComponents.attachTokens.cellSubtitleFontWeight, _styledComponents.attachTokens.cellSubtitleLetterSpacing, _styledComponents.attachTokens.cellSubtitleLineHeight, _styledComponents.attachTokens.iconButtonHeight, _styledComponents.attachTokens.iconButtonWidth, _styledComponents.attachTokens.iconButtonPadding, _styledComponents.attachTokens.iconButtonRadius, _styledComponents.attachTokens.iconButtonFontFamily, _styledComponents.attachTokens.iconButtonFontSize, _styledComponents.attachTokens.iconButtonFontStyle, _styledComponents.attachTokens.iconButtonFontWeight, _styledComponents.attachTokens.iconButtonLetterSpacing, _styledComponents.attachTokens.iconButtonLineHeight, _styledComponents.attachTokens.iconButtonSpinnerSize, _styledComponents.attachTokens.iconButtonSpinnerColor, _styledComponents.attachTokens.iconButtonCancelHeight, _styledComponents.attachTokens.iconButtonCancelWidth, _styledComponents.attachTokens.iconButtonCancelPadding, _styledComponents.attachTokens.iconButtonCancelRadius, _styledComponents.attachTokens.iconButtonCancelFontFamily, _styledComponents.attachTokens.iconButtonCancelFontSize, _styledComponents.attachTokens.iconButtonCancelFontStyle, _styledComponents.attachTokens.iconButtonCancelFontWeight, _styledComponents.attachTokens.iconButtonCancelLetterSpacing, _styledComponents.attachTokens.iconButtonCancelLineHeight, _styledComponents.attachTokens.iconButtonCancelSpinnerSize, _styledComponents.attachTokens.iconButtonCancelSpinnerColor),
33
+ xs: /*#__PURE__*/(0, _styledComponents.css)(_templateObject14 || (_templateObject14 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.75rem;\n ", ": 0.25rem;\n\n ", ": 2rem;\n ", ": 10rem;\n ", ": 0.75rem;\n ", ": 0.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-bold-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": inherit;\n\n ", ": 0 0.25rem 0 -0.125rem;\n ", ": 0 -0.125rem 0 0.25rem;\n ", ": 0 0 0 0.25rem;\n\n ", ": fit-content;\n\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n ", ": 0rem;\n\n ", ": 0.125rem;\n ", ": 0.25rem;\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(--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(--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 ", ": 2rem;\n ", ": 2rem;\n ", ": 0.75rem;\n ", ": 0.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-bold-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": inherit;\n\n ", ": 2rem;\n ", ": 2rem;\n ", ": 0.75rem;\n ", ": 0.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-bold-font-weight);\n ", ": var(--plasma-typo-body-xs-letter-spacing);\n ", ": var(--plasma-typo-body-xs-line-height);\n\n ", ": 1rem;\n ", ": inherit;\n "])), _styledComponents.attachTokens.horizontalGap, _styledComponents.attachTokens.verticalGap, _styledComponents.attachTokens.buttonHeight, _styledComponents.attachTokens.buttonWidth, _styledComponents.attachTokens.buttonPadding, _styledComponents.attachTokens.buttonRadius, _styledComponents.attachTokens.buttonFontFamily, _styledComponents.attachTokens.buttonFontSize, _styledComponents.attachTokens.buttonFontStyle, _styledComponents.attachTokens.buttonFontWeight, _styledComponents.attachTokens.buttonLetterSpacing, _styledComponents.attachTokens.buttonLineHeight, _styledComponents.attachTokens.buttonSpinnerSize, _styledComponents.attachTokens.buttonSpinnerColor, _styledComponents.attachTokens.buttonLeftContentMargin, _styledComponents.attachTokens.buttonRightContentMargin, _styledComponents.attachTokens.buttonValueMargin, _styledComponents.attachTokens.cellWidth, _styledComponents.attachTokens.cellPadding, _styledComponents.attachTokens.cellPaddingLeftContent, _styledComponents.attachTokens.cellPaddingContent, _styledComponents.attachTokens.cellPaddingRightContent, _styledComponents.attachTokens.cellTextboxGap, _styledComponents.attachTokens.cellGap, _styledComponents.attachTokens.cellLabelFontFamily, _styledComponents.attachTokens.cellLabelFontSize, _styledComponents.attachTokens.cellLabelFontStyle, _styledComponents.attachTokens.cellLabelFontWeight, _styledComponents.attachTokens.cellLabelLetterSpacing, _styledComponents.attachTokens.cellLabelLineHeight, _styledComponents.attachTokens.cellTitleFontFamily, _styledComponents.attachTokens.cellTitleFontSize, _styledComponents.attachTokens.cellTitleFontStyle, _styledComponents.attachTokens.cellTitleFontWeight, _styledComponents.attachTokens.cellTitleLetterSpacing, _styledComponents.attachTokens.cellTitleLineHeight, _styledComponents.attachTokens.cellSubtitleFontFamily, _styledComponents.attachTokens.cellSubtitleFontSize, _styledComponents.attachTokens.cellSubtitleFontStyle, _styledComponents.attachTokens.cellSubtitleFontWeight, _styledComponents.attachTokens.cellSubtitleLetterSpacing, _styledComponents.attachTokens.cellSubtitleLineHeight, _styledComponents.attachTokens.iconButtonHeight, _styledComponents.attachTokens.iconButtonWidth, _styledComponents.attachTokens.iconButtonPadding, _styledComponents.attachTokens.iconButtonRadius, _styledComponents.attachTokens.iconButtonFontFamily, _styledComponents.attachTokens.iconButtonFontSize, _styledComponents.attachTokens.iconButtonFontStyle, _styledComponents.attachTokens.iconButtonFontWeight, _styledComponents.attachTokens.iconButtonLetterSpacing, _styledComponents.attachTokens.iconButtonLineHeight, _styledComponents.attachTokens.iconButtonSpinnerSize, _styledComponents.attachTokens.iconButtonSpinnerColor, _styledComponents.attachTokens.iconButtonCancelHeight, _styledComponents.attachTokens.iconButtonCancelWidth, _styledComponents.attachTokens.iconButtonCancelPadding, _styledComponents.attachTokens.iconButtonCancelRadius, _styledComponents.attachTokens.iconButtonCancelFontFamily, _styledComponents.attachTokens.iconButtonCancelFontSize, _styledComponents.attachTokens.iconButtonCancelFontStyle, _styledComponents.attachTokens.iconButtonCancelFontWeight, _styledComponents.attachTokens.iconButtonCancelLetterSpacing, _styledComponents.attachTokens.iconButtonCancelLineHeight, _styledComponents.attachTokens.iconButtonCancelSpinnerSize, _styledComponents.attachTokens.iconButtonCancelSpinnerColor)
34
+ }
35
+ }
36
+ };