@ptsecurity/mosaic 13.6.2 → 13.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_theming.scss +289 -59
- package/_visual.scss +85 -14
- package/design-tokens/legacy-2017/tokens/components/checkbox.json5 +4 -0
- package/design-tokens/legacy-2017/tokens/components/loader-overlay.json5 +23 -0
- package/design-tokens/legacy-2017/tokens/components/radio.json5 +11 -10
- package/design-tokens/legacy-2017/tokens/components/toast.json5 +54 -0
- package/design-tokens/legacy-2017/tokens/properties/globals.json5 +18 -18
- package/design-tokens/legacy-2017/tokens.d.ts +78 -8
- package/design-tokens/pt-2022/tokens/components/badge.json5 +1 -1
- package/design-tokens/pt-2022/tokens/components/button.json5 +1 -1
- package/design-tokens/pt-2022/tokens/components/checkbox.json5 +4 -0
- package/design-tokens/pt-2022/tokens/components/link.json5 +3 -3
- package/design-tokens/pt-2022/tokens/components/loader-overlay.json5 +23 -0
- package/design-tokens/pt-2022/tokens/components/radio.json5 +6 -3
- package/design-tokens/pt-2022/tokens/components/tags.json5 +1 -1
- package/design-tokens/pt-2022/tokens/components/toast.json5 +54 -0
- package/design-tokens/pt-2022/tokens/properties/colors.json5 +1 -1
- package/design-tokens/pt-2022/tokens/properties/globals.json5 +18 -18
- package/design-tokens/pt-2022/tokens.d.ts +85 -14
- package/design-tokens/style-dictionary/build.js +13 -0
- package/design-tokens/style-dictionary/configs/figma.js +11 -0
- package/design-tokens/style-dictionary/configs/index.js +3 -3
- package/design-tokens/style-dictionary/figma-types.js +41 -0
- package/design-tokens/style-dictionary/formats/figma.js +104 -0
- package/design-tokens/style-dictionary/transformGroups/figma.js +21 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-border.js +18 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-color.js +25 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-default.js +10 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-font.js +31 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-group.js +17 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-opacity.js +10 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-shadow.js +66 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-sizing.js +16 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-spacing.js +15 -0
- package/design-tokens/style-dictionary/transforms/attribute/figma-typography.js +24 -0
- package/design-tokens/style-dictionary/transforms/value/figma-values.js +7 -0
- package/esm2020/button/button.component.mjs +2 -2
- package/esm2020/design-tokens/legacy-2017/tokens.mjs +79 -9
- package/esm2020/design-tokens/pt-2022/tokens.mjs +86 -15
- package/esm2020/form-field/hint.mjs +18 -7
- package/esm2020/list/list-selection.component.mjs +4 -1
- package/esm2020/loader-overlay/index.mjs +2 -0
- package/esm2020/loader-overlay/loader-overlay.component.mjs +99 -0
- package/esm2020/loader-overlay/loader-overlay.module.mjs +50 -0
- package/esm2020/loader-overlay/ptsecurity-mosaic-loader-overlay.mjs +5 -0
- package/esm2020/loader-overlay/public-api.mjs +3 -0
- package/esm2020/modal/modal.component.mjs +11 -3
- package/esm2020/modal/modal.type.mjs +1 -1
- package/esm2020/navbar/navbar-item.component.mjs +29 -6
- package/esm2020/navbar/navbar.component.mjs +6 -4
- package/esm2020/navbar/vertical-navbar.component.mjs +3 -3
- package/esm2020/progress-spinner/progress-spinner.component.mjs +2 -2
- package/esm2020/radio/radio.component.mjs +3 -3
- package/esm2020/select/select.component.mjs +3 -3
- package/esm2020/toast/index.mjs +2 -0
- package/esm2020/toast/ptsecurity-mosaic-toast.mjs +5 -0
- package/esm2020/toast/public-api.mjs +6 -0
- package/esm2020/toast/toast-animations.mjs +9 -0
- package/esm2020/toast/toast-container.component.mjs +44 -0
- package/esm2020/toast/toast.component.mjs +89 -0
- package/esm2020/toast/toast.module.mjs +42 -0
- package/esm2020/toast/toast.service.mjs +178 -0
- package/esm2020/toast/toast.type.mjs +15 -0
- package/esm2020/tooltip/tooltip.component.mjs +2 -1
- package/esm2020/tree/tree-option.component.mjs +3 -2
- package/esm2020/tree/tree-selection.component.mjs +4 -2
- package/esm2020/tree-select/tree-select.component.mjs +12 -11
- package/fesm2015/ptsecurity-mosaic-button.mjs +2 -2
- package/fesm2015/ptsecurity-mosaic-button.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-design-tokens.mjs +235 -24
- package/fesm2015/ptsecurity-mosaic-design-tokens.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-form-field.mjs +16 -6
- package/fesm2015/ptsecurity-mosaic-form-field.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-list.mjs +3 -0
- package/fesm2015/ptsecurity-mosaic-list.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-loader-overlay.mjs +155 -0
- package/fesm2015/ptsecurity-mosaic-loader-overlay.mjs.map +1 -0
- package/fesm2015/ptsecurity-mosaic-modal.mjs +11 -2
- package/fesm2015/ptsecurity-mosaic-modal.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-navbar.mjs +37 -11
- package/fesm2015/ptsecurity-mosaic-navbar.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs +2 -2
- package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-radio.mjs +2 -2
- package/fesm2015/ptsecurity-mosaic-radio.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-select.mjs +2 -2
- package/fesm2015/ptsecurity-mosaic-select.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-toast.mjs +363 -0
- package/fesm2015/ptsecurity-mosaic-toast.mjs.map +1 -0
- package/fesm2015/ptsecurity-mosaic-tooltip.mjs +1 -0
- package/fesm2015/ptsecurity-mosaic-tooltip.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs +11 -10
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tree.mjs +5 -2
- package/fesm2015/ptsecurity-mosaic-tree.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-button.mjs +2 -2
- package/fesm2020/ptsecurity-mosaic-button.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-design-tokens.mjs +235 -24
- package/fesm2020/ptsecurity-mosaic-design-tokens.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-form-field.mjs +16 -6
- package/fesm2020/ptsecurity-mosaic-form-field.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-list.mjs +3 -0
- package/fesm2020/ptsecurity-mosaic-list.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-loader-overlay.mjs +153 -0
- package/fesm2020/ptsecurity-mosaic-loader-overlay.mjs.map +1 -0
- package/fesm2020/ptsecurity-mosaic-modal.mjs +10 -2
- package/fesm2020/ptsecurity-mosaic-modal.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-navbar.mjs +34 -9
- package/fesm2020/ptsecurity-mosaic-navbar.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-progress-spinner.mjs +2 -2
- package/fesm2020/ptsecurity-mosaic-progress-spinner.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-radio.mjs +2 -2
- package/fesm2020/ptsecurity-mosaic-radio.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-select.mjs +2 -2
- package/fesm2020/ptsecurity-mosaic-select.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-toast.mjs +361 -0
- package/fesm2020/ptsecurity-mosaic-toast.mjs.map +1 -0
- package/fesm2020/ptsecurity-mosaic-tooltip.mjs +1 -0
- package/fesm2020/ptsecurity-mosaic-tooltip.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tree-select.mjs +11 -10
- package/fesm2020/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tree.mjs +5 -2
- package/fesm2020/ptsecurity-mosaic-tree.mjs.map +1 -1
- package/form-field/hint.d.ts +10 -2
- package/loader-overlay/README.md +0 -0
- package/loader-overlay/index.d.ts +1 -0
- package/loader-overlay/loader-overlay.component.d.ts +33 -0
- package/loader-overlay/loader-overlay.module.d.ts +11 -0
- package/loader-overlay/package.json +10 -0
- package/loader-overlay/ptsecurity-mosaic-loader-overlay.d.ts +5 -0
- package/loader-overlay/public-api.d.ts +2 -0
- package/modal/modal.component.d.ts +3 -1
- package/modal/modal.type.d.ts +1 -0
- package/navbar/navbar-item.component.d.ts +9 -3
- package/package.json +20 -4
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/default-theme.css +1 -1
- package/toast/index.d.ts +1 -0
- package/toast/package.json +10 -0
- package/toast/ptsecurity-mosaic-toast.d.ts +5 -0
- package/toast/public-api.d.ts +5 -0
- package/toast/toast-animations.d.ts +4 -0
- package/toast/toast-container.component.d.ts +15 -0
- package/toast/toast.component.d.ts +35 -0
- package/toast/toast.module.d.ts +13 -0
- package/toast/toast.service.d.ts +49 -0
- package/toast/toast.type.d.ts +27 -0
- package/tooltip/tooltip.component.d.ts +1 -1
- package/tree/tree-selection.component.d.ts +1 -0
- package/schematics/collection.json +0 -4
- package/schematics/migration.json +0 -10
- package/schematics/ng-update/data/attribute-selectors.d.ts +0 -2
- package/schematics/ng-update/data/attribute-selectors.js +0 -5
- package/schematics/ng-update/data/attribute-selectors.js.map +0 -1
- package/schematics/ng-update/data/class-names.d.ts +0 -2
- package/schematics/ng-update/data/class-names.js +0 -5
- package/schematics/ng-update/data/class-names.js.map +0 -1
- package/schematics/ng-update/data/constructor-checks.d.ts +0 -2
- package/schematics/ng-update/data/constructor-checks.js +0 -5
- package/schematics/ng-update/data/constructor-checks.js.map +0 -1
- package/schematics/ng-update/data/css-selectors.d.ts +0 -2
- package/schematics/ng-update/data/css-selectors.js +0 -5
- package/schematics/ng-update/data/css-selectors.js.map +0 -1
- package/schematics/ng-update/data/element-selectors.d.ts +0 -2
- package/schematics/ng-update/data/element-selectors.js +0 -5
- package/schematics/ng-update/data/element-selectors.js.map +0 -1
- package/schematics/ng-update/data/index.d.ts +0 -10
- package/schematics/ng-update/data/index.js +0 -14
- package/schematics/ng-update/data/index.js.map +0 -1
- package/schematics/ng-update/data/input-names.d.ts +0 -2
- package/schematics/ng-update/data/input-names.js +0 -35
- package/schematics/ng-update/data/input-names.js.map +0 -1
- package/schematics/ng-update/data/method-call-checks.d.ts +0 -2
- package/schematics/ng-update/data/method-call-checks.js +0 -5
- package/schematics/ng-update/data/method-call-checks.js.map +0 -1
- package/schematics/ng-update/data/output-names.d.ts +0 -2
- package/schematics/ng-update/data/output-names.js +0 -5
- package/schematics/ng-update/data/output-names.js.map +0 -1
- package/schematics/ng-update/data/property-names.d.ts +0 -2
- package/schematics/ng-update/data/property-names.js +0 -5
- package/schematics/ng-update/data/property-names.js.map +0 -1
- package/schematics/ng-update/data/symbol-removal.d.ts +0 -2
- package/schematics/ng-update/data/symbol-removal.js +0 -5
- package/schematics/ng-update/data/symbol-removal.js.map +0 -1
- package/schematics/ng-update/index.d.ts +0 -2
- package/schematics/ng-update/index.js +0 -23
- package/schematics/ng-update/index.js.map +0 -1
- package/schematics/ng-update/update-9.0.0/mosaic-symbols.json +0 -255
- package/schematics/ng-update/update-9.0.0/secondary-entry-points-migration.d.ts +0 -7
- package/schematics/ng-update/update-9.0.0/secondary-entry-points-migration.js +0 -154
- package/schematics/ng-update/update-9.0.0/secondary-entry-points-migration.js.map +0 -1
- package/schematics/ng-update/upgrade-data.d.ts +0 -2
- package/schematics/ng-update/upgrade-data.js +0 -17
- package/schematics/ng-update/upgrade-data.js.map +0 -1
- package/schematics/tsconfig.json +0 -29
- package/schematics/tsconfig.lib-test.json +0 -8
- package/schematics/tsconfig.lib.json +0 -17
package/_visual.scss
CHANGED
@@ -50,7 +50,7 @@ $dark-color-scheme-background-overlay-active: rgba(black, 0.1);
|
|
50
50
|
$dark-color-scheme-background-overlay-disabled: rgba(black, 0.2);
|
51
51
|
$dark-color-scheme-states-focused-color: #4187ff;
|
52
52
|
$dark-color-scheme-states-focused-color-error: #b9023a;
|
53
|
-
$dark-color-scheme-states-selected-color: #
|
53
|
+
$dark-color-scheme-states-selected-color: #023c7f;
|
54
54
|
$dark-color-scheme-states-pressed-shadow: inset 1px 2px 2px 0 rgba(black, 0.2);
|
55
55
|
$dark-color-scheme-states-disabled-opacity: 0.3;
|
56
56
|
$font-family-accent: 'TT Positive', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
@@ -69,6 +69,24 @@ $size-4xl: 40px;
|
|
69
69
|
$size-5xl: 48px;
|
70
70
|
$size-6xl: 56px;
|
71
71
|
$size-7xl: 64px;
|
72
|
+
$size-border-width: 1px;
|
73
|
+
$size-border-radius: 4px;
|
74
|
+
$size-option-height: 32px;
|
75
|
+
$size-panel-height: 48px;
|
76
|
+
$size-control-s-height: 16px;
|
77
|
+
$size-control-m-height: 32px;
|
78
|
+
$size-button-min-width: 64px;
|
79
|
+
$size-badge-tag-height: 24px;
|
80
|
+
$size-header-height: 56px;
|
81
|
+
$size-footer-height: 64px;
|
82
|
+
$padding-control-horizontal: 16px;
|
83
|
+
$padding-option-horizontal: 16px;
|
84
|
+
$padding-badge-tag-horizontal: 8px;
|
85
|
+
$padding-header-right: 8px;
|
86
|
+
$padding-header-footer-horizontal: 16px;
|
87
|
+
$margin-control-group-s-vertical: 8px;
|
88
|
+
$margin-icon-text-m-horizontal: 8px;
|
89
|
+
$margin-icon-text-s-horizontal: 4px;
|
72
90
|
$palette-blue-40: #eff6ff;
|
73
91
|
$palette-blue-60: #e7f1ff;
|
74
92
|
$palette-blue-100: #c8dfff;
|
@@ -329,7 +347,7 @@ $badge-light-color-scheme-pastel-primary-background: #eff6ff;
|
|
329
347
|
$badge-light-color-scheme-pastel-primary-border: #a2c7fe;
|
330
348
|
$badge-light-color-scheme-pastel-primary-color: #4187ff;
|
331
349
|
$badge-light-color-scheme-pastel-info-background: #ebf8fd;
|
332
|
-
$badge-light-color-scheme-pastel-info-border: #
|
350
|
+
$badge-light-color-scheme-pastel-info-border: #6ed3f2;
|
333
351
|
$badge-light-color-scheme-pastel-info-color: #2099b7;
|
334
352
|
$badge-light-color-scheme-pastel-success-background: #ecf9ef;
|
335
353
|
$badge-light-color-scheme-pastel-success-border: #8ed5a1;
|
@@ -429,7 +447,7 @@ $button-dark-color-scheme-primary-background: #0059b8;
|
|
429
447
|
$button-dark-color-scheme-primary-icon: white;
|
430
448
|
$button-dark-color-scheme-primary-states-active-border: darken(#014b9d, 5);
|
431
449
|
$button-dark-color-scheme-primary-states-active-background: darken(#014b9d, 5);
|
432
|
-
$button-dark-color-scheme-primary-transparent-color: #
|
450
|
+
$button-dark-color-scheme-primary-transparent-color: #5697ff;
|
433
451
|
$button-dark-color-scheme-primary-transparent-icon: #5697ff;
|
434
452
|
$button-dark-color-scheme-primary-transparent-states-hover-color: #014b9d;
|
435
453
|
$button-dark-color-scheme-primary-transparent-states-hover-icon: #0374eb;
|
@@ -482,6 +500,7 @@ $card-dark-color-scheme-info-background: #143641;
|
|
482
500
|
$card-dark-color-scheme-info-shadow: #084453;
|
483
501
|
$card-size-vertical-line: 4px;
|
484
502
|
$checkbox-light-color-scheme-default-border: #bdc7d1;
|
503
|
+
$checkbox-light-color-scheme-default-color: white;
|
485
504
|
$checkbox-light-color-scheme-default-states-checked-border: #0374eb;
|
486
505
|
$checkbox-light-color-scheme-default-states-checked-background: #0374eb;
|
487
506
|
$checkbox-light-color-scheme-default-states-focused-border: #0374eb;
|
@@ -491,6 +510,7 @@ $checkbox-light-color-scheme-default-states-checked-focused-background: #0374eb;
|
|
491
510
|
$checkbox-light-color-scheme-default-states-checked-focused-shadow: 0 0 0 1px #0374eb;
|
492
511
|
$checkbox-light-color-scheme-default-states-checked-focused-outline: 1px solid white;
|
493
512
|
$checkbox-light-color-scheme-error-border: #db3c55;
|
513
|
+
$checkbox-light-color-scheme-error-color: white;
|
494
514
|
$checkbox-light-color-scheme-error-states-checked-border: #db3c55;
|
495
515
|
$checkbox-light-color-scheme-error-states-checked-background: #db3c55;
|
496
516
|
$checkbox-light-color-scheme-error-states-focused-border: #db3c55;
|
@@ -500,6 +520,7 @@ $checkbox-light-color-scheme-error-states-checked-focused-background: #db3c55;
|
|
500
520
|
$checkbox-light-color-scheme-error-states-checked-focused-shadow: 0 0 0 1px #db3c55;
|
501
521
|
$checkbox-light-color-scheme-error-states-checked-focused-outline: 1px solid white;
|
502
522
|
$checkbox-dark-color-scheme-default-border: #515e69;
|
523
|
+
$checkbox-dark-color-scheme-default-color: white;
|
503
524
|
$checkbox-dark-color-scheme-default-states-checked-border: #0059b8;
|
504
525
|
$checkbox-dark-color-scheme-default-states-checked-background: #0059b8;
|
505
526
|
$checkbox-dark-color-scheme-default-states-focused-border: #4187ff;
|
@@ -509,6 +530,7 @@ $checkbox-dark-color-scheme-default-states-checked-focused-background: #0059b8;
|
|
509
530
|
$checkbox-dark-color-scheme-default-states-checked-focused-shadow: 0 0 0 1px #4187ff;
|
510
531
|
$checkbox-dark-color-scheme-default-states-checked-focused-outline: 1px solid #19252f;
|
511
532
|
$checkbox-dark-color-scheme-error-border: #b9023a;
|
533
|
+
$checkbox-dark-color-scheme-error-color: white;
|
512
534
|
$checkbox-dark-color-scheme-error-states-checked-border: #b9023a;
|
513
535
|
$checkbox-dark-color-scheme-error-states-checked-background: #b9023a;
|
514
536
|
$checkbox-dark-color-scheme-error-states-focused-border: #b9023a;
|
@@ -527,7 +549,7 @@ $datepicker-toggle-size-height: 30px;
|
|
527
549
|
$datepicker-body-light-color-scheme-states-selected-color: #0374eb;
|
528
550
|
$datepicker-body-light-color-scheme-states-selected-background: #e7f1ff;
|
529
551
|
$datepicker-body-dark-color-scheme-states-selected-color: #4187ff;
|
530
|
-
$datepicker-body-dark-color-scheme-states-selected-background: #
|
552
|
+
$datepicker-body-dark-color-scheme-states-selected-background: #023c7f;
|
531
553
|
$datepicker-body-size-label-paddings: 8px 28px 12px 12px;
|
532
554
|
$datepicker-body-size-cell-min-size: 32px;
|
533
555
|
$datepicker-body-size-cell-margin: 5%;
|
@@ -692,13 +714,13 @@ $link-light-color-scheme-state-hover-text: #0059b8;
|
|
692
714
|
$link-light-color-scheme-state-hover-border-bottom: rgba(#0059b8, 0.32);
|
693
715
|
$link-light-color-scheme-state-active: #014b9d;
|
694
716
|
$link-light-color-scheme-state-focused-outline: #0374eb;
|
695
|
-
$link-dark-color-scheme-text: #
|
717
|
+
$link-dark-color-scheme-text: #5697ff;
|
696
718
|
$link-dark-color-scheme-border-bottom: rgba(#6d7a86, 0.32);
|
697
719
|
$link-dark-color-scheme-state-visited-text: #bb78a7;
|
698
720
|
$link-dark-color-scheme-state-visited-border-bottom: rgba(#bb78a7, 0.32);
|
699
|
-
$link-dark-color-scheme-state-hover-text: #
|
700
|
-
$link-dark-color-scheme-state-hover-border-bottom: rgba(#
|
701
|
-
$link-dark-color-scheme-state-active: #
|
721
|
+
$link-dark-color-scheme-state-hover-text: #4187ff;
|
722
|
+
$link-dark-color-scheme-state-hover-border-bottom: rgba(#4187ff, 0.32);
|
723
|
+
$link-dark-color-scheme-state-active: #0374eb;
|
702
724
|
$link-dark-color-scheme-state-focused-outline: #4187ff;
|
703
725
|
$link-size-icon-margin: 4px;
|
704
726
|
$link-size-state-focused-outline-offset: 2px;
|
@@ -708,6 +730,17 @@ $list-size-horizontal-padding: 12px;
|
|
708
730
|
$list-size-icon-right-margin: 8px;
|
709
731
|
$list-size-item-height: 32px;
|
710
732
|
$list-font-item: body;
|
733
|
+
$loader-overlay-light-color-scheme-background: mix(white, transparent, 90%);
|
734
|
+
$loader-overlay-light-color-scheme-text: #19252f;
|
735
|
+
$loader-overlay-light-color-scheme-caption: #6d7a86;
|
736
|
+
$loader-overlay-dark-color-scheme-background: mix(#19252f, transparent, 90%);
|
737
|
+
$loader-overlay-dark-color-scheme-text: #f2f5f9;
|
738
|
+
$loader-overlay-dark-color-scheme-caption: #8c99a5;
|
739
|
+
$loader-overlay-size-text-max-width: 480px;
|
740
|
+
$loader-overlay-size-fixed-top-padding: 72px;
|
741
|
+
$loader-overlay-size-center-optical-compensation: -40%;
|
742
|
+
$loader-overlay-font-text: body;
|
743
|
+
$loader-overlay-font-caption: caption;
|
711
744
|
$modal-light-color-scheme-shadow: (0 0 0 1px #d7dee4, 0 6px 12px 0 rgba(39, 51, 62, 0.5));
|
712
745
|
$modal-light-color-scheme-body-top-shadow: 0 2px 4px 0 rgba(39, 51, 62, 0.16);
|
713
746
|
$modal-light-color-scheme-body-bottom-shadow: 0 -2px 4px 0 rgba(39, 51, 62, 0.16);
|
@@ -822,19 +855,22 @@ $progress-bar-size-height: 4px;
|
|
822
855
|
$progress-spinner-size-size: 16px;
|
823
856
|
$radio-light-color-scheme-outer-circle-border: #bdc7d1;
|
824
857
|
$radio-light-color-scheme-inner-circle-border: transparent;
|
858
|
+
$radio-light-color-scheme-cap-color: white;
|
825
859
|
$radio-light-color-scheme-states-checked-outer-circle-border: #0374eb;
|
826
860
|
$radio-light-color-scheme-states-checked-inner-circle-border: #0374eb;
|
827
861
|
$radio-light-color-scheme-states-focused-outer-circle-border: #0374eb;
|
828
862
|
$radio-light-color-scheme-states-focused-outer-circle-shadow: 0 0 0 2px #0374eb;
|
829
|
-
$radio-light-color-scheme-states-focused-inner-circle-shadow: 0 0 0
|
863
|
+
$radio-light-color-scheme-states-focused-inner-circle-shadow: 0 0 0 2px white;
|
830
864
|
$radio-dark-color-scheme-outer-circle-border: #515e69;
|
831
865
|
$radio-dark-color-scheme-inner-circle-border: transparent;
|
866
|
+
$radio-dark-color-scheme-cap-color: white;
|
832
867
|
$radio-dark-color-scheme-states-checked-outer-circle-border: #0059b8;
|
833
868
|
$radio-dark-color-scheme-states-checked-inner-circle-border: #0059b8;
|
834
869
|
$radio-dark-color-scheme-states-focused-outer-circle-border: #4187ff;
|
835
870
|
$radio-dark-color-scheme-states-focused-outer-circle-shadow: 0 0 0 2px #4187ff;
|
836
|
-
$radio-dark-color-scheme-states-focused-inner-circle-shadow: 0 0 0
|
837
|
-
$radio-size-size: 14px;
|
871
|
+
$radio-dark-color-scheme-states-focused-inner-circle-shadow: 0 0 0 2px #19252f;
|
872
|
+
$radio-size-outer-size: 14px;
|
873
|
+
$radio-size-inner-size: 10px;
|
838
874
|
$radio-size-cap-size: 6px;
|
839
875
|
$radio-size-label-margin: 8px;
|
840
876
|
$radio-font-default: body;
|
@@ -901,9 +937,9 @@ $vertical-tabs-light-color-scheme-state-selected-background: #e7f1ff;
|
|
901
937
|
$vertical-tabs-light-color-scheme-state-hover-background: rgba(black, 0.05);
|
902
938
|
$vertical-tabs-light-color-scheme-state-hover-selected-background: adjust-color(#e7f1ff, $saturation:-22%, $lightness:-5%);
|
903
939
|
$vertical-tabs-dark-color-scheme-state-normal-background: transparent;
|
904
|
-
$vertical-tabs-dark-color-scheme-state-selected-background: #
|
940
|
+
$vertical-tabs-dark-color-scheme-state-selected-background: #023c7f;
|
905
941
|
$vertical-tabs-dark-color-scheme-state-hover-background: rgba(black, 0.05);
|
906
|
-
$vertical-tabs-dark-color-scheme-state-hover-selected-background: adjust-color(#
|
942
|
+
$vertical-tabs-dark-color-scheme-state-hover-selected-background: adjust-color(#023c7f, $lightness:-1%);
|
907
943
|
$tags-light-color-scheme-primary-background: #e7f1ff;
|
908
944
|
$tags-light-color-scheme-primary-border: transparent;
|
909
945
|
$tags-light-color-scheme-primary-text: #0374eb;
|
@@ -931,7 +967,7 @@ $tags-light-color-scheme-error-states-focused: #db3c55;
|
|
931
967
|
$tags-light-color-scheme-error-states-disabled-text: mix(#ea5868, transparent, 50%);
|
932
968
|
$tags-light-color-scheme-error-states-disabled-background: mix(#ea5868, transparent, 10%);
|
933
969
|
$tags-light-color-scheme-error-states-disabled-border: transparent;
|
934
|
-
$tags-dark-color-scheme-primary-background: #
|
970
|
+
$tags-dark-color-scheme-primary-background: #014b9d;
|
935
971
|
$tags-dark-color-scheme-primary-border: transparent;
|
936
972
|
$tags-dark-color-scheme-primary-text: #a2c7fe;
|
937
973
|
$tags-dark-color-scheme-primary-icon: #5697ff;
|
@@ -976,6 +1012,41 @@ $textarea-size-padding: 5px 12px;
|
|
976
1012
|
$textarea-font-default: body;
|
977
1013
|
$textarea-font-mono: body-mono;
|
978
1014
|
$timepicker-size-padding-right: 16px;
|
1015
|
+
$toast-light-color-scheme-background: white;
|
1016
|
+
$toast-light-color-scheme-border: #bdc7d1;
|
1017
|
+
$toast-light-color-scheme-text: #19252f;
|
1018
|
+
$toast-light-color-scheme-text-caption: #6d7a86;
|
1019
|
+
$toast-light-color-scheme-shadow: 0 8px 16px 0 rgba(#27333e, 0.2);
|
1020
|
+
$toast-light-color-scheme-icon-info: #18a5c5;
|
1021
|
+
$toast-light-color-scheme-icon-error: #ee6f79;
|
1022
|
+
$toast-light-color-scheme-icon-success: #4ba96c;
|
1023
|
+
$toast-light-color-scheme-icon-warning: #e19f12;
|
1024
|
+
$toast-dark-color-scheme-background: #333f4a;
|
1025
|
+
$toast-dark-color-scheme-border: rgba(25, 37, 47, 0.1);
|
1026
|
+
$toast-dark-color-scheme-text: #f2f5f9;
|
1027
|
+
$toast-dark-color-scheme-text-caption: #8c99a5;
|
1028
|
+
$toast-dark-color-scheme-shadow: 0 8px 16px 0 rgba(#27333e, 0.2);
|
1029
|
+
$toast-dark-color-scheme-icon-info: #18a5c5;
|
1030
|
+
$toast-dark-color-scheme-icon-error: #ee6f79;
|
1031
|
+
$toast-dark-color-scheme-icon-success: #4ba96c;
|
1032
|
+
$toast-dark-color-scheme-icon-warning: #e19f12;
|
1033
|
+
$toast-size-border-width: 1px;
|
1034
|
+
$toast-size-border-radius: 3px;
|
1035
|
+
$toast-size-width: 360px;
|
1036
|
+
$toast-size-padding-vertical: 12px;
|
1037
|
+
$toast-size-padding-left: 12px;
|
1038
|
+
$toast-size-padding-right: 16px;
|
1039
|
+
$toast-size-close-button-width: 32px;
|
1040
|
+
$toast-size-close-button-margin: 8px;
|
1041
|
+
$toast-size-icon-margin: 8px;
|
1042
|
+
$toast-size-caption-margin: 8px;
|
1043
|
+
$toast-size-actionbar-margin: 8px;
|
1044
|
+
$toast-size-actionbar-gap: 12px;
|
1045
|
+
$toast-size-vertical-margin: 16px;
|
1046
|
+
$toast-size-horizontal-margin: 16px;
|
1047
|
+
$toast-size-gap: 12px;
|
1048
|
+
$toast-font-title: body;
|
1049
|
+
$toast-font-caption: body;
|
979
1050
|
$toggle-light-color-scheme-border: #bdc7d1;
|
980
1051
|
$toggle-light-color-scheme-background: white;
|
981
1052
|
$toggle-light-color-scheme-circle-border: #bdc7d1;
|
@@ -3,6 +3,7 @@
|
|
3
3
|
'light-color-scheme': {
|
4
4
|
default: {
|
5
5
|
border: { value: '{light-color-scheme.foreground.border}' },
|
6
|
+
color: { value: 'white' },
|
6
7
|
|
7
8
|
states: {
|
8
9
|
checked: {
|
@@ -23,6 +24,7 @@
|
|
23
24
|
},
|
24
25
|
error: {
|
25
26
|
border: { value: '{light-color-scheme.error.palette.value.400}' },
|
27
|
+
color: { value: 'white' },
|
26
28
|
|
27
29
|
states: {
|
28
30
|
checked: {
|
@@ -45,6 +47,7 @@
|
|
45
47
|
'dark-color-scheme': {
|
46
48
|
default: {
|
47
49
|
border: { value: '{dark-color-scheme.foreground.border}' },
|
50
|
+
color: { value: 'white' },
|
48
51
|
|
49
52
|
states: {
|
50
53
|
checked: {
|
@@ -65,6 +68,7 @@
|
|
65
68
|
},
|
66
69
|
error: {
|
67
70
|
border: { value: '{dark-color-scheme.error.palette.value.400}' },
|
71
|
+
color: { value: 'white' },
|
68
72
|
|
69
73
|
states: {
|
70
74
|
checked: {
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
'loader-overlay': {
|
3
|
+
'light-color-scheme': {
|
4
|
+
background: { value: 'mix({light-color-scheme.background.background}, transparent, 90%)' },
|
5
|
+
text: { value: '{light-color-scheme.foreground.text}' },
|
6
|
+
caption: { value: '{light-color-scheme.foreground.text-less-contrast}' }
|
7
|
+
},
|
8
|
+
'dark-color-scheme': {
|
9
|
+
background: { value: 'mix({dark-color-scheme.background.background}, transparent, 90%)' },
|
10
|
+
text: { value: '{dark-color-scheme.foreground.text}' },
|
11
|
+
caption: { value: '{dark-color-scheme.foreground.text-less-contrast}' }
|
12
|
+
},
|
13
|
+
size: {
|
14
|
+
'text-max-width': { value: '480px' },
|
15
|
+
'fixed-top-padding': { value: '72px' },
|
16
|
+
'center-optical-compensation': { value: '-40%' }
|
17
|
+
},
|
18
|
+
font: {
|
19
|
+
text: { value: 'body' },
|
20
|
+
caption: { value: 'caption' },
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
@@ -1,8 +1,9 @@
|
|
1
1
|
{
|
2
2
|
radio: {
|
3
3
|
'light-color-scheme': {
|
4
|
-
'outer-circle-border': { value: '{light-color-scheme.second.palette.value.
|
4
|
+
'outer-circle-border': { value: '{light-color-scheme.second.palette.value.500}' },
|
5
5
|
'inner-circle-border': { value: 'transparent' },
|
6
|
+
'cap-color': { value: 'white' },
|
6
7
|
|
7
8
|
states: {
|
8
9
|
checked: {
|
@@ -10,9 +11,9 @@
|
|
10
11
|
'inner-circle-border': { value: '{light-color-scheme.primary.palette.value.500}' }
|
11
12
|
},
|
12
13
|
focused: {
|
13
|
-
'outer-circle-border': { value: '{light-color-scheme.
|
14
|
-
'outer-circle-shadow': { value: '0 0 0 2px {light-color-scheme.
|
15
|
-
'inner-circle-shadow': { value: '0 0 0
|
14
|
+
'outer-circle-border': { value: '{light-color-scheme.primary.palette.value.500}' },
|
15
|
+
'outer-circle-shadow': { value: '0 0 0 2px {light-color-scheme.primary.palette.value.500}' },
|
16
|
+
'inner-circle-shadow': { value: '0 0 0 2px {light-color-scheme.background.background}' }
|
16
17
|
}
|
17
18
|
}
|
18
19
|
},
|
@@ -22,19 +23,19 @@
|
|
22
23
|
|
23
24
|
states: {
|
24
25
|
checked: {
|
25
|
-
'outer-circle-border': { value: '{dark-color-scheme.primary.palette.value.
|
26
|
+
'outer-circle-border': { value: '{dark-color-scheme.primary.palette.value.600}' },
|
26
27
|
'inner-circle-border': { value: '{dark-color-scheme.primary.palette.value.600}' }
|
27
28
|
},
|
28
29
|
focused: {
|
29
|
-
'outer-circle-border': { value: '{dark-color-scheme.
|
30
|
-
'outer-circle-shadow': { value: '0 0 0 2px {dark-color-scheme.
|
31
|
-
|
32
|
-
'inner-circle-shadow': { value: '0 0 0 1px {dark-color-scheme.background.background}' }
|
30
|
+
'outer-circle-border': { value: '{dark-color-scheme.primary.palette.value.500}' },
|
31
|
+
'outer-circle-shadow': { value: '0 0 0 2px {dark-color-scheme.primary.palette.value.500}' },
|
32
|
+
'inner-circle-shadow': { value: '0 0 0 2px {dark-color-scheme.background.background}' }
|
33
33
|
}
|
34
34
|
}
|
35
35
|
},
|
36
36
|
size: {
|
37
|
-
size: { value: '14px' },
|
37
|
+
'outer-size': { value: '14px' },
|
38
|
+
'inner-size': { value: '10px' },
|
38
39
|
'cap-size': { value: '6px' },
|
39
40
|
'label-margin': { value: '{margin.iconText_M-horizontal}' }
|
40
41
|
},
|
@@ -0,0 +1,54 @@
|
|
1
|
+
{
|
2
|
+
toast: {
|
3
|
+
'light-color-scheme': {
|
4
|
+
background: { value: '{light-color-scheme.background.background}' },
|
5
|
+
border: { value: '{light-color-scheme.foreground.border}' },
|
6
|
+
text: { value: '{light-color-scheme.foreground.text}' },
|
7
|
+
'text-caption': { value: '{light-color-scheme.foreground.text-less-contrast}' },
|
8
|
+
'shadow': { value: '0 8px 16px 0 rgba({light-color-scheme.second.palette.value.800}, 0.2)' },
|
9
|
+
|
10
|
+
'icon_info': { value: '{icon.light-color-scheme.info.default}' },
|
11
|
+
'icon_error': { value: '{icon.light-color-scheme.error.default}' },
|
12
|
+
'icon_success': { value: '{icon.light-color-scheme.success.default}' },
|
13
|
+
'icon_warning': { value: '{icon.light-color-scheme.warning.default}' }
|
14
|
+
},
|
15
|
+
'dark-color-scheme': {
|
16
|
+
background: { value: '{dark-color-scheme.second.palette.value.700}' },
|
17
|
+
border: { value: '{dark-color-scheme.second.palette.value.A100}' },
|
18
|
+
text: { value: '{dark-color-scheme.foreground.text}' },
|
19
|
+
'text-caption': { value: '{dark-color-scheme.foreground.text-less-contrast}' },
|
20
|
+
'shadow': { value: '0 8px 16px 0 rgba({light-color-scheme.second.palette.value.800}, 0.2)' },
|
21
|
+
|
22
|
+
'icon_info': { value: '{icon.dark-color-scheme.info.default}' },
|
23
|
+
'icon_error': { value: '{icon.dark-color-scheme.error.default}' },
|
24
|
+
'icon_success': { value: '{icon.dark-color-scheme.success.default}' },
|
25
|
+
'icon_warning': { value: '{icon.dark-color-scheme.warning.default}' }
|
26
|
+
},
|
27
|
+
size: {
|
28
|
+
'border-width': { value: '1px' },
|
29
|
+
'border-radius': { value: '3px' },
|
30
|
+
|
31
|
+
'width': { value: '360px' },
|
32
|
+
'padding-vertical': { value: '{size.m}' },
|
33
|
+
'padding-left': { value: '{size.m}' },
|
34
|
+
'padding-right': { value: '{size.l}' },
|
35
|
+
|
36
|
+
'close-button-width': { value: '{size.3xl}' },
|
37
|
+
'close-button-margin': { value: '{size.s}' },
|
38
|
+
|
39
|
+
'icon-margin': { value: '{size.s}' },
|
40
|
+
'caption-margin': { value: '{size.s}' },
|
41
|
+
|
42
|
+
'actionbar-margin': { value: '{size.s}' },
|
43
|
+
'actionbar-gap': { value: '{size.m}' },
|
44
|
+
|
45
|
+
'vertical-margin': { value: '{size.l}' },
|
46
|
+
'horizontal-margin': { value: '{size.l}' },
|
47
|
+
'gap': { value: '{size.m}' }
|
48
|
+
},
|
49
|
+
font: {
|
50
|
+
title: { value: 'body' },
|
51
|
+
caption: { value: 'body' },
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
@@ -14,36 +14,36 @@
|
|
14
14
|
'6xl': { value: '56px' },
|
15
15
|
'7xl': { value: '64px' },
|
16
16
|
|
17
|
-
'border-width': '1px',
|
18
|
-
'border-radius': '4px',
|
17
|
+
'border-width': { 'value': '1px' },
|
18
|
+
'border-radius': { 'value': '4px' },
|
19
19
|
|
20
20
|
// this will be deleted
|
21
|
-
'option-height': '32px',
|
22
|
-
'panel-height': '48px',
|
21
|
+
'option-height': { 'value': '32px' },
|
22
|
+
'panel-height': { 'value': '48px' },
|
23
23
|
// у radio и checkbox в макетах 20px, у тоггла есть две модификации на 16px и 14px
|
24
|
-
'control_S-height': '16px',
|
24
|
+
'control_S-height': { 'value': '16px' },
|
25
25
|
// в form-field это реализовано через отступы
|
26
|
-
'control_M-height': '32px',
|
26
|
+
'control_M-height': { 'value': '32px' },
|
27
27
|
// этого нет сейчас
|
28
|
-
'button-minWidth': '64px',
|
28
|
+
'button-minWidth': { 'value': '64px' },
|
29
29
|
// badge на padding
|
30
|
-
'badge_tag-height': '24px',
|
30
|
+
'badge_tag-height': { 'value': '24px' },
|
31
31
|
// modal; sidepanel - сейчас в этих компонентах paddings
|
32
|
-
'header-height': '56px',
|
33
|
-
'footer-height': '64px',
|
32
|
+
'header-height': { 'value': '56px' },
|
33
|
+
'footer-height': { 'value': '64px' },
|
34
34
|
// this will be deleted
|
35
35
|
},
|
36
36
|
padding: {
|
37
|
-
'control-horizontal': '16px',
|
38
|
-
'option-horizontal': '16px',
|
39
|
-
'badge_tag-horizontal': '8px',
|
40
|
-
'header-right': '8px',
|
41
|
-
'headerFooter-horizontal': '16px'
|
37
|
+
'control-horizontal': { 'value': '16px' },
|
38
|
+
'option-horizontal': { 'value': '16px' },
|
39
|
+
'badge_tag-horizontal': { 'value': '8px' },
|
40
|
+
'header-right': { 'value': '8px' },
|
41
|
+
'headerFooter-horizontal': { 'value': '16px' }
|
42
42
|
},
|
43
43
|
margin: {
|
44
44
|
// у radio-group нет таких отступов, а у checkbox вообще нет группы
|
45
|
-
'controlGroup_S-vertical': '8px',
|
46
|
-
'iconText_M-horizontal': '8px',
|
47
|
-
'iconText_S-horizontal': '4px'
|
45
|
+
'controlGroup_S-vertical': { 'value': '8px' },
|
46
|
+
'iconText_M-horizontal': { 'value': '8px' },
|
47
|
+
'iconText_S-horizontal': { 'value': '4px' }
|
48
48
|
}
|
49
49
|
}
|
@@ -4820,6 +4820,24 @@ export declare const Size4xl = "40px";
|
|
4820
4820
|
export declare const Size5xl = "48px";
|
4821
4821
|
export declare const Size6xl = "56px";
|
4822
4822
|
export declare const Size7xl = "64px";
|
4823
|
+
export declare const SizeBorderWidth = "1px";
|
4824
|
+
export declare const SizeBorderRadius = "4px";
|
4825
|
+
export declare const SizeOptionHeight = "32px";
|
4826
|
+
export declare const SizePanelHeight = "48px";
|
4827
|
+
export declare const SizeControlSHeight = "16px";
|
4828
|
+
export declare const SizeControlMHeight = "32px";
|
4829
|
+
export declare const SizeButtonMinWidth = "64px";
|
4830
|
+
export declare const SizeBadgeTagHeight = "24px";
|
4831
|
+
export declare const SizeHeaderHeight = "56px";
|
4832
|
+
export declare const SizeFooterHeight = "64px";
|
4833
|
+
export declare const PaddingControlHorizontal = "16px";
|
4834
|
+
export declare const PaddingOptionHorizontal = "16px";
|
4835
|
+
export declare const PaddingBadgeTagHorizontal = "8px";
|
4836
|
+
export declare const PaddingHeaderRight = "8px";
|
4837
|
+
export declare const PaddingHeaderFooterHorizontal = "16px";
|
4838
|
+
export declare const MarginControlGroupSVertical = "8px";
|
4839
|
+
export declare const MarginIconTextMHorizontal = "8px";
|
4840
|
+
export declare const MarginIconTextSHorizontal = "4px";
|
4823
4841
|
export declare const PaletteBlue40 = "#F5FAFD";
|
4824
4842
|
export declare const PaletteBlue60 = "#EBF4FB";
|
4825
4843
|
export declare const PaletteBlue100 = "#D8EAF7";
|
@@ -7274,6 +7292,7 @@ export declare const CardDarkColorSchemeInfoBackground = "#114E77";
|
|
7274
7292
|
export declare const CardDarkColorSchemeInfoShadow = "#4D4D4D";
|
7275
7293
|
export declare const CardSizeVerticalLine = "4px";
|
7276
7294
|
export declare const CheckboxLightColorSchemeDefaultBorder = "#B3B3B3";
|
7295
|
+
export declare const CheckboxLightColorSchemeDefaultColor = "white";
|
7277
7296
|
export declare const CheckboxLightColorSchemeDefaultStatesCheckedBorder = "#206EA2";
|
7278
7297
|
export declare const CheckboxLightColorSchemeDefaultStatesCheckedBackground = "#338FCC";
|
7279
7298
|
export declare const CheckboxLightColorSchemeDefaultStatesFocusedBorder = "#338FCC";
|
@@ -7283,6 +7302,7 @@ export declare const CheckboxLightColorSchemeDefaultStatesCheckedFocusedBackgrou
|
|
7283
7302
|
export declare const CheckboxLightColorSchemeDefaultStatesCheckedFocusedShadow = "0 0 0 1px #338FCC";
|
7284
7303
|
export declare const CheckboxLightColorSchemeDefaultStatesCheckedFocusedOutline = "1px solid white";
|
7285
7304
|
export declare const CheckboxLightColorSchemeErrorBorder = "#E76E5C";
|
7305
|
+
export declare const CheckboxLightColorSchemeErrorColor = "white";
|
7286
7306
|
export declare const CheckboxLightColorSchemeErrorStatesCheckedBorder = "#B23522";
|
7287
7307
|
export declare const CheckboxLightColorSchemeErrorStatesCheckedBackground = "#E04D36";
|
7288
7308
|
export declare const CheckboxLightColorSchemeErrorStatesFocusedBorder = "#E76E5C";
|
@@ -7292,6 +7312,7 @@ export declare const CheckboxLightColorSchemeErrorStatesCheckedFocusedBackground
|
|
7292
7312
|
export declare const CheckboxLightColorSchemeErrorStatesCheckedFocusedShadow = "0 0 0 1px #E76E5C";
|
7293
7313
|
export declare const CheckboxLightColorSchemeErrorStatesCheckedFocusedOutline = "1px solid white";
|
7294
7314
|
export declare const CheckboxDarkColorSchemeDefaultBorder = "#808080";
|
7315
|
+
export declare const CheckboxDarkColorSchemeDefaultColor = "white";
|
7295
7316
|
export declare const CheckboxDarkColorSchemeDefaultStatesCheckedBorder = "#57A4D7";
|
7296
7317
|
export declare const CheckboxDarkColorSchemeDefaultStatesCheckedBackground = "#206EA2";
|
7297
7318
|
export declare const CheckboxDarkColorSchemeDefaultStatesFocusedBorder = "#57A4D7";
|
@@ -7301,6 +7322,7 @@ export declare const CheckboxDarkColorSchemeDefaultStatesCheckedFocusedBackgroun
|
|
7301
7322
|
export declare const CheckboxDarkColorSchemeDefaultStatesCheckedFocusedShadow = "0 0 0 1px #57A4D7";
|
7302
7323
|
export declare const CheckboxDarkColorSchemeDefaultStatesCheckedFocusedOutline = "1px solid #333333";
|
7303
7324
|
export declare const CheckboxDarkColorSchemeErrorBorder = "#E76E5C";
|
7325
|
+
export declare const CheckboxDarkColorSchemeErrorColor = "white";
|
7304
7326
|
export declare const CheckboxDarkColorSchemeErrorStatesCheckedBorder = "#E76E5C";
|
7305
7327
|
export declare const CheckboxDarkColorSchemeErrorStatesCheckedBackground = "#B23522";
|
7306
7328
|
export declare const CheckboxDarkColorSchemeErrorStatesFocusedBorder = "#E76E5C";
|
@@ -7500,6 +7522,17 @@ export declare const ListSizeHorizontalPadding = "12px";
|
|
7500
7522
|
export declare const ListSizeIconRightMargin = "8px";
|
7501
7523
|
export declare const ListSizeItemHeight = "32px";
|
7502
7524
|
export declare const ListFontItem = "body";
|
7525
|
+
export declare const LoaderOverlayLightColorSchemeBackground = "mix(white, transparent, 90%)";
|
7526
|
+
export declare const LoaderOverlayLightColorSchemeText = "#4D4D4D";
|
7527
|
+
export declare const LoaderOverlayLightColorSchemeCaption = "#999999";
|
7528
|
+
export declare const LoaderOverlayDarkColorSchemeBackground = "mix(#333333, transparent, 90%)";
|
7529
|
+
export declare const LoaderOverlayDarkColorSchemeText = "#F0F0F0";
|
7530
|
+
export declare const LoaderOverlayDarkColorSchemeCaption = "#999999";
|
7531
|
+
export declare const LoaderOverlaySizeTextMaxWidth = "480px";
|
7532
|
+
export declare const LoaderOverlaySizeFixedTopPadding = "72px";
|
7533
|
+
export declare const LoaderOverlaySizeCenterOpticalCompensation = "-40%";
|
7534
|
+
export declare const LoaderOverlayFontText = "body";
|
7535
|
+
export declare const LoaderOverlayFontCaption = "caption";
|
7503
7536
|
export declare const ModalLightColorSchemeShadow = "(0 0 0 1px #B3B3B3, 0 6px 12px 0 rgba(0, 0, 0, 0.5))";
|
7504
7537
|
export declare const ModalLightColorSchemeBodyTopShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.16)";
|
7505
7538
|
export declare const ModalLightColorSchemeBodyBottomShadow = "0 -2px 4px 0 rgba(0, 0, 0, 0.16)";
|
@@ -7612,21 +7645,23 @@ export declare const ProgressBarLightColorSchemeBackground = "#F0F0F0";
|
|
7612
7645
|
export declare const ProgressBarDarkColorSchemeBackground = "#666666";
|
7613
7646
|
export declare const ProgressBarSizeHeight = "4px";
|
7614
7647
|
export declare const ProgressSpinnerSizeSize = "16px";
|
7615
|
-
export declare const RadioLightColorSchemeOuterCircleBorder = "#
|
7648
|
+
export declare const RadioLightColorSchemeOuterCircleBorder = "#808080";
|
7616
7649
|
export declare const RadioLightColorSchemeInnerCircleBorder = "transparent";
|
7650
|
+
export declare const RadioLightColorSchemeCapColor = "white";
|
7617
7651
|
export declare const RadioLightColorSchemeStatesCheckedOuterCircleBorder = "#338FCC";
|
7618
7652
|
export declare const RadioLightColorSchemeStatesCheckedInnerCircleBorder = "#338FCC";
|
7619
7653
|
export declare const RadioLightColorSchemeStatesFocusedOuterCircleBorder = "#338FCC";
|
7620
|
-
export declare const RadioLightColorSchemeStatesFocusedOuterCircleShadow = "0 0 0 2px #
|
7621
|
-
export declare const RadioLightColorSchemeStatesFocusedInnerCircleShadow = "0 0 0
|
7654
|
+
export declare const RadioLightColorSchemeStatesFocusedOuterCircleShadow = "0 0 0 2px #338FCC";
|
7655
|
+
export declare const RadioLightColorSchemeStatesFocusedInnerCircleShadow = "0 0 0 2px white";
|
7622
7656
|
export declare const RadioDarkColorSchemeOuterCircleBorder = "#999999";
|
7623
7657
|
export declare const RadioDarkColorSchemeInnerCircleBorder = "transparent";
|
7624
|
-
export declare const RadioDarkColorSchemeStatesCheckedOuterCircleBorder = "#
|
7658
|
+
export declare const RadioDarkColorSchemeStatesCheckedOuterCircleBorder = "#206EA2";
|
7625
7659
|
export declare const RadioDarkColorSchemeStatesCheckedInnerCircleBorder = "#206EA2";
|
7626
|
-
export declare const RadioDarkColorSchemeStatesFocusedOuterCircleBorder = "#
|
7627
|
-
export declare const RadioDarkColorSchemeStatesFocusedOuterCircleShadow = "0 0 0 2px #
|
7628
|
-
export declare const RadioDarkColorSchemeStatesFocusedInnerCircleShadow = "0 0 0
|
7629
|
-
export declare const
|
7660
|
+
export declare const RadioDarkColorSchemeStatesFocusedOuterCircleBorder = "#338FCC";
|
7661
|
+
export declare const RadioDarkColorSchemeStatesFocusedOuterCircleShadow = "0 0 0 2px #338FCC";
|
7662
|
+
export declare const RadioDarkColorSchemeStatesFocusedInnerCircleShadow = "0 0 0 2px #333333";
|
7663
|
+
export declare const RadioSizeOuterSize = "14px";
|
7664
|
+
export declare const RadioSizeInnerSize = "10px";
|
7630
7665
|
export declare const RadioSizeCapSize = "6px";
|
7631
7666
|
export declare const RadioSizeLabelMargin = "8px";
|
7632
7667
|
export declare const RadioFontDefault = "body";
|
@@ -7765,6 +7800,41 @@ export declare const TextareaSizePadding = "5 12px";
|
|
7765
7800
|
export declare const TextareaFontDefault = "body";
|
7766
7801
|
export declare const TextareaFontMono = "body-mono";
|
7767
7802
|
export declare const TimepickerSizePaddingRight = "16px";
|
7803
|
+
export declare const ToastLightColorSchemeBackground = "white";
|
7804
|
+
export declare const ToastLightColorSchemeBorder = "#B3B3B3";
|
7805
|
+
export declare const ToastLightColorSchemeText = "#4D4D4D";
|
7806
|
+
export declare const ToastLightColorSchemeTextCaption = "#999999";
|
7807
|
+
export declare const ToastLightColorSchemeShadow = "0 8px 16px 0 rgba(#333333, 0.2)";
|
7808
|
+
export declare const ToastLightColorSchemeIconInfo = "#57A4D7";
|
7809
|
+
export declare const ToastLightColorSchemeIconError = "#E76E5C";
|
7810
|
+
export declare const ToastLightColorSchemeIconSuccess = "#6FBA53";
|
7811
|
+
export declare const ToastLightColorSchemeIconWarning = "#DFA739";
|
7812
|
+
export declare const ToastDarkColorSchemeBackground = "#4D4D4D";
|
7813
|
+
export declare const ToastDarkColorSchemeBorder = "rgba(0, 0, 0, 0.1)";
|
7814
|
+
export declare const ToastDarkColorSchemeText = "#F0F0F0";
|
7815
|
+
export declare const ToastDarkColorSchemeTextCaption = "#999999";
|
7816
|
+
export declare const ToastDarkColorSchemeShadow = "0 8px 16px 0 rgba(#333333, 0.2)";
|
7817
|
+
export declare const ToastDarkColorSchemeIconInfo = "#338FCC";
|
7818
|
+
export declare const ToastDarkColorSchemeIconError = "#E04D36";
|
7819
|
+
export declare const ToastDarkColorSchemeIconSuccess = "#52A832";
|
7820
|
+
export declare const ToastDarkColorSchemeIconWarning = "#D6930D";
|
7821
|
+
export declare const ToastSizeBorderWidth = "1px";
|
7822
|
+
export declare const ToastSizeBorderRadius = "3px";
|
7823
|
+
export declare const ToastSizeWidth = "360px";
|
7824
|
+
export declare const ToastSizePaddingVertical = "12px";
|
7825
|
+
export declare const ToastSizePaddingLeft = "12px";
|
7826
|
+
export declare const ToastSizePaddingRight = "16px";
|
7827
|
+
export declare const ToastSizeCloseButtonWidth = "32px";
|
7828
|
+
export declare const ToastSizeCloseButtonMargin = "8px";
|
7829
|
+
export declare const ToastSizeIconMargin = "8px";
|
7830
|
+
export declare const ToastSizeCaptionMargin = "8px";
|
7831
|
+
export declare const ToastSizeActionbarMargin = "8px";
|
7832
|
+
export declare const ToastSizeActionbarGap = "12px";
|
7833
|
+
export declare const ToastSizeVerticalMargin = "16px";
|
7834
|
+
export declare const ToastSizeHorizontalMargin = "16px";
|
7835
|
+
export declare const ToastSizeGap = "12px";
|
7836
|
+
export declare const ToastFontTitle = "body";
|
7837
|
+
export declare const ToastFontCaption = "body";
|
7768
7838
|
export declare const ToggleLightColorSchemeBorder = "#B3B3B3";
|
7769
7839
|
export declare const ToggleLightColorSchemeBackground = "linear-gradient(to bottom, #E6E6E6, #F0F0F0)";
|
7770
7840
|
export declare const ToggleLightColorSchemeCircleBorder = "#B3B3B3";
|
@@ -51,7 +51,7 @@
|
|
51
51
|
},
|
52
52
|
info: {
|
53
53
|
background: { value: '{light-color-scheme.info.palette.value.40}' },
|
54
|
-
border: { value: '{light-color-scheme.
|
54
|
+
border: { value: '{light-color-scheme.info.palette.value.200}' },
|
55
55
|
color: { value: '{light-color-scheme.info.palette.value.400}' }
|
56
56
|
},
|
57
57
|
success: {
|
@@ -3,6 +3,7 @@
|
|
3
3
|
'light-color-scheme': {
|
4
4
|
default: {
|
5
5
|
border: { value: '{light-color-scheme.foreground.border}' },
|
6
|
+
color: { value: 'white' },
|
6
7
|
|
7
8
|
states: {
|
8
9
|
checked: {
|
@@ -23,6 +24,7 @@
|
|
23
24
|
},
|
24
25
|
error: {
|
25
26
|
border: { value: '{light-color-scheme.error.default}' },
|
27
|
+
color: { value: 'white' },
|
26
28
|
|
27
29
|
states: {
|
28
30
|
checked: {
|
@@ -45,6 +47,7 @@
|
|
45
47
|
'dark-color-scheme': {
|
46
48
|
default: {
|
47
49
|
border: { value: '{dark-color-scheme.foreground.border}' },
|
50
|
+
color: { value: 'white' },
|
48
51
|
|
49
52
|
states: {
|
50
53
|
checked: {
|
@@ -65,6 +68,7 @@
|
|
65
68
|
},
|
66
69
|
error: {
|
67
70
|
border: { value: '{dark-color-scheme.error.default}' },
|
71
|
+
color: { value: 'white' },
|
68
72
|
|
69
73
|
states: {
|
70
74
|
checked: {
|