@progress/kendo-theme-default 12.2.0-dev.3 → 12.2.0-dev.4

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 (67) 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 +91605 -60575
  15. package/dist/meta/sassdoc-raw-data.json +35717 -21592
  16. package/dist/meta/variables.json +1 -113
  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-buttons/_variables.scss +19 -0
  31. package/scss/action-sheet/_variables.scss +146 -0
  32. package/scss/adaptive/_variables.scss +36 -0
  33. package/scss/appbar/_variables.scss +2 -0
  34. package/scss/badge/_variables.scss +2 -0
  35. package/scss/bottom-navigation/_variables.scss +2 -0
  36. package/scss/button/_variables.scss +28 -24
  37. package/scss/card/_variables.scss +2 -0
  38. package/scss/chat/_variables.scss +1 -1
  39. package/scss/checkbox/_variables.scss +2 -0
  40. package/scss/chip/_variables.scss +0 -2
  41. package/scss/color-preview/_variables.scss +18 -0
  42. package/scss/column-menu/_variables.scss +40 -0
  43. package/scss/dataviz/_variables.scss +202 -0
  44. package/scss/daterangepicker/_variables.scss +2 -0
  45. package/scss/draggable/_variables.scss +40 -0
  46. package/scss/editor/_variables.scss +6 -0
  47. package/scss/grid/_variables.scss +178 -18
  48. package/scss/imageeditor/_variables.scss +62 -0
  49. package/scss/input/_variables.scss +0 -4
  50. package/scss/list/_variables.scss +126 -30
  51. package/scss/listgroup/_variables.scss +20 -0
  52. package/scss/loader/_variables.scss +2 -0
  53. package/scss/marquee/_variables.scss +6 -0
  54. package/scss/menu/_variables.scss +37 -5
  55. package/scss/messagebox/_variables.scss +24 -0
  56. package/scss/otp/_variables.scss +2 -0
  57. package/scss/overlay/_variables.scss +6 -0
  58. package/scss/pivotgrid/_variables.scss +9 -21
  59. package/scss/scheduler/_variables.scss +2 -0
  60. package/scss/signature/_variables.scss +42 -0
  61. package/scss/skeleton/_variables.scss +4 -0
  62. package/scss/spreadsheet/_variables.scss +4 -0
  63. package/scss/stepper/_variables.scss +3 -3
  64. package/scss/suggestion/_variables.scss +2 -0
  65. package/scss/table/_variables.scss +12 -0
  66. package/scss/timeselector/_variables.scss +86 -0
  67. package/scss/upload/_variables.scss +4 -0
@@ -7,93 +7,217 @@
7
7
  /// The first base series color and its light and dark shades.
8
8
  /// @group charts
9
9
  $kendo-series-a: k-color(series-a) !default;
10
+ /// The series-a dark color of the Charts.
11
+ /// @group charts
10
12
  $kendo-series-a-dark: k-color(series-a-bold) !default;
13
+ /// The series-a darker color of the Charts.
14
+ /// @group charts
11
15
  $kendo-series-a-darker: k-color(series-a-bolder) !default;
16
+ /// The series-a light color of the Charts.
17
+ /// @group charts
12
18
  $kendo-series-a-light: k-color(series-a-subtle) !default;
19
+ /// The series-a lighter color of the Charts.
20
+ /// @group charts
13
21
  $kendo-series-a-lighter: k-color(series-a-subtler) !default;
14
22
 
15
23
  /// The second base series color and its light and dark shades.
16
24
  /// @group charts
17
25
  $kendo-series-b: k-color(series-b) !default;
26
+ /// The series-b dark color of the Charts.
27
+ /// @group charts
18
28
  $kendo-series-b-dark: k-color(series-b-bold) !default;
29
+ /// The series-b darker color of the Charts.
30
+ /// @group charts
19
31
  $kendo-series-b-darker: k-color(series-b-bolder) !default;
32
+ /// The series-b light color of the Charts.
33
+ /// @group charts
20
34
  $kendo-series-b-light: k-color(series-b-subtle) !default;
35
+ /// The series-b lighter color of the Charts.
36
+ /// @group charts
21
37
  $kendo-series-b-lighter: k-color(series-b-subtler) !default;
