@progress/kendo-theme-default 12.3.1-dev.8 → 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 (74) 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 +20524 -15850
  15. package/dist/meta/sassdoc-raw-data.json +9919 -7627
  16. package/dist/meta/variables.json +686 -436
  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 +5 -5
  30. package/scss/appbar/_variables.scss +6 -16
  31. package/scss/avatar/_variables.scss +37 -23
  32. package/scss/badge/_variables.scss +22 -43
  33. package/scss/bottom-navigation/_variables.scss +12 -17
  34. package/scss/breadcrumb/_variables.scss +6 -30
  35. package/scss/button/_variables.scss +26 -46
  36. package/scss/calendar/_variables.scss +9 -30
  37. package/scss/card/_variables.scss +7 -17
  38. package/scss/checkbox/_variables.scss +13 -22
  39. package/scss/chip/_variables.scss +39 -51
  40. package/scss/coloreditor/_variables.scss +9 -39
  41. package/scss/colorgradient/_variables.scss +11 -41
  42. package/scss/colorpalette/_variables.scss +7 -19
  43. package/scss/column-menu/_variables.scss +6 -25
  44. package/scss/datetimepicker/_variables.scss +6 -15
  45. package/scss/dialog/_variables.scss +7 -10
  46. package/scss/fab/_variables.scss +21 -33
  47. package/scss/floating-label/_variables.scss +2 -2
  48. package/scss/forms/_variables.scss +7 -16
  49. package/scss/grid/_variables.scss +7 -41
  50. package/scss/icons/_variables.scss +6 -0
  51. package/scss/input/_variables.scss +38 -36
  52. package/scss/list/_variables.scss +7 -72
  53. package/scss/loader/_variables.scss +13 -17
  54. package/scss/menu/_variables.scss +6 -0
  55. package/scss/messagebox/_variables.scss +8 -17
  56. package/scss/notification/_functions.scss +3 -3
  57. package/scss/notification/_variables.scss +7 -13
  58. package/scss/otp/_variables.scss +1 -22
  59. package/scss/overlay/_variables.scss +6 -17
  60. package/scss/pager/_variables.scss +7 -25
  61. package/scss/radio/_variables.scss +7 -21
  62. package/scss/signature/_variables.scss +0 -21
  63. package/scss/split-button/_variables.scss +2 -2
  64. package/scss/spreadsheet/_variables.scss +1 -1
  65. package/scss/suggestion/_variables.scss +4 -45
  66. package/scss/switch/_variables.scss +101 -7
  67. package/scss/table/_variables.scss +6 -24
  68. package/scss/tabstrip/_variables.scss +6 -25
  69. package/scss/timeselector/_variables.scss +20 -38
  70. package/scss/toolbar/_variables.scss +12 -25
  71. package/scss/tooltip/_functions.scss +3 -3
  72. package/scss/tooltip/_variables.scss +2 -12
  73. package/scss/treeview/_variables.scss +8 -33
  74. package/scss/window/_variables.scss +12 -18
