@gitlab/ui 88.4.0 → 88.5.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/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +2 -1
- package/dist/tokens/build/js/tokens.js +2 -1
- package/dist/tokens/css/tokens.css +1 -0
- package/dist/tokens/css/tokens.dark.css +1 -0
- package/dist/tokens/js/tokens.dark.js +1 -0
- package/dist/tokens/js/tokens.js +1 -0
- package/dist/tokens/json/tokens.dark.json +29 -0
- package/dist/tokens/json/tokens.json +29 -0
- package/dist/tokens/scss/_tokens.dark.scss +1 -0
- package/dist/tokens/scss/_tokens.scss +1 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +1 -0
- package/package.json +1 -1
- package/src/components/base/datepicker/datepicker.scss +117 -35
- package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.scss +1 -0
- package/src/tokens/build/css/tokens.css +1 -0
- package/src/tokens/build/css/tokens.dark.css +1 -0
- package/src/tokens/build/js/tokens.dark.js +1 -0
- package/src/tokens/build/js/tokens.js +1 -0
- package/src/tokens/build/json/tokens.dark.json +29 -0
- package/src/tokens/build/json/tokens.json +29 -0
- package/src/tokens/build/scss/_tokens.dark.scss +1 -0
- package/src/tokens/build/scss/_tokens.scss +1 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +1 -0
- package/src/tokens/contextual/datepicker.tokens.json +15 -0
|
@@ -518,6 +518,7 @@ export const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = '#a4a3a8'; // Used for the
|
|
|
518
518
|
export const GL_BUTTON_DISABLED_FOREGROUND_COLOR = '#89888d'; // Used for the foreground of a disabled button.
|
|
519
519
|
export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = '#18171d'; // Used for the background of a disabled button.
|
|
520
520
|
export const GL_BUTTON_DISABLED_BORDER_COLOR = '#3a383f'; // Used for the border of a disabled button.
|
|
521
|
+
export const GL_DATEPICKER_DATE_TEXT_COLOR_SELECTED = '#28272d'; // Used for the datepicker date text color state indicators.
|
|
521
522
|
export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
522
523
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a light background color in the default state.
|
|
523
524
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the label remove button background on a light background color in the hover state.
|
|
@@ -518,6 +518,7 @@ export const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = '#626168'; // Used for the
|
|
|
518
518
|
export const GL_BUTTON_DISABLED_FOREGROUND_COLOR = '#737278'; // Used for the foreground of a disabled button.
|
|
519
519
|
export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = '#fbfafd'; // Used for the background of a disabled button.
|
|
520
520
|
export const GL_BUTTON_DISABLED_BORDER_COLOR = '#dcdcde'; // Used for the border of a disabled button.
|
|
521
|
+
export const GL_DATEPICKER_DATE_TEXT_COLOR_SELECTED = '#fff'; // Used for the datepicker date text color state indicators.
|
|
521
522
|
export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
522
523
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a light background color in the default state.
|
|
523
524
|
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the label remove button background on a light background color in the hover state.
|
|
@@ -11228,6 +11228,35 @@
|
|
|
11228
11228
|
}
|
|
11229
11229
|
}
|
|
11230
11230
|
},
|
|
11231
|
+
"datepicker": {
|
|
11232
|
+
"date": {
|
|
11233
|
+
"text": {
|
|
11234
|
+
"color": {
|
|
11235
|
+
"selected": {
|
|
11236
|
+
"value": "#28272d",
|
|
11237
|
+
"$type": "color",
|
|
11238
|
+
"comment": "Used for the datepicker date text color state indicators.",
|
|
11239
|
+
"filePath": "src/tokens/contextual/datepicker.tokens.json",
|
|
11240
|
+
"isSource": true,
|
|
11241
|
+
"original": {
|
|
11242
|
+
"value": "{control.indicator.color.selected}",
|
|
11243
|
+
"$type": "color",
|
|
11244
|
+
"comment": "Used for the datepicker date text color state indicators."
|
|
11245
|
+
},
|
|
11246
|
+
"name": "DATEPICKER_DATE_TEXT_COLOR_SELECTED",
|
|
11247
|
+
"attributes": {},
|
|
11248
|
+
"path": [
|
|
11249
|
+
"datepicker",
|
|
11250
|
+
"date",
|
|
11251
|
+
"text",
|
|
11252
|
+
"color",
|
|
11253
|
+
"selected"
|
|
11254
|
+
]
|
|
11255
|
+
}
|
|
11256
|
+
}
|
|
11257
|
+
}
|
|
11258
|
+
}
|
|
11259
|
+
},
|
|
11231
11260
|
"label": {
|
|
11232
11261
|
"light": {
|
|
11233
11262
|
"text": {
|
|
@@ -11228,6 +11228,35 @@
|
|
|
11228
11228
|
}
|
|
11229
11229
|
}
|
|
11230
11230
|
},
|
|
11231
|
+
"datepicker": {
|
|
11232
|
+
"date": {
|
|
11233
|
+
"text": {
|
|
11234
|
+
"color": {
|
|
11235
|
+
"selected": {
|
|
11236
|
+
"value": "#fff",
|
|
11237
|
+
"$type": "color",
|
|
11238
|
+
"comment": "Used for the datepicker date text color state indicators.",
|
|
11239
|
+
"filePath": "src/tokens/contextual/datepicker.tokens.json",
|
|
11240
|
+
"isSource": true,
|
|
11241
|
+
"original": {
|
|
11242
|
+
"value": "{control.indicator.color.selected}",
|
|
11243
|
+
"$type": "color",
|
|
11244
|
+
"comment": "Used for the datepicker date text color state indicators."
|
|
11245
|
+
},
|
|
11246
|
+
"name": "DATEPICKER_DATE_TEXT_COLOR_SELECTED",
|
|
11247
|
+
"attributes": {},
|
|
11248
|
+
"path": [
|
|
11249
|
+
"datepicker",
|
|
11250
|
+
"date",
|
|
11251
|
+
"text",
|
|
11252
|
+
"color",
|
|
11253
|
+
"selected"
|
|
11254
|
+
]
|
|
11255
|
+
}
|
|
11256
|
+
}
|
|
11257
|
+
}
|
|
11258
|
+
}
|
|
11259
|
+
},
|
|
11231
11260
|
"label": {
|
|
11232
11261
|
"light": {
|
|
11233
11262
|
"text": {
|
|
@@ -685,6 +685,7 @@ $gl-action-disabled-foreground-color: $gl-color-neutral-500; // Used for the for
|
|
|
685
685
|
$gl-focus-ring-inner-color: $gl-background-color-default; // Used for the inner neutral portion of the focus ring.
|
|
686
686
|
$gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
|
|
687
687
|
$gl-table-row-background-color-hover: $gl-background-color-subtle; // Used for the background of a table row in hover state.
|
|
688
|
+
$gl-datepicker-date-text-color-selected: $gl-control-indicator-color-selected; // Used for the datepicker date text color state indicators.
|
|
688
689
|
$gl-button-selected-border-color-focus: $gl-button-selected-border-color-hover; // Used for the border of a selected button in the focus state.
|
|
689
690
|
$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.
|
|
690
691
|
$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.
|
|
@@ -685,6 +685,7 @@ $gl-action-disabled-foreground-color: $gl-color-neutral-400; // Used for the for
|
|
|
685
685
|
$gl-focus-ring-inner-color: $gl-background-color-default; // Used for the inner neutral portion of the focus ring.
|
|
686
686
|
$gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
|
|
687
687
|
$gl-table-row-background-color-hover: $gl-background-color-subtle; // Used for the background of a table row in hover state.
|
|
688
|
+
$gl-datepicker-date-text-color-selected: $gl-control-indicator-color-selected; // Used for the datepicker date text color state indicators.
|
|
688
689
|
$gl-button-selected-border-color-focus: $gl-button-selected-border-color-hover; // Used for the border of a selected button in the focus state.
|
|
689
690
|
$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.
|
|
690
691
|
$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.
|
|
@@ -518,6 +518,7 @@ $gl-button-selected-border-color-active: var(--gl-button-selected-border-color-a
|
|
|
518
518
|
$gl-button-disabled-foreground-color: var(--gl-button-disabled-foreground-color);
|
|
519
519
|
$gl-button-disabled-background-color: var(--gl-button-disabled-background-color);
|
|
520
520
|
$gl-button-disabled-border-color: var(--gl-button-disabled-border-color);
|
|
521
|
+
$gl-datepicker-date-text-color-selected: var(--gl-datepicker-date-text-color-selected);
|
|
521
522
|
$gl-label-light-text-color: var(--gl-label-light-text-color);
|
|
522
523
|
$gl-label-light-button-background-color-default: var(--gl-label-light-button-background-color-default);
|
|
523
524
|
$gl-label-light-button-background-color-hover: var(--gl-label-light-button-background-color-hover);
|