22
38
 
23
39
  /// The third base series color and its light and dark shades.
24
40
  /// @group charts
25
41
  $kendo-series-c: k-color(series-c) !default;
42
+ /// The series-c dark color of the Charts.
43
+ /// @group charts
26
44
  $kendo-series-c-dark: k-color(series-c-bold) !default;
45
+ /// The series-c darker color of the Charts.
46
+ /// @group charts
27
47
  $kendo-series-c-darker: k-color(series-c-bolder) !default;
48
+ /// The series-c light color of the Charts.
49
+ /// @group charts
28
50
  $kendo-series-c-light: k-color(series-c-subtle) !default;
51
+ /// The series-c lighter color of the Charts.
52
+ /// @group charts
29
53
  $kendo-series-c-lighter: k-color(series-c-subtler) !default;
30
54
 
31
55
  /// The fourth base series color and its light and dark shades.
32
56
  /// @group charts
33
57
  $kendo-series-d: k-color(series-d) !default;
58
+ /// The series-d dark color of the Charts.
59
+ /// @group charts
34
60
  $kendo-series-d-dark: k-color(series-d-bold) !default;
61
+ /// The series-d darker color of the Charts.
62
+ /// @group charts
35
63
  $kendo-series-d-darker: k-color(series-d-bolder) !default;
64
+ /// The series-d light color of the Charts.
65
+ /// @group charts
36
66
  $kendo-series-d-light: k-color(series-d-subtle) !default;
67
+ /// The series-d lighter color of the Charts.
68
+ /// @group charts
37
69
  $kendo-series-d-lighter: k-color(series-d-subtler) !default;
38
70
 
39
71
  /// The fifth base series color and its light and dark shades.
40
72
  /// @group charts
41
73
  $kendo-series-e: k-color(series-e) !default;
74
+ /// The series-e dark color of the Charts.
75
+ /// @group charts
42
76
  $kendo-series-e-dark: k-color(series-e-bold) !default;
77
+ /// The series-e darker color of the Charts.
78
+ /// @group charts
43
79
  $kendo-series-e-darker: k-color(series-e-bolder) !default;
80
+ /// The series-e light color of the Charts.
81
+ /// @group charts
44
82
  $kendo-series-e-light: k-color(series-e-subtle) !default;
83
+ /// The series-e lighter color of the Charts.
84
+ /// @group charts
45
85
  $kendo-series-e-lighter: k-color(series-e-subtler) !default;
46
86
 
47
87
  /// The sixth base series color and its light and dark shades.
48
88
  /// @group charts
49
89
  $kendo-series-f: k-color(series-f) !default;
90
+ /// The series-f dark color of the Charts.
91
+ /// @group charts
50
92
  $kendo-series-f-dark: k-color(series-f-bold) !default;
93
+ /// The series-f darker color of the Charts.
94
+ /// @group charts
51
95
  $kendo-series-f-darker: k-color(series-f-bolder) !default;
96
+ /// The series-f light color of the Charts.
97
+ /// @group charts
52
98
  $kendo-series-f-light: k-color(series-f-subtle) !default;
99
+ /// The series-f lighter color of the Charts.
100
+ /// @group charts
53
101
  $kendo-series-f-lighter: k-color(series-f-subtler) !default;
54
102
 
55
103
  /// The series colors in order:
56
104
  /// base, light, dark, lighter, darker
57
105
  /// @group charts
58
106
  $kendo-series-1: $kendo-series-a !default;
107
+ /// The series-2 color of the Charts.
108
+ /// @group charts
59
109
  $kendo-series-2: $kendo-series-b !default;
110
+ /// The series-3 color of the Charts.
111
+ /// @group charts
60
112
  $kendo-series-3: $kendo-series-c !default;
113
+ /// The series-4 color of the Charts.
114
+ /// @group charts
61
115
  $kendo-series-4: $kendo-series-d !default;
116
+ /// The series-5 color of the Charts.
117
+ /// @group charts
62
118
  $kendo-series-5: $kendo-series-e !default;
119
+ /// The series-6 color of the Charts.
120
+ /// @group charts
63
121
  $kendo-series-6: $kendo-series-f !default;
