@progress/kendo-theme-classic 12.3.1-dev.9 → 13.0.0-dev.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.
Files changed (78) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/classic-green-dark.css +1 -1
  3. package/dist/classic-green.css +1 -1
  4. package/dist/classic-lavender-dark.css +1 -1
  5. package/dist/classic-lavender.css +1 -1
  6. package/dist/classic-main-dark.css +1 -1
  7. package/dist/classic-main.css +1 -1
  8. package/dist/classic-metro-dark.css +1 -1
  9. package/dist/classic-metro.css +1 -1
  10. package/dist/classic-moonlight.css +1 -1
  11. package/dist/classic-opal-dark.css +1 -1
  12. package/dist/classic-opal.css +1 -1
  13. package/dist/classic-silver-dark.css +1 -1
  14. package/dist/classic-silver.css +1 -1
  15. package/dist/classic-uniform.css +1 -1
  16. package/dist/meta/sassdoc-data.json +20456 -15782
  17. package/dist/meta/sassdoc-raw-data.json +9898 -7606
  18. package/dist/meta/variables.json +715 -465
  19. package/lib/swatches/classic-green-dark.json +1 -1
  20. package/lib/swatches/classic-green.json +1 -1
  21. package/lib/swatches/classic-lavender-dark.json +1 -1
  22. package/lib/swatches/classic-lavender.json +1 -1
  23. package/lib/swatches/classic-main-dark.json +1 -1
  24. package/lib/swatches/classic-main.json +1 -1
  25. package/lib/swatches/classic-metro-dark.json +1 -1
  26. package/lib/swatches/classic-metro.json +1 -1
  27. package/lib/swatches/classic-moonlight.json +1 -1
  28. package/lib/swatches/classic-opal-dark.json +1 -1
  29. package/lib/swatches/classic-opal.json +1 -1
  30. package/lib/swatches/classic-silver-dark.json +1 -1
  31. package/lib/swatches/classic-silver.json +1 -1
  32. package/lib/swatches/classic-uniform.json +1 -1
  33. package/package.json +5 -5
  34. package/scss/appbar/_variables.scss +6 -16
  35. package/scss/avatar/_variables.scss +37 -23
  36. package/scss/badge/_variables.scss +22 -43
  37. package/scss/bottom-navigation/_variables.scss +12 -17
  38. package/scss/breadcrumb/_variables.scss +6 -30
  39. package/scss/button/_variables.scss +22 -41
  40. package/scss/calendar/_variables.scss +9 -31
  41. package/scss/card/_variables.scss +7 -17
  42. package/scss/checkbox/_variables.scss +13 -23
  43. package/scss/chip/_variables.scss +38 -50
  44. package/scss/coloreditor/_variables.scss +9 -39
  45. package/scss/colorgradient/_variables.scss +12 -42
  46. package/scss/colorpalette/_variables.scss +7 -19
  47. package/scss/column-menu/_variables.scss +6 -25
  48. package/scss/datetimepicker/_variables.scss +6 -16
  49. package/scss/dialog/_variables.scss +7 -10
  50. package/scss/fab/_variables.scss +21 -34
  51. package/scss/floating-label/_variables.scss +2 -2
  52. package/scss/forms/_variables.scss +7 -17
  53. package/scss/grid/_variables.scss +7 -42
  54. package/scss/icons/_variables.scss +6 -0
  55. package/scss/input/_variables.scss +36 -34
  56. package/scss/list/_variables.scss +6 -73
  57. package/scss/loader/_variables.scss +13 -17
  58. package/scss/menu/_variables.scss +6 -0
  59. package/scss/messagebox/_variables.scss +8 -17
  60. package/scss/notification/_functions.scss +3 -3
  61. package/scss/notification/_variables.scss +6 -13
  62. package/scss/otp/_variables.scss +1 -22
  63. package/scss/overlay/_variables.scss +5 -17
  64. package/scss/pager/_variables.scss +7 -26
  65. package/scss/radio/_variables.scss +6 -22
  66. package/scss/signature/_variables.scss +0 -21
  67. package/scss/split-button/_variables.scss +2 -2
  68. package/scss/spreadsheet/_variables.scss +1 -1
  69. package/scss/suggestion/_variables.scss +4 -45
  70. package/scss/switch/_variables.scss +101 -7
  71. package/scss/table/_variables.scss +6 -25
  72. package/scss/tabstrip/_variables.scss +6 -25
  73. package/scss/timeselector/_variables.scss +24 -42
  74. package/scss/toolbar/_variables.scss +15 -26
  75. package/scss/tooltip/_functions.scss +3 -3
  76. package/scss/tooltip/_variables.scss +1 -13
  77. package/scss/treeview/_variables.scss +8 -33
  78. package/scss/window/_variables.scss +12 -19
@@ -3,6 +3,11 @@
3
3
 
4
4
  // Card
5
5
 
