@progress/kendo-theme-bootstrap 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 (70) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/bootstrap-3-dark.css +1 -1
  3. package/dist/bootstrap-3.css +1 -1
  4. package/dist/bootstrap-4-dark.css +1 -1
  5. package/dist/bootstrap-4.css +1 -1
  6. package/dist/bootstrap-dataviz-v4.css +1 -1
  7. package/dist/bootstrap-main-dark.css +1 -1
  8. package/dist/bootstrap-main.css +1 -1
  9. package/dist/bootstrap-nordic.css +1 -1
  10. package/dist/bootstrap-turquoise-dark.css +1 -1
  11. package/dist/bootstrap-turquoise.css +1 -1
  12. package/dist/bootstrap-urban.css +1 -1
  13. package/dist/bootstrap-vintage.css +1 -1
  14. package/dist/meta/sassdoc-data.json +78226 -47142
  15. package/dist/meta/sassdoc-raw-data.json +36624 -22474
  16. package/dist/meta/variables.json +1 -109
  17. package/lib/swatches/bootstrap-3-dark.json +1 -1
  18. package/lib/swatches/bootstrap-3.json +1 -1
  19. package/lib/swatches/bootstrap-4-dark.json +1 -1
  20. package/lib/swatches/bootstrap-4.json +1 -1
  21. package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
  22. package/lib/swatches/bootstrap-main-dark.json +1 -1
  23. package/lib/swatches/bootstrap-main.json +1 -1
  24. package/lib/swatches/bootstrap-nordic.json +1 -1
  25. package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
  26. package/lib/swatches/bootstrap-turquoise.json +1 -1
  27. package/lib/swatches/bootstrap-urban.json +1 -1
  28. package/lib/swatches/bootstrap-vintage.json +1 -1
  29. package/package.json +4 -4
  30. package/scss/action-buttons/_variables.scss +18 -0
  31. package/scss/action-sheet/_variables.scss +138 -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/bubble/_variables.scss +0 -1
  37. package/scss/button/_variables.scss +28 -24
  38. package/scss/card/_variables.scss +2 -0
  39. package/scss/chat/_variables.scss +1 -1
  40. package/scss/checkbox/_variables.scss +2 -0
  41. package/scss/chip/_variables.scss +0 -2
  42. package/scss/color-preview/_variables.scss +18 -0
  43. package/scss/colorgradient/_variables.scss +1 -1
  44. package/scss/colorpalette/_variables.scss +1 -1
  45. package/scss/column-menu/_variables.scss +40 -0
  46. package/scss/dataviz/_variables.scss +202 -0
  47. package/scss/daterangepicker/_variables.scss +2 -0
  48. package/scss/draggable/_variables.scss +40 -0
  49. package/scss/editor/_variables.scss +6 -0
  50. package/scss/grid/_variables.scss +180 -17
  51. package/scss/icons/_variables.scss +14 -0
  52. package/scss/imageeditor/_variables.scss +62 -0
  53. package/scss/input/_variables.scss +0 -4
  54. package/scss/list/_variables.scss +126 -30
  55. package/scss/listgroup/_variables.scss +20 -0
  56. package/scss/loader/_variables.scss +2 -0
  57. package/scss/marquee/_variables.scss +6 -0
  58. package/scss/menu/_variables.scss +37 -5
  59. package/scss/messagebox/_variables.scss +24 -0
  60. package/scss/otp/_variables.scss +2 -0
  61. package/scss/overlay/_variables.scss +6 -0
  62. package/scss/pivotgrid/_variables.scss +10 -22
  63. package/scss/scheduler/_variables.scss +2 -0
  64. package/scss/signature/_variables.scss +42 -0
  65. package/scss/spreadsheet/_variables.scss +4 -0
  66. package/scss/stepper/_variables.scss +3 -3
  67. package/scss/suggestion/_variables.scss +2 -0
  68. package/scss/table/_variables.scss +12 -0
  69. package/scss/timeselector/_variables.scss +84 -0
  70. package/scss/upload/_variables.scss +4 -0
@@ -10,27 +10,47 @@ $kendo-list-font-family: var( --kendo-font-family, inherit ) !default;
10
10
  /// The font size of the List component, if no size is set.
11
11
  /// @group list
12
12
  $kendo-list-font-size: null !default;
13
+ /// The font size of the small List.
14
+ /// @group list
13
15
  $kendo-list-sm-font-size: var( --kendo-font-size-sm, inherit ) !default;
16
+ /// The font size of the medium List.
17
+ /// @group list
14
18
  $kendo-list-md-font-size: var( --kendo-font-size, inherit ) !default;
