@gitlab/ui 108.5.0 → 108.7.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/CHANGELOG.md +14 -0
- package/dist/components/charts/stacked_column/stacked_column.js +37 -27
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +12 -12
- package/dist/tokens/build/js/tokens.js +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +11 -11
- package/dist/tokens/js/tokens.dark.js +12 -12
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/json/tokens.dark.json +47 -23
- package/dist/tokens/json/tokens.json +36 -12
- package/dist/tokens/scss/_tokens.dark.scss +11 -11
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utils/charts/config.js +2 -1
- package/package.json +1 -1
- package/src/components/base/button/button.scss +32 -1
- package/src/components/base/button_group/button_group.scss +7 -7
- package/src/components/charts/stacked_column/stacked_column.vue +36 -34
- package/src/tokens/build/css/tokens.css +1 -1
- package/src/tokens/build/css/tokens.dark.css +11 -11
- package/src/tokens/build/js/tokens.dark.js +12 -12
- package/src/tokens/build/js/tokens.js +1 -1
- package/src/tokens/build/json/tokens.dark.json +47 -23
- package/src/tokens/build/json/tokens.json +36 -12
- package/src/tokens/build/scss/_tokens.dark.scss +11 -11
- package/src/tokens/build/scss/_tokens.scss +1 -1
- package/src/tokens/contextual/button.tokens.json +35 -11
- package/src/utils/charts/config.js +2 -1
|
@@ -609,18 +609,18 @@ const GL_BUTTON_LINK_TEXT_COLOR_DEFAULT = '#9dc7f1';
|
|
|
609
609
|
const GL_BUTTON_LINK_TEXT_COLOR_HOVER = '#9dc7f1';
|
|
610
610
|
const GL_BUTTON_LINK_TEXT_COLOR_FOCUS = '#9dc7f1';
|
|
611
611
|
const GL_BUTTON_LINK_TEXT_COLOR_ACTIVE = '#9dc7f1';
|
|
612
|
-
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#
|
|
613
|
-
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#
|
|
614
|
-
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#
|
|
615
|
-
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#
|
|
616
|
-
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '
|
|
617
|
-
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '
|
|
618
|
-
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '
|
|
619
|
-
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '
|
|
620
|
-
const GL_BUTTON_SELECTED_BORDER_COLOR_DEFAULT = '
|
|
621
|
-
const GL_BUTTON_SELECTED_BORDER_COLOR_HOVER = '
|
|
622
|
-
const GL_BUTTON_SELECTED_BORDER_COLOR_FOCUS = '
|
|
623
|
-
const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = '
|
|
612
|
+
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#28272d';
|
|
613
|
+
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#18171d';
|
|
614
|
+
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#18171d';
|
|
615
|
+
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#18171d';
|
|
616
|
+
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#a4a3a8';
|
|
617
|
+
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '#bfbfc3';
|
|
618
|
+
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '#bfbfc3';
|
|
619
|
+
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '#89888d';
|
|
620
|
+
const GL_BUTTON_SELECTED_BORDER_COLOR_DEFAULT = 'transparent';
|
|
621
|
+
const GL_BUTTON_SELECTED_BORDER_COLOR_HOVER = 'transparent';
|
|
622
|
+
const GL_BUTTON_SELECTED_BORDER_COLOR_FOCUS = 'transparent';
|
|
623
|
+
const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = 'transparent';
|
|
624
624
|
const GL_BUTTON_DISABLED_FOREGROUND_COLOR = '#89888d';
|
|
625
625
|
const GL_BUTTON_DISABLED_BACKGROUND_COLOR = 'rgba(137, 136, 141, 0.16)';
|
|
626
626
|
const GL_BUTTON_DISABLED_BORDER_COLOR = 'transparent';
|
|
@@ -613,7 +613,7 @@ const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#3a383f';
|
|
|
613
613
|
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#3a383f';
|
|
614
614
|
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#3a383f';
|
|
615
615
|
const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#3a383f';
|
|
616
|
-
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#
|
|
616
|
+
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#ececef';
|
|
617
617
|
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '#ececef';
|
|
618
618
|
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '#ececef';
|
|
619
619
|
const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '#dcdcde';
|
|
@@ -743,6 +743,7 @@
|
|
|
743
743
|
--gl-button-danger-tertiary-background-color-active: var(--gl-action-danger-background-color-active); /* Used for the background of a borderless, tertiary danger (destructive) button in the active state. */
|
|
744
744
|
--gl-button-dashed-border-color-default: var(--gl-color-neutral-400); /* Used for the border of a dashed button in the default state. */
|
|
745
745
|
--gl-button-dashed-border-color-active: var(--gl-color-neutral-600); /* Used for the border of a dashed button in the active state. */
|
|
746
|
+
--gl-button-selected-background-color-default: var(--gl-color-neutral-50); /* Used for the background of a selected button in the default state. */
|
|
746
747
|
--gl-button-selected-border-color-default: var(--gl-color-neutral-300); /* Used for the border of a selected button in the default state. */
|
|
747
748
|
--gl-button-selected-border-color-hover: var(--gl-color-neutral-400); /* Used for the border of a selected button in the hover state. */
|
|
748
749
|
--gl-button-selected-border-color-active: var(--gl-color-neutral-600); /* Used for the border of a selected button in the active state. */
|
|
@@ -957,7 +958,6 @@
|
|
|
957
958
|
--gl-button-dashed-border-color-focus: var(--gl-button-dashed-border-color-default); /* Used for the border of a dashed button in the focus state. */
|
|
958
959
|
--gl-button-link-text-color-default: var(--gl-text-color-link); /* Used for the text of a link button in the default state. */
|
|
959
960
|
--gl-button-selected-foreground-color-default: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a selected button in the default state. */
|
|
960
|
-
--gl-button-selected-background-color-default: var(--gl-button-default-primary-background-color-default); /* Used for the background of a selected button in the default state. */
|
|
961
961
|
--gl-button-selected-background-color-hover: var(--gl-button-default-primary-background-color-hover); /* Used for the background of a selected button in the hover state. */
|
|
962
962
|
--gl-button-selected-background-color-active: var(--gl-button-default-primary-background-color-active); /* Used for the background of a selected button in the active state. */
|
|
963
963
|
--gl-button-selected-border-color-focus: var(--gl-button-selected-border-color-hover); /* Used for the border of a selected button in the focus state. */
|
|
@@ -743,9 +743,10 @@
|
|
|
743
743
|
--gl-button-danger-tertiary-background-color-active: var(--gl-action-danger-background-color-active); /* Used for the background of a borderless, tertiary danger (destructive) button in the active state. */
|
|
744
744
|
--gl-button-dashed-border-color-default: var(--gl-color-neutral-400); /* Used for the border of a dashed button in the default state. */
|
|
745
745
|
--gl-button-dashed-border-color-active: var(--gl-color-neutral-300); /* Used for the border of a dashed button in the active state. */
|
|
746
|
-
--gl-button-selected-
|
|
747
|
-
--gl-button-selected-border-color-
|
|
748
|
-
--gl-button-selected-border-color-
|
|
746
|
+
--gl-button-selected-background-color-default: var(--gl-color-neutral-300); /* Used for the background of a selected button in the default state. */
|
|
747
|
+
--gl-button-selected-border-color-default: var(--gl-color-alpha-0); /* Used for the border of a selected button in the default state. */
|
|
748
|
+
--gl-button-selected-border-color-hover: var(--gl-color-alpha-0); /* Used for the border of a selected button in the hover state. */
|
|
749
|
+
--gl-button-selected-border-color-active: var(--gl-color-alpha-0); /* Used for the border of a selected button in the active state. */
|
|
749
750
|
--gl-button-disabled-foreground-color: var(--gl-color-neutral-400); /* Used for the foreground of a disabled button. */
|
|
750
751
|
--gl-button-disabled-background-color: rgba(137, 136, 141, 0.16); /* Used for the background of a disabled button. */
|
|
751
752
|
--gl-button-disabled-border-color: var(--gl-color-alpha-0); /* Used for the border of a disabled button. */
|
|
@@ -956,10 +957,9 @@
|
|
|
956
957
|
--gl-button-dashed-border-color-hover: var(--gl-button-dashed-border-color-default); /* Used for the border of a dashed button in the hover state. */
|
|
957
958
|
--gl-button-dashed-border-color-focus: var(--gl-button-dashed-border-color-default); /* Used for the border of a dashed button in the focus state. */
|
|
958
959
|
--gl-button-link-text-color-default: var(--gl-text-color-link); /* Used for the text of a link button in the default state. */
|
|
959
|
-
--gl-button-selected-foreground-color-default: var(--gl-
|
|
960
|
-
--gl-button-selected-background-color-
|
|
961
|
-
--gl-button-selected-background-color-
|
|
962
|
-
--gl-button-selected-background-color-active: var(--gl-button-default-primary-background-color-active); /* Used for the background of a selected button in the active state. */
|
|
960
|
+
--gl-button-selected-foreground-color-default: var(--gl-color-neutral-900); /* Used for the foreground of a selected button in the default state. */
|
|
961
|
+
--gl-button-selected-background-color-hover: var(--gl-color-neutral-200); /* Used for the background of a selected button in the hover state. */
|
|
962
|
+
--gl-button-selected-background-color-active: var(--gl-color-neutral-400); /* Used for the background of a selected button in the active state. */
|
|
963
963
|
--gl-button-selected-border-color-focus: var(--gl-button-selected-border-color-hover); /* Used for the border of a selected button in the focus state. */
|
|
964
964
|
--gl-datepicker-date-text-color-selected: var(--gl-control-indicator-color-selected); /* Used for the datepicker date text color state indicators. */
|
|
965
965
|
--gl-dropdown-background-color: var(--gl-background-color-overlap); /* Used for the background of a dropdown. */
|
|
@@ -1023,10 +1023,10 @@
|
|
|
1023
1023
|
--gl-button-link-text-color-hover: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the hover state. */
|
|
1024
1024
|
--gl-button-link-text-color-focus: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the focus state. */
|
|
1025
1025
|
--gl-button-link-text-color-active: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the active state. */
|
|
1026
|
-
--gl-button-selected-foreground-color-hover: var(--gl-
|
|
1027
|
-
--gl-button-selected-foreground-color-focus: var(--gl-
|
|
1028
|
-
--gl-button-selected-foreground-color-active: var(--gl-
|
|
1029
|
-
--gl-button-selected-background-color-focus: var(--gl-
|
|
1026
|
+
--gl-button-selected-foreground-color-hover: var(--gl-color-neutral-950); /* Used for the foreground of a selected button in the hover state. */
|
|
1027
|
+
--gl-button-selected-foreground-color-focus: var(--gl-color-neutral-950); /* Used for the foreground of a selected button in the focus state. */
|
|
1028
|
+
--gl-button-selected-foreground-color-active: var(--gl-color-neutral-950); /* Used for the foreground of a selected button in the active state. */
|
|
1029
|
+
--gl-button-selected-background-color-focus: var(--gl-color-neutral-200); /* Used for the background of a selected button in the focus state. */
|
|
1030
1030
|
--gl-dropdown-option-text-color-hover: var(--gl-action-neutral-foreground-color-hover); /* Used for the text of a dropdown option in the hover state. */
|
|
1031
1031
|
--gl-dropdown-option-text-color-focus: var(--gl-action-neutral-foreground-color-focus); /* Used for the text of a dropdown option in the focus state. */
|
|
1032
1032
|
--gl-dropdown-option-text-color-active: var(--gl-action-neutral-foreground-color-active); /* Used for the text of a dropdown option in the active state. */
|
|
@@ -609,18 +609,18 @@ export const GL_BUTTON_LINK_TEXT_COLOR_DEFAULT = '#9dc7f1';
|
|
|
609
609
|
export const GL_BUTTON_LINK_TEXT_COLOR_HOVER = '#9dc7f1';
|
|
610
610
|
export const GL_BUTTON_LINK_TEXT_COLOR_FOCUS = '#9dc7f1';
|
|
611
611
|
export const GL_BUTTON_LINK_TEXT_COLOR_ACTIVE = '#9dc7f1';
|
|
612
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#
|
|
613
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#
|
|
614
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#
|
|
615
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#
|
|
616
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '
|
|
617
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '
|
|
618
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '
|
|
619
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '
|
|
620
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_DEFAULT = '
|
|
621
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_HOVER = '
|
|
622
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_FOCUS = '
|
|
623
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = '
|
|
612
|
+
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#28272d';
|
|
613
|
+
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#18171d';
|
|
614
|
+
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#18171d';
|
|
615
|
+
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#18171d';
|
|
616
|
+
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#a4a3a8';
|
|
617
|
+
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '#bfbfc3';
|
|
618
|
+
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '#bfbfc3';
|
|
619
|
+
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '#89888d';
|
|
620
|
+
export const GL_BUTTON_SELECTED_BORDER_COLOR_DEFAULT = 'transparent';
|
|
621
|
+
export const GL_BUTTON_SELECTED_BORDER_COLOR_HOVER = 'transparent';
|
|
622
|
+
export const GL_BUTTON_SELECTED_BORDER_COLOR_FOCUS = 'transparent';
|
|
623
|
+
export const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = 'transparent';
|
|
624
624
|
export const GL_BUTTON_DISABLED_FOREGROUND_COLOR = '#89888d';
|
|
625
625
|
export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = 'rgba(137, 136, 141, 0.16)';
|
|
626
626
|
export const GL_BUTTON_DISABLED_BORDER_COLOR = 'transparent';
|
package/dist/tokens/js/tokens.js
CHANGED
|
@@ -613,7 +613,7 @@ export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#3a383f';
|
|
|
613
613
|
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#3a383f';
|
|
614
614
|
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#3a383f';
|
|
615
615
|
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#3a383f';
|
|
616
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#
|
|
616
|
+
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#ececef';
|
|
617
617
|
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '#ececef';
|
|
618
618
|
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '#ececef';
|
|
619
619
|
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '#dcdcde';
|
|
@@ -12977,13 +12977,16 @@
|
|
|
12977
12977
|
"foreground": {
|
|
12978
12978
|
"color": {
|
|
12979
12979
|
"default": {
|
|
12980
|
-
"$value": "#
|
|
12980
|
+
"$value": "#28272d",
|
|
12981
12981
|
"$type": "color",
|
|
12982
12982
|
"$description": "Used for the foreground of a selected button in the default state.",
|
|
12983
12983
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
12984
12984
|
"isSource": true,
|
|
12985
12985
|
"original": {
|
|
12986
|
-
"$value":
|
|
12986
|
+
"$value": {
|
|
12987
|
+
"default": "{button.default.primary.foreground.color.default}",
|
|
12988
|
+
"dark": "{color.neutral.900}"
|
|
12989
|
+
},
|
|
12987
12990
|
"$type": "color",
|
|
12988
12991
|
"$description": "Used for the foreground of a selected button in the default state."
|
|
12989
12992
|
},
|
|
@@ -12998,13 +13001,16 @@
|
|
|
12998
13001
|
]
|
|
12999
13002
|
},
|
|
13000
13003
|
"hover": {
|
|
13001
|
-
"$value": "#
|
|
13004
|
+
"$value": "#18171d",
|
|
13002
13005
|
"$type": "color",
|
|
13003
13006
|
"$description": "Used for the foreground of a selected button in the hover state.",
|
|
13004
13007
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13005
13008
|
"isSource": true,
|
|
13006
13009
|
"original": {
|
|
13007
|
-
"$value":
|
|
13010
|
+
"$value": {
|
|
13011
|
+
"default": "{button.default.primary.foreground.color.hover}",
|
|
13012
|
+
"dark": "{color.neutral.950}"
|
|
13013
|
+
},
|
|
13008
13014
|
"$type": "color",
|
|
13009
13015
|
"$description": "Used for the foreground of a selected button in the hover state."
|
|
13010
13016
|
},
|
|
@@ -13019,13 +13025,16 @@
|
|
|
13019
13025
|
]
|
|
13020
13026
|
},
|
|
13021
13027
|
"focus": {
|
|
13022
|
-
"$value": "#
|
|
13028
|
+
"$value": "#18171d",
|
|
13023
13029
|
"$type": "color",
|
|
13024
13030
|
"$description": "Used for the foreground of a selected button in the focus state.",
|
|
13025
13031
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13026
13032
|
"isSource": true,
|
|
13027
13033
|
"original": {
|
|
13028
|
-
"$value":
|
|
13034
|
+
"$value": {
|
|
13035
|
+
"default": "{button.default.primary.foreground.color.focus}",
|
|
13036
|
+
"dark": "{color.neutral.950}"
|
|
13037
|
+
},
|
|
13029
13038
|
"$type": "color",
|
|
13030
13039
|
"$description": "Used for the foreground of a selected button in the focus state."
|
|
13031
13040
|
},
|
|
@@ -13040,13 +13049,16 @@
|
|
|
13040
13049
|
]
|
|
13041
13050
|
},
|
|
13042
13051
|
"active": {
|
|
13043
|
-
"$value": "#
|
|
13052
|
+
"$value": "#18171d",
|
|
13044
13053
|
"$type": "color",
|
|
13045
13054
|
"$description": "Used for the foreground of a selected button in the active state.",
|
|
13046
13055
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13047
13056
|
"isSource": true,
|
|
13048
13057
|
"original": {
|
|
13049
|
-
"$value":
|
|
13058
|
+
"$value": {
|
|
13059
|
+
"default": "{button.default.primary.foreground.color.active}",
|
|
13060
|
+
"dark": "{color.neutral.950}"
|
|
13061
|
+
},
|
|
13050
13062
|
"$type": "color",
|
|
13051
13063
|
"$description": "Used for the foreground of a selected button in the active state."
|
|
13052
13064
|
},
|
|
@@ -13065,13 +13077,16 @@
|
|
|
13065
13077
|
"background": {
|
|
13066
13078
|
"color": {
|
|
13067
13079
|
"default": {
|
|
13068
|
-
"$value": "
|
|
13080
|
+
"$value": "#a4a3a8",
|
|
13069
13081
|
"$type": "color",
|
|
13070
13082
|
"$description": "Used for the background of a selected button in the default state.",
|
|
13071
13083
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13072
13084
|
"isSource": true,
|
|
13073
13085
|
"original": {
|
|
13074
|
-
"$value":
|
|
13086
|
+
"$value": {
|
|
13087
|
+
"default": "{color.neutral.50}",
|
|
13088
|
+
"dark": "{color.neutral.300}"
|
|
13089
|
+
},
|
|
13075
13090
|
"$type": "color",
|
|
13076
13091
|
"$description": "Used for the background of a selected button in the default state."
|
|
13077
13092
|
},
|
|
@@ -13086,13 +13101,16 @@
|
|
|
13086
13101
|
]
|
|
13087
13102
|
},
|
|
13088
13103
|
"hover": {
|
|
13089
|
-
"$value": "
|
|
13104
|
+
"$value": "#bfbfc3",
|
|
13090
13105
|
"$type": "color",
|
|
13091
13106
|
"$description": "Used for the background of a selected button in the hover state.",
|
|
13092
13107
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13093
13108
|
"isSource": true,
|
|
13094
13109
|
"original": {
|
|
13095
|
-
"$value":
|
|
13110
|
+
"$value": {
|
|
13111
|
+
"default": "{button.default.primary.background.color.hover}",
|
|
13112
|
+
"dark": "{color.neutral.200}"
|
|
13113
|
+
},
|
|
13096
13114
|
"$type": "color",
|
|
13097
13115
|
"$description": "Used for the background of a selected button in the hover state."
|
|
13098
13116
|
},
|
|
@@ -13107,13 +13125,16 @@
|
|
|
13107
13125
|
]
|
|
13108
13126
|
},
|
|
13109
13127
|
"focus": {
|
|
13110
|
-
"$value": "
|
|
13128
|
+
"$value": "#bfbfc3",
|
|
13111
13129
|
"$type": "color",
|
|
13112
13130
|
"$description": "Used for the background of a selected button in the focus state.",
|
|
13113
13131
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13114
13132
|
"isSource": true,
|
|
13115
13133
|
"original": {
|
|
13116
|
-
"$value":
|
|
13134
|
+
"$value": {
|
|
13135
|
+
"default": "{button.default.primary.background.color.focus}",
|
|
13136
|
+
"dark": "{color.neutral.200}"
|
|
13137
|
+
},
|
|
13117
13138
|
"$type": "color",
|
|
13118
13139
|
"$description": "Used for the background of a selected button in the focus state."
|
|
13119
13140
|
},
|
|
@@ -13128,13 +13149,16 @@
|
|
|
13128
13149
|
]
|
|
13129
13150
|
},
|
|
13130
13151
|
"active": {
|
|
13131
|
-
"$value": "
|
|
13152
|
+
"$value": "#89888d",
|
|
13132
13153
|
"$type": "color",
|
|
13133
13154
|
"$description": "Used for the background of a selected button in the active state.",
|
|
13134
13155
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13135
13156
|
"isSource": true,
|
|
13136
13157
|
"original": {
|
|
13137
|
-
"$value":
|
|
13158
|
+
"$value": {
|
|
13159
|
+
"default": "{button.default.primary.background.color.active}",
|
|
13160
|
+
"dark": "{color.neutral.400}"
|
|
13161
|
+
},
|
|
13138
13162
|
"$type": "color",
|
|
13139
13163
|
"$description": "Used for the background of a selected button in the active state."
|
|
13140
13164
|
},
|
|
@@ -13153,7 +13177,7 @@
|
|
|
13153
13177
|
"border": {
|
|
13154
13178
|
"color": {
|
|
13155
13179
|
"default": {
|
|
13156
|
-
"$value": "
|
|
13180
|
+
"$value": "transparent",
|
|
13157
13181
|
"$type": "color",
|
|
13158
13182
|
"$description": "Used for the border of a selected button in the default state.",
|
|
13159
13183
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
@@ -13161,7 +13185,7 @@
|
|
|
13161
13185
|
"original": {
|
|
13162
13186
|
"$value": {
|
|
13163
13187
|
"default": "{color.neutral.300}",
|
|
13164
|
-
"dark": "{color.
|
|
13188
|
+
"dark": "{color.alpha.0}"
|
|
13165
13189
|
},
|
|
13166
13190
|
"$type": "color",
|
|
13167
13191
|
"$description": "Used for the border of a selected button in the default state."
|
|
@@ -13177,7 +13201,7 @@
|
|
|
13177
13201
|
]
|
|
13178
13202
|
},
|
|
13179
13203
|
"hover": {
|
|
13180
|
-
"$value": "
|
|
13204
|
+
"$value": "transparent",
|
|
13181
13205
|
"$type": "color",
|
|
13182
13206
|
"$description": "Used for the border of a selected button in the hover state.",
|
|
13183
13207
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
@@ -13185,7 +13209,7 @@
|
|
|
13185
13209
|
"original": {
|
|
13186
13210
|
"$value": {
|
|
13187
13211
|
"default": "{color.neutral.400}",
|
|
13188
|
-
"dark": "{color.
|
|
13212
|
+
"dark": "{color.alpha.0}"
|
|
13189
13213
|
},
|
|
13190
13214
|
"$type": "color",
|
|
13191
13215
|
"$description": "Used for the border of a selected button in the hover state."
|
|
@@ -13201,7 +13225,7 @@
|
|
|
13201
13225
|
]
|
|
13202
13226
|
},
|
|
13203
13227
|
"focus": {
|
|
13204
|
-
"$value": "
|
|
13228
|
+
"$value": "transparent",
|
|
13205
13229
|
"$type": "color",
|
|
13206
13230
|
"$description": "Used for the border of a selected button in the focus state.",
|
|
13207
13231
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
@@ -13222,7 +13246,7 @@
|
|
|
13222
13246
|
]
|
|
13223
13247
|
},
|
|
13224
13248
|
"active": {
|
|
13225
|
-
"$value": "
|
|
13249
|
+
"$value": "transparent",
|
|
13226
13250
|
"$type": "color",
|
|
13227
13251
|
"$description": "Used for the border of a selected button in the active state.",
|
|
13228
13252
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
@@ -13230,7 +13254,7 @@
|
|
|
13230
13254
|
"original": {
|
|
13231
13255
|
"$value": {
|
|
13232
13256
|
"default": "{color.neutral.600}",
|
|
13233
|
-
"dark": "{color.
|
|
13257
|
+
"dark": "{color.alpha.0}"
|
|
13234
13258
|
},
|
|
13235
13259
|
"$type": "color",
|
|
13236
13260
|
"$description": "Used for the border of a selected button in the active state."
|
|
@@ -12983,7 +12983,10 @@
|
|
|
12983
12983
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
12984
12984
|
"isSource": true,
|
|
12985
12985
|
"original": {
|
|
12986
|
-
"$value":
|
|
12986
|
+
"$value": {
|
|
12987
|
+
"default": "{button.default.primary.foreground.color.default}",
|
|
12988
|
+
"dark": "{color.neutral.900}"
|
|
12989
|
+
},
|
|
12987
12990
|
"$type": "color",
|
|
12988
12991
|
"$description": "Used for the foreground of a selected button in the default state."
|
|
12989
12992
|
},
|
|
@@ -13004,7 +13007,10 @@
|
|
|
13004
13007
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13005
13008
|
"isSource": true,
|
|
13006
13009
|
"original": {
|
|
13007
|
-
"$value":
|
|
13010
|
+
"$value": {
|
|
13011
|
+
"default": "{button.default.primary.foreground.color.hover}",
|
|
13012
|
+
"dark": "{color.neutral.950}"
|
|
13013
|
+
},
|
|
13008
13014
|
"$type": "color",
|
|
13009
13015
|
"$description": "Used for the foreground of a selected button in the hover state."
|
|
13010
13016
|
},
|
|
@@ -13025,7 +13031,10 @@
|
|
|
13025
13031
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13026
13032
|
"isSource": true,
|
|
13027
13033
|
"original": {
|
|
13028
|
-
"$value":
|
|
13034
|
+
"$value": {
|
|
13035
|
+
"default": "{button.default.primary.foreground.color.focus}",
|
|
13036
|
+
"dark": "{color.neutral.950}"
|
|
13037
|
+
},
|
|
13029
13038
|
"$type": "color",
|
|
13030
13039
|
"$description": "Used for the foreground of a selected button in the focus state."
|
|
13031
13040
|
},
|
|
@@ -13046,7 +13055,10 @@
|
|
|
13046
13055
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13047
13056
|
"isSource": true,
|
|
13048
13057
|
"original": {
|
|
13049
|
-
"$value":
|
|
13058
|
+
"$value": {
|
|
13059
|
+
"default": "{button.default.primary.foreground.color.active}",
|
|
13060
|
+
"dark": "{color.neutral.950}"
|
|
13061
|
+
},
|
|
13050
13062
|
"$type": "color",
|
|
13051
13063
|
"$description": "Used for the foreground of a selected button in the active state."
|
|
13052
13064
|
},
|
|
@@ -13065,13 +13077,16 @@
|
|
|
13065
13077
|
"background": {
|
|
13066
13078
|
"color": {
|
|
13067
13079
|
"default": {
|
|
13068
|
-
"$value": "#
|
|
13080
|
+
"$value": "#ececef",
|
|
13069
13081
|
"$type": "color",
|
|
13070
13082
|
"$description": "Used for the background of a selected button in the default state.",
|
|
13071
13083
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13072
13084
|
"isSource": true,
|
|
13073
13085
|
"original": {
|
|
13074
|
-
"$value":
|
|
13086
|
+
"$value": {
|
|
13087
|
+
"default": "{color.neutral.50}",
|
|
13088
|
+
"dark": "{color.neutral.300}"
|
|
13089
|
+
},
|
|
13075
13090
|
"$type": "color",
|
|
13076
13091
|
"$description": "Used for the background of a selected button in the default state."
|
|
13077
13092
|
},
|
|
@@ -13092,7 +13107,10 @@
|
|
|
13092
13107
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13093
13108
|
"isSource": true,
|
|
13094
13109
|
"original": {
|
|
13095
|
-
"$value":
|
|
13110
|
+
"$value": {
|
|
13111
|
+
"default": "{button.default.primary.background.color.hover}",
|
|
13112
|
+
"dark": "{color.neutral.200}"
|
|
13113
|
+
},
|
|
13096
13114
|
"$type": "color",
|
|
13097
13115
|
"$description": "Used for the background of a selected button in the hover state."
|
|
13098
13116
|
},
|
|
@@ -13113,7 +13131,10 @@
|
|
|
13113
13131
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13114
13132
|
"isSource": true,
|
|
13115
13133
|
"original": {
|
|
13116
|
-
"$value":
|
|
13134
|
+
"$value": {
|
|
13135
|
+
"default": "{button.default.primary.background.color.focus}",
|
|
13136
|
+
"dark": "{color.neutral.200}"
|
|
13137
|
+
},
|
|
13117
13138
|
"$type": "color",
|
|
13118
13139
|
"$description": "Used for the background of a selected button in the focus state."
|
|
13119
13140
|
},
|
|
@@ -13134,7 +13155,10 @@
|
|
|
13134
13155
|
"filePath": "src/tokens/contextual/button.tokens.json",
|
|
13135
13156
|
"isSource": true,
|
|
13136
13157
|
"original": {
|
|
13137
|
-
"$value":
|
|
13158
|
+
"$value": {
|
|
13159
|
+
"default": "{button.default.primary.background.color.active}",
|
|
13160
|
+
"dark": "{color.neutral.400}"
|
|
13161
|
+
},
|
|
13138
13162
|
"$type": "color",
|
|
13139
13163
|
"$description": "Used for the background of a selected button in the active state."
|
|
13140
13164
|
},
|
|
@@ -13161,7 +13185,7 @@
|
|
|
13161
13185
|
"original": {
|
|
13162
13186
|
"$value": {
|
|
13163
13187
|
"default": "{color.neutral.300}",
|
|
13164
|
-
"dark": "{color.
|
|
13188
|
+
"dark": "{color.alpha.0}"
|
|
13165
13189
|
},
|
|
13166
13190
|
"$type": "color",
|
|
13167
13191
|
"$description": "Used for the border of a selected button in the default state."
|
|
@@ -13185,7 +13209,7 @@
|
|
|
13185
13209
|
"original": {
|
|
13186
13210
|
"$value": {
|
|
13187
13211
|
"default": "{color.neutral.400}",
|
|
13188
|
-
"dark": "{color.
|
|
13212
|
+
"dark": "{color.alpha.0}"
|
|
13189
13213
|
},
|
|
13190
13214
|
"$type": "color",
|
|
13191
13215
|
"$description": "Used for the border of a selected button in the hover state."
|
|
@@ -13230,7 +13254,7 @@
|
|
|
13230
13254
|
"original": {
|
|
13231
13255
|
"$value": {
|
|
13232
13256
|
"default": "{color.neutral.600}",
|
|
13233
|
-
"dark": "{color.
|
|
13257
|
+
"dark": "{color.alpha.0}"
|
|
13234
13258
|
},
|
|
13235
13259
|
"$type": "color",
|
|
13236
13260
|
"$description": "Used for the border of a selected button in the active state."
|
|
@@ -741,9 +741,10 @@ $gl-button-danger-tertiary-background-color-hover: $gl-action-danger-background-
|
|
|
741
741
|
$gl-button-danger-tertiary-background-color-active: $gl-action-danger-background-color-active; // Used for the background of a borderless, tertiary danger (destructive) button in the active state.
|
|
742
742
|
$gl-button-dashed-border-color-default: $gl-color-neutral-400; // Used for the border of a dashed button in the default state.
|
|
743
743
|
$gl-button-dashed-border-color-active: $gl-color-neutral-300; // Used for the border of a dashed button in the active state.
|
|
744
|
-
$gl-button-selected-
|
|
745
|
-
$gl-button-selected-border-color-
|
|
746
|
-
$gl-button-selected-border-color-
|
|
744
|
+
$gl-button-selected-background-color-default: $gl-color-neutral-300; // Used for the background of a selected button in the default state.
|
|
745
|
+
$gl-button-selected-border-color-default: $gl-color-alpha-0; // Used for the border of a selected button in the default state.
|
|
746
|
+
$gl-button-selected-border-color-hover: $gl-color-alpha-0; // Used for the border of a selected button in the hover state.
|
|
747
|
+
$gl-button-selected-border-color-active: $gl-color-alpha-0; // Used for the border of a selected button in the active state.
|
|
747
748
|
$gl-button-disabled-foreground-color: $gl-color-neutral-400; // Used for the foreground of a disabled button.
|
|
748
749
|
$gl-button-disabled-background-color: rgba(137, 136, 141, 0.16); // Used for the background of a disabled button.
|
|
749
750
|
$gl-button-disabled-border-color: $gl-color-alpha-0; // Used for the border of a disabled button.
|
|
@@ -954,10 +955,9 @@ $gl-button-danger-tertiary-border-color-default: $gl-action-danger-border-color-
|
|
|
954
955
|
$gl-button-dashed-border-color-hover: $gl-button-dashed-border-color-default; // Used for the border of a dashed button in the hover state.
|
|
955
956
|
$gl-button-dashed-border-color-focus: $gl-button-dashed-border-color-default; // Used for the border of a dashed button in the focus state.
|
|
956
957
|
$gl-button-link-text-color-default: $gl-text-color-link; // Used for the text of a link button in the default state.
|
|
957
|
-
$gl-button-selected-foreground-color-default: $gl-
|
|
958
|
-
$gl-button-selected-background-color-
|
|
959
|
-
$gl-button-selected-background-color-
|
|
960
|
-
$gl-button-selected-background-color-active: $gl-button-default-primary-background-color-active; // Used for the background of a selected button in the active state.
|
|
958
|
+
$gl-button-selected-foreground-color-default: $gl-color-neutral-900; // Used for the foreground of a selected button in the default state.
|
|
959
|
+
$gl-button-selected-background-color-hover: $gl-color-neutral-200; // Used for the background of a selected button in the hover state.
|
|
960
|
+
$gl-button-selected-background-color-active: $gl-color-neutral-400; // Used for the background of a selected button in the active state.
|
|
961
961
|
$gl-button-selected-border-color-focus: $gl-button-selected-border-color-hover; // Used for the border of a selected button in the focus state.
|
|
962
962
|
$gl-datepicker-date-text-color-selected: $gl-control-indicator-color-selected; // Used for the datepicker date text color state indicators.
|
|
963
963
|
$gl-dropdown-background-color: $gl-background-color-overlap; // Used for the background of a dropdown.
|
|
@@ -1021,10 +1021,10 @@ $gl-button-danger-tertiary-border-color-active: $gl-action-danger-border-color-a
|
|
|
1021
1021
|
$gl-button-link-text-color-hover: $gl-button-link-text-color-default; // Used for the text of a link button in the hover state.
|
|
1022
1022
|
$gl-button-link-text-color-focus: $gl-button-link-text-color-default; // Used for the text of a link button in the focus state.
|
|
1023
1023
|
$gl-button-link-text-color-active: $gl-button-link-text-color-default; // Used for the text of a link button in the active state.
|
|
1024
|
-
$gl-button-selected-foreground-color-hover: $gl-
|
|
1025
|
-
$gl-button-selected-foreground-color-focus: $gl-
|
|
1026
|
-
$gl-button-selected-foreground-color-active: $gl-
|
|
1027
|
-
$gl-button-selected-background-color-focus: $gl-
|
|
1024
|
+
$gl-button-selected-foreground-color-hover: $gl-color-neutral-950; // Used for the foreground of a selected button in the hover state.
|
|
1025
|
+
$gl-button-selected-foreground-color-focus: $gl-color-neutral-950; // Used for the foreground of a selected button in the focus state.
|
|
1026
|
+
$gl-button-selected-foreground-color-active: $gl-color-neutral-950; // Used for the foreground of a selected button in the active state.
|
|
1027
|
+
$gl-button-selected-background-color-focus: $gl-color-neutral-200; // Used for the background of a selected button in the focus state.
|
|
1028
1028
|
$gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
|
|
1029
1029
|
$gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
|
|
1030
1030
|
$gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
|
|
@@ -741,6 +741,7 @@ $gl-button-danger-tertiary-background-color-hover: $gl-action-danger-background-
|
|
|
741
741
|
$gl-button-danger-tertiary-background-color-active: $gl-action-danger-background-color-active; // Used for the background of a borderless, tertiary danger (destructive) button in the active state.
|
|
742
742
|
$gl-button-dashed-border-color-default: $gl-color-neutral-400; // Used for the border of a dashed button in the default state.
|
|
743
743
|
$gl-button-dashed-border-color-active: $gl-color-neutral-600; // Used for the border of a dashed button in the active state.
|
|
744
|
+
$gl-button-selected-background-color-default: $gl-color-neutral-50; // Used for the background of a selected button in the default state.
|
|
744
745
|
$gl-button-selected-border-color-default: $gl-color-neutral-300; // Used for the border of a selected button in the default state.
|
|
745
746
|
$gl-button-selected-border-color-hover: $gl-color-neutral-400; // Used for the border of a selected button in the hover state.
|
|
746
747
|
$gl-button-selected-border-color-active: $gl-color-neutral-600; // Used for the border of a selected button in the active state.
|
|
@@ -955,7 +956,6 @@ $gl-button-dashed-border-color-hover: $gl-button-dashed-border-color-default; //
|
|
|
955
956
|
$gl-button-dashed-border-color-focus: $gl-button-dashed-border-color-default; // Used for the border of a dashed button in the focus state.
|
|
956
957
|
$gl-button-link-text-color-default: $gl-text-color-link; // Used for the text of a link button in the default state.
|
|
957
958
|
$gl-button-selected-foreground-color-default: $gl-button-default-primary-foreground-color-default; // Used for the foreground of a selected button in the default state.
|
|
958
|
-
$gl-button-selected-background-color-default: $gl-button-default-primary-background-color-default; // Used for the background of a selected button in the default state.
|
|
959
959
|
$gl-button-selected-background-color-hover: $gl-button-default-primary-background-color-hover; // Used for the background of a selected button in the hover state.
|
|
960
960
|
$gl-button-selected-background-color-active: $gl-button-default-primary-background-color-active; // Used for the background of a selected button in the active state.
|
|
961
961
|
$gl-button-selected-border-color-focus: $gl-button-selected-border-color-hover; // Used for the border of a selected button in the focus state.
|
|
@@ -500,10 +500,11 @@ const getTooltipContent = function () {
|
|
|
500
500
|
}
|
|
501
501
|
return seriesData.reduce((acc, _ref7) => {
|
|
502
502
|
let {
|
|
503
|
-
value
|
|
503
|
+
value,
|
|
504
504
|
seriesName,
|
|
505
505
|
color
|
|
506
506
|
} = _ref7;
|
|
507
|
+
const yValue = value[1];
|
|
507
508
|
acc[seriesName] = {
|
|
508
509
|
value: yValue,
|
|
509
510
|
color
|