@@ -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,22 +186,8 @@ $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
  @forward "@progress/kendo-theme-core/scss/components/card/_variables.scss" with (
190
+ $kendo-card-default-theme-color: $kendo-card-default-theme-color,
200
191
  $kendo-card-padding-x: $kendo-card-padding-x,
201
192
  $kendo-card-padding-y: $kendo-card-padding-y,
202
193
  $kendo-card-border-width: $kendo-card-border-width,
@@ -250,6 +241,5 @@ $kendo-card-theme-colors: (
250
241
  $kendo-card-deck-scroll-button-radius: $kendo-card-deck-scroll-button-radius,
251
242
  $kendo-card-deck-scroll-button-offset: $kendo-card-deck-scroll-button-offset,
252
243
  $kendo-card-callout-width: $kendo-card-callout-width,
253
- $kendo-card-callout-height: $kendo-card-callout-height,
254
- $kendo-card-theme-colors: $kendo-card-theme-colors
244
+ $kendo-card-callout-height: $kendo-card-callout-height
255
245
  );
@@ -39,26 +39,6 @@ $kendo-checkbox-md-ripple-size: 300% !default;
39
39
  /// @group checkbox
40
40
  $kendo-checkbox-lg-ripple-size: 300% !default;
41
41
 
42
- // A map with the different CheckBox sizes.
43
- /// The sizes of the CheckBox.
44
- /// @group checkbox
45
- $kendo-checkbox-sizes: (
46
- sm: (
47
- size: $kendo-checkbox-sm-size,
48
- glyph-size: $kendo-checkbox-sm-glyph-size,
49
- ripple-size: $kendo-checkbox-sm-ripple-size
50
- ),
51
- md: (
52
- size: $kendo-checkbox-md-size,
53
- glyph-size: $kendo-checkbox-md-glyph-size,
54
- ripple-size: $kendo-checkbox-md-ripple-size
55
- ),
56
- lg: (
57
- size: $kendo-checkbox-lg-size,
58
- glyph-size: $kendo-checkbox-lg-glyph-size,
59
- ripple-size: $kendo-checkbox-lg-ripple-size
60
- )
61
- ) !default;
62
42
 
63
43
  /// The background color of the CheckBox.
64
44
  /// @group checkbox
@@ -140,6 +120,16 @@ $kendo-checkbox-invalid-text: k-color(error-on-surface) !default;
140
120
  /// @group checkbox
141
121
  $kendo-checkbox-invalid-border: k-color(error-on-surface) !default;
142
122
 
123
+ /// The default size of the Checkbox.
124
+ /// @group checkbox
125
+ /// @role default
126
+ $kendo-checkbox-default-size: "md" !default;
127
+
128
+ /// The default border radius of the Checkbox.
129
+ /// @group checkbox
130
+ /// @role default
131
+ $kendo-checkbox-default-roundness: "md" !default;
132
+
143
133
 
144
134
  // CheckBox indicator
145
135
 
@@ -205,7 +195,6 @@ $kendo-checkbox-ripple-opacity: .25 !default;
205
195
  $kendo-checkbox-sm-ripple-size: $kendo-checkbox-sm-ripple-size,
206
196
  $kendo-checkbox-md-ripple-size: $kendo-checkbox-md-ripple-size,
207
197
  $kendo-checkbox-lg-ripple-size: $kendo-checkbox-lg-ripple-size,
208
- $kendo-checkbox-sizes: $kendo-checkbox-sizes,
209
198
  $kendo-checkbox-bg: $kendo-checkbox-bg,
210
199
  $kendo-checkbox-text: $kendo-checkbox-text,
211
200
  $kendo-checkbox-border: $kendo-checkbox-border,
@@ -241,5 +230,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
241
230
  $kendo-checkbox-list-item-padding-x: $kendo-checkbox-list-item-padding-x,
242
231
  $kendo-checkbox-list-item-padding-y: $kendo-checkbox-list-item-padding-y,
243
232
  $kendo-checkbox-ripple-bg: $kendo-checkbox-ripple-bg,
244
- $kendo-checkbox-ripple-opacity: $kendo-checkbox-ripple-opacity
233
+ $kendo-checkbox-ripple-opacity: $kendo-checkbox-ripple-opacity,
234
+ $kendo-checkbox-default-size: $kendo-checkbox-default-size,
235
+ $kendo-checkbox-default-roundness: $kendo-checkbox-default-roundness
245
236
  );
@@ -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,70 +55,37 @@ $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;
45
62
  /// The font size of the medium Chip.
46
63
  /// @group chip
47
- $kendo-chip-md-font-size: $kendo-chip-font-size !default;
64
+ $kendo-chip-md-font-size: var( --kendo-font-size, inherit ) !default;
48
65
  /// The font size of the large Chip.
49
66
  /// @group chip