122
+ /// The series-7 color of the Charts.
123
+ /// @group charts
64
124
  $kendo-series-7: $kendo-series-a-light !default;
125
+ /// The series-8 color of the Charts.
126
+ /// @group charts
65
127
  $kendo-series-8: $kendo-series-b-light !default;
128
+ /// The series-9 color of the Charts.
129
+ /// @group charts
66
130
  $kendo-series-9: $kendo-series-c-light !default;
131
+ /// The series-10 color of the Charts.
132
+ /// @group charts
67
133
  $kendo-series-10: $kendo-series-d-light !default;
134
+ /// The series-11 color of the Charts.
135
+ /// @group charts
68
136
  $kendo-series-11: $kendo-series-e-light !default;
137
+ /// The series-12 color of the Charts.
138
+ /// @group charts
69
139
  $kendo-series-12: $kendo-series-f-light !default;
140
+ /// The series-13 color of the Charts.
141
+ /// @group charts
70
142
  $kendo-series-13: $kendo-series-a-dark !default;
143
+ /// The series-14 color of the Charts.
144
+ /// @group charts
71
145
  $kendo-series-14: $kendo-series-b-dark !default;
146
+ /// The series-15 color of the Charts.
147
+ /// @group charts
72
148
  $kendo-series-15: $kendo-series-c-dark !default;
149
+ /// The series-16 color of the Charts.
150
+ /// @group charts
73
151
  $kendo-series-16: $kendo-series-d-dark !default;
152
+ /// The series-17 color of the Charts.
153
+ /// @group charts
74
154
  $kendo-series-17: $kendo-series-e-dark !default;
155
+ /// The series-18 color of the Charts.
156
+ /// @group charts
75
157
  $kendo-series-18: $kendo-series-f-dark !default;
158
+ /// The series-19 color of the Charts.
159
+ /// @group charts
76
160
  $kendo-series-19: $kendo-series-a-lighter !default;
161
+ /// The series-20 color of the Charts.
162
+ /// @group charts
77
163
  $kendo-series-20: $kendo-series-b-lighter !default;
164
+ /// The series-21 color of the Charts.
165
+ /// @group charts
78
166
  $kendo-series-21: $kendo-series-c-lighter !default;
167
+ /// The series-22 color of the Charts.
168
+ /// @group charts
79
169
  $kendo-series-22: $kendo-series-d-lighter !default;
170
+ /// The series-23 color of the Charts.
171
+ /// @group charts
80
172
  $kendo-series-23: $kendo-series-e-lighter !default;
173
+ /// The series-24 color of the Charts.
174
+ /// @group charts
81
175
  $kendo-series-24: $kendo-series-f-lighter !default;
176
+ /// The series-25 color of the Charts.
177
+ /// @group charts
82
178
  $kendo-series-25: $kendo-series-a-darker !default;
179
+ /// The series-26 color of the Charts.
180
+ /// @group charts
83
181
  $kendo-series-26: $kendo-series-b-darker !default;
182
+ /// The series-27 color of the Charts.
183
+ /// @group charts
84
184
  $kendo-series-27: $kendo-series-c-darker !default;
185
+ /// The series-28 color of the Charts.
186
+ /// @group charts
85
187
  $kendo-series-28: $kendo-series-d-darker !default;
188
+ /// The series-29 color of the Charts.
189
+ /// @group charts
86
190
  $kendo-series-29: $kendo-series-e-darker !default;
191
+ /// The series-30 color of the Charts.
192
+ /// @group charts
87
193
  $kendo-series-30: $kendo-series-f-darker !default;
88
194
 
195
+ /// The border width of the Chart.
196
+ /// @group charts
89
197
  $kendo-chart-border-width: 0px !default;
198
+ /// The font family of the Chart.
199
+ /// @group charts
90
200
  $kendo-chart-font-family: var( --kendo-font-family, inherit ) !default;
201
+ /// The font size of the Chart.
202
+ /// @group charts
91
203
  $kendo-chart-font-size: var( --kendo-font-size, inherit ) !default;
204
+ /// The height of the Chart.
205
+ /// @group charts
92
206
  $kendo-chart-line-height: var( --kendo-line-height, normal ) !default;
