@progress/kendo-theme-default 11.0.0-dev.0 → 11.0.0-dev.1

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 (44) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/default-blue.css +1 -1
  3. package/dist/default-dataviz-v4.css +1 -1
  4. package/dist/default-green.css +1 -1
  5. package/dist/default-main-dark.css +1 -1
  6. package/dist/default-main.css +1 -1
  7. package/dist/default-nordic.css +1 -1
  8. package/dist/default-ocean-blue-a11y.css +1 -1
  9. package/dist/default-ocean-blue.css +1 -1
  10. package/dist/default-orange.css +1 -1
  11. package/dist/default-purple.css +1 -1
  12. package/dist/default-turquoise.css +1 -1
  13. package/dist/default-urban.css +1 -1
  14. package/dist/meta/sassdoc-data.json +4858 -3160
  15. package/dist/meta/sassdoc-raw-data.json +2295 -1520
  16. package/dist/meta/variables.json +259 -47
  17. package/lib/swatches/default-blue.json +1 -1
  18. package/lib/swatches/default-dataviz-v4.json +1 -1
  19. package/lib/swatches/default-green.json +1 -1
  20. package/lib/swatches/default-main-dark.json +1 -1
  21. package/lib/swatches/default-main.json +1 -1
  22. package/lib/swatches/default-nordic.json +1 -1
  23. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  24. package/lib/swatches/default-ocean-blue.json +1 -1
  25. package/lib/swatches/default-orange.json +1 -1
  26. package/lib/swatches/default-purple.json +1 -1
  27. package/lib/swatches/default-turquoise.json +1 -1
  28. package/lib/swatches/default-urban.json +1 -1
  29. package/package.json +4 -4
  30. package/scss/action-sheet/_variables.scss +4 -1
  31. package/scss/button/_variables.scss +4 -0
  32. package/scss/calendar/_variables.scss +21 -0
  33. package/scss/chip/_variables.scss +19 -0
  34. package/scss/coloreditor/_variables.scss +3 -3
  35. package/scss/colorgradient/_variables.scss +2 -32
  36. package/scss/dialog/_variables.scss +5 -0
  37. package/scss/drawer/_variables.scss +26 -1
  38. package/scss/list/_variables.scss +78 -3
  39. package/scss/menu/_variables.scss +8 -0
  40. package/scss/notification/_variables.scss +9 -0
  41. package/scss/slider/_variables.scss +10 -1
  42. package/scss/switch/_variables.scss +35 -1
  43. package/scss/tabstrip/_variables.scss +0 -1
  44. package/scss/timeselector/_variables.scss +6 -0
@@ -112,6 +112,19 @@ $kendo-switch-off-thumb-hover-border: null !default;
112
112
  /// @group switch
113
113
  $kendo-switch-off-thumb-hover-gradient: null !default;
114
114
 
115
+ /// The background of the thumb when the disabled Switch is not checked.
116
+ /// @group switch
117
+ $kendo-switch-off-thumb-disabled-bg: null !default;
118
+ /// The text color of the thumb when the disabled Switch is not checked.
119
+ /// @group switch
120
+ $kendo-switch-off-thumb-disabled-text: null !default;
121
+ /// The border color of the thumb when the disabled Switch is not checked.
122
+ /// @group switch
123
+ $kendo-switch-off-thumb-disabled-border: null !default;
124
+ /// The background gradient of the thumb when the disabled Switch is not checked.
125
+ /// @group switch
126
+ $kendo-switch-off-thumb-disabled-gradient: null !default;
127
+
115
128
 
116
129
  /// The background of the track when the Switch is checked.
117
130
  /// @group switch
@@ -194,6 +207,19 @@ $kendo-switch-on-thumb-hover-border: null !default;
194
207
  /// @group switch
195
208
  $kendo-switch-on-thumb-hover-gradient: null !default;
196
209
 