19
+ /// The font size of the large List.
20
+ /// @group list
15
21
  $kendo-list-lg-font-size: var( --kendo-font-size, inherit ) !default;
16
22
 
17
23
  /// The line height of the List component, if no size is set.
18
24
  /// @group list
19
25
  $kendo-list-line-height: null !default;
26
+ /// The line height of the small List.
27
+ /// @group list
20
28
  $kendo-list-sm-line-height: math.div( 20, 14 ) !default;
29
+ /// The line height of the medium List.
30
+ /// @group list
21
31
  $kendo-list-md-line-height: var( --kendo-line-height, normal ) !default;
32
+ /// The line height of the large List.
33
+ /// @group list
22
34
  $kendo-list-lg-line-height: var( --kendo-line-height, normal ) !default;
23
35
 
24
- /// The horizontal padding of List header, if no size is set.
36
+ /// The horizontal padding of the small List header.
25
37
  /// @group list
26
38
  $kendo-list-sm-header-padding-x: k-spacing(4) !default;
39
+ /// The horizontal padding of the medium List header.
40
+ /// @group list
27
41
  $kendo-list-md-header-padding-x: k-spacing(4) !default;
42
+ /// The horizontal padding of the large List header.
43
+ /// @group list
28
44
  $kendo-list-lg-header-padding-x: k-spacing(4) !default;
29
45
 
30
- /// The vertical padding of the List header, if no size is set.
46
+ /// The vertical padding of the small List header.
31
47
  /// @group list
32
48
  $kendo-list-sm-header-padding-y: k-spacing(1) !default;
49
+ /// The vertical padding of the medium List header.
50
+ /// @group list
33
51
  $kendo-list-md-header-padding-y: k-spacing(1) !default;
52
+ /// The vertical padding of the large List header.
53
+ /// @group list
34
54
  $kendo-list-lg-header-padding-y: k-spacing(2) !default;
35
55
 
36
56
  /// The border width of the List header.
@@ -40,70 +60,118 @@ $kendo-list-header-border-width: 0 0 1px !default;
40
60
  /// The font size of the List header, if no size is set.
41
61
  /// @group list
42
62
  $kendo-list-header-font-size: null !default;
63
+ /// The font size of the small List header.
64
+ /// @group list
43
65
  $kendo-list-sm-header-font-size: null !default;
66
+ /// The font size of the medium List header.
67
+ /// @group list
44
68
  $kendo-list-md-header-font-size: null !default;
69
+ /// The font size of the large List header.
70
+ /// @group list
45
71
  $kendo-list-lg-header-font-size: null !default;
46
72
 
47
73
  /// The line height of the List header, if no size is set.
48
74
  /// @group list
49
75
  $kendo-list-header-line-height: null !default;
76
+ /// The line height of the small List header.
77
+ /// @group list
50
78
  $kendo-list-sm-header-line-height: null !default;
79
+ /// The line height of the medium List header.
80
+ /// @group list
51
81
  $kendo-list-md-header-line-height: null !default;
82
+ /// The line height of the large List header.
83
+ /// @group list
52
84
  $kendo-list-lg-header-line-height: null !default;
53
85
 
54
86
  /// The font weight of the List header.
55
87
  /// @group list
56
88
  $kendo-list-header-font-weight: var( --kendo-font-weight-bold, normal ) !default;
57
89
 
58
- /// The horizontal padding of the List filter, when no size is set.
90
+ /// The horizontal padding of the small List filter.
59
91
  /// @group list
60
92
  $kendo-list-sm-filter-padding-x: k-spacing(4) !default;
93
+ /// The horizontal padding of the medium List filter.
94
+ /// @group list
61
95
  $kendo-list-md-filter-padding-x: k-spacing(4) !default;
96
+ /// The horizontal padding of the large List filter.
97
+ /// @group list
62
98
  $kendo-list-lg-filter-padding-x: k-spacing(4) !default;
63
99
 
64
- /// The vertical padding of the List filter, when no size is set.
100
+ /// The vertical padding of the small List filter.
65
101
  /// @group list
66
102
  $kendo-list-sm-filter-padding-y: k-spacing(4) !default;
103
+ /// The vertical padding of the medium List filter.
104
+ /// @group list
67
105
  $kendo-list-md-filter-padding-y: k-spacing(4) !default;
106
+ /// The vertical padding of the large List filter.
107
+ /// @group list
68
108
  $kendo-list-lg-filter-padding-y: k-spacing(4) !default;
69
109
 
70
110
 
71
- /// The horizontal padding of the List items, when no size is set.
111
+ /// The horizontal padding of the small List item.
72
112
  /// @group list
