@gitlab/ui 136.3.0 → 136.3.2

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.
Files changed (47) hide show
  1. package/dist/components/base/collapse/collapse.js +3 -4
  2. package/dist/components/base/filtered_search/filtered_search.js +4 -5
  3. package/dist/components/base/filtered_search/filtered_search_token.js +8 -9
  4. package/dist/components/base/filtered_search/filtered_search_token_segment.js +13 -14
  5. package/dist/components/base/form/form_checkbox/form_checkbox.js +14 -15
  6. package/dist/components/base/form/form_input/form_input.js +9 -11
  7. package/dist/components/base/form/form_radio/form_radio.js +14 -15
  8. package/dist/components/base/form/form_textarea/form_textarea.js +13 -16
  9. package/dist/components/base/infinite_scroll/infinite_scroll.js +17 -19
  10. package/dist/components/base/new_dropdowns/listbox/listbox.js +17 -19
  11. package/dist/components/base/sorting/sorting.js +2 -2
  12. package/dist/components/base/tabs/tabs/scrollable_tabs.js +6 -8
  13. package/dist/components/base/toggle/toggle.js +1 -0
  14. package/dist/components/base/token_selector/token_selector.js +13 -15
  15. package/dist/index.css +2 -2
  16. package/dist/index.css.map +1 -1
  17. package/dist/tokens/build/js/tokens.dark.js +34 -17
  18. package/dist/tokens/build/js/tokens.js +34 -17
  19. package/package.json +4 -4
  20. package/src/components/base/collapse/collapse.vue +3 -4
  21. package/src/components/base/filtered_search/filtered_search.vue +4 -5
  22. package/src/components/base/filtered_search/filtered_search_token.vue +8 -9
  23. package/src/components/base/filtered_search/filtered_search_token_segment.vue +10 -11
  24. package/src/components/base/form/form_checkbox/form_checkbox.vue +14 -15
  25. package/src/components/base/form/form_input/form_input.vue +9 -11
  26. package/src/components/base/form/form_radio/form_radio.vue +14 -15
  27. package/src/components/base/form/form_textarea/form_textarea.vue +13 -16
  28. package/src/components/base/infinite_scroll/infinite_scroll.vue +16 -18
  29. package/src/components/base/new_dropdowns/listbox/listbox.vue +17 -19
  30. package/src/components/base/sorting/sorting.vue +3 -2
  31. package/src/components/base/tabs/tabs/scrollable_tabs.vue +7 -9
  32. package/src/components/base/toggle/toggle.scss +90 -22
  33. package/src/components/base/toggle/toggle.vue +1 -0
  34. package/src/components/base/token_selector/token_selector.vue +12 -14
  35. package/src/tokens/build/css/tokens.css +39 -22
  36. package/src/tokens/build/css/tokens.dark.css +39 -22
  37. package/src/tokens/build/figma/mode.dark.json +189 -24
  38. package/src/tokens/build/figma/mode.json +189 -24
  39. package/src/tokens/build/js/tokens.dark.js +33 -16
  40. package/src/tokens/build/js/tokens.js +33 -16
  41. package/src/tokens/build/json/tokens.dark.json +650 -42
  42. package/src/tokens/build/json/tokens.json +650 -42
  43. package/src/tokens/build/scss/_tokens.dark.scss +39 -22
  44. package/src/tokens/build/scss/_tokens.scss +39 -22
  45. package/src/tokens/build/scss/_tokens_custom_properties.scss +17 -0
  46. package/src/tokens/contextual/toggle.tokens.json +198 -33
  47. package/src/tokens/semantic/action.tokens.json +14 -0
@@ -5075,7 +5075,7 @@
5075
5075
  }
5076
5076
  },