6
+ /// The default theme color of the Card.
7
+ /// @group card
8
+ /// @role default
9
+ $kendo-card-default-theme-color: null !default;
10
+
6
11
  /// The horizontal padding of the Card.
7
12
  /// @group card
8
13
  $kendo-card-padding-x: k-spacing(4) !default;
@@ -181,24 +186,10 @@ $kendo-card-callout-width: 20px !default;
181
186
  /// @group card
182
187
  $kendo-card-callout-height: 20px !default;
183
188
 
184
- /// The theme colors of the Card.
185
- /// @group card
186
- $kendo-card-theme-colors: (
187
- "primary": k-color(primary),
188
- "secondary": k-color(secondary),
189
- "tertiary": k-color(tertiary),
190
- "info": k-color(info),
191
- "success": k-color(success),
192
- "warning": k-color(warning),
193
- "error": k-color(error),
194
- "dark": k-color(dark),
195
- "light": k-color(light),
196
- "inverse": if($kendo-is-dark-theme, k-color(light), k-color(dark)),
197
- ) !default;
198
-
199
189
 
200
190
 
201
191
  @forward "@progress/kendo-theme-core/scss/components/card/_variables.scss" with (
192
+ $kendo-card-default-theme-color: $kendo-card-default-theme-color,
202
193
  $kendo-card-padding-x: $kendo-card-padding-x,
203
194
  $kendo-card-padding-y: $kendo-card-padding-y,
204
195
  $kendo-card-border-width: $kendo-card-border-width,
@@ -252,6 +243,5 @@ $kendo-card-theme-colors: (
252
243
  $kendo-card-deck-scroll-button-radius: $kendo-card-deck-scroll-button-radius,
253
244
  $kendo-card-deck-scroll-button-offset: $kendo-card-deck-scroll-button-offset,
254
245
  $kendo-card-callout-width: $kendo-card-callout-width,
255
- $kendo-card-callout-height: $kendo-card-callout-height,
256
- $kendo-card-theme-colors: $kendo-card-theme-colors
246
+ $kendo-card-callout-height: $kendo-card-callout-height
257
247
  );
@@ -38,27 +38,6 @@ $kendo-checkbox-md-ripple-size: 300% !default;
38
38
  /// @group checkbox
39
39
  $kendo-checkbox-lg-ripple-size: 300% !default;
40
40
 
41
- // A map with the different CheckBox sizes.
42
- /// The sizes of the CheckBox.
43
- /// @group checkbox
44
- $kendo-checkbox-sizes: (
45
- sm: (
46
- size: $kendo-checkbox-sm-size,
47
- glyph-size: $kendo-checkbox-sm-glyph-size,
48
- ripple-size: $kendo-checkbox-sm-ripple-size
49
- ),
50
- md: (
51
- size: $kendo-checkbox-md-size,
52
- glyph-size: $kendo-checkbox-md-glyph-size,
53
- ripple-size: $kendo-checkbox-md-ripple-size
54
- ),
55
- lg: (
56
- size: $kendo-checkbox-lg-size,
57
- glyph-size: $kendo-checkbox-lg-glyph-size,
58
- ripple-size: $kendo-checkbox-lg-ripple-size
59
- )
60
- ) !default;
61
-
62
41
  /// The background color of the CheckBox.
63
42
  /// @group checkbox
64
43
  $kendo-checkbox-bg: k-color(surface-alt) !default;
@@ -139,6 +118,16 @@ $kendo-checkbox-invalid-text: k-color(error-on-surface) !default;
139
118
  /// @group checkbox
140
119
  $kendo-checkbox-invalid-border: k-color(error-on-surface) !default;
141
120
 
121
+ /// The default size of the Checkbox.
122
+ /// @group checkbox
123
+ /// @role default
124
+ $kendo-checkbox-default-size: "md" !default;
125
+
126
+ /// The default border radius of the Checkbox.
127
+ /// @group checkbox
128
+ /// @role default
129
+ $kendo-checkbox-default-roundness: "md" !default;
130
+
142
131
 
143
132
  // CheckBox indicator
144
133
 
@@ -205,7 +194,6 @@ $kendo-checkbox-ripple-opacity: .25 !default;
205
194
  $kendo-checkbox-sm-ripple-size: $kendo-checkbox-sm-ripple-size,
206
195
  $kendo-checkbox-md-ripple-size: $kendo-checkbox-md-ripple-size,
207
196
  $kendo-checkbox-lg-ripple-size: $kendo-checkbox-lg-ripple-size,
208
- $kendo-checkbox-sizes: $kendo-checkbox-sizes,
209
197
  $kendo-checkbox-bg: $kendo-checkbox-bg,
210
198
  $kendo-checkbox-text: $kendo-checkbox-text,
211
199
  $kendo-checkbox-border: $kendo-checkbox-border,
@@ -241,5 +229,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
241
229
  $kendo-checkbox-list-item-padding-x: $kendo-checkbox-list-item-padding-x,
242
230
  $kendo-checkbox-list-item-padding-y: $kendo-checkbox-list-item-padding-y,
243
231
  $kendo-checkbox-ripple-bg: $kendo-checkbox-ripple-bg,
244
- $kendo-checkbox-ripple-opacity: $kendo-checkbox-ripple-opacity
232
+ $kendo-checkbox-ripple-opacity: $kendo-checkbox-ripple-opacity,
233
+ $kendo-checkbox-default-size: $kendo-checkbox-default-size,
234
+ $kendo-checkbox-default-roundness: $kendo-checkbox-default-roundness
245
235
  );