73
113
  $kendo-list-sm-item-padding-x: k-spacing(4) !default;
114
+ /// The horizontal padding of the medium List item.
115
+ /// @group list
74
116
  $kendo-list-md-item-padding-x: k-spacing(4) !default;
117
+ /// The horizontal padding of the large List item.
118
+ /// @group list
75
119
  $kendo-list-lg-item-padding-x: k-spacing(4) !default;
76
120
 
77
- /// The vertical padding of the List items, when no size is set.
121
+ /// The vertical padding of the small List item.
78
122
  /// @group list
79
123
  $kendo-list-sm-item-padding-y: k-spacing(1) !default;
124
+ /// The vertical padding of the medium List item.
125
+ /// @group list
80
126
  $kendo-list-md-item-padding-y: k-spacing(1) !default;
127
+ /// The vertical padding of the large List item.
128
+ /// @group list
81
129
  $kendo-list-lg-item-padding-y: k-spacing(2) !default;
82
130
 
83
131
  /// The font size of the List items, if no size is set.
84
132
  /// @group list
85
133
  $kendo-list-item-font-size: null !default;
134
+ /// The font size of the small List item.
135
+ /// @group list
86
136
  $kendo-list-sm-item-font-size: null !default;
137
+ /// The font size of the medium List item.
138
+ /// @group list
87
139
  $kendo-list-md-item-font-size: null !default;
140
+ /// The font size of the large List item.
141
+ /// @group list
88
142
  $kendo-list-lg-item-font-size: null !default;
89
143
 
90
144
  /// The line height of the List items, if no size is set.
91
145
  /// @group list
92
146
  $kendo-list-item-line-height: null !default;
147
+ /// The line height of the small List item.
148
+ /// @group list
93
149
  $kendo-list-sm-item-line-height: null !default;
150
+ /// The line height of the medium List item.
151
+ /// @group list
94
152
  $kendo-list-md-item-line-height: null !default;
153
+ /// The line height of the large List item.
154
+ /// @group list
95
155
  $kendo-list-lg-item-line-height: null !default;
96
156
 
97
- /// The horizontal padding of the List group items, when no size is set.
157
+ /// The horizontal padding of the small List group item.
98
158
  /// @group list
99
159
  $kendo-list-sm-group-item-padding-x: k-spacing(4) !default;
160
+ /// The horizontal padding of the medium List group item.
161
+ /// @group list
100
162
  $kendo-list-md-group-item-padding-x: k-spacing(4) !default;
163
+ /// The horizontal padding of the large List group item.
164
+ /// @group list
101
165
  $kendo-list-lg-group-item-padding-x: k-spacing(4) !default;
102
166
 
103
- /// The vertical padding of the List group items, when no size is set.
167
+ /// The vertical padding of the small List group item.
104
168
  /// @group list
105
169
  $kendo-list-sm-group-item-padding-y: k-spacing(0.5) !default;
170
+ /// The vertical padding of the medium List group item.
171
+ /// @group list
106
172
  $kendo-list-md-group-item-padding-y: k-spacing(1) !default;
173
+ /// The vertical padding of the large List group item.
174
+ /// @group list
107
175
  $kendo-list-lg-group-item-padding-y: k-spacing(1.5) !default;
108
176
 
109
177
  /// The border width of the List group items.
@@ -113,43 +181,71 @@ $kendo-list-group-item-border-width: 1px 0 0 !default;
113
181
  /// The font size of the List group items, if no size is set.
114
182
  /// @group list
115
183
  $kendo-list-group-item-font-size: null !default;
184
+ /// The font size of the small List group item.
185
+ /// @group list
116
186
  $kendo-list-sm-group-item-font-size: null !default;
187
+ /// The font size of the medium List group item.
188
+ /// @group list
117
189
  $kendo-list-md-group-item-font-size: null !default;
190
+ /// The font size of the large List group item.
191
+ /// @group list
118
192
  $kendo-list-lg-group-item-font-size: null !default;
119
193
 
120
194
  /// The line height of the List group items, if no size is set.
121
195
  /// @group list
122
196
  $kendo-list-group-item-line-height: null !default;
197
+ /// The line height of the small List group item.
198
+ /// @group list
123
199
  $kendo-list-sm-group-item-line-height: null !default;
200
+ /// The line height of the medium List group item.
201
+ /// @group list
124
202
  $kendo-list-md-group-item-line-height: null !default;
203
+ /// The line height of the large List group item.
204
+ /// @group list
125
205
  $kendo-list-lg-group-item-line-height: null !default;
126
206
 