210
+ /// The background of the thumb when the disabled Switch is checked.
211
+ /// @group switch
212
+ $kendo-switch-on-thumb-disabled-bg: null !default;
213
+ /// The text color of the thumb when the disabled Switch is checked.
214
+ /// @group switch
215
+ $kendo-switch-on-thumb-disabled-text: null !default;
216
+ /// The border color of the thumb when the disabled Switch is checked.
217
+ /// @group switch
218
+ $kendo-switch-on-thumb-disabled-border: null !default;
219
+ /// The background gradient of the thumb when the disabled Switch is checked.
220
+ /// @group switch
221
+ $kendo-switch-on-thumb-disabled-gradient: null !default;
222
+
197
223
  @forward "@progress/kendo-theme-core/scss/components/switch/_variables.scss" with (
198
224
  $kendo-switch-font-family: $kendo-switch-font-family,
199
225
  $kendo-switch-track-border-width: $kendo-switch-track-border-width,
@@ -226,6 +252,10 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
226
252
  $kendo-switch-off-thumb-hover-text: $kendo-switch-off-thumb-hover-text,
227
253
  $kendo-switch-off-thumb-hover-border: $kendo-switch-off-thumb-hover-border,
228
254
  $kendo-switch-off-thumb-hover-gradient: $kendo-switch-off-thumb-hover-gradient,
255
+ $kendo-switch-off-thumb-disabled-bg: $kendo-switch-off-thumb-disabled-bg,
256
+ $kendo-switch-off-thumb-disabled-text: $kendo-switch-off-thumb-disabled-text,
257
+ $kendo-switch-off-thumb-disabled-border: $kendo-switch-off-track-disabled-border,
258
+ $kendo-switch-off-thumb-disabled-gradient: $kendo-switch-off-thumb-disabled-gradient,
229
259
  $kendo-switch-on-track-bg: $kendo-switch-on-track-bg,
230
260
  $kendo-switch-on-track-text: $kendo-switch-on-track-text,
231
261
  $kendo-switch-on-track-border: $kendo-switch-on-track-border,
@@ -250,5 +280,9 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
250
280
  $kendo-switch-on-thumb-hover-bg: $kendo-switch-on-thumb-hover-bg,
251
281
  $kendo-switch-on-thumb-hover-text: $kendo-switch-on-thumb-hover-text,
252
282
  $kendo-switch-on-thumb-hover-border: $kendo-switch-on-thumb-hover-border,
253
- $kendo-switch-on-thumb-hover-gradient: $kendo-switch-on-thumb-hover-gradient
283
+ $kendo-switch-on-thumb-hover-gradient: $kendo-switch-on-thumb-hover-gradient,
284
+ $kendo-switch-on-thumb-disabled-bg: $kendo-switch-on-thumb-disabled-bg,
285
+ $kendo-switch-on-thumb-disabled-text: $kendo-switch-on-thumb-disabled-text,
286
+ $kendo-switch-on-thumb-disabled-border: $kendo-switch-on-track-disabled-border,
287
+ $kendo-switch-on-thumb-disabled-gradient: $kendo-switch-on-thumb-disabled-gradient,
254
288
  );
@@ -142,7 +142,6 @@ $kendo-tabstrip-item-selected-gradient: null !default;
142
142
  /// @group tabstrip
143
143
  $kendo-tabstrip-item-selected-font-weight: null !default;
144
144
 
145
-
146
145
  /// The shadow of the focused TabStrip items.
147
146
  /// @group tabstrip
148
147
  $kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
@@ -16,6 +16,9 @@ $kendo-time-selector-border: k-color(border) !default;
16
16
  $kendo-time-selector-header-padding-x: $kendo-actions-padding-x !default;
17
17
  $kendo-time-selector-header-padding-y: $kendo-actions-padding-y !default;
18
18
  $kendo-time-selector-header-border-width: 0px !default;
19
+ $kendo-time-selector-header-title-text: unset !default;
20
+ $kendo-time-selector-header-time-now-text: k-color(primary) !default;
21
+ $kendo-time-selector-header-time-now-hover-text: k-color(primary-hover) !default;
19
22
 
20
23
  $kendo-time-selector-fast-selection-gap: null !default;
21
24
 
@@ -91,6 +94,9 @@ $kendo-time-selector-now-button-hover-text: k-color(primary-hover) !default;
91
94
  $kendo-time-selector-header-padding-y: $kendo-time-selector-header-padding-y,
92
95
  $kendo-time-selector-header-border-width: $kendo-time-selector-header-border-width,
93
96
  $kendo-time-selector-fast-selection-gap: $kendo-time-selector-fast-selection-gap,
97
+ $kendo-time-selector-header-title-text: $kendo-time-selector-header-title-text,
98
+ $kendo-time-selector-header-time-now-text: $kendo-time-selector-header-time-now-text,
99
+ $kendo-time-selector-header-time-now-hover-text: $kendo-time-selector-header-time-now-hover-text,
94
100
  $kendo-time-list-width: $kendo-time-list-width,
95
101
  $kendo-time-list-height: $kendo-time-list-height,
96
102
  $kendo-time-list-title-font-size: $kendo-time-list-title-font-size,