5077
5077
  "🔒/toggle-switch-track-color-unchecked-default": {
5078
- "$value": "{control-border-color-default}",
5078
+ "$value": "{control-background-color-default}",
5079
5079
  "$type": "color",
5080
5080
  "$description": "Used for the track color of an unchecked toggle switch in the default state.",
5081
5081
  "$extensions": {
@@ -5088,7 +5088,7 @@
5088
5088
  "🔒/toggle-switch-track-color-unchecked-hover": {
5089
5089
  "$value": "{🔒/toggle-switch-track-color-unchecked-default}",
5090
5090
  "$type": "color",
5091
- "$description": "Used for the track color of an unchecked toggle switch in the hover state.",
5091
+ "$description": "Used for the track color of an unchecked toggle switch in the hover state. The track is deliberately unchanged from the default state; hover is carried by the track border and the thumb size.",
5092
5092
  "$extensions": {
5093
5093
  "com.figma.scopes": [
5094
5094
  "SHAPE_FILL",
@@ -5099,7 +5099,7 @@
5099
5099
  "🔒/toggle-switch-track-color-unchecked-focus": {
5100
5100
  "$value": "{🔒/toggle-switch-track-color-unchecked-hover}",
5101
5101
  "$type": "color",
5102
- "$description": "Used for the track color of an unchecked toggle switch in the focus state.",
5102
+ "$description": "Used for the track color of an unchecked toggle switch in the focus state. The track is deliberately unchanged from the default state; focus is carried by the focus ring, the track border and the thumb size.",
5103
5103
  "$extensions": {
5104
5104
  "com.figma.scopes": [
5105
5105
  "SHAPE_FILL",
@@ -5108,7 +5108,7 @@
5108
5108
  }
5109
5109
  },
5110
5110
  "🔒/toggle-switch-track-color-unchecked-active": {
5111
- "$value": "{🔒/toggle-switch-track-color-unchecked-focus}",
5111
+ "$value": "{action-neutral-background-color-active}",
5112
5112
  "$type": "color",
5113
5113
  "$description": "Used for the track color of an unchecked toggle switch in the active state.",
5114
5114
  "$extensions": {
@@ -5118,8 +5118,19 @@
5118
5118
  ]
5119
5119
  }
5120
5120
  },
5121
+ "🔒/toggle-switch-track-color-unchecked-disabled": {
5122
+ "$value": "{control-background-color-default}",
5123
+ "$type": "color",
5124
+ "$description": "Used for the track color of a disabled unchecked toggle switch.",
5125
+ "$extensions": {
5126
+ "com.figma.scopes": [
5127
+ "SHAPE_FILL",
5128
+ "FRAME_FILL"
5129
+ ]
5130
+ }
5131
+ },
5121
5132
  "🔒/toggle-switch-track-color-checked-default": {
5122
- "$value": "{color-neutral-800}",
5133
+ "$value": "{action-selected-background-color-default}",
5123
5134
  "$type": "color",
5124
5135
  "$description": "Used for the track color of a checked toggle switch in the default state.",
5125
5136
  "$extensions": {
@@ -5130,7 +5141,7 @@
5130
5141
  }
5131
5142
  },
5132
5143
  "🔒/toggle-switch-track-color-checked-hover": {
5133
- "$value": "{color-neutral-950}",
5144
+ "$value": "{action-selected-background-color-hover}",
5134
5145
  "$type": "color",
5135
5146
  "$description": "Used for the track color of a checked toggle switch in the hover state.",
5136
5147
  "$extensions": {
@@ -5141,7 +5152,7 @@
5141
5152
  }
5142
5153
  },
5143
5154
  "🔒/toggle-switch-track-color-checked-focus": {
5144
- "$value": "{🔒/toggle-switch-track-color-checked-hover}",
5155
+ "$value": "{action-selected-background-color-focus}",
5145
5156
  "$type": "color",
5146
5157
  "$description": "Used for the track color of a checked toggle switch in the focus state.",
5147
5158
  "$extensions": {
@@ -5152,7 +5163,7 @@
5152
5163
  }
5153
5164
  },
5154
5165
  "🔒/toggle-switch-track-color-checked-active": {
5155
- "$value": "{color-neutral-1000}",
5166
+ "$value": "{action-selected-background-color-active}",
5156
5167
  "$type": "color",
5157
5168
  "$description": "Used for the track color of a checked toggle switch in the active state.",
5158
5169
  "$extensions": {
@@ -5162,8 +5173,140 @@
5162
5173
  ]
5163
5174
  }
5164
5175
  },
5176
+ "🔒/toggle-switch-track-color-checked-disabled": {
5177
+ "$value": "{action-selected-background-color-disabled}",
5178
+ "$type": "color",
5179
+ "$description": "Used for the track color of a disabled checked toggle switch, which stays filled so the checked state remains legible.",
5180
+ "$extensions": {
5181
+ "com.figma.scopes": [
5182
+ "SHAPE_FILL",
5183
+ "FRAME_FILL"
5184
+ ]
5185
+ }
5186
+ },
5187
+ "🔒/toggle-switch-track-color-loading": {
5188
+ "$value": "{action-disabled-background-color}",
5189
+ "$type": "color",
5190
+ "$description": "Used for the track color of a loading toggle switch. A loading toggle renders no thumb and its value is still in flight, so the track carries no checked state.",
5191
+ "$extensions": {
5192
+ "com.figma.scopes": [
5193
+ "SHAPE_FILL",
5194
+ "FRAME_FILL"
5195
+ ]
5196
+ }
5197
+ },
5198
+ "🔒/toggle-switch-track-border-color-unchecked-default": {
5199
+ "$value": "{control-border-color-default}",
5200
+ "$type": "color",
5201
+ "$description": "Used for the track border color of an unchecked toggle switch in the default state.",
5202
+ "$extensions": {
5203
+ "com.figma.scopes": [
5204
+ "STROKE_COLOR"
5205
+ ]
5206
+ }
5207
+ },
5208
+ "🔒/toggle-switch-track-border-color-unchecked-hover": {
5209
+ "$value": "{control-border-color-hover}",
5210
+ "$type": "color",
5211
+ "$description": "Used for the track border color of an unchecked toggle switch in the hover state.",
5212
+ "$extensions": {
5213
+ "com.figma.scopes": [
5214
+ "STROKE_COLOR"
5215
+ ]
5216
+ }
5217
+ },
5218
+ "🔒/toggle-switch-track-border-color-unchecked-focus": {
5219
+ "$value": "{🔒/toggle-switch-track-border-color-unchecked-hover}",
5220
+ "$type": "color",
5221
+ "$description": "Used for the track border color of an unchecked toggle switch in the focus state.",
5222
+ "$extensions": {
5223
+ "com.figma.scopes": [
5224
+ "STROKE_COLOR"
5225
+ ]
5226
+ }
5227
+ },
5228
+ "🔒/toggle-switch-track-border-color-unchecked-active": {
5229
+ "$value": "{🔒/toggle-switch-track-border-color-unchecked-focus}",
5230
+ "$type": "color",
5231
+ "$description": "Used for the track border color of an unchecked toggle switch in the active state.",
5232
+ "$extensions": {
5233
+ "com.figma.scopes": [
5234
+ "STROKE_COLOR"
5235
+ ]
5236
+ }
5237
+ },
5238
+ "🔒/toggle-switch-track-border-color-unchecked-disabled": {
5239
+ "$value": "{action-disabled-border-color}",
5240
+ "$type": "color",
5241
+ "$description": "Used for the track border color of a disabled unchecked toggle switch.",
5242
+ "$extensions": {
5243
+ "com.figma.scopes": [
5244
+ "STROKE_COLOR"
5245
+ ]
5246
+ }
5247
+ },
5248
+ "🔒/toggle-switch-track-border-color-checked-default": {
5249
+ "$value": "{action-selected-border-color-default}",
5250
+ "$type": "color",
5251
+ "$description": "Used for the track border color of a checked toggle switch in the default state.",
5252
+ "$extensions": {
5253
+ "com.figma.scopes": [
5254
+ "STROKE_COLOR"
5255
+ ]
5256
+ }
5257
+ },
5258
+ "🔒/toggle-switch-track-border-color-checked-hover": {
5259
+ "$value": "{action-selected-border-color-hover}",
5260
+ "$type": "color",
5261
+ "$description": "Used for the track border color of a checked toggle switch in the hover state.",
5262
+ "$extensions": {
5263
+ "com.figma.scopes": [
5264
+ "STROKE_COLOR"
5265
+ ]
5266
+ }
5267
+ },
5268
+ "🔒/toggle-switch-track-border-color-checked-focus": {
5269
+ "$value": "{action-selected-border-color-focus}",
5270
+ "$type": "color",
5271
+ "$description": "Used for the track border color of a checked toggle switch in the focus state.",
5272
+ "$extensions": {
5273
+ "com.figma.scopes": [
5274
+ "STROKE_COLOR"
5275
+ ]
5276
+ }
5277
+ },
5278
+ "🔒/toggle-switch-track-border-color-checked-active": {
5279
+ "$value": "{action-selected-border-color-active}",
5280
+ "$type": "color",
5281
+ "$description": "Used for the track border color of a checked toggle switch in the active state.",
5282
+ "$extensions": {
5283
+ "com.figma.scopes": [
5284
+ "STROKE_COLOR"
5285
+ ]
5286
+ }
5287
+ },
5288
+ "🔒/toggle-switch-track-border-color-checked-disabled": {
5289
+ "$value": "{🔒/toggle-switch-track-color-checked-disabled}",
5290
+ "$type": "color",
5291
+ "$description": "Used for the track border color of a disabled checked toggle switch, which matches the track color.",
5292
+ "$extensions": {
5293
+ "com.figma.scopes": [
5294
+ "STROKE_COLOR"
5295
+ ]
5296
+ }
5297
+ },
5298
+ "🔒/toggle-switch-track-border-color-loading": {
5299
+ "$value": "{🔒/toggle-switch-track-color-loading}",
5300
+ "$type": "color",
5301
+ "$description": "Used for the track border color of a loading toggle switch, which matches the track color so the track reads as a single flat fill.",
5302
+ "$extensions": {
5303
+ "com.figma.scopes": [
5304
+ "STROKE_COLOR"
5305
+ ]
5306
+ }
5307
+ },
5165
5308
  "🔒/toggle-switch-background-color-unchecked-default": {
5166
- "$value": "{control-indicator-color-selected}",
5309
+ "$value": "{action-selected-background-color-default}",
5167
5310
  "$type": "color",
5168
5311
  "$description": "Used for the background color of the unchecked toggle switch thumb in the default state.",
5169
5312
  "$extensions": {
@@ -5206,8 +5349,19 @@
5206
5349
  ]
5207
5350
  }
5208
5351
  },
5352
+ "🔒/toggle-switch-background-color-unchecked-disabled": {
5353
+ "$value": "{action-disabled-foreground-color}",
5354
+ "$type": "color",
5355
+ "$description": "Used for the background color of the disabled unchecked toggle switch thumb.",
5356
+ "$extensions": {
5357
+ "com.figma.scopes": [
5358
+ "SHAPE_FILL",
5359
+ "FRAME_FILL"
5360
+ ]
5361
+ }
5362
+ },
5209
5363
  "🔒/toggle-switch-background-color-checked-default": {
5210
- "$value": "{action-strong-confirm-foreground-color-default}",
5364
+ "$value": "{action-selected-foreground-color-default}",
5211
5365
  "$type": "color",
5212
5366
  "$description": "Used for the background color of the checked toggle switch thumb in the default state.",
5213
5367
  "$extensions": {
@@ -5218,7 +5372,7 @@
5218
5372
  }
5219
5373
  },
5220
5374
  "🔒/toggle-switch-background-color-checked-hover": {
5221
- "$value": "{action-strong-confirm-foreground-color-hover}",
5375
+ "$value": "{action-selected-foreground-color-hover}",
5222
5376
  "$type": "color",
5223
5377
  "$description": "Used for the background color of the checked toggle switch thumb in the hover state.",
5224
5378
  "$extensions": {
@@ -5229,7 +5383,7 @@
5229
5383
  }
5230
5384
  },
5231
5385
  "🔒/toggle-switch-background-color-checked-focus": {
5232
- "$value": "{action-strong-confirm-foreground-color-focus}",
5386
+ "$value": "{action-selected-foreground-color-focus}",
5233
5387
  "$type": "color",
5234
5388
  "$description": "Used for the background color of the checked toggle switch thumb in the focus state.",
5235
5389
  "$extensions": {
@@ -5240,7 +5394,7 @@
5240
5394
  }
5241
5395
  },
5242
5396
  "🔒/toggle-switch-background-color-checked-active": {
5243
- "$value": "{action-strong-confirm-foreground-color-active}",
5397
+ "$value": "{action-selected-foreground-color-active}",
5244
5398
  "$type": "color",
5245
5399
  "$description": "Used for the background color of the checked toggle switch thumb in the active state.",
5246
5400
  "$extensions": {
@@ -5250,10 +5404,10 @@
5250
5404
  ]
5251
5405
  }
5252
5406
  },
5253
- "🔒/toggle-switch-background-color-disabled": {
5254
- "$value": "{action-disabled-foreground-color}",
5407
+ "🔒/toggle-switch-background-color-checked-disabled": {
5408
+ "$value": "{action-selected-foreground-color-default}",
5255
5409
  "$type": "color",
5256
- "$description": "Used for the background color of the toggle switch thumb in the disabled state.",
5410
+ "$description": "Used for the background color of the disabled checked toggle switch thumb.",
5257
5411
  "$extensions": {
5258
5412
  "com.figma.scopes": [
5259
5413
  "SHAPE_FILL",
@@ -5262,7 +5416,7 @@
5262
5416
  }
5263
5417
  },
5264
5418
  "🔒/toggle-switch-icon-color-unchecked-default": {
5265
- "$value": "{action-strong-neutral-background-color-default}",
5419
+ "$value": "{action-selected-foreground-color-default}",
5266
5420
  "$type": "color",
5267
5421
  "$description": "Used for the icon color of an unchecked toggle switch in the default state.",
5268
5422
  "$extensions": {
@@ -5272,7 +5426,7 @@
5272
5426
  }
5273
5427
  },
5274
5428
  "🔒/toggle-switch-icon-color-unchecked-hover": {
5275
- "$value": "{action-strong-neutral-background-color-hover}",
5429
+ "$value": "{action-selected-foreground-color-hover}",
5276
5430
  "$type": "color",
5277
5431
  "$description": "Used for the icon color of an unchecked toggle switch in the hover state.",
5278
5432
  "$extensions": {
@@ -5282,7 +5436,7 @@
5282
5436
  }
5283
5437
  },
5284
5438
  "🔒/toggle-switch-icon-color-unchecked-focus": {
5285
- "$value": "{action-strong-neutral-background-color-focus}",
5439
+ "$value": "{action-selected-foreground-color-focus}",
5286
5440
  "$type": "color",
5287
5441
  "$description": "Used for the icon color of an unchecked toggle switch in the focus state.",
5288
5442
  "$extensions": {
@@ -5292,7 +5446,7 @@
5292
5446
  }
5293
5447
  },
5294
5448
  "🔒/toggle-switch-icon-color-unchecked-active": {
5295
- "$value": "{action-strong-neutral-background-color-active}",
5449
+ "$value": "{action-selected-foreground-color-active}",
5296
5450
  "$type": "color",
5297
5451
  "$description": "Used for the icon color of an unchecked toggle switch in the active state.",
5298
5452
  "$extensions": {
@@ -5302,7 +5456,7 @@
5302
5456
  }
5303
5457
  },
5304
5458
  "🔒/toggle-switch-icon-color-checked-default": {
5305
- "$value": "{action-strong-confirm-background-color-default}",
5459
+ "$value": "{action-selected-background-color-default}",
5306
5460
  "$type": "color",
5307
5461
  "$description": "Used for the icon color of a checked toggle switch in the default state.",
5308
5462
  "$extensions": {
@@ -5312,7 +5466,7 @@
5312
5466
  }
5313
5467
  },
5314
5468
  "🔒/toggle-switch-icon-color-checked-hover": {
5315
- "$value": "{action-strong-confirm-background-color-hover}",
5469
+ "$value": "{action-selected-background-color-hover}",
5316
5470
  "$type": "color",
5317
5471
  "$description": "Used for the icon color of a checked toggle switch in the hover state.",
5318
5472
  "$extensions": {
@@ -5322,7 +5476,7 @@
5322
5476
  }
5323
5477
  },
5324
5478
  "🔒/toggle-switch-icon-color-checked-focus": {
5325
- "$value": "{action-strong-confirm-background-color-focus}",
5479
+ "$value": "{action-selected-background-color-focus}",
5326
5480
  "$type": "color",
5327
5481
  "$description": "Used for the icon color of a checked toggle switch in the focus state.",
5328
5482
  "$extensions": {
@@ -5332,7 +5486,7 @@
5332
5486
  }
5333
5487
  },
5334
5488
  "🔒/toggle-switch-icon-color-checked-active": {
5335
- "$value": "{action-strong-confirm-background-color-active}",
5489
+ "$value": "{action-selected-background-color-active}",
5336
5490
  "$type": "color",
5337
5491
  "$description": "Used for the icon color of a checked toggle switch in the active state.",
5338
5492
  "$extensions": {
@@ -5534,6 +5688,17 @@
5534
5688
  ]
5535
5689
  }
5536
5690
  },
5691
+ "action-selected-background-color-disabled": {
5692
+ "$value": "{color-neutral-400}",
5693
+ "$type": "color",
5694
+ "$description": "Used for the background of a disabled action that stays selected. Sits between the disabled background and the enabled selected background so the selected state keeps 3:1 contrast against the page while still reading as disabled.",
5695
+ "$extensions": {
5696
+ "com.figma.scopes": [
5697
+ "FRAME_FILL",
5698
+ "SHAPE_FILL"
5699
+ ]
5700
+ }
5701
+ },
5537
5702
  "action-selected-border-color-default": {
5538
5703
  "$value": "{action-selected-background-color-default}",
5539
5704
  "$type": "color",
@@ -799,31 +799,47 @@ export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3';
799
799
  export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#1d283e';
800
800
  export const GL_TABLE_SORTING_ICON_COLOR = '#fff';
801
801
  export const GL_TAB_SELECTED_INDICATOR_COLOR_DEFAULT = '#fff';
802
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_DEFAULT = '#737278';
803
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_HOVER = '#737278';
804
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_FOCUS = '#737278';
805
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_ACTIVE = '#737278';
802
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_DEFAULT = 'rgba(5, 5, 6, 0.4)';
803
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_HOVER = 'rgba(5, 5, 6, 0.4)';
804
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_FOCUS = 'rgba(5, 5, 6, 0.4)';
805
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_ACTIVE = 'rgba(255, 255, 255, 0.08)';
806
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_DISABLED = 'rgba(5, 5, 6, 0.4)';
806
807
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_DEFAULT = '#ececef';
807
808
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_HOVER = '#fbfafd';
808
809
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_FOCUS = '#fbfafd';
809
810
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_ACTIVE = '#fff';
810
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_DEFAULT = '#18171d';
811
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_HOVER = '#18171d';
812
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_FOCUS = '#18171d';
813
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_ACTIVE = '#18171d';
811
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_DISABLED = '#737278';
812
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_LOADING = '#28272d';
813
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_DEFAULT = '#737278';
814
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_HOVER = '#a4a3a8';
815
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_FOCUS = '#a4a3a8';
816
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_ACTIVE = '#a4a3a8';
817
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_DISABLED = '#3a383f';
818
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_DEFAULT = '#ececef';
819
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_HOVER = '#fbfafd';
820
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_FOCUS = '#fbfafd';
821
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_ACTIVE = '#fff';
822
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_DISABLED = '#737278';
823
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_LOADING = '#28272d';
824
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_DEFAULT = '#ececef';
825
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_HOVER = '#ececef';
826
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_FOCUS = '#ececef';
827
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_ACTIVE = '#ececef';
828
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_DISABLED = '#737278';
814
829
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_DEFAULT = '#18171d';
815
830
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_HOVER = '#18171d';
816
831
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_FOCUS = '#18171d';
817
832
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_ACTIVE = '#18171d';
833
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_DISABLED = '#18171d';
818
834
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_DISABLED = '#737278';
819
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_DEFAULT = '#4c4b51';
820
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_HOVER = '#626168';
821
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_FOCUS = '#626168';
822
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_ACTIVE = '#737278';
823
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_DEFAULT = '#63a6e9';
824
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_HOVER = '#9dc7f1';
825
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_FOCUS = '#9dc7f1';
826
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_ACTIVE = '#428fdc';
835
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_DEFAULT = '#18171d';
836
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_HOVER = '#18171d';
837
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_FOCUS = '#18171d';
838
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_ACTIVE = '#18171d';
839
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_DEFAULT = '#ececef';
840
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_HOVER = '#fbfafd';
841
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_FOCUS = '#fbfafd';
842
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_ACTIVE = '#fff';
827
843
  export const GL_TOGGLE_SWITCH_ICON_COLOR_DISABLED = '#28272d';
828
844
  export const GL_TOKEN_SELECTOR_TOKEN_CONTAINER_TOKEN_BACKGROUND_COLOR_FOCUS = '#626168';
829
845
  export const GL_TOKEN_BORDER_RADIUS = '0.25rem';
@@ -990,6 +1006,7 @@ export const GL_ACTION_SELECTED_BACKGROUND_COLOR_DEFAULT = '#ececef';
990
1006
  export const GL_ACTION_SELECTED_BACKGROUND_COLOR_HOVER = '#fbfafd';
991
1007
  export const GL_ACTION_SELECTED_BACKGROUND_COLOR_FOCUS = '#fbfafd';
992
1008
  export const GL_ACTION_SELECTED_BACKGROUND_COLOR_ACTIVE = '#fff';
1009
+ export const GL_ACTION_SELECTED_BACKGROUND_COLOR_DISABLED = '#737278';
993
1010
  export const GL_ACTION_SELECTED_BORDER_COLOR_DEFAULT = '#ececef';
994
1011
  export const GL_ACTION_SELECTED_BORDER_COLOR_HOVER = '#fbfafd';
995
1012
  export const GL_ACTION_SELECTED_BORDER_COLOR_FOCUS = '#fbfafd';
@@ -799,31 +799,47 @@ export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3';
799
799
  export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#e9f3fc';
800
800
  export const GL_TABLE_SORTING_ICON_COLOR = '#18171d';
801
801
  export const GL_TAB_SELECTED_INDICATOR_COLOR_DEFAULT = '#050506';
802
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_DEFAULT = '#89888d';
803
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_HOVER = '#89888d';
804
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_FOCUS = '#89888d';
805
- export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_ACTIVE = '#89888d';
802
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_DEFAULT = '#fff';
803
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_HOVER = '#fff';
804
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_FOCUS = '#fff';
805
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_ACTIVE = 'rgba(5, 5, 6, 0.16)';
806
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_UNCHECKED_DISABLED = '#fff';
806
807
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_DEFAULT = '#3a383f';
807
808
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_HOVER = '#18171d';
808
809
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_FOCUS = '#18171d';
809
810
  export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_ACTIVE = '#050506';
810
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_DEFAULT = '#fff';
811
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_HOVER = '#fff';
812
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_FOCUS = '#fff';
813
- export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_ACTIVE = '#fff';
811
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_CHECKED_DISABLED = '#89888d';
812
+ export const GL_TOGGLE_SWITCH_TRACK_COLOR_LOADING = '#ececef';
813
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_DEFAULT = '#89888d';
814
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_HOVER = '#626168';
815
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_FOCUS = '#626168';
816
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_ACTIVE = '#626168';
817
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_UNCHECKED_DISABLED = '#dcdcde';
818
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_DEFAULT = '#3a383f';
819
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_HOVER = '#18171d';
820
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_FOCUS = '#18171d';
821
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_ACTIVE = '#050506';
822
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_CHECKED_DISABLED = '#89888d';
823
+ export const GL_TOGGLE_SWITCH_TRACK_BORDER_COLOR_LOADING = '#ececef';
824
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_DEFAULT = '#3a383f';
825
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_HOVER = '#3a383f';
826
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_FOCUS = '#3a383f';
827
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_ACTIVE = '#3a383f';
828
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_UNCHECKED_DISABLED = '#89888d';
814
829
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_DEFAULT = '#fff';
815
830
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_HOVER = '#fff';
816
831
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_FOCUS = '#fff';
817
832
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_ACTIVE = '#fff';
833
+ export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_CHECKED_DISABLED = '#fff';
818
834
  export const GL_TOGGLE_SWITCH_BACKGROUND_COLOR_DISABLED = '#89888d';
819
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_DEFAULT = '#626168';
820
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_HOVER = '#4c4b51';
821
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_FOCUS = '#4c4b51';
822
- export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_ACTIVE = '#3a383f';
823
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_DEFAULT = '#1f75cb';
824
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_HOVER = '#2f68b4';
825
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_FOCUS = '#2f68b4';
826
- export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_ACTIVE = '#2f5ca0';
835
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_DEFAULT = '#fff';
836
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_HOVER = '#fff';
837
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_FOCUS = '#fff';
838
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_ACTIVE = '#fff';
839
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_DEFAULT = '#3a383f';
840
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_HOVER = '#18171d';
841
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_FOCUS = '#18171d';
842
+ export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_ACTIVE = '#050506';
827
843
  export const GL_TOGGLE_SWITCH_ICON_COLOR_DISABLED = '#ececef';
828
844
  export const GL_TOKEN_SELECTOR_TOKEN_CONTAINER_TOKEN_BACKGROUND_COLOR_FOCUS = '#a4a3a8';
829
845
  export const GL_TOKEN_BORDER_RADIUS = '0.25rem';
@@ -990,6 +1006,7 @@ export const GL_ACTION_SELECTED_BACKGROUND_COLOR_DEFAULT = '#3a383f';
990
1006
  export const GL_ACTION_SELECTED_BACKGROUND_COLOR_HOVER = '#18171d';
991
1007
  export const GL_ACTION_SELECTED_BACKGROUND_COLOR_FOCUS = '#18171d';
992
1008
  export const GL_ACTION_SELECTED_BACKGROUND_COLOR_ACTIVE = '#050506';
1009
+ export const GL_ACTION_SELECTED_BACKGROUND_COLOR_DISABLED = '#89888d';
993
1010
  export const GL_ACTION_SELECTED_BORDER_COLOR_DEFAULT = '#3a383f';
994
1011
  export const GL_ACTION_SELECTED_BORDER_COLOR_HOVER = '#18171d';
995
1012
  export const GL_ACTION_SELECTED_BORDER_COLOR_FOCUS = '#18171d';