127
207
  /// The font weight of a List group item.
128
208
  /// @group list
129
209
  $kendo-list-group-item-font-weight: var( --kendo-font-weight-bold, normal ) !default;
130
210
 
131
- /// The font size of the List item group label.
211
+ /// The font size of the small List item group label.
132
212
  /// @group list
133
213
  $kendo-list-item-group-label-sm-font-size: var( --kendo-font-size-xs, inherit ) !default;
214
+ /// The font size of the medium List item group label.
215
+ /// @group list
134
216
  $kendo-list-item-group-label-md-font-size: var( --kendo-font-size-xs, inherit ) !default;
217
+ /// The font size of the large List item group label.
218
+ /// @group list
135
219
  $kendo-list-item-group-label-lg-font-size: var( --kendo-font-size-xs, inherit ) !default;
136
220
 
137
- /// The line-height of the List item group label.
221
+ /// The line height of the small List item group label.
138
222
  /// @group list
139
223
  $kendo-list-item-group-label-sm-line-height: inherit !default;
224
+ /// The line height of the medium List item group label.
225
+ /// @group list
140
226
  $kendo-list-item-group-label-md-line-height: inherit !default;
227
+ /// The line height of the large List item group label.
228
+ /// @group list
141
229
  $kendo-list-item-group-label-lg-line-height: inherit !default;
142
230
 
143
- /// The horizontal padding of the List item group label.
231
+ /// The horizontal padding of the small List item group label.
144
232
  /// @group list
145
233
  $kendo-list-item-group-label-sm-padding-x: .5em !default;
234
+ /// The horizontal padding of the medium List item group label.
235
+ /// @group list
146
236
  $kendo-list-item-group-label-md-padding-x: .5em !default;
237
+ /// The horizontal padding of the large List item group label.
238
+ /// @group list
147
239
  $kendo-list-item-group-label-lg-padding-x: .5em !default;
148
240
 
149
- /// The vertical padding of the List item group label.
241
+ /// The vertical padding of the small List item group label.
150
242
  /// @group list
151
243
  $kendo-list-item-group-label-sm-padding-y: 0 !default;
244
+ /// The vertical padding of the medium List item group label.
245
+ /// @group list
152
246
  $kendo-list-item-group-label-md-padding-y: 0 !default;
247
+ /// The vertical padding of the large List item group label.
248
+ /// @group list
153
249
  $kendo-list-item-group-label-lg-padding-y: 0 !default;
154
250
 
155
251
  /// The map with the sizes of the List.