50
67
  $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: k-color(base-subtle) !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,17 +149,21 @@ $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
  @forward "@progress/kendo-theme-core/scss/components/chip/_variables.scss" with (
163
+ $kendo-chip-default-theme-color: $kendo-chip-default-theme-color,
164
+ $kendo-chip-default-fill-mode: $kendo-chip-default-fill-mode,
165
+ $kendo-chip-default-roundness: $kendo-chip-default-roundness,
166
+ $kendo-chip-default-size: $kendo-chip-default-size,
179
167
  $kendo-chip-border-width: $kendo-chip-border-width,
180
168
  $kendo-chip-spacing: $kendo-chip-spacing,
181
169
  $kendo-chip-sm-padding-x: $kendo-chip-sm-padding-x,
@@ -195,9 +183,7 @@ $kendo-chip-list-sizes: (
195
183
  $kendo-chip-lg-line-height: $kendo-chip-lg-line-height,
196
184
  $kendo-chip-calc-size: $kendo-chip-calc-size,
197
185
  $kendo-chip-sm-calc-size: $kendo-chip-sm-calc-size,
198
- $kendo-chip-sizes: $kendo-chip-sizes,
199
186
  $kendo-chip-base-bg: $kendo-chip-base-bg,
200
- $kendo-chip-theme-colors: $kendo-chip-theme-colors,
201
187
  $kendo-chip-solid-bg: $kendo-chip-solid-bg,
202
188
  $kendo-chip-solid-text: $kendo-chip-solid-text,
203
189
  $kendo-chip-solid-border: $kendo-chip-solid-border,
@@ -216,5 +202,7 @@ $kendo-chip-list-sizes: (
216
202
  $kendo-chip-disabled-bg: $kendo-chip-disabled-bg,
217
203
  $kendo-chip-disabled-text: $kendo-chip-disabled-text,
218
204
  $kendo-chip-disabled-border: $kendo-chip-disabled-border,
219
- $kendo-chip-list-sizes: $kendo-chip-list-sizes
205
+ $kendo-chip-list-size-sm: $kendo-chip-list-size-sm,
206
+ $kendo-chip-list-size-md: $kendo-chip-list-size-md,
207
+ $kendo-chip-list-size-lg: $kendo-chip-list-size-lg
220
208
  );
@@ -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;
@@ -143,43 +148,9 @@ $kendo-color-editor-color-gradient-focus-outline: 2px !default;
143
148
  /// @group color-editor
144
149
  $kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
145
150
 
146
- /// The size map of the ColorEditor.
147
- /// @group color-editor
148
- $kendo-color-editor-sizes: (
149
- sm: (
150
- min-width: $kendo-color-editor-sm-min-width,
151
- header-padding-x: $kendo-color-editor-sm-header-padding-x,
152
- header-padding-y: $kendo-color-editor-sm-header-padding-y,
153
- views-padding-x: $kendo-color-editor-sm-views-padding-x,
154
- views-padding-y: $kendo-color-editor-sm-views-padding-y,
155
- preview-gap: $kendo-color-editor-sm-preview-gap,
156
- preview-width: $kendo-color-editor-sm-color-preview-width,
157
- preview-height: $kendo-color-editor-sm-color-preview-height,
158
-
159
- ),
160
- md: (
161
- min-width: $kendo-color-editor-md-min-width,
162
- header-padding-x: $kendo-color-editor-md-header-padding-x,
163
- header-padding-y: $kendo-color-editor-md-header-padding-y,
164
- views-padding-x: $kendo-color-editor-md-views-padding-x,
165
- views-padding-y: $kendo-color-editor-md-views-padding-y,
166
- preview-gap: $kendo-color-editor-md-preview-gap,
167
- preview-width: $kendo-color-editor-md-color-preview-width,
168
- preview-height: $kendo-color-editor-md-color-preview-height,
169
- ),
170
- lg: (
171
- min-width: $kendo-color-editor-lg-min-width,
172
- header-padding-x: $kendo-color-editor-lg-header-padding-x,
173
- header-padding-y: $kendo-color-editor-lg-header-padding-y,
174
- views-padding-x: $kendo-color-editor-lg-views-padding-x,
175
- views-padding-y: $kendo-color-editor-lg-views-padding-y,
176
- preview-gap: $kendo-color-editor-lg-preview-gap,
177
- preview-width: $kendo-color-editor-lg-color-preview-width,
178
- preview-height: $kendo-color-editor-lg-color-preview-height,
179
- )
180
- ) !default;
181
151
 
182
152
  @forward "@progress/kendo-theme-core/scss/components/coloreditor/_variables.scss" with (
153
+ $kendo-color-editor-default-size: $kendo-color-editor-default-size,
183
154
  $kendo-color-editor-spacer: $kendo-color-editor-spacer,
184
155
  $kendo-color-editor-min-width: $kendo-color-editor-min-width,
185
156
  $kendo-color-editor-sm-min-width: $kendo-color-editor-sm-min-width,
@@ -223,6 +194,5 @@ $kendo-color-editor-sizes: (
223
194
  $kendo-color-editor-lg-views-padding-x: $kendo-color-editor-lg-views-padding-x,
224
195
  $kendo-color-editor-color-gradient-focus-outline-color: $kendo-color-editor-color-gradient-focus-outline-color,
225
196
  $kendo-color-editor-color-gradient-focus-outline: $kendo-color-editor-color-gradient-focus-outline,
226
- $kendo-color-editor-color-gradient-focus-outline-offset: $kendo-color-editor-color-gradient-focus-outline-offset,
227
- $kendo-color-editor-sizes: $kendo-color-editor-sizes
197
+ $kendo-color-editor-color-gradient-focus-outline-offset: $kendo-color-editor-color-gradient-focus-outline-offset
228
198
  );
@@ -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-border-width: $kendo-color-gradient-border-width,
@@ -315,5 +286,4 @@ $kendo-color-gradient-sizes: (
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
288
  $kendo-color-gradient-contrast-spacer: $kendo-color-gradient-contrast-spacer,
318
- $kendo-color-gradient-sizes: $kendo-color-gradient-sizes
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;
@@ -47,24 +52,8 @@ $kendo-color-palette-tile-hover-shadow: 0 0 3px 1px color-mix(in srgb, k-color(d
47
52
  /// @group color-palette
48
53
  $kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px color-mix(in srgb, k-color(dark) 30%, transparent), inset 0 0 0 1px color-mix(in srgb, k-color(light) 100%, transparent) !default;
49
54
 
50
- /// The size map of the ColorPalette.
51
- /// @group color-palette
52
- $kendo-color-palette-sizes: (
53
- sm: (
54
- width: $kendo-color-palette-sm-tile-width,
55
- height: $kendo-color-palette-sm-tile-height
56
- ),
57
- md: (
58
- width: $kendo-color-palette-md-tile-width,
59
- height: $kendo-color-palette-md-tile-height
60
- ),
61
- lg: (
62
- width: $kendo-color-palette-lg-tile-width,
63
- height: $kendo-color-palette-lg-tile-height
64
- )
65
- ) !default;
66
-
67
55
  @forward "@progress/kendo-theme-core/scss/components/colorpalette/_variables.scss" with (
56
+ $kendo-color-palette-default-size: $kendo-color-palette-default-size,
68
57
  $kendo-color-palette-font-family: $kendo-color-palette-font-family,
69
58
  $kendo-color-palette-font-size: $kendo-color-palette-font-size,
70
59
  $kendo-color-palette-line-height: $kendo-color-palette-line-height,
@@ -78,6 +67,5 @@ $kendo-color-palette-sizes: (
78
67
  $kendo-color-palette-lg-tile-height: $kendo-color-palette-lg-tile-height,
79
68
  $kendo-color-palette-tile-focus-shadow: $kendo-color-palette-tile-focus-shadow,
80
69
  $kendo-color-palette-tile-hover-shadow: $kendo-color-palette-tile-hover-shadow,
81
- $kendo-color-palette-tile-selected-shadow: $kendo-color-palette-tile-selected-shadow,
82
- $kendo-color-palette-sizes: $kendo-color-palette-sizes
70
+ $kendo-color-palette-tile-selected-shadow: $kendo-color-palette-tile-selected-shadow
83
71
  );
@@ -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,24 +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
24
  @forward "@progress/kendo-theme-core/scss/components/datetimepicker/_variables.scss" with (
34
25
  $kendo-datetime-width: $kendo-datetime-width,
35
26
  $kendo-datetime-sm-width: $kendo-datetime-sm-width,
36
27
  $kendo-datetime-md-width: $kendo-datetime-md-width,
37
28
  $kendo-datetime-lg-width: $kendo-datetime-lg-width,
38
- $kendo-datetime-sizes: $kendo-datetime-sizes
29
+ $kendo-datetime-default-size: $kendo-datetime-default-size
39
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,15 +36,8 @@ $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
  @forward "@progress/kendo-theme-core/scss/components/dialog/_variables.scss" with (
40
+ $kendo-dialog-default-theme-color: $kendo-dialog-default-theme-color,
43
41
  $kendo-dialog-titlebar-bg: $kendo-dialog-titlebar-bg,
44
42
  $kendo-dialog-titlebar-text: $kendo-dialog-titlebar-text,
45
43
  $kendo-dialog-titlebar-border: $kendo-dialog-titlebar-border,
@@ -47,6 +45,5 @@ $kendo-dialog-theme-colors: (
47
45
  $kendo-dialog-buttongroup-padding-y: $kendo-dialog-buttongroup-padding-y,
48
46
  $kendo-dialog-buttongroup-border-width: $kendo-dialog-buttongroup-border-width,
49
47
  $kendo-dialog-button-spacing: $kendo-dialog-button-spacing,
50
- $kendo-dialog-bg: $kendo-dialog-bg,
51
- $kendo-dialog-theme-colors: $kendo-dialog-theme-colors
48
+ $kendo-dialog-bg: $kendo-dialog-bg
52
49
  );