@gitlab/ui 136.0.0 → 136.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/base/label/label.js +9 -1
- package/dist/components/base/nav_item/nav_item.js +11 -1
- package/dist/components/base/toast/index.js +21 -13
- package/dist/components/index.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +18 -16
- package/dist/tokens/build/js/tokens.js +18 -16
- package/dist/utils/constants.js +6 -1
- package/package.json +6 -6
- package/src/components/base/label/label.vue +10 -1
- package/src/components/base/nav_item/nav_item.scss +31 -0
- package/src/components/base/nav_item/nav_item.vue +11 -0
- package/src/components/base/toast/index.js +23 -10
- package/src/components/base/tooltip/tooltip.scss +1 -0
- package/src/components/index.js +1 -1
- package/src/tokens/build/css/tokens.css +18 -16
- package/src/tokens/build/css/tokens.dark.css +18 -16
- package/src/tokens/build/figma/mode.dark.json +36 -16
- package/src/tokens/build/figma/mode.json +36 -16
- package/src/tokens/build/js/tokens.dark.js +17 -15
- package/src/tokens/build/js/tokens.js +17 -15
- package/src/tokens/build/json/tokens.dark.json +104 -31
- package/src/tokens/build/json/tokens.json +104 -31
- package/src/tokens/build/scss/_tokens.dark.scss +18 -16
- package/src/tokens/build/scss/_tokens.scss +18 -16
- package/src/tokens/build/scss/_tokens_custom_properties.scss +2 -0
- package/src/tokens/contextual/nav.tokens.json +46 -16
- package/src/tokens/contextual/tooltip.tokens.json +18 -0
- package/src/utils/constants.js +6 -0
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
&.selected {
|
|
53
|
+
font-weight: var(--gl-nav-item-selected-font-weight);
|
|
53
54
|
color: var(--gl-nav-item-selected-foreground-color-default);
|
|
54
55
|
background-color: var(--gl-nav-item-selected-background-color-default);
|
|
55
56
|
|
|
@@ -71,6 +72,36 @@
|
|
|
71
72
|
}
|
|
72
73
|
}
|
|
73
74
|
|
|
75
|
+
.gl-nav-item.selected::before {
|
|
76
|
+
@apply gl-absolute;
|
|
77
|
+
content: "";
|
|
78
|
+
background-color: currentColor;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.gl-nav-item-indicator-left.selected::before {
|
|
82
|
+
@apply -gl-left-3;
|
|
83
|
+
@apply gl-top-2;
|
|
84
|
+
@apply gl-bottom-2;
|
|
85
|
+
@apply gl-w-1;
|
|
86
|
+
@apply gl-rounded-r-default;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.gl-nav-item-indicator-right.selected::before {
|
|
90
|
+
@apply -gl-right-3;
|
|
91
|
+
@apply gl-top-2;
|
|
92
|
+
@apply gl-bottom-2;
|
|
93
|
+
@apply gl-w-1;
|
|
94
|
+
@apply gl-rounded-l-default;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.gl-nav-item-indicator-bottom.selected::before {
|
|
98
|
+
@apply -gl-bottom-3;
|
|
99
|
+
@apply gl-left-2;
|
|
100
|
+
@apply gl-right-2;
|
|
101
|
+
@apply gl-h-1;
|
|
102
|
+
@apply gl-rounded-t-default;
|
|
103
|
+
}
|
|
104
|
+
|
|
74
105
|
.gl-nav-item-slot {
|
|
75
106
|
@apply gl-flex;
|
|
76
107
|
@apply gl-items-center;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<script>
|
|
2
|
+
import { navItemIndicatorPositionOptions } from '../../../utils/constants';
|
|
2
3
|
import GlAnimatedChevronRightDownIcon from '../animated_icon/animated_chevron_right_down_icon.vue';
|
|
3
4
|
import GlIcon from '../icon/icon.vue';
|
|
4
5
|
|
|
@@ -65,6 +66,15 @@ export default {
|
|
|
65
66
|
required: false,
|
|
66
67
|
default: null,
|
|
67
68
|
},
|
|
69
|
+
/**
|
|
70
|
+
* Position of the selected indicator
|
|
71
|
+
*/
|
|
72
|
+
indicatorPosition: {
|
|
73
|
+
type: String,
|
|
74
|
+
required: false,
|
|
75
|
+
default: 'left',
|
|
76
|
+
validator: (value) => navItemIndicatorPositionOptions[value] !== undefined,
|
|
77
|
+
},
|
|
68
78
|
},
|
|
69
79
|
computed: {
|
|
70
80
|
ariaExpanded() {
|
|
@@ -73,6 +83,7 @@ export default {
|
|
|
73
83
|
classes() {
|
|
74
84
|
return [
|
|
75
85
|
'gl-nav-item',
|
|
86
|
+
navItemIndicatorPositionOptions[this.indicatorPosition],
|
|
76
87
|
{
|
|
77
88
|
'gl-nav-item-is-icon-only': this.isIconOnly,
|
|
78
89
|
'gl-nav-item-has-start-slot': this.icon || Boolean(this.$scopedSlots.icon),
|
|
@@ -46,21 +46,34 @@ function showToast(message, options = {}) {
|
|
|
46
46
|
return toast;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
/**
|
|
50
|
+
* Adds a `$toast` property to the component it's applied to.
|
|
51
|
+
*
|
|
52
|
+
* Use this to opt individual components into toasts, instead of adding `$toast`
|
|
53
|
+
* to every component in the app with `GlToastPlugin`.
|
|
54
|
+
*/
|
|
55
|
+
export const GlToastMixin = {
|
|
56
|
+
beforeCreate() {
|
|
57
|
+
if (this.$toast) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
this.$toast = { show: showToast.bind(this) };
|
|
61
|
+
},
|
|
62
|
+
};
|
|
63
|
+
|
|
49
64
|
/**
|
|
50
65
|
* Note: This is not a typical Vue component and needs to be registered before instantiating a Vue app.
|
|
51
66
|
* Once registered, the toast will be globally available throughout your app.
|
|
52
67
|
*
|
|
53
|
-
* See https://design.gitlab.com/
|
|
68
|
+
* See https://design.gitlab.com/components/toast for detailed documentation.
|
|
54
69
|
*/
|
|
55
|
-
export
|
|
70
|
+
export const GlToastPlugin = {
|
|
56
71
|
install(V) {
|
|
57
|
-
V.mixin(
|
|
58
|
-
beforeCreate() {
|
|
59
|
-
if (this.$toast) {
|
|
60
|
-
return;
|
|
61
|
-
}
|
|
62
|
-
this.$toast = { show: showToast.bind(this) };
|
|
63
|
-
},
|
|
64
|
-
});
|
|
72
|
+
V.mixin(GlToastMixin);
|
|
65
73
|
},
|
|
66
74
|
};
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @deprecated Use the named `GlToastPlugin` export instead.
|
|
78
|
+
*/
|
|
79
|
+
export default GlToastPlugin;
|
package/src/components/index.js
CHANGED
|
@@ -33,7 +33,7 @@ export { default as GlBadge } from './base/badge/badge.vue';
|
|
|
33
33
|
export { default as GlBanner } from './base/banner/banner.vue';
|
|
34
34
|
export { default as GlButton } from './base/button/button.vue';
|
|
35
35
|
export { default as GlTooltip } from './base/tooltip/tooltip.vue';
|
|
36
|
-
export { default as GlToast } from './base/toast';
|
|
36
|
+
export { default as GlToast, GlToastMixin, GlToastPlugin } from './base/toast';
|
|
37
37
|
export { default as GlDashboardSkeleton } from './regions/dashboard_skeleton/dashboard_skeleton.vue';
|
|
38
38
|
export { default as GlEmptyState } from './regions/empty_state/empty_state.vue';
|
|
39
39
|
export { default as GlForm } from './base/form/form.vue';
|
|
@@ -635,6 +635,14 @@
|
|
|
635
635
|
--gl-link-mention-background-color-default: var(--gl-color-blue-100); /** Used for the mention link default background. */
|
|
636
636
|
--gl-link-mention-background-color-current: var(--gl-color-orange-100); /** Used for the mention link background when referencing the current user. */
|
|
637
637
|
--gl-nav-item-font-size: var(--gl-font-size-300); /** Used for the font size of a navigation item */
|
|
638
|
+
--gl-nav-item-foreground-color-default: var(--gl-color-neutral-600); /** Used for the foreground of a default navigation item in the default state. */
|
|
639
|
+
--gl-nav-item-foreground-color-hover: var(--gl-color-neutral-950); /** Used for the foreground of a default navigation item in the hover state. */
|
|
640
|
+
--gl-nav-item-background-color-default: var(--gl-color-alpha-0); /** Used for the background of a default navigation item in the default state. */
|
|
641
|
+
--gl-nav-item-background-color-hover: var(--gl-color-neutral-100); /** Used for the background of a default navigation item in the hover state. */
|
|
642
|
+
--gl-nav-item-background-color-active: var(--gl-color-neutral-200); /** Used for the background of a default navigation item in the active state. */
|
|
643
|
+
--gl-nav-item-selected-font-weight: var(--gl-font-weight-bold); /** Used for the font weight of a selected navigation item. */
|
|
644
|
+
--gl-nav-item-selected-foreground-color-default: var(--gl-color-neutral-950); /** Used for the foreground of a selected navigation item in the default state. */
|
|
645
|
+
--gl-nav-item-selected-background-color-default: var(--gl-color-neutral-100); /** Used for the background of a selected navigation item in the default state. */
|
|
638
646
|
--gl-progress-bar-track-color: var(--gl-color-neutral-200); /** Used for the track color for all progress-bar variants. */
|
|
639
647
|
--gl-skeleton-loader-background-color: var(--gl-color-neutral-100); /** Used for the skeleton loader background color. */
|
|
640
648
|
--gl-skeleton-loader-shimmer-color: var(--gl-color-neutral-50); /** Used for the animated shimmer effect in a skeleton loader. */
|
|
@@ -647,6 +655,7 @@
|
|
|
647
655
|
--gl-toggle-switch-track-color-checked-active: var(--gl-color-neutral-1000); /** Used for the track color of a checked toggle switch in the active state. */
|
|
648
656
|
--gl-token-selector-token-container-token-background-color-focus: var(--gl-color-neutral-300); /** Used for the background color of a token in a token-selector when it's token-container is in the focus state. */
|
|
649
657
|
--gl-token-background-color: var(--gl-color-neutral-100); /** Used for the token background color. */
|
|
658
|
+
--gl-tooltip-text-color-subtle: var(--gl-color-neutral-200); /** Used for supplemental tooltip text that is less prominent than the default text and remains the same color regardless of mode. */
|
|
650
659
|
--black: var(--gl-color-neutral-1000);
|
|
651
660
|
--white: var(--gl-color-neutral-0);
|
|
652
661
|
--blue-50: var(--gl-color-blue-50);
|
|
@@ -1001,14 +1010,11 @@
|
|
|
1001
1010
|
--gl-dropdown-option-background-color-unselected-active: var(--gl-action-neutral-background-color-active); /** Used for the background of an unselected dropdown option in the active state. */
|
|
1002
1011
|
--gl-dropdown-option-background-color-selected-focus: var(--gl-dropdown-option-background-color-selected-hover); /** Used for the background of a selected dropdown option in the focus state. */
|
|
1003
1012
|
--gl-modal-border-radius: var(--gl-border-radius-2xl); /** Used for modal border radius. */
|
|
1004
|
-
--gl-nav-item-foreground-color-
|
|
1005
|
-
--gl-nav-item-background-color-
|
|
1006
|
-
--gl-nav-item-
|
|
1007
|
-
--gl-nav-item-background-color-
|
|
1008
|
-
--gl-nav-item-selected-
|
|
1009
|
-
--gl-nav-item-selected-background-color-default: var(--gl-action-selected-background-color-default); /** Used for the background of a selected navigation item in the default state. */
|
|
1010
|
-
--gl-nav-item-selected-background-color-hover: var(--gl-action-selected-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1011
|
-
--gl-nav-item-selected-background-color-active: var(--gl-action-selected-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1013
|
+
--gl-nav-item-foreground-color-focus: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a default navigation item in the focus state. */
|
|
1014
|
+
--gl-nav-item-background-color-focus: var(--gl-nav-item-background-color-hover); /** Used for the background of a default navigation item in the focus state. */
|
|
1015
|
+
--gl-nav-item-selected-foreground-color-hover: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1016
|
+
--gl-nav-item-selected-background-color-hover: var(--gl-nav-item-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1017
|
+
--gl-nav-item-selected-background-color-active: var(--gl-nav-item-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1012
1018
|
--gl-progress-bar-indicator-color-default: var(--gl-status-info-icon-color); /** Used for the indicator color for the primary progress-bar variant. */
|
|
1013
1019
|
--gl-progress-bar-indicator-color-success: var(--gl-status-success-icon-color); /** Used for the indicator color for the success progress-bar variant. */
|
|
1014
1020
|
--gl-progress-bar-indicator-color-warning: var(--gl-status-warning-icon-color); /** Used for the indicator color for the warning progress-bar variant. */
|
|
@@ -1218,12 +1224,9 @@
|
|
|
1218
1224
|
--gl-dropdown-option-indicator-color-selected-active: var(--gl-control-background-color-selected-focus); /** Used for the dropdown selected option indicator in the active state. */
|
|
1219
1225
|
--gl-dropdown-option-background-color-unselected-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of an unselected dropdown option in the focus state. */
|
|
1220
1226
|
--gl-nav-item-border-radius: var(--gl-action-border-radius); /** Used for the border radius of a navigation item */
|
|
1221
|
-
--gl-nav-item-foreground-color-
|
|
1222
|
-
--gl-nav-item-foreground-color-focus: var(--gl-
|
|
1223
|
-
--gl-nav-item-
|
|
1224
|
-
--gl-nav-item-background-color-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of a default navigation item in the focus state. */
|
|
1225
|
-
--gl-nav-item-selected-foreground-color-hover: var(--gl-action-selected-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1226
|
-
--gl-nav-item-selected-background-color-focus: var(--gl-action-selected-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1227
|
+
--gl-nav-item-foreground-color-active: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a default navigation item in the active state. */
|
|
1228
|
+
--gl-nav-item-selected-foreground-color-focus: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a selected navigation item in the focus state. */
|
|
1229
|
+
--gl-nav-item-selected-background-color-focus: var(--gl-nav-item-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1227
1230
|
--gl-tab-selected-indicator-color-default: var(--gl-action-selected-border-color-active); /** Used for the selected indicator of a tab. */
|
|
1228
1231
|
--gl-toggle-switch-track-color-unchecked-hover: var(--gl-toggle-switch-track-color-unchecked-default); /** Used for the track color of an unchecked toggle switch in the hover state. */
|
|
1229
1232
|
--gl-toggle-switch-background-color-unchecked-hover: var(--gl-toggle-switch-background-color-unchecked-default); /** Used for the background color of the unchecked toggle switch thumb in the hover state. */
|
|
@@ -1241,7 +1244,7 @@
|
|
|
1241
1244
|
--gl-action-strong-neutral-border-color-focus: var(--gl-action-strong-neutral-border-color-hover); /** Used for the border of a strong neutral action in the focus state. */
|
|
1242
1245
|
--gl-control-border-color-selected-focus: var(--gl-control-background-color-selected-focus); /** Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus. */
|
|
1243
1246
|
--gl-button-confirm-primary-foreground-color-active: var(--gl-button-confirm-primary-foreground-color-focus); /** Used for the foreground of a confirm (positive) primary button in the active state. */
|
|
1244
|
-
--gl-nav-item-selected-foreground-color-
|
|
1247
|
+
--gl-nav-item-selected-foreground-color-active: var(--gl-nav-item-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1245
1248
|
--gl-toggle-switch-track-color-unchecked-focus: var(--gl-toggle-switch-track-color-unchecked-hover); /** Used for the track color of an unchecked toggle switch in the focus state. */
|
|
1246
1249
|
--gl-toggle-switch-background-color-checked-focus: var(--gl-action-strong-confirm-foreground-color-focus); /** Used for the background color of the checked toggle switch thumb in the focus state. */
|
|
1247
1250
|
--gl-action-selected-foreground-color-active: var(--gl-action-selected-foreground-color-focus); /** Used for the foreground of a selected action in the active state. */
|
|
@@ -1249,7 +1252,6 @@
|
|
|
1249
1252
|
--gl-action-strong-confirm-border-color-active: var(--gl-action-strong-confirm-border-color-focus); /** Used for the border of a strong confirm action in the active state. */
|
|
1250
1253
|
--gl-action-strong-neutral-foreground-color-active: var(--gl-action-strong-neutral-foreground-color-focus); /** Used for the foreground of a strong neutral action in the active state. */
|
|
1251
1254
|
--gl-action-strong-neutral-border-color-active: var(--gl-action-strong-neutral-border-color-focus); /** Used for the border of a strong neutral action in the active state. */
|
|
1252
|
-
--gl-nav-item-selected-foreground-color-active: var(--gl-action-selected-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1253
1255
|
--gl-toggle-switch-track-color-unchecked-active: var(--gl-toggle-switch-track-color-unchecked-focus); /** Used for the track color of an unchecked toggle switch in the active state. */
|
|
1254
1256
|
--gl-toggle-switch-background-color-checked-active: var(--gl-action-strong-confirm-foreground-color-active); /** Used for the background color of the checked toggle switch thumb in the active state. */
|
|
1255
1257
|
}
|
|
@@ -653,6 +653,14 @@
|
|
|
653
653
|
--gl-link-mention-background-color-default: var(--gl-color-blue-800); /** Used for the mention link default background. */
|
|
654
654
|
--gl-link-mention-background-color-current: var(--gl-color-orange-800); /** Used for the mention link background when referencing the current user. */
|
|
655
655
|
--gl-nav-item-font-size: var(--gl-font-size-300); /** Used for the font size of a navigation item */
|
|
656
|
+
--gl-nav-item-foreground-color-default: var(--gl-color-neutral-200); /** Used for the foreground of a default navigation item in the default state. */
|
|
657
|
+
--gl-nav-item-foreground-color-hover: var(--gl-color-neutral-0); /** Used for the foreground of a default navigation item in the hover state. */
|
|
658
|
+
--gl-nav-item-background-color-default: var(--gl-color-alpha-0); /** Used for the background of a default navigation item in the default state. */
|
|
659
|
+
--gl-nav-item-background-color-hover: var(--gl-color-neutral-900); /** Used for the background of a default navigation item in the hover state. */
|
|
660
|
+
--gl-nav-item-background-color-active: var(--gl-color-neutral-950); /** Used for the background of a default navigation item in the active state. */
|
|
661
|
+
--gl-nav-item-selected-font-weight: var(--gl-font-weight-bold); /** Used for the font weight of a selected navigation item. */
|
|
662
|
+
--gl-nav-item-selected-foreground-color-default: var(--gl-color-neutral-0); /** Used for the foreground of a selected navigation item in the default state. */
|
|
663
|
+
--gl-nav-item-selected-background-color-default: var(--gl-color-neutral-900); /** Used for the background of a selected navigation item in the default state. */
|
|
656
664
|
--gl-progress-bar-track-color: var(--gl-color-neutral-700); /** Used for the track color for all progress-bar variants. */
|
|
657
665
|
--gl-skeleton-loader-background-color: var(--gl-color-neutral-800); /** Used for the skeleton loader background color. */
|
|
658
666
|
--gl-skeleton-loader-shimmer-color: var(--gl-color-neutral-700); /** Used for the animated shimmer effect in a skeleton loader. */
|
|
@@ -665,6 +673,7 @@
|
|
|
665
673
|
--gl-toggle-switch-track-color-checked-active: var(--gl-color-neutral-0); /** Used for the track color of a checked toggle switch in the active state. */
|
|
666
674
|
--gl-token-selector-token-container-token-background-color-focus: var(--gl-color-neutral-600); /** Used for the background color of a token in a token-selector when it's token-container is in the focus state. */
|
|
667
675
|
--gl-token-background-color: var(--gl-color-neutral-800); /** Used for the token background color. */
|
|
676
|
+
--gl-tooltip-text-color-subtle: var(--gl-color-neutral-200); /** Used for supplemental tooltip text that is less prominent than the default text and remains the same color regardless of mode. */
|
|
668
677
|
--black: var(--gl-color-neutral-0);
|
|
669
678
|
--white: var(--gl-color-neutral-900);
|
|
670
679
|
--blue-50: var(--gl-color-blue-900);
|
|
@@ -1008,14 +1017,11 @@
|
|
|
1008
1017
|
--gl-dropdown-option-background-color-unselected-active: var(--gl-action-neutral-background-color-active); /** Used for the background of an unselected dropdown option in the active state. */
|
|
1009
1018
|
--gl-dropdown-option-background-color-selected-focus: var(--gl-dropdown-option-background-color-selected-hover); /** Used for the background of a selected dropdown option in the focus state. */
|
|
1010
1019
|
--gl-modal-border-radius: var(--gl-border-radius-2xl); /** Used for modal border radius. */
|
|
1011
|
-
--gl-nav-item-foreground-color-
|
|
1012
|
-
--gl-nav-item-background-color-
|
|
1013
|
-
--gl-nav-item-
|
|
1014
|
-
--gl-nav-item-background-color-
|
|
1015
|
-
--gl-nav-item-selected-
|
|
1016
|
-
--gl-nav-item-selected-background-color-default: var(--gl-action-selected-background-color-default); /** Used for the background of a selected navigation item in the default state. */
|
|
1017
|
-
--gl-nav-item-selected-background-color-hover: var(--gl-action-selected-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1018
|
-
--gl-nav-item-selected-background-color-active: var(--gl-action-selected-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1020
|
+
--gl-nav-item-foreground-color-focus: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a default navigation item in the focus state. */
|
|
1021
|
+
--gl-nav-item-background-color-focus: var(--gl-nav-item-background-color-hover); /** Used for the background of a default navigation item in the focus state. */
|
|
1022
|
+
--gl-nav-item-selected-foreground-color-hover: var(--gl-nav-item-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1023
|
+
--gl-nav-item-selected-background-color-hover: var(--gl-nav-item-background-color-hover); /** Used for the background of a selected navigation item in the hover state. */
|
|
1024
|
+
--gl-nav-item-selected-background-color-active: var(--gl-nav-item-background-color-active); /** Used for the background of a selected navigation item in the active state. */
|
|
1019
1025
|
--gl-progress-bar-indicator-color-default: var(--gl-status-info-icon-color); /** Used for the indicator color for the primary progress-bar variant. */
|
|
1020
1026
|
--gl-progress-bar-indicator-color-success: var(--gl-status-success-icon-color); /** Used for the indicator color for the success progress-bar variant. */
|
|
1021
1027
|
--gl-progress-bar-indicator-color-warning: var(--gl-status-warning-icon-color); /** Used for the indicator color for the warning progress-bar variant. */
|
|
@@ -1220,12 +1226,9 @@
|
|
|
1220
1226
|
--gl-dropdown-option-indicator-color-selected-active: var(--gl-control-background-color-selected-focus); /** Used for the dropdown selected option indicator in the active state. */
|
|
1221
1227
|
--gl-dropdown-option-background-color-unselected-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of an unselected dropdown option in the focus state. */
|
|
1222
1228
|
--gl-nav-item-border-radius: var(--gl-action-border-radius); /** Used for the border radius of a navigation item */
|
|
1223
|
-
--gl-nav-item-foreground-color-
|
|
1224
|
-
--gl-nav-item-foreground-color-focus: var(--gl-
|
|
1225
|
-
--gl-nav-item-
|
|
1226
|
-
--gl-nav-item-background-color-focus: var(--gl-action-neutral-background-color-focus); /** Used for the background of a default navigation item in the focus state. */
|
|
1227
|
-
--gl-nav-item-selected-foreground-color-hover: var(--gl-action-selected-foreground-color-hover); /** Used for the foreground of a selected navigation item in the hover state. */
|
|
1228
|
-
--gl-nav-item-selected-background-color-focus: var(--gl-action-selected-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1229
|
+
--gl-nav-item-foreground-color-active: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a default navigation item in the active state. */
|
|
1230
|
+
--gl-nav-item-selected-foreground-color-focus: var(--gl-nav-item-foreground-color-focus); /** Used for the foreground of a selected navigation item in the focus state. */
|
|
1231
|
+
--gl-nav-item-selected-background-color-focus: var(--gl-nav-item-background-color-focus); /** Used for the background of a selected navigation item in the focus state. */
|
|
1229
1232
|
--gl-tab-selected-indicator-color-default: var(--gl-action-selected-border-color-active); /** Used for the selected indicator of a tab. */
|
|
1230
1233
|
--gl-toggle-switch-track-color-unchecked-hover: var(--gl-toggle-switch-track-color-unchecked-default); /** Used for the track color of an unchecked toggle switch in the hover state. */
|
|
1231
1234
|
--gl-toggle-switch-background-color-unchecked-hover: var(--gl-toggle-switch-background-color-unchecked-default); /** Used for the background color of the unchecked toggle switch thumb in the hover state. */
|
|
@@ -1242,14 +1245,13 @@
|
|
|
1242
1245
|
--gl-action-strong-neutral-border-color-focus: var(--gl-action-strong-neutral-border-color-hover); /** Used for the border of a strong neutral action in the focus state. */
|
|
1243
1246
|
--gl-control-border-color-selected-focus: var(--gl-control-background-color-selected-focus); /** Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus. */
|
|
1244
1247
|
--gl-button-confirm-primary-foreground-color-active: var(--gl-button-confirm-primary-foreground-color-focus); /** Used for the foreground of a confirm (positive) primary button in the active state. */
|
|
1245
|
-
--gl-nav-item-selected-foreground-color-
|
|
1248
|
+
--gl-nav-item-selected-foreground-color-active: var(--gl-nav-item-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1246
1249
|
--gl-toggle-switch-track-color-unchecked-focus: var(--gl-toggle-switch-track-color-unchecked-hover); /** Used for the track color of an unchecked toggle switch in the focus state. */
|
|
1247
1250
|
--gl-toggle-switch-background-color-checked-focus: var(--gl-action-strong-confirm-foreground-color-focus); /** Used for the background color of the checked toggle switch thumb in the focus state. */
|
|
1248
1251
|
--gl-action-selected-foreground-color-active: var(--gl-action-selected-foreground-color-focus); /** Used for the foreground of a selected action in the active state. */
|
|
1249
1252
|
--gl-action-strong-confirm-foreground-color-active: var(--gl-action-strong-confirm-foreground-color-focus); /** Used for the foreground of a strong confirm action in the active state. */
|
|
1250
1253
|
--gl-action-strong-confirm-border-color-active: var(--gl-action-strong-confirm-border-color-focus); /** Used for the border of a strong confirm action in the active state. */
|
|
1251
1254
|
--gl-action-strong-neutral-border-color-active: var(--gl-action-strong-neutral-border-color-focus); /** Used for the border of a strong neutral action in the active state. */
|
|
1252
|
-
--gl-nav-item-selected-foreground-color-active: var(--gl-action-selected-foreground-color-active); /** Used for the foreground of a selected navigation item in the active state. */
|
|
1253
1255
|
--gl-toggle-switch-track-color-unchecked-active: var(--gl-toggle-switch-track-color-unchecked-focus); /** Used for the track color of an unchecked toggle switch in the active state. */
|
|
1254
1256
|
--gl-toggle-switch-background-color-checked-active: var(--gl-action-strong-confirm-foreground-color-active); /** Used for the background color of the checked toggle switch thumb in the active state. */
|
|
1255
1257
|
}
|
|
@@ -4802,7 +4802,7 @@
|
|
|
4802
4802
|
}
|
|
4803
4803
|
},
|
|
4804
4804
|
"🔒/nav-item-foreground-color-default": {
|
|
4805
|
-
"$value": "{
|
|
4805
|
+
"$value": "{color-neutral-200}",
|
|
4806
4806
|
"$type": "color",
|
|
4807
4807
|
"$description": "Used for the foreground of a default navigation item in the default state.",
|
|
4808
4808
|
"$extensions": {
|
|
@@ -4812,7 +4812,7 @@
|
|
|
4812
4812
|
}
|
|
4813
4813
|
},
|
|
4814
4814
|
"🔒/nav-item-foreground-color-hover": {
|
|
4815
|
-
"$value": "{
|
|
4815
|
+
"$value": "{color-neutral-0}",
|
|
4816
4816
|
"$type": "color",
|
|
4817
4817
|
"$description": "Used for the foreground of a default navigation item in the hover state.",
|
|
4818
4818
|
"$extensions": {
|
|
@@ -4822,7 +4822,7 @@
|
|
|
4822
4822
|
}
|
|
4823
4823
|
},
|
|
4824
4824
|
"🔒/nav-item-foreground-color-focus": {
|
|
4825
|
-
"$value": "{
|
|
4825
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4826
4826
|
"$type": "color",
|
|
4827
4827
|
"$description": "Used for the foreground of a default navigation item in the focus state.",
|
|
4828
4828
|
"$extensions": {
|
|
@@ -4832,7 +4832,7 @@
|
|
|
4832
4832
|
}
|
|
4833
4833
|
},
|
|
4834
4834
|
"🔒/nav-item-foreground-color-active": {
|
|
4835
|
-
"$value": "{
|
|
4835
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4836
4836
|
"$type": "color",
|
|
4837
4837
|
"$description": "Used for the foreground of a default navigation item in the active state.",
|
|
4838
4838
|
"$extensions": {
|
|
@@ -4842,7 +4842,7 @@
|
|
|
4842
4842
|
}
|
|
4843
4843
|
},
|
|
4844
4844
|
"🔒/nav-item-background-color-default": {
|
|
4845
|
-
"$value": "{
|
|
4845
|
+
"$value": "{color-alpha-0}",
|
|
4846
4846
|
"$type": "color",
|
|
4847
4847
|
"$description": "Used for the background of a default navigation item in the default state.",
|
|
4848
4848
|
"$extensions": {
|
|
@@ -4852,7 +4852,7 @@
|
|
|
4852
4852
|
}
|
|
4853
4853
|
},
|
|
4854
4854
|
"🔒/nav-item-background-color-hover": {
|
|
4855
|
-
"$value": "{
|
|
4855
|
+
"$value": "{color-neutral-900}",
|
|
4856
4856
|
"$type": "color",
|
|
4857
4857
|
"$description": "Used for the background of a default navigation item in the hover state.",
|
|
4858
4858
|
"$extensions": {
|
|
@@ -4862,7 +4862,7 @@
|
|
|
4862
4862
|
}
|
|
4863
4863
|
},
|
|
4864
4864
|
"🔒/nav-item-background-color-focus": {
|
|
4865
|
-
"$value": "{
|
|
4865
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4866
4866
|
"$type": "color",
|
|
4867
4867
|
"$description": "Used for the background of a default navigation item in the focus state.",
|
|
4868
4868
|
"$extensions": {
|
|
@@ -4872,7 +4872,7 @@
|
|
|
4872
4872
|
}
|
|
4873
4873
|
},
|
|
4874
4874
|
"🔒/nav-item-background-color-active": {
|
|
4875
|
-
"$value": "{
|
|
4875
|
+
"$value": "{color-neutral-950}",
|
|
4876
4876
|
"$type": "color",
|
|
4877
4877
|
"$description": "Used for the background of a default navigation item in the active state.",
|
|
4878
4878
|
"$extensions": {
|
|
@@ -4881,8 +4881,18 @@
|
|
|
4881
4881
|
]
|
|
4882
4882
|
}
|
|
4883
4883
|
},
|
|
4884
|
+
"🔒/nav-item-selected-font-weight": {
|
|
4885
|
+
"$value": "{font-weight-bold}",
|
|
4886
|
+
"$type": "fontWeight",
|
|
4887
|
+
"$description": "Used for the font weight of a selected navigation item.",
|
|
4888
|
+
"$extensions": {
|
|
4889
|
+
"com.figma.scopes": [
|
|
4890
|
+
"FONT_WEIGHT"
|
|
4891
|
+
]
|
|
4892
|
+
}
|
|
4893
|
+
},
|
|
4884
4894
|
"🔒/nav-item-selected-foreground-color-default": {
|
|
4885
|
-
"$value": "{
|
|
4895
|
+
"$value": "{color-neutral-0}",
|
|
4886
4896
|
"$type": "color",
|
|
4887
4897
|
"$description": "Used for the foreground of a selected navigation item in the default state.",
|
|
4888
4898
|
"$extensions": {
|
|
@@ -4892,7 +4902,7 @@
|
|
|
4892
4902
|
}
|
|
4893
4903
|
},
|
|
4894
4904
|
"🔒/nav-item-selected-foreground-color-hover": {
|
|
4895
|
-
"$value": "{
|
|
4905
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4896
4906
|
"$type": "color",
|
|
4897
4907
|
"$description": "Used for the foreground of a selected navigation item in the hover state.",
|
|
4898
4908
|
"$extensions": {
|
|
@@ -4902,7 +4912,7 @@
|
|
|
4902
4912
|
}
|
|
4903
4913
|
},
|
|
4904
4914
|
"🔒/nav-item-selected-foreground-color-focus": {
|
|
4905
|
-
"$value": "{
|
|
4915
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4906
4916
|
"$type": "color",
|
|
4907
4917
|
"$description": "Used for the foreground of a selected navigation item in the focus state.",
|
|
4908
4918
|
"$extensions": {
|
|
@@ -4912,7 +4922,7 @@
|
|
|
4912
4922
|
}
|
|
4913
4923
|
},
|
|
4914
4924
|
"🔒/nav-item-selected-foreground-color-active": {
|
|
4915
|
-
"$value": "{
|
|
4925
|
+
"$value": "{🔒/nav-item-foreground-color-active}",
|
|
4916
4926
|
"$type": "color",
|
|
4917
4927
|
"$description": "Used for the foreground of a selected navigation item in the active state.",
|
|
4918
4928
|
"$extensions": {
|
|
@@ -4922,7 +4932,7 @@
|
|
|
4922
4932
|
}
|
|
4923
4933
|
},
|
|
4924
4934
|
"🔒/nav-item-selected-background-color-default": {
|
|
4925
|
-
"$value": "{
|
|
4935
|
+
"$value": "{color-neutral-900}",
|
|
4926
4936
|
"$type": "color",
|
|
4927
4937
|
"$description": "Used for the background of a selected navigation item in the default state.",
|
|
4928
4938
|
"$extensions": {
|
|
@@ -4932,7 +4942,7 @@
|
|
|
4932
4942
|
}
|
|
4933
4943
|
},
|
|
4934
4944
|
"🔒/nav-item-selected-background-color-hover": {
|
|
4935
|
-
"$value": "{
|
|
4945
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4936
4946
|
"$type": "color",
|
|
4937
4947
|
"$description": "Used for the background of a selected navigation item in the hover state.",
|
|
4938
4948
|
"$extensions": {
|
|
@@ -4942,7 +4952,7 @@
|
|
|
4942
4952
|
}
|
|
4943
4953
|
},
|
|
4944
4954
|
"🔒/nav-item-selected-background-color-focus": {
|
|
4945
|
-
"$value": "{
|
|
4955
|
+
"$value": "{🔒/nav-item-background-color-focus}",
|
|
4946
4956
|
"$type": "color",
|
|
4947
4957
|
"$description": "Used for the background of a selected navigation item in the focus state.",
|
|
4948
4958
|
"$extensions": {
|
|
@@ -4952,7 +4962,7 @@
|
|
|
4952
4962
|
}
|
|
4953
4963
|
},
|
|
4954
4964
|
"🔒/nav-item-selected-background-color-active": {
|
|
4955
|
-
"$value": "{
|
|
4965
|
+
"$value": "{🔒/nav-item-background-color-active}",
|
|
4956
4966
|
"$type": "color",
|
|
4957
4967
|
"$description": "Used for the background of a selected navigation item in the active state.",
|
|
4958
4968
|
"$extensions": {
|
|
@@ -5429,6 +5439,16 @@
|
|
|
5429
5439
|
]
|
|
5430
5440
|
}
|
|
5431
5441
|
},
|
|
5442
|
+
"🔒/tooltip-text-color-subtle": {
|
|
5443
|
+
"$value": "{color-neutral-200}",
|
|
5444
|
+
"$type": "color",
|
|
5445
|
+
"$description": "Used for supplemental tooltip text that is less prominent than the default text and remains the same color regardless of mode.",
|
|
5446
|
+
"$extensions": {
|
|
5447
|
+
"com.figma.scopes": [
|
|
5448
|
+
"TEXT_FILL"
|
|
5449
|
+
]
|
|
5450
|
+
}
|
|
5451
|
+
},
|
|
5432
5452
|
"action-border-radius": {
|
|
5433
5453
|
"$value": "{border-radius-lg}",
|
|
5434
5454
|
"$type": "dimension",
|
|
@@ -4746,7 +4746,7 @@
|
|
|
4746
4746
|
}
|
|
4747
4747
|
},
|
|
4748
4748
|
"🔒/nav-item-foreground-color-default": {
|
|
4749
|
-
"$value": "{
|
|
4749
|
+
"$value": "{color-neutral-600}",
|
|
4750
4750
|
"$type": "color",
|
|
4751
4751
|
"$description": "Used for the foreground of a default navigation item in the default state.",
|
|
4752
4752
|
"$extensions": {
|
|
@@ -4756,7 +4756,7 @@
|
|
|
4756
4756
|
}
|
|
4757
4757
|
},
|
|
4758
4758
|
"🔒/nav-item-foreground-color-hover": {
|
|
4759
|
-
"$value": "{
|
|
4759
|
+
"$value": "{color-neutral-950}",
|
|
4760
4760
|
"$type": "color",
|
|
4761
4761
|
"$description": "Used for the foreground of a default navigation item in the hover state.",
|
|
4762
4762
|
"$extensions": {
|
|
@@ -4766,7 +4766,7 @@
|
|
|
4766
4766
|
}
|
|
4767
4767
|
},
|
|
4768
4768
|
"🔒/nav-item-foreground-color-focus": {
|
|
4769
|
-
"$value": "{
|
|
4769
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4770
4770
|
"$type": "color",
|
|
4771
4771
|
"$description": "Used for the foreground of a default navigation item in the focus state.",
|
|
4772
4772
|
"$extensions": {
|
|
@@ -4776,7 +4776,7 @@
|
|
|
4776
4776
|
}
|
|
4777
4777
|
},
|
|
4778
4778
|
"🔒/nav-item-foreground-color-active": {
|
|
4779
|
-
"$value": "{
|
|
4779
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4780
4780
|
"$type": "color",
|
|
4781
4781
|
"$description": "Used for the foreground of a default navigation item in the active state.",
|
|
4782
4782
|
"$extensions": {
|
|
@@ -4786,7 +4786,7 @@
|
|
|
4786
4786
|
}
|
|
4787
4787
|
},
|
|
4788
4788
|
"🔒/nav-item-background-color-default": {
|
|
4789
|
-
"$value": "{
|
|
4789
|
+
"$value": "{color-alpha-0}",
|
|
4790
4790
|
"$type": "color",
|
|
4791
4791
|
"$description": "Used for the background of a default navigation item in the default state.",
|
|
4792
4792
|
"$extensions": {
|
|
@@ -4796,7 +4796,7 @@
|
|
|
4796
4796
|
}
|
|
4797
4797
|
},
|
|
4798
4798
|
"🔒/nav-item-background-color-hover": {
|
|
4799
|
-
"$value": "{
|
|
4799
|
+
"$value": "{color-neutral-100}",
|
|
4800
4800
|
"$type": "color",
|
|
4801
4801
|
"$description": "Used for the background of a default navigation item in the hover state.",
|
|
4802
4802
|
"$extensions": {
|
|
@@ -4806,7 +4806,7 @@
|
|
|
4806
4806
|
}
|
|
4807
4807
|
},
|
|
4808
4808
|
"🔒/nav-item-background-color-focus": {
|
|
4809
|
-
"$value": "{
|
|
4809
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4810
4810
|
"$type": "color",
|
|
4811
4811
|
"$description": "Used for the background of a default navigation item in the focus state.",
|
|
4812
4812
|
"$extensions": {
|
|
@@ -4816,7 +4816,7 @@
|
|
|
4816
4816
|
}
|
|
4817
4817
|
},
|
|
4818
4818
|
"🔒/nav-item-background-color-active": {
|
|
4819
|
-
"$value": "{
|
|
4819
|
+
"$value": "{color-neutral-200}",
|
|
4820
4820
|
"$type": "color",
|
|
4821
4821
|
"$description": "Used for the background of a default navigation item in the active state.",
|
|
4822
4822
|
"$extensions": {
|
|
@@ -4825,8 +4825,18 @@
|
|
|
4825
4825
|
]
|
|
4826
4826
|
}
|
|
4827
4827
|
},
|
|
4828
|
+
"🔒/nav-item-selected-font-weight": {
|
|
4829
|
+
"$value": "{font-weight-bold}",
|
|
4830
|
+
"$type": "fontWeight",
|
|
4831
|
+
"$description": "Used for the font weight of a selected navigation item.",
|
|
4832
|
+
"$extensions": {
|
|
4833
|
+
"com.figma.scopes": [
|
|
4834
|
+
"FONT_WEIGHT"
|
|
4835
|
+
]
|
|
4836
|
+
}
|
|
4837
|
+
},
|
|
4828
4838
|
"🔒/nav-item-selected-foreground-color-default": {
|
|
4829
|
-
"$value": "{
|
|
4839
|
+
"$value": "{color-neutral-950}",
|
|
4830
4840
|
"$type": "color",
|
|
4831
4841
|
"$description": "Used for the foreground of a selected navigation item in the default state.",
|
|
4832
4842
|
"$extensions": {
|
|
@@ -4836,7 +4846,7 @@
|
|
|
4836
4846
|
}
|
|
4837
4847
|
},
|
|
4838
4848
|
"🔒/nav-item-selected-foreground-color-hover": {
|
|
4839
|
-
"$value": "{
|
|
4849
|
+
"$value": "{🔒/nav-item-foreground-color-hover}",
|
|
4840
4850
|
"$type": "color",
|
|
4841
4851
|
"$description": "Used for the foreground of a selected navigation item in the hover state.",
|
|
4842
4852
|
"$extensions": {
|
|
@@ -4846,7 +4856,7 @@
|
|
|
4846
4856
|
}
|
|
4847
4857
|
},
|
|
4848
4858
|
"🔒/nav-item-selected-foreground-color-focus": {
|
|
4849
|
-
"$value": "{
|
|
4859
|
+
"$value": "{🔒/nav-item-foreground-color-focus}",
|
|
4850
4860
|
"$type": "color",
|
|
4851
4861
|
"$description": "Used for the foreground of a selected navigation item in the focus state.",
|
|
4852
4862
|
"$extensions": {
|
|
@@ -4856,7 +4866,7 @@
|
|
|
4856
4866
|
}
|
|
4857
4867
|
},
|
|
4858
4868
|
"🔒/nav-item-selected-foreground-color-active": {
|
|
4859
|
-
"$value": "{
|
|
4869
|
+
"$value": "{🔒/nav-item-foreground-color-active}",
|
|
4860
4870
|
"$type": "color",
|
|
4861
4871
|
"$description": "Used for the foreground of a selected navigation item in the active state.",
|
|
4862
4872
|
"$extensions": {
|
|
@@ -4866,7 +4876,7 @@
|
|
|
4866
4876
|
}
|
|
4867
4877
|
},
|
|
4868
4878
|
"🔒/nav-item-selected-background-color-default": {
|
|
4869
|
-
"$value": "{
|
|
4879
|
+
"$value": "{color-neutral-100}",
|
|
4870
4880
|
"$type": "color",
|
|
4871
4881
|
"$description": "Used for the background of a selected navigation item in the default state.",
|
|
4872
4882
|
"$extensions": {
|
|
@@ -4876,7 +4886,7 @@
|
|
|
4876
4886
|
}
|
|
4877
4887
|
},
|
|
4878
4888
|
"🔒/nav-item-selected-background-color-hover": {
|
|
4879
|
-
"$value": "{
|
|
4889
|
+
"$value": "{🔒/nav-item-background-color-hover}",
|
|
4880
4890
|
"$type": "color",
|
|
4881
4891
|
"$description": "Used for the background of a selected navigation item in the hover state.",
|
|
4882
4892
|
"$extensions": {
|
|
@@ -4886,7 +4896,7 @@
|
|
|
4886
4896
|
}
|
|
4887
4897
|
},
|
|
4888
4898
|
"🔒/nav-item-selected-background-color-focus": {
|
|
4889
|
-
"$value": "{
|
|
4899
|
+
"$value": "{🔒/nav-item-background-color-focus}",
|
|
4890
4900
|
"$type": "color",
|
|
4891
4901
|
"$description": "Used for the background of a selected navigation item in the focus state.",
|
|
4892
4902
|
"$extensions": {
|
|
@@ -4896,7 +4906,7 @@
|
|
|
4896
4906
|
}
|
|
4897
4907
|
},
|
|
4898
4908
|
"🔒/nav-item-selected-background-color-active": {
|
|
4899
|
-
"$value": "{
|
|
4909
|
+
"$value": "{🔒/nav-item-background-color-active}",
|
|
4900
4910
|
"$type": "color",
|
|
4901
4911
|
"$description": "Used for the background of a selected navigation item in the active state.",
|
|
4902
4912
|
"$extensions": {
|
|
@@ -5373,6 +5383,16 @@
|
|
|
5373
5383
|
]
|
|
5374
5384
|
}
|
|
5375
5385
|
},
|
|
5386
|
+
"🔒/tooltip-text-color-subtle": {
|
|
5387
|
+
"$value": "{color-neutral-200}",
|
|
5388
|
+
"$type": "color",
|
|
5389
|
+
"$description": "Used for supplemental tooltip text that is less prominent than the default text and remains the same color regardless of mode.",
|
|
5390
|
+
"$extensions": {
|
|
5391
|
+
"com.figma.scopes": [
|
|
5392
|
+
"TEXT_FILL"
|
|
5393
|
+
]
|
|
5394
|
+
}
|
|
5395
|
+
},
|
|
5376
5396
|
"action-border-radius": {
|
|
5377
5397
|
"$value": "{border-radius-lg}",
|
|
5378
5398
|
"$type": "dimension",
|