@@ -160,16 +256,16 @@ $kendo-list-sizes: (
160
256
  line-height: $kendo-list-sm-line-height,
161
257
  header-padding-x: $kendo-list-sm-header-padding-x,
162
258
  header-padding-y: $kendo-list-sm-header-padding-y,
163
- header-font-size: null,
164
- header-line-height: null,
259
+ header-font-size: $kendo-list-sm-header-font-size,
260
+ header-line-height: $kendo-list-sm-header-line-height,
165
261
  item-padding-x: $kendo-list-sm-item-padding-x,
166
262
  item-padding-y: $kendo-list-sm-item-padding-y,
167
- item-font-size: null,
168
- item-line-height: null,
263
+ item-font-size: $kendo-list-sm-item-font-size,
264
+ item-line-height: $kendo-list-sm-item-line-height,
169
265
  group-item-padding-x: $kendo-list-sm-group-item-padding-x,
170
266
  group-item-padding-y: $kendo-list-sm-group-item-padding-y,
171
- group-item-font-size: null,
172
- group-item-line-height: null,
267
+ group-item-font-size: $kendo-list-sm-group-item-font-size,
268
+ group-item-line-height: $kendo-list-sm-group-item-line-height,
173
269
  item-group-label-padding-x: $kendo-list-item-group-label-sm-padding-x,
174
270
  item-group-label-padding-y: $kendo-list-item-group-label-sm-padding-y,
175
271
  item-group-label-font-size: $kendo-list-item-group-label-sm-font-size,
@@ -182,16 +278,16 @@ $kendo-list-sizes: (
182
278
  line-height: $kendo-list-md-line-height,
183
279
  header-padding-x: $kendo-list-md-header-padding-x,
184
280
  header-padding-y: $kendo-list-md-header-padding-y,
185
- header-font-size: null,
186
- header-line-height: null,
281
+ header-font-size: $kendo-list-md-header-font-size,
282
+ header-line-height: $kendo-list-md-header-line-height,
187
283
  item-padding-x: $kendo-list-md-item-padding-x,
188
284
  item-padding-y: $kendo-list-md-item-padding-y,
189
- item-font-size: null,
190
- item-line-height: null,
285
+ item-font-size: $kendo-list-md-item-font-size,
286
+ item-line-height: $kendo-list-md-item-line-height,
191
287
  group-item-padding-x: $kendo-list-md-group-item-padding-x,
192
288
  group-item-padding-y: $kendo-list-md-group-item-padding-y,
193
- group-item-font-size: null,
194
- group-item-line-height: null,
289
+ group-item-font-size: $kendo-list-md-group-item-font-size,
290
+ group-item-line-height: $kendo-list-md-group-item-line-height,
195
291
  item-group-label-padding-x: $kendo-list-item-group-label-md-padding-x,
196
292
  item-group-label-padding-y: $kendo-list-item-group-label-md-padding-y,
197
293
  item-group-label-font-size: $kendo-list-item-group-label-md-font-size,
@@ -204,16 +300,16 @@ $kendo-list-sizes: (
204
300
  line-height: $kendo-list-lg-line-height,
205
301
  header-padding-x: $kendo-list-lg-header-padding-x,
206
302
  header-padding-y: $kendo-list-lg-header-padding-y,
207
- header-font-size: null,
208
- header-line-height: null,
303
+ header-font-size: $kendo-list-lg-header-font-size,
304
+ header-line-height: $kendo-list-lg-header-line-height,
209
305
  item-padding-x: $kendo-list-lg-item-padding-x,
210
306
  item-padding-y: $kendo-list-lg-item-padding-y,
211
- item-font-size: null,
212
- item-line-height: null,
307
+ item-font-size: $kendo-list-lg-item-font-size,
308
+ item-line-height: $kendo-list-lg-item-line-height,
213
309
  group-item-padding-x: $kendo-list-lg-group-item-padding-x,
214
310
  group-item-padding-y: $kendo-list-lg-group-item-padding-y,
215
- group-item-font-size: null,
216
- group-item-line-height: null,
311
+ group-item-font-size: $kendo-list-lg-group-item-font-size,
312
+ group-item-line-height: $kendo-list-lg-group-item-line-height,
217
313
  item-group-label-padding-x: $kendo-list-item-group-label-lg-padding-x,
218
314
  item-group-label-padding-y: $kendo-list-item-group-label-lg-padding-y,
219
315
  item-group-label-font-size: $kendo-list-item-group-label-lg-font-size,
@@ -1,18 +1,38 @@
1
1
  @use "../core/_index.scss" as *;
2
2
 
3
3
  // Listgroup
4
+ /// The width of the border around the ListGroup.
5
+ /// @group listgroup
4
6
  $kendo-listgroup-border-width: 1px !default;
7
+ /// The border radius of the ListGroup.
8
+ /// @group listgroup
5
9
  $kendo-listgroup-border-radius: k-spacing(1) !default;
6
10
 
11
+ /// The font size of the ListGroup.
12
+ /// @group listgroup
7
13
  $kendo-listgroup-font-size: var( --kendo-font-size, inherit ) !default;
14
+ /// The line height of the ListGroup.
15
+ /// @group listgroup
8
16
  $kendo-listgroup-line-height: var( --kendo-line-height, normal ) !default;
9
17
 
18
+ /// The background color of the ListGroup.
19
+ /// @group listgroup
10
20
  $kendo-listgroup-bg: k-color(surface-alt) !default;
21
+ /// The text color of the ListGroup.
22
+ /// @group listgroup
11
23
  $kendo-listgroup-text: k-color(on-app-surface) !default;
24
+ /// The border color of the ListGroup.
25
+ /// @group listgroup
12
26
  $kendo-listgroup-border: k-color(border) !default;
13
27
 
28
+ /// The horizontal padding of the ListGroup item.
29
+ /// @group listgroup
14
30
  $kendo-listgroup-item-padding-x: k-spacing(4) !default;
31
+ /// The vertical padding of the ListGroup item.
32
+ /// @group listgroup
15
33
  $kendo-listgroup-item-padding-y: k-spacing(2) !default;
34
+ /// The width of the border around the ListGroup item.
35
+ /// @group listgroup
16
36
  $kendo-listgroup-item-border-width: $kendo-listgroup-border-width !default;
17
37
 
18
38
 
@@ -126,6 +126,8 @@ $kendo-loading-opacity: .3 !default;
126
126
  /// @group loading
127
127
  $kendo-zindex-loading: 100 !default;
128
128
 
129
+ /// The theme colors of the Loader.
130
+ /// @group loader
129
131
  $kendo-loader-theme-colors: (
130
132
  "primary": k-color(primary),
131
133
  "secondary": k-color(secondary),
@@ -1,7 +1,13 @@
1
1
  @use "../core/_index.scss" as *;
2
2
 
3
+ /// The text color of the Marquee.
4
+ /// @group marquee
3
5
  $kendo-marquee-text: k-color(on-primary) !default;
6
+ /// The background color of the Marquee.
7
+ /// @group marquee
4
8
  $kendo-marquee-bg: k-color(primary) !default;
9
+ /// The border color of the Marquee.
10
+ /// @group marquee
5
11
  $kendo-marquee-border: k-color(primary) !default;
6
12
 
7
13
  @forward "@progress/kendo-theme-core/scss/components/marquee/_variables.scss" with (
@@ -168,12 +168,24 @@ $kendo-menu-popup-padding-y: null !default;
168
168
  /// @group menu
169
169
  $kendo-menu-popup-border-width: $kendo-popup-border-width !default;
170
170
 
171
+ /// The font size of the small Menu popup.
172
+ /// @group menu
171
173
  $kendo-menu-popup-sm-font-size: var( --kendo-font-size, inherit ) !default;
174
+ /// The font size of the medium Menu popup.
175
+ /// @group menu
172
176
  $kendo-menu-popup-md-font-size: var( --kendo-font-size, inherit ) !default;
177
+ /// The font size of the large Menu popup.
178
+ /// @group menu
173
179
  $kendo-menu-popup-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
174
180
 
181
+ /// The line height of the small Menu popup.
182
+ /// @group menu
175
183
  $kendo-menu-popup-sm-line-height: var( --kendo-line-height, normal ) !default;
184
+ /// The line height of the medium Menu popup.
185
+ /// @group menu
176
186
  $kendo-menu-popup-md-line-height: var( --kendo-line-height, normal ) !default;
187
+ /// The line height of the large Menu popup.
188
+ /// @group menu
177
189
  $kendo-menu-popup-lg-line-height: var( --kendo-line-height, normal ) !default;
178
190
 
179
191
  /// The background color of the Menu popup.
@@ -192,34 +204,54 @@ $kendo-menu-popup-gradient: null !default;
192
204
 
193
205
  // Menu popup item
194
206
 
195
- /// The horizontal padding of the Menu item in popup.
207
+ /// The horizontal padding of the small Menu popup item.
196
208
  /// @group menu
197
209
  $kendo-menu-popup-sm-item-padding-x: k-spacing(4) !default;
210
+ /// The horizontal padding of the medium Menu popup item.
211
+ /// @group menu
198
212
  $kendo-menu-popup-md-item-padding-x: k-spacing(4) !default;
213
+ /// The horizontal padding of the large Menu popup item.
214
+ /// @group menu
199
215
  $kendo-menu-popup-lg-item-padding-x: k-spacing(4) !default;
200
216
 
201
- /// The vertical padding of the Menu item in popup.
217
+ /// The vertical padding of the small Menu popup item.
202
218
  /// @group menu
203
219
  $kendo-menu-popup-sm-item-padding-y: k-spacing(0.5) !default;
220
+ /// The vertical padding of the medium Menu popup item.
221
+ /// @group menu
204
222
  $kendo-menu-popup-md-item-padding-y: k-spacing(1) !default;
223
+ /// The vertical padding of the large Menu popup item.
224
+ /// @group menu
205
225
  $kendo-menu-popup-lg-item-padding-y: k-spacing(1.5) !default;
206
226
 
207
- /// The end padding of the Menu item in popup.
227
+ /// The end padding of the small Menu popup item.
208
228
  /// @group menu
209
229
  $kendo-menu-popup-sm-item-padding-end: calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
230
+ /// The end padding of the medium Menu popup item.
231
+ /// @group menu
210
232
  $kendo-menu-popup-md-item-padding-end: calc( #{$kendo-menu-popup-md-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
233
+ /// The end padding of the large Menu popup item.
234
+ /// @group menu
211
235
  $kendo-menu-popup-lg-item-padding-end: calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
212
236
 
213
- /// The start margin of the Menu item expand icon.
237
+ /// The start margin of the small Menu popup item expand icon.
214
238
  /// @group menu
215
239
  $kendo-menu-popup-sm-item-icon-margin-start: $kendo-menu-popup-sm-item-padding-x !default;
240
+ /// The start margin of the medium Menu popup item expand icon.
241
+ /// @group menu
216
242
  $kendo-menu-popup-md-item-icon-margin-start: $kendo-menu-popup-md-item-padding-x !default;
243
+ /// The start margin of the large Menu popup item expand icon.
244
+ /// @group menu
217
245
  $kendo-menu-popup-lg-item-icon-margin-start: $kendo-menu-popup-lg-item-padding-x !default;
218
246
 
219
- /// The end margin of the Menu item expand icon.
247
+ /// The end margin of the small Menu popup item expand icon.
220
248
  /// @group menu
221
249
  $kendo-menu-popup-sm-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-sm-item-padding-end} - #{list.slash( $kendo-menu-popup-sm-item-padding-x, 2 )}) ) !default;
250
+ /// The end margin of the medium Menu popup item expand icon.
251
+ /// @group menu
222
252
  $kendo-menu-popup-md-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-md-item-padding-end} - #{list.slash( $kendo-menu-popup-md-item-padding-x, 2 )}) ) !default;
253
+ /// The end margin of the large Menu popup item expand icon.
254
+ /// @group menu
223
255
  $kendo-menu-popup-lg-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-lg-item-padding-end} - #{list.slash( $kendo-menu-popup-lg-item-padding-x, 2 )}) ) !default;
224
256
 
225
257
  /// The spacing between the Menu items in popup.
@@ -1,21 +1,45 @@
1
1
  @use "../core/_index.scss" as *;
2
2
 
3
3
  // Message box
4
+ /// The margin of the MessageBox.
5
+ /// @group messagebox
4
6
  $kendo-message-box-margin: 0 0 k-spacing(4) 0 !default;
7
+ /// The horizontal padding of the MessageBox.
8
+ /// @group messagebox
5
9
  $kendo-message-box-padding-x: k-spacing(5) !default;
10
+ /// The vertical padding of the MessageBox.
11
+ /// @group messagebox
6
12
  $kendo-message-box-padding-y: k-spacing(5) !default;
13
+ /// The width of the border around the MessageBox.
14
+ /// @group messagebox
7
15
  $kendo-message-box-border-width: 0 0 0 4px !default;
8
16
 
17
+ /// The font size of the MessageBox.
18
+ /// @group messagebox
9
19
  $kendo-message-box-font-size: var( --kendo-font-size, inherit ) !default;
20
+ /// The line height of the MessageBox.
21
+ /// @group messagebox
10
22
  $kendo-message-box-line-height: var( --kendo-line-height, normal ) !default;
11
23
 
24
+ /// The background color level of the MessageBox.
25
+ /// @group messagebox
12
26
  $kendo-message-box-bg-level: -10 !default;
27
+ /// The text color level of the MessageBox.
28
+ /// @group messagebox
13
29
  $kendo-message-box-text-level: 6 !default;
30
+ /// The border color level of the MessageBox.
31
+ /// @group messagebox
14
32
  $kendo-message-box-border-level: -9 !default;
15
33
 
34
+ /// The font style of the MessageBox link.
35
+ /// @group messagebox
16
36
  $kendo-message-box-link-font-style: normal !default;
37
+ /// The text decoration of the MessageBox link.
38
+ /// @group messagebox
17
39
  $kendo-message-box-link-text-decoration: underline !default;
18
40
 
41
+ /// The theme colors map for the MessageBox.
42
+ /// @group messagebox
19
43
  $kendo-message-box-theme-colors: (
20
44
  "primary": k-color(primary),
21
45
  "secondary": k-color(secondary),
@@ -33,6 +33,8 @@ $kendo-otp-md-input-width: $kendo-input-md-calc-size !default;
33
33
  /// @group one-time-password
34
34
  $kendo-otp-lg-input-width: $kendo-input-lg-calc-size !default;
35
35
 
36
+ /// The sizes map of the OTP.
37
+ /// @group otp
36
38
  $kendo-otp-sizes: (
37
39
  sm: (
38
40
  gap: $kendo-otp-sm-gap,
@@ -1,5 +1,7 @@
1
1
  @use "../core/_index.scss" as *;
2
2
 
3
+ /// The theme colors map for the Overlay.
4
+ /// @group overlay
3
5
  $kendo-overlay-theme-colors: (
4
6
  "primary": k-color(primary),
5
7
  "secondary": k-color(secondary),
@@ -13,7 +15,11 @@ $kendo-overlay-theme-colors: (
13
15
  "inverse": if($kendo-is-dark-theme, k-color(light), k-color(dark)),
14
16
  ) !default;
15
17
 
18
+ /// The background color of the Overlay.
19
+ /// @group overlay
16
20
  $kendo-overlay-bg: k-color(inverse) !default;
21
+ /// The opacity of the Overlay.
22
+ /// @group overlay
17
23
  $kendo-overlay-opacity: .5 !default;
18
24
 
19
25
  @forward "@progress/kendo-theme-core/scss/components/overlay/_variables.scss" with (
@@ -106,7 +106,7 @@ $kendo-pivotgrid-selected-border: null !default;
106
106
  /// @group pivotgrid
107
107
  $kendo-pivotgrid-focus-shadow: $kendo-list-item-focus-shadow !default;
108
108
 
109
- // Pivotgrid Configurator
109
+ // PivotGrid Configurator
110
110
  /// The horizontal padding of the PivotGrid configurator.
111
111
  /// @group pivotgrid
112
112
  $kendo-pivotgrid-configurator-padding-x: null !default;
@@ -246,23 +246,20 @@ $kendo-pivotgrid-treeview-padding-x: k-spacing(6) !default;
246
246
  $kendo-pivotgrid-treeview-padding-y: k-spacing(0) !default;
247
247
 
248
248
  // Legacy variables
249
+ /// The background color of the PivotGrid.
250
+ /// @group pivotgrid
249
251
  $kendo-pivotgrid-alt-bg: $kendo-grid-header-bg !default;
252
+ /// The text color of the PivotGrid.
253
+ /// @group pivotgrid
250
254
  $kendo-pivotgrid-alt-text: $kendo-grid-header-text !default;
255
+ /// The border color of the PivotGrid.
256
+ /// @group pivotgrid
251
257
  $kendo-pivotgrid-chrome-border: $kendo-grid-border !default;
252
258
 
253
- $kendo-pivotgrid-container-bg: k-color(surface) !default;
259
+ /// The background color of the PivotGrid row.
260
+ /// @group pivotgrid
254
261
  $kendo-pivotgrid-row-headers-bg: k-color(base-subtle) !default;
255
262
 
256
- $kendo-pivotgrid-button-bg: null !default;
257
- $kendo-pivotgrid-button-text: null !default;
258
- $kendo-pivotgrid-button-hover-bg: null !default;
259
- $kendo-pivotgrid-button-hover-text: null !default;
260
- $kendo-pivotgrid-button-active-bg: null !default;
261
- $kendo-pivotgrid-button-active-text: null !default;
262
-
263
- $kendo-pivotgrid-remove-bg: null !default;
264
- $kendo-pivotgrid-remove-text: null !default;
265
-
266
263
 
267
264
  @forward "@progress/kendo-theme-core/scss/components/pivotgrid/_variables.scss" with (
268
265
  $kendo-pivotgrid-spacer: $kendo-pivotgrid-spacer,
@@ -339,14 +336,5 @@ $kendo-pivotgrid-remove-text: null !default;
339
336
  $kendo-pivotgrid-alt-bg: $kendo-pivotgrid-alt-bg,
340
337
  $kendo-pivotgrid-alt-text: $kendo-pivotgrid-alt-text,
341
338
  $kendo-pivotgrid-chrome-border: $kendo-pivotgrid-chrome-border,
342
- $kendo-pivotgrid-container-bg: $kendo-pivotgrid-container-bg,
343
- $kendo-pivotgrid-row-headers-bg: $kendo-pivotgrid-row-headers-bg,
344
- $kendo-pivotgrid-button-bg: $kendo-pivotgrid-button-bg,
345
- $kendo-pivotgrid-button-text: $kendo-pivotgrid-button-text,
346
- $kendo-pivotgrid-button-hover-bg: $kendo-pivotgrid-button-hover-bg,
347
- $kendo-pivotgrid-button-hover-text: $kendo-pivotgrid-button-hover-text,
348
- $kendo-pivotgrid-button-active-bg: $kendo-pivotgrid-button-active-bg,
349
- $kendo-pivotgrid-button-active-text: $kendo-pivotgrid-button-active-text,
350
- $kendo-pivotgrid-remove-bg: $kendo-pivotgrid-remove-bg,
351
- $kendo-pivotgrid-remove-text: $kendo-pivotgrid-remove-text
339
+ $kendo-pivotgrid-row-headers-bg: $kendo-pivotgrid-row-headers-bg
352
340
  );
@@ -260,6 +260,8 @@ $kendo-scheduler-marquee-label-inset-x: k-spacing(2) !default;
260
260
  /// @group scheduler
261
261
  $kendo-scheduler-marquee-label-inset-y: k-spacing(1) !default;
262
262
 
263
+ /// The background color of the Scheduler header.
264
+ /// @group scheduler
263
265
  $kendo-scheduler-header-bg: k-color(surface) !default;
264
266
 
265
267
  @forward "@progress/kendo-theme-core/scss/components/scheduler/_variables.scss" with (