@@ -5,6 +5,23 @@
5
5
 
6
6
  // Chip
7
7
 
8
+ /// The default theme color of the Chip.
9
+ /// @group chip
10
+ /// @role default
11
+ $kendo-chip-default-theme-color: "base" !default;
12
+ /// The default fill mode of the Chip.
13
+ /// @group chip
14
+ /// @role default
15
+ $kendo-chip-default-fill-mode: "solid" !default;
16
+ /// The default roundness of the Chip.
17
+ /// @group chip
18
+ /// @role default
19
+ $kendo-chip-default-roundness: "md" !default;
20
+ /// The default size of the Chip.
21
+ /// @group chip
22
+ /// @role default
23
+ $kendo-chip-default-size: "md" !default;
24
+
8
25
  /// The width of the border around the Chip.
9
26
  /// @group chip
10
27
  $kendo-chip-border-width: 1px !default;
@@ -38,7 +55,7 @@ $kendo-chip-font-weight: var( --kendo-font-weight-normal, normal ) !default;
38
55
 
39
56
  /// The font size of the Chip.
40
57
  /// @group chip
41
- $kendo-chip-font-size: var( --kendo-font-size, inherit ) !default;
58
+ $kendo-chip-font-size: null !default;
42
59
  /// The font size of the small Chip.
43
60
  /// @group chip
44
61
  $kendo-chip-sm-font-size: var( --kendo-font-size, inherit ) !default;
@@ -51,57 +68,24 @@ $kendo-chip-lg-font-size: var( --kendo-font-size, inherit ) !default;
51
68
 
52
69
  /// The Chip's line height that is related to the $kendo-font-size.
53
70
  /// @group chip
54
- $kendo-chip-line-height: var( --kendo-line-height-xs, normal ) !default;
71
+ $kendo-chip-line-height: null !default;
55
72
  /// The small Chip's line height that is related to the $kendo-font-size.
56
73
  /// @group chip
57
- $kendo-chip-sm-line-height: $kendo-chip-line-height !default;
74
+ $kendo-chip-sm-line-height: var( --kendo-line-height-xs, normal ) !default;
58
75
  /// The medium Chip's line height that is related to the $kendo-font-size.
59
76
  /// @group chip
60
- $kendo-chip-md-line-height: $kendo-chip-line-height !default;
77
+ $kendo-chip-md-line-height: var( --kendo-line-height-xs, normal ) !default;
61
78
  /// The large Chip's line height that is related to the $kendo-font-size.
62
79
  /// @group chip
63
- $kendo-chip-lg-line-height: $kendo-chip-line-height !default;
80
+ $kendo-chip-lg-line-height: var( --kendo-line-height-xs, normal ) !default;
64
81
 