207
+ /// The font size of the Chart.
208
+ /// @group charts
93
209
  $kendo-chart-tooltip-font-size: calc( #{$kendo-font-size} * .929) !default;
210
+ /// The label font size of the Chart.
211
+ /// @group charts
94
212
  $kendo-chart-label-font-size: var( --kendo-font-size-sm, inherit ) !default;
213
+ /// The title font size of the Chart.
214
+ /// @group charts
95
215
  $kendo-chart-title-font-size: var( --kendo-font-size-lg, inherit ) !default;
216
+ /// The title font size of the Chart.
217
+ /// @group charts
96
218
  $kendo-chart-pane-title-font-size: $kendo-chart-label-font-size !default;
219
+ /// The title font weight of the Chart.
220
+ /// @group charts
97
221
  $kendo-chart-pane-title-font-weight: var( --kendo-font-weight-normal, normal ) !default;
98
222
 
99
223
  /// The color of the Chart grid lines (major).
@@ -104,63 +228,141 @@ $kendo-chart-major-lines: color-mix(in srgb, k-color(on-app-surface) 8%, transpa
104
228
  /// @group charts
105
229
  $kendo-chart-minor-lines: color-mix(in srgb, k-color(on-app-surface) 4%, transparent) !default;
106
230
 
231
+ /// The inactive color of the Chart.
232
+ /// @group charts
107
233
  $kendo-chart-inactive: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
234
+ /// The opacity of the Chart.
235
+ /// @group charts
108
236
  $kendo-chart-area-opacity: .6 !default;
237
+ /// The opacity of the Chart.
238
+ /// @group charts
109
239
  $kendo-chart-area-inactive-opacity: .1 !default;
240
+ /// The opacity of the Chart.
241
+ /// @group charts
110
242
  $kendo-chart-line-inactive-opacity: .3 !default;
111
243
 
244
+ /// The horizontal padding of the Chart.
245
+ /// @group charts
112
246
  $kendo-chart-tooltip-padding-x: k-spacing(1) !default;
247
+ /// The vertical padding of the Chart.
248
+ /// @group charts
113
249
  $kendo-chart-tooltip-padding-y: k-spacing(0.5) !default;
114
250
 
251
+ /// The transition of the Chart.
252
+ /// @group charts
115
253
  $kendo-chart-tooltip-transition: left 300ms cubic-bezier(0, .33, .19, 1), top 300ms cubic-bezier(0, .33, .19, 1) !default;
116
254
 
255
+ /// The background color of the Chart.
256
+ /// @group charts
117
257
  $kendo-chart-bg: k-color(surface-alt) !default;
258
+ /// The text color of the Chart.
259
+ /// @group charts
118
260
  $kendo-chart-text: k-color(on-app-surface) !default;
261
+ /// The border color of the Chart.
262
+ /// @group charts
119
263
  $kendo-chart-border: k-color(border) !default;
120
264
 
265
+ /// The background color of the Chart.
266
+ /// @group charts
121
267
  $kendo-chart-crosshair-background: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
268
+ /// The text color of the Chart.
269
+ /// @group charts
122
270
  $kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
271
+ /// The background color of the Chart.
272
+ /// @group charts
123
273
  $kendo-chart-crosshair-shared-tooltip-background: k-color(base) !default;
274
+ /// The border color of the Chart.
275
+ /// @group charts
124
276
  $kendo-chart-crosshair-shared-tooltip-border: color-mix(in srgb, k-color(on-app-surface) 8%, transparent) !default;
125
277
 
278
+ /// The background color of the Chart.
279
+ /// @group charts
126
280
  $kendo-chart-notes-background: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
281
+ /// The border color of the Chart.
282
+ /// @group charts
127
283
  $kendo-chart-notes-border: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
284
+ /// The notes lines of the Chart.
285
+ /// @group charts
128
286
  $kendo-chart-notes-lines: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
129
287
 
288
+ /// The background color of the Chart error bars.
289
+ /// @group charts
130
290
  $kendo-chart-error-bars-background: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
131
291
 
292
+ /// The size of the Chart handle.
293
+ /// @group charts
132
294
  $kendo-chart-selection-handle-size: 22px !default;
295
+ /// The text color of the Chart.
296
+ /// @group charts
133
297
  $kendo-chart-selection-border-color: color-mix(in srgb, k-color(on-app-surface) 8%, transparent) !default;
298
+ /// The shadow of the Chart.
299
+ /// @group charts
134
300
  $kendo-chart-selection-shadow: inset 0 1px 7px color-mix(in srgb, k-color(on-app-surface) 15%, transparent) !default;
135
301
 
302
+ /// The height of the Dataviz title.
303
+ /// @group charts
136
304
  $kendo-chart-computed-title-height: 0px !default;
137
305
 
138
306
  // TreeMap
307
+ /// The font family of the TreeMap.
308
+ /// @group charts
139
309
  $kendo-treemap-font-family: var( --kendo-font-family, inherit ) !default;
310
+ /// The font size of the TreeMap.
311
+ /// @group charts
140
312
  $kendo-treemap-font-size: var( --kendo-font-size, inherit ) !default;
313
+ /// The height of the TreeMap.
314
+ /// @group charts
141
315
  $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
142
316
 
317
+ /// The horizontal padding of the TreeMap.
318
+ /// @group charts
143
319
  $kendo-treemap-padding-x: k-spacing(1) !default;
320
+ /// The vertical padding of the TreeMap.
321
+ /// @group charts
144
322
  $kendo-treemap-padding-y: k-spacing(0.5) !default;
145
323
 
324
+ /// The text color of the TreeMap.
325
+ /// @group charts
146
326
  $kendo-treemap-text: k-color(on-app-surface) !default;
327
+ /// The background color of the TreeMap.
328
+ /// @group charts
147
329
  $kendo-treemap-bg: k-color(surface-alt) !default;
330
+ /// The border color of the TreeMap.
331
+ /// @group charts
148
332
  $kendo-treemap-border: k-color(border) !default;
149
333
 
334
+ /// The text color of the Dataviz title.
335
+ /// @group charts
150
336
  $kendo-treemap-title-text: k-color(on-app-surface) !default;
337
+ /// The background color of the Dataviz title.
338
+ /// @group charts
151
339
  $kendo-treemap-title-bg: k-color(surface) !default;
340
+ /// The border color of the Dataviz title.
341
+ /// @group charts
152
342
  $kendo-treemap-title-border: k-color(border) !default;
153
343
 
154
344
  // Chart Overlay
345
+ /// The background color of the Dataviz overlay.
346
+ /// @group charts
155
347
  $kendo-chart-overlay-bg: k-color(surface) !default;
156
348
 
157
349
  // No Data
350
+ /// The font size of the Chart.
351
+ /// @group charts
158
352
  $kendo-chart-no-data-font-size: var( --kendo-font-size-lg, inherit ) !default;
353
+ /// The font weight of the Chart.
354
+ /// @group charts
159
355
  $kendo-chart-no-data-font-weight: var( --kendo-font-weight, normal ) !default;
356
+ /// The vertical padding of the Chart.
357
+ /// @group charts
160
358
  $kendo-chart-no-data-padding-y: k-spacing( 25 ) !default;
161
359
 
162
360
  // Gauge
361
+ /// The background color of the Gauge.
362
+ /// @group charts
163
363
  $kendo-gauge-pointer-bg: k-color(primary) !default;
364
+ /// The background color of the Gauge track.
365
+ /// @group charts
164
366
  $kendo-gauge-track-bg: k-color(base-emphasis) !default;
165
367
 
166
368
  @forward "@progress/kendo-theme-core/scss/components/dataviz/_variables.scss" with (
@@ -1,4 +1,6 @@
1
1
  // Daterangepicker
2
+ /// The width of the DateRangePicker input.
3
+ /// @group date-range-picker
2
4
  $kendo-daterange-picker-input-width: 10em !default;
3
5
 
4
6
  @forward "@progress/kendo-theme-core/scss/components/daterangepicker/_variables.scss" with (
@@ -2,31 +2,71 @@
2
2
  @use "../core/_index.scss" as *;
3
3
 
4
4
  // Drag hint
5
+ /// The horizontal padding of the drag hint.
6
+ /// @group draggable
5
7
  $kendo-drag-hint-padding-x: k-spacing(2) !default;
8
+ /// The vertical padding of the drag hint.
9
+ /// @group draggable
6
10
  $kendo-drag-hint-padding-y: k-spacing(1) !default;
11
+ /// The width of the border around the drag hint.
12
+ /// @group draggable
7
13
  $kendo-drag-hint-border-width: 1px !default;
14
+ /// The border radius of the drag hint.
15
+ /// @group draggable
8
16
  $kendo-drag-hint-border-radius: k-border-radius(md) !default;
17
+ /// The font size of the drag hint.
18
+ /// @group draggable
9
19
  $kendo-drag-hint-font-size: var( --kendo-font-size, inherit ) !default;
20
+ /// The font family of the drag hint.
21
+ /// @group draggable
10
22
  $kendo-drag-hint-font-family: var( --kendo-font-family, inherit ) !default;
23
+ /// The line height of the drag hint.
24
+ /// @group draggable
11
25
  $kendo-drag-hint-line-height: var( --kendo-line-height, normal ) !default;
12
26
 
27
+ /// The background color of the drag hint.
28
+ /// @group draggable
13
29
  $kendo-drag-hint-bg: k-color(surface) !default;
30
+ /// The text color of the drag hint.
31
+ /// @group draggable
14
32
  $kendo-drag-hint-text: k-color(on-app-surface) !default;
33
+ /// The border color of the drag hint.
34
+ /// @group draggable
15
35
  $kendo-drag-hint-border: k-color(border) !default;
36
+ /// The background gradient of the drag hint.
37
+ /// @group draggable
16
38
  $kendo-drag-hint-gradient: null !default;
39
+ /// The shadow of the drag hint.
40
+ /// @group draggable
17
41
  $kendo-drag-hint-shadow: null !default;
18
42
 
43
+ /// The opacity of the drag hint.
44
+ /// @group draggable
19
45
  $kendo-drag-hint-opacity: null !default;
20
46
 
21
47
 
22
48
  // Drop hint
49
+ /// The size of the drop hint arrow.
50
+ /// @group draggable
23
51
  $kendo-drop-hint-arrow-size: 8px !default;
52
+ /// The spacing of the drop hint arrow.
53
+ /// @group draggable
24
54
  $kendo-drop-hint-arrow-spacing: math.div( $kendo-drop-hint-arrow-size, 2 ) !default;
55
+ /// The width of the horizontal drop hint line.
56
+ /// @group draggable
25
57
  $kendo-drop-hint-line-h-width: 20px !default;
58
+ /// The height of the horizontal drop hint line.
59
+ /// @group draggable
26
60
  $kendo-drop-hint-line-h-height: 1px !default;
61
+ /// The width of the vertical drop hint line.
62
+ /// @group draggable
27
63
  $kendo-drop-hint-line-v-width: $kendo-drop-hint-line-h-height !default;
64
+ /// The height of the vertical drop hint line.
65
+ /// @group draggable
28
66
  $kendo-drop-hint-line-v-height: $kendo-drop-hint-line-h-width !default;
29
67
 
68
+ /// The background color of the drop hint.
69
+ /// @group draggable
30
70
  $kendo-drop-hint-bg: k-color(primary) !default;
31
71
 
32
72
  @forward "@progress/kendo-theme-core/scss/components/draggable/_variables.scss" with (
@@ -78,8 +78,14 @@ $kendo-editor-filebrowser-tiles-padding-y: k-spacing(1) !default;
78
78
  /// @group editor
79
79
  $kendo-editor-content-padding: k-spacing(2) !default;
80
80
 
81
+ /// The text color of the Editor cell.
82
+ /// @group editor
81
83
  $kendo-editor-ct-cell-text: k-color(on-primary) !default;
84
+ /// The background color of the Editor cell.
85
+ /// @group editor
82
86
  $kendo-editor-ct-cell-bg: k-color(primary) !default;
87
+ /// The border color of the Editor cell.
88
+ /// @group editor
83
89
  $kendo-editor-ct-cell-border: k-color(border) !default;
84
90
 
85
91
  @forward "@progress/kendo-theme-core/scss/components/editor/_variables.scss" with (