65
- $kendo-chip-calc-size: calc( #{$kendo-chip-line-height} * 1em + calc( #{$kendo-chip-md-padding-y} * 2 ) + #{$kendo-chip-border-width} * 2 ) !default;
82
+ $kendo-chip-calc-size: calc( #{$kendo-chip-md-line-height} * 1em + calc( #{$kendo-chip-md-padding-y} * 2 ) + #{$kendo-chip-border-width} * 2 ) !default;
66
83
  $kendo-chip-sm-calc-size: calc( #{$kendo-chip-sm-line-height} * 1em + calc( #{$kendo-chip-sm-padding-y} * 2 ) + #{$kendo-chip-border-width} * 2 ) !default;
67
84
 
68
- /// The map with the sizes of the Chip.
69
- /// @group chip
70
- $kendo-chip-sizes: (
71
- sm: (
72
- padding-x: $kendo-chip-sm-padding-x,
73
- padding-y: $kendo-chip-sm-padding-y,
74
- font-size: $kendo-chip-sm-font-size,
75
- line-height: $kendo-chip-sm-line-height
76
- ),
77
- md: (
78
- padding-x: $kendo-chip-md-padding-x,
79
- padding-y: $kendo-chip-md-padding-y,
80
- font-size: $kendo-chip-md-font-size,
81
- line-height: $kendo-chip-md-line-height
82
- ),
83
- lg: (
84
- padding-x: $kendo-chip-lg-padding-x,
85
- padding-y: $kendo-chip-lg-padding-y,
86
- font-size: $kendo-chip-lg-font-size,
87
- line-height: $kendo-chip-lg-line-height
88
- )
89
- ) !default;
90
-
91
85
  /// The base background of the Chip.
92
86
  /// @group chip
93
87
  $kendo-chip-base-bg: $kendo-button-bg !default;
94
88
 
95
- /// The theme colors map for the Chip.
96
- /// @group chip
97
- $kendo-chip-theme-colors: (
98
- "base": $kendo-chip-base-bg,
99
- "error": k-color(error-subtle),
100
- "info": k-color(info-subtle),
101
- "warning": k-color(warning-subtle),
102
- "success": k-color(success-subtle)
103
- ) !default;
104
-
105
89
  /// The base background color of the solid Chip.
106
90
  /// @group chip
107
91
  $kendo-chip-solid-bg: $kendo-chip-base-bg !default;
@@ -165,18 +149,22 @@ $kendo-chip-disabled-text: null !default;
165
149
  $kendo-chip-disabled-border: $kendo-chip-disabled-bg !default;
166
150
 
167
151
 
168
- // Chip List
169
-
170
- /// The sizes of the Chip list.
152
+ /// The sizes of the small Chip list.
153
+ /// @group chip
154
+ $kendo-chip-list-size-sm: k-spacing(1) !default;
155
+ /// The sizes of the medium Chip list.
156
+ /// @group chip
157
+ $kendo-chip-list-size-md: k-spacing(1) !default;
158
+ /// The sizes of the large Chip list.
171
159
  /// @group chip
172
- $kendo-chip-list-sizes: (
173
- sm: k-spacing(1),
174
- md: k-spacing(1),
175
- lg: k-spacing(1)
176
- ) !default;
160
+ $kendo-chip-list-size-lg: k-spacing(1) !default;
177
161
 
178
162
 
179
163
  @forward "@progress/kendo-theme-core/scss/components/chip/_variables.scss" with (
164
+ $kendo-chip-default-theme-color: $kendo-chip-default-theme-color,
165
+ $kendo-chip-default-fill-mode: $kendo-chip-default-fill-mode,
166
+ $kendo-chip-default-roundness: $kendo-chip-default-roundness,
167
+ $kendo-chip-default-size: $kendo-chip-default-size,
180
168
  $kendo-chip-border-width: $kendo-chip-border-width,
181
169
  $kendo-chip-spacing: $kendo-chip-spacing,
182
170
  $kendo-chip-sm-padding-x: $kendo-chip-sm-padding-x,
@@ -196,9 +184,7 @@ $kendo-chip-list-sizes: (
196
184
  $kendo-chip-lg-line-height: $kendo-chip-lg-line-height,
197
185
  $kendo-chip-calc-size: $kendo-chip-calc-size,
198
186
  $kendo-chip-sm-calc-size: $kendo-chip-sm-calc-size,
199
- $kendo-chip-sizes: $kendo-chip-sizes,
200
187
  $kendo-chip-base-bg: $kendo-chip-base-bg,
201
- $kendo-chip-theme-colors: $kendo-chip-theme-colors,
202
188
  $kendo-chip-solid-bg: $kendo-chip-solid-bg,
203
189
  $kendo-chip-solid-text: $kendo-chip-solid-text,
204
190
  $kendo-chip-solid-border: $kendo-chip-solid-border,
@@ -217,5 +203,7 @@ $kendo-chip-list-sizes: (
217
203
  $kendo-chip-disabled-bg: $kendo-chip-disabled-bg,
218
204
  $kendo-chip-disabled-text: $kendo-chip-disabled-text,
219
205
  $kendo-chip-disabled-border: $kendo-chip-disabled-border,
220
- $kendo-chip-list-sizes: $kendo-chip-list-sizes
206
+ $kendo-chip-list-size-sm: $kendo-chip-list-size-sm,
207
+ $kendo-chip-list-size-md: $kendo-chip-list-size-md,
208
+ $kendo-chip-list-size-lg: $kendo-chip-list-size-lg
221
209
  );
@@ -2,19 +2,24 @@
2
2
 
3
3
  // ColorEditor/FlatColorPicker
4
4
 
5
+ /// The default size of the ColorEditor.
6
+ /// @group color-editor
7
+ /// @role default
8
+ $kendo-color-editor-default-size: "md" !default;
9
+
5
10
  /// The spacer of the ColorEditor.
6
11
  /// @group color-editor
7
12
  $kendo-color-editor-spacer: k-spacing(3) !default;
8
13
 
9
14
  /// The minimum width of the ColorEditor.
10
15
  /// @group color-editor
11
- $kendo-color-editor-min-width: 272px !default;
16
+ $kendo-color-editor-min-width: null !default;
12
17
  /// The minimum width of the ColorEditor.
13
18
  /// @group color-editor
14
19
  $kendo-color-editor-sm-min-width: 252px !default;
15
20
  /// The minimum width of the ColorEditor.
16
21
  /// @group color-editor
17
- $kendo-color-editor-md-min-width: $kendo-color-editor-min-width !default;
22
+ $kendo-color-editor-md-min-width: 272px !default;
18
23
  /// The minimum width of the ColorEditor.
19
24
  /// @group color-editor
20
25
  $kendo-color-editor-lg-min-width: 362px !default;
@@ -142,43 +147,9 @@ $kendo-color-editor-color-gradient-focus-outline: 2px !default;
142
147
  /// @group color-editor
143
148
  $kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
144
149
 
145
- /// The size map of the ColorEditor.
146
- /// @group color-editor
147
- $kendo-color-editor-sizes: (
148
- sm: (
149
- min-width: $kendo-color-editor-sm-min-width,
150
- header-padding-x: $kendo-color-editor-sm-header-padding-x,
151
- header-padding-y: $kendo-color-editor-sm-header-padding-y,
152
- views-padding-x: $kendo-color-editor-sm-views-padding-x,
153
- views-padding-y: $kendo-color-editor-sm-views-padding-y,
154
- preview-gap: $kendo-color-editor-sm-preview-gap,
155
- preview-width: $kendo-color-editor-sm-color-preview-width,
156
- preview-height: $kendo-color-editor-sm-color-preview-height,
157
-
158
- ),
159
- md: (
160
- min-width: $kendo-color-editor-md-min-width,
161
- header-padding-x: $kendo-color-editor-md-header-padding-x,
162
- header-padding-y: $kendo-color-editor-md-header-padding-y,
163
- views-padding-x: $kendo-color-editor-md-views-padding-x,
164
- views-padding-y: $kendo-color-editor-md-views-padding-y,
165
- preview-gap: $kendo-color-editor-md-preview-gap,
166
- preview-width: $kendo-color-editor-md-color-preview-width,
167
- preview-height: $kendo-color-editor-md-color-preview-height,
168
- ),
169
- lg: (
170
- min-width: $kendo-color-editor-lg-min-width,
171
- header-padding-x: $kendo-color-editor-lg-header-padding-x,
172
- header-padding-y: $kendo-color-editor-lg-header-padding-y,
173
- views-padding-x: $kendo-color-editor-lg-views-padding-x,
174
- views-padding-y: $kendo-color-editor-lg-views-padding-y,
175
- preview-gap: $kendo-color-editor-lg-preview-gap,
176
- preview-width: $kendo-color-editor-lg-color-preview-width,
177
- preview-height: $kendo-color-editor-lg-color-preview-height,
178
- )
179
- ) !default;
180
150
 
181
151
  @forward "@progress/kendo-theme-core/scss/components/coloreditor/_variables.scss" with (
152
+ $kendo-color-editor-default-size: $kendo-color-editor-default-size,
182
153
  $kendo-color-editor-spacer: $kendo-color-editor-spacer,
183
154
  $kendo-color-editor-min-width: $kendo-color-editor-min-width,
184
155
  $kendo-color-editor-sm-min-width: $kendo-color-editor-sm-min-width,
@@ -222,6 +193,5 @@ $kendo-color-editor-sizes: (
222
193
  $kendo-color-editor-lg-views-padding-x: $kendo-color-editor-lg-views-padding-x,
223
194
  $kendo-color-editor-color-gradient-focus-outline-color: $kendo-color-editor-color-gradient-focus-outline-color,
224
195
  $kendo-color-editor-color-gradient-focus-outline: $kendo-color-editor-color-gradient-focus-outline,
225
- $kendo-color-editor-color-gradient-focus-outline-offset: $kendo-color-editor-color-gradient-focus-outline-offset,
226
- $kendo-color-editor-sizes: $kendo-color-editor-sizes
196
+ $kendo-color-editor-color-gradient-focus-outline-offset: $kendo-color-editor-color-gradient-focus-outline-offset
227
197
  );
@@ -3,13 +3,18 @@
3
3
 
4
4
  // ColorGradient
5
5
 
6
+ /// The default size of the ColorGradient.
7
+ /// @group color-gradient
8
+ /// @role default
9
+ $kendo-color-gradient-default-size: "md" !default;
10
+
6
11
  /// The spacer of the ColorGradient.
7
12
  /// @group color-gradient
8
13
  $kendo-color-gradient-spacer: k-spacing(3) !default;
9
14
 
10
15
  /// The width of the ColorGradient.
11
16
  /// @group color-gradient
12
- $kendo-color-gradient-width: 272px !default;
17
+ $kendo-color-gradient-width: null !default;
13
18
  /// The width of the border around the ColorGradient.
14
19
  /// @group color-gradient
15
20
  $kendo-color-gradient-border-width: 1px !default;
@@ -18,7 +23,7 @@ $kendo-color-gradient-border-width: 1px !default;
18
23
  $kendo-color-gradient-border-radius: k-border-radius(md) !default;
19
24
  /// The spacing between the sections of the ColorGradient.
20
25
  /// @group color-gradient
21
- $kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
26
+ $kendo-color-gradient-gap: null !default;
22
27
  /// The font family of the ColorGradient.
23
28
  /// @group color-gradient
24
29
  $kendo-color-gradient-font-family: var( --kendo-font-family, inherit ) !default;
@@ -62,17 +67,17 @@ $kendo-color-gradient-lg-padding-x: k-spacing(4.5) !default;
62
67
  $kendo-color-gradient-sm-width: 252px !default;
63
68
  /// The width of the medium ColorGradient.
64
69
  /// @group color-gradient
65
- $kendo-color-gradient-md-width: $kendo-color-gradient-width !default;
70
+ $kendo-color-gradient-md-width: 272px !default;
66
71
  /// The width of the large ColorGradient.
67
72
  /// @group color-gradient
68
73
  $kendo-color-gradient-lg-width: 362px !default;
69
74
 
70
75
  /// The spacing between the sections of the small ColorGradient.
71
76
  /// @group color-gradient
72
- $kendo-color-gradient-sm-gap: $kendo-color-gradient-gap !default;
77
+ $kendo-color-gradient-sm-gap: $kendo-color-gradient-spacer !default;
73
78
  /// The spacing between the sections of the medium ColorGradient.
74
79
  /// @group color-gradient
75
- $kendo-color-gradient-md-gap: $kendo-color-gradient-gap !default;
80
+ $kendo-color-gradient-md-gap: $kendo-color-gradient-spacer !default;
76
81
  /// The spacing between the sections of the large ColorGradient.
77
82
  /// @group color-gradient
78
83
  $kendo-color-gradient-lg-gap: k-spacing(4.5) !default;
@@ -214,42 +219,8 @@ $kendo-color-gradient-contrast-ratio-font-weight: var( --kendo-font-weight-bold,
214
219
  /// @group color-gradient
215
220
  $kendo-color-gradient-contrast-spacer: calc( #{$kendo-color-gradient-spacer} / 1.5 ) !default;
216
221
 
217
- /// The size map of the ColorGradient.
218
- /// @group color-gradient
219
- $kendo-color-gradient-sizes: (
220
- sm: (
221
- width: $kendo-color-gradient-sm-width,
222
- vertical-slider-height: $kendo-color-gradient-sm-slider-vertical-size,
223
- rectangle-height: $kendo-color-gradient-sm-canvas-rectangle-height,
224
- input-width: $kendo-color-gradient-sm-input-width,
225
- gap: $kendo-color-gradient-sm-gap,
226
- canvas-gap: $kendo-color-gradient-sm-canvas-gap,
227
- padding-x: $kendo-color-gradient-sm-padding-x,
228
- padding-y: $kendo-color-gradient-sm-padding-y
229
- ),
230
- md: (
231
- width: $kendo-color-gradient-md-width,
232
- vertical-slider-height: $kendo-color-gradient-md-slider-vertical-size,
233
- rectangle-height: $kendo-color-gradient-md-canvas-rectangle-height,
234
- input-width: $kendo-color-gradient-md-input-width,
235
- gap: $kendo-color-gradient-md-gap,
236
- canvas-gap: $kendo-color-gradient-md-canvas-gap,
237
- padding-x: $kendo-color-gradient-md-padding-x,
238
- padding-y: $kendo-color-gradient-md-padding-y
239
- ),
240
- lg: (
241
- width: $kendo-color-gradient-lg-width,
242
- vertical-slider-height: $kendo-color-gradient-lg-slider-vertical-size,
243
- rectangle-height: $kendo-color-gradient-lg-canvas-rectangle-height,
244
- input-width: $kendo-color-gradient-lg-input-width,
245
- gap: $kendo-color-gradient-lg-gap,
246
- canvas-gap: $kendo-color-gradient-lg-canvas-gap,
247
- padding-x: $kendo-color-gradient-lg-padding-x,
248
- padding-y: $kendo-color-gradient-lg-padding-y
249
- )
250
- ) !default;
251
-
252
222
  @forward "@progress/kendo-theme-core/scss/components/colorgradient/_variables.scss" with (
223
+ $kendo-color-gradient-default-size: $kendo-color-gradient-default-size,
253
224
  $kendo-color-gradient-spacer: $kendo-color-gradient-spacer,
254
225
  $kendo-color-gradient-width: $kendo-color-gradient-width,
255
226
  $kendo-color-gradient-sm-width: $kendo-color-gradient-sm-width,
@@ -314,6 +285,5 @@ $kendo-color-gradient-sizes: (
314
285
  $kendo-color-gradient-md-input-width: $kendo-color-gradient-md-input-width,
315
286
  $kendo-color-gradient-lg-input-width: $kendo-color-gradient-lg-input-width,
316
287
  $kendo-color-gradient-contrast-ratio-font-weight: $kendo-color-gradient-contrast-ratio-font-weight,
317
- $kendo-color-gradient-contrast-spacer: $kendo-color-gradient-contrast-spacer,
318
- $kendo-color-gradient-sizes: $kendo-color-gradient-sizes
288
+ $kendo-color-gradient-contrast-spacer: $kendo-color-gradient-contrast-spacer
319
289
  );
@@ -2,6 +2,11 @@
2
2
 
3
3
  // ColorPalette
4
4
 
5
+ /// The default size of the ColorPalette.
6
+ /// @group color-palette
7
+ /// @role default
8
+ $kendo-color-palette-default-size: "md" !default;
9
+
5
10
  /// The font family of the ColorPalette.
6
11
  /// @group color-palette
7
12
  $kendo-color-palette-font-family: var( --kendo-font-family, inherit ) !default;
@@ -46,24 +51,8 @@ $kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0
46
51
  /// @group color-palette
47
52
  $kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
48
53
 
49
- /// The size map of the ColorPalette.
50
- /// @group color-palette
51
- $kendo-color-palette-sizes: (
52
- sm: (
53
- width: $kendo-color-palette-sm-tile-width,
54
- height: $kendo-color-palette-sm-tile-height
55
- ),
56
- md: (
57
- width: $kendo-color-palette-md-tile-width,
58
- height: $kendo-color-palette-md-tile-height
59
- ),
60
- lg: (
61
- width: $kendo-color-palette-lg-tile-width,
62
- height: $kendo-color-palette-lg-tile-height
63
- )
64
- ) !default;
65
-
66
54
  @forward "@progress/kendo-theme-core/scss/components/colorpalette/_variables.scss" with (
55
+ $kendo-color-palette-default-size: $kendo-color-palette-default-size,
67
56
  $kendo-color-palette-font-family: $kendo-color-palette-font-family,
68
57
  $kendo-color-palette-font-size: $kendo-color-palette-font-size,
69
58
  $kendo-color-palette-line-height: $kendo-color-palette-line-height,
@@ -77,6 +66,5 @@ $kendo-color-palette-sizes: (
77
66
  $kendo-color-palette-lg-tile-height: $kendo-color-palette-lg-tile-height,
78
67
  $kendo-color-palette-tile-focus-shadow: $kendo-color-palette-tile-focus-shadow,
79
68
  $kendo-color-palette-tile-hover-shadow: $kendo-color-palette-tile-hover-shadow,
80
- $kendo-color-palette-tile-selected-shadow: $kendo-color-palette-tile-selected-shadow,
81
- $kendo-color-palette-sizes: $kendo-color-palette-sizes
69
+ $kendo-color-palette-tile-selected-shadow: $kendo-color-palette-tile-selected-shadow
82
70
  );
@@ -1,5 +1,10 @@
1
1
  @use "../core/_index.scss" as *;
2
2
 
3
+ /// The default size of the ColumnMenu.
4
+ /// @group column-menu
5
+ /// @role default
6
+ $kendo-column-menu-default-size: "md" !default;
7
+
3
8
  /// The horizontal padding of the small ColumnMenu item.
4
9
  /// @group column-menu
5
10
  $kendo-column-menu-item-sm-padding-x: k-spacing(2) !default;
@@ -51,29 +56,6 @@ $kendo-column-menu-lg-line-height: var( --kendo-line-height-lg, normal ) !defaul
51
56
  /// @group column-menu
52
57
  $kendo-column-menu-font-family: var( --kendo-font-family, inherit ) !default;
53
58
 
54
- /// The sizes map for the ColumnMenu.
55
- /// @group column-menu
56
- $kendo-column-menu-sizes: (
57
- sm: (
58
- padding-x: $kendo-column-menu-item-sm-padding-x,
59
- padding-y: $kendo-column-menu-item-sm-padding-y,
60
- font-size: $kendo-column-menu-sm-font-size,
61
- line-height: $kendo-column-menu-sm-line-height
62
- ),
63
- md: (
64
- padding-x: $kendo-column-menu-item-md-padding-x,
65
- padding-y: $kendo-column-menu-item-md-padding-y,
66
- font-size: $kendo-column-menu-md-font-size,
67
- line-height: $kendo-column-menu-md-line-height
68
- ),
69
- lg: (
70
- padding-x: $kendo-column-menu-item-lg-padding-x,
71
- padding-y: $kendo-column-menu-item-lg-padding-y,
72
- font-size: $kendo-column-menu-lg-font-size,
73
- line-height: $kendo-column-menu-lg-line-height
74
- )
75
- ) !default;
76
-
77
59
  // Group Menu
78
60
  /// The background color of the hovered GroupMenu item action.
79
61
  /// @group column-menu
@@ -90,6 +72,7 @@ $kendo-group-menu-item-border: k-color(border) !default;
90
72
 
91
73
 
92
74
  @forward "@progress/kendo-theme-core/scss/components/column-menu/_variables.scss" with (
75
+ $kendo-column-menu-default-size: $kendo-column-menu-default-size,
93
76
  $kendo-column-menu-font-size: $kendo-column-menu-font-size,
94
77
  $kendo-column-menu-sm-font-size: $kendo-column-menu-sm-font-size,
95
78
  $kendo-column-menu-md-font-size: $kendo-column-menu-md-font-size,
@@ -105,8 +88,6 @@ $kendo-group-menu-item-border: k-color(border) !default;
105
88
  $kendo-column-menu-item-md-padding-y: $kendo-column-menu-item-md-padding-y,
106
89
  $kendo-column-menu-item-lg-padding-x: $kendo-column-menu-item-lg-padding-x,
107
90
  $kendo-column-menu-item-lg-padding-y: $kendo-column-menu-item-lg-padding-y,
108
- $kendo-column-menu-sizes: $kendo-column-menu-sizes,
109
- // Group Menu
110
91
  $kendo-group-menu-item-action-hover-bg: $kendo-group-menu-item-action-hover-bg,
111
92
  $kendo-group-menu-item-action-selected-bg: $kendo-group-menu-item-action-selected-bg,
112
93
  $kendo-group-menu-item-add-action-text: $kendo-group-menu-item-add-action-text,
@@ -2,6 +2,11 @@
2
2
 
3
3
  // DateTime
4
4
 
5
+ /// The default size of the DateTimePicker.
6
+ /// @group date-time-picker
7
+ /// @role default
8
+ $kendo-datetime-default-size: "md" !default;
9
+
5
10
  /// The width of the DateTimePicker.
6
11
  /// @group date-time-picker
7
12
  $kendo-datetime-width: calc( calc( #{$kendo-calendar-cell-size} * 8 ) + calc( #{$kendo-infinite-calendar-view-padding-x} * 2 )) !default;
@@ -16,25 +21,10 @@ $kendo-datetime-md-width: $kendo-datetime-width !default;
16
21
  /// @group date-time-picker
17
22
  $kendo-datetime-lg-width: calc( calc( #{$kendo-calendar-lg-cell-size} * 8 ) + calc( #{$kendo-infinite-calendar-view-padding-x} * 2 )) !default;
18
23
 
19
- /// The sizes map for the DateTimePicker.
20
- /// @group date-time-picker
21
- $kendo-datetime-sizes: (
22
- sm: (
23
- width: $kendo-datetime-sm-width
24
- ),
25
- md: (
26
- width: $kendo-datetime-md-width
27
- ),
28
- lg: (
29
- width: $kendo-datetime-lg-width
30
- )
31
- ) !default;
32
-
33
-
34
24
  @forward "@progress/kendo-theme-core/scss/components/datetimepicker/_variables.scss" with (
35
25
  $kendo-datetime-width: $kendo-datetime-width,
36
26
  $kendo-datetime-sm-width: $kendo-datetime-sm-width,
37
27
  $kendo-datetime-md-width: $kendo-datetime-md-width,
38
28
  $kendo-datetime-lg-width: $kendo-datetime-lg-width,
39
- $kendo-datetime-sizes: $kendo-datetime-sizes
29
+ $kendo-datetime-default-size: $kendo-datetime-default-size
40
30
  );
@@ -4,6 +4,11 @@
4
4
 
5
5
  // Dialog
6
6
 
7
+ /// The default theme color of the Dialog.
8
+ /// @group dialog
9
+ /// @role default
10
+ $kendo-dialog-default-theme-color: null !default;
11
+
7
12
  /// The background color of the Dialog titlebar.
8
13
  /// @group dialog
9
14
  $kendo-dialog-titlebar-bg: k-color(surface) !default;
@@ -31,16 +36,9 @@ $kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
31
36
  /// @group dialog
32
37
  $kendo-dialog-bg: k-color(surface-alt) !default;
33
38
 
34
- /// The theme colors map for the Dialog.
35
- /// @group dialog
36
- $kendo-dialog-theme-colors: (
37
- "primary": k-color(primary),
38
- "light": k-color(light),
39
- "dark": k-color(dark)
40
- ) !default;
41
-
42
39
 
43
40
  @forward "@progress/kendo-theme-core/scss/components/dialog/_variables.scss" with (
41
+ $kendo-dialog-default-theme-color: $kendo-dialog-default-theme-color,
44
42
  $kendo-dialog-titlebar-bg: $kendo-dialog-titlebar-bg,
45
43
  $kendo-dialog-titlebar-text: $kendo-dialog-titlebar-text,
46
44
  $kendo-dialog-titlebar-border: $kendo-dialog-titlebar-border,
@@ -48,6 +46,5 @@ $kendo-dialog-theme-colors: (
48
46
  $kendo-dialog-buttongroup-padding-y: $kendo-dialog-buttongroup-padding-y,
49
47
  $kendo-dialog-buttongroup-border-width: $kendo-dialog-buttongroup-border-width,
50
48
  $kendo-dialog-button-spacing: $kendo-dialog-button-spacing,
51
- $kendo-dialog-bg: $kendo-dialog-bg,
52
- $kendo-dialog-theme-colors: $kendo-dialog-theme-colors
49
+ $kendo-dialog-bg: $kendo-dialog-bg
53
50
  );