@progress/kendo-theme-classic 10.1.0-dev.5 → 10.1.0-dev.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/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 +3300 -1412
  17. package/dist/meta/sassdoc-raw-data.json +1532 -682
  18. package/dist/meta/variables.json +221 -29
  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/button/_variables.scss +8 -8
  35. package/scss/checkbox/_variables.scss +2 -2
  36. package/scss/index.scss +3 -2
  37. package/scss/input/_variables.scss +11 -0
  38. package/scss/otp/_index.scss +18 -0
  39. package/scss/otp/_layout.scss +5 -0
  40. package/scss/otp/_theme.scss +5 -0
  41. package/scss/otp/_variables.scss +77 -0
  42. package/scss/radio/_variables.scss +1 -1
  43. package/scss/tabstrip/_variables.scss +77 -1
  44. package/scss/toolbar/_variables.scss +37 -9
@@ -70,17 +70,17 @@ $kendo-button-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
70
70
 
71
71
  /// The calculated height of the Button.
72
72
  /// @group button
73
- $kendo-button-calc-size: calc( calc( #{$kendo-button-line-height} * 1em ) + calc( #{$kendo-button-padding-y} * 2 ) + #{$kendo-button-border-width * 2} ) !default;
74
- $kendo-button-sm-calc-size: calc( calc( #{$kendo-button-sm-line-height} * 1em ) + calc( #{$kendo-button-sm-padding-y} * 2 ) + #{$kendo-button-border-width * 2} ) !default;
75
- $kendo-button-md-calc-size: calc( calc( #{$kendo-button-md-line-height} * 1em ) + calc( #{$kendo-button-md-padding-y} * 2 ) + #{$kendo-button-border-width * 2} ) !default;
76
- $kendo-button-lg-calc-size: calc( calc( #{$kendo-button-lg-line-height} * 1em ) + calc( #{$kendo-button-lg-padding-y} * 2 ) + #{$kendo-button-border-width * 2} ) !default;
73
+ $kendo-button-calc-size: calc( ( #{$kendo-button-line-height} * 1em ) + ( #{$kendo-button-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
74
+ $kendo-button-sm-calc-size: calc( ( #{$kendo-button-sm-line-height} * 1em ) + ( #{$kendo-button-sm-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
75
+ $kendo-button-md-calc-size: calc( ( #{$kendo-button-md-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
76
+ $kendo-button-lg-calc-size: calc( ( #{$kendo-button-lg-line-height} * 1em ) + ( #{$kendo-button-lg-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
77
77
 
78
78
  /// The calculated inner height of the Button excluding the border width.
79
79
  /// @group button
80
- $kendo-button-inner-calc-size: calc( calc( #{$kendo-button-line-height} * 1em ) + calc( #{$kendo-button-padding-y} * 2 ) ) !default;
81
- $kendo-button-sm-inner-calc-size: calc( calc( #{$kendo-button-sm-line-height} * 1em ) + calc( #{$kendo-button-sm-padding-y} * 2 ) ) !default;
82
- $kendo-button-md-inner-calc-size: calc( calc( #{$kendo-button-md-line-height} * 1em ) + calc( #{$kendo-button-md-padding-y} * 2 ) ) !default;
83
- $kendo-button-lg-inner-calc-size: calc( calc( #{$kendo-button-lg-line-height} * 1em ) + calc( #{$kendo-button-lg-padding-y} * 2 ) ) !default;
80
+ $kendo-button-inner-calc-size: calc( ( #{$kendo-button-line-height} * 1em ) + ( #{$kendo-button-padding-y} * 2 ) ) !default;
81
+ $kendo-button-sm-inner-calc-size: calc( ( #{$kendo-button-sm-line-height} * 1em ) + ( #{$kendo-button-sm-padding-y} * 2 ) ) !default;
82
+ $kendo-button-md-inner-calc-size: calc( ( #{$kendo-button-md-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) ) !default;
83
+ $kendo-button-lg-inner-calc-size: calc( ( #{$kendo-button-lg-line-height} * 1em ) + ( #{$kendo-button-lg-padding-y} * 2 ) ) !default;
84
84
 
85
85
  /// The sizes map for the Button.
86
86
  /// @group button
@@ -159,10 +159,10 @@ $kendo-checkbox-indeterminate-glyph: "\e121" !default;
159
159
 
160
160
  /// The image for a checked CheckBox indicator.
161
161
  /// @group checkbox
162
- $kendo-checkbox-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$kendo-checkbox-checked-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M3,8 l3,3 l7-7'/></svg>") ) !default;
162
+ $kendo-checkbox-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#ffffff' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M3,8 l3,3 l7-7'/></svg>") ) !default;
163
163
  /// The image for a indeterminate CheckBox indicator.
164
164
  /// @group checkbox
165
- $kendo-checkbox-indeterminate-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$kendo-checkbox-indeterminate-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M4,8 h8'/></svg>") ) !default;
165
+ $kendo-checkbox-indeterminate-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#f35800' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M4,8 h8'/></svg>") ) !default;
166
166
 
167
167
 
168
168
  // CheckBox label
package/scss/index.scss CHANGED
@@ -114,6 +114,7 @@
114
114
  @forward "./map/_index.scss";
115
115
  @forward "./orgchart/_index.scss";
116
116
  @forward "./signature/_index.scss";
117
+ @forward "./otp/_index.scss";
117
118
 
118
119
 
119
120
  // Use component modules
@@ -200,8 +201,7 @@
200
201
  @use "./switch/_index.scss" as *;
201
202
  @use "./upload/_index.scss" as *;
202
203
  @use "./dropzone/_index.scss" as *;
203
-
204
-
204
+ @use "./otp/_index.scss" as *;
205
205
  // Command interfaces
206
206
  @use "./action-buttons/_index.scss" as *;
207
207
  @use "./appbar/_index.scss" as *;
@@ -372,6 +372,7 @@
372
372
  @include kendo-switch--styles();
373
373
  @include kendo-upload--styles();
374
374
  @include kendo-dropzone--styles();
375
+ @include kendo-otp--styles();
375
376
 
376
377
 
377
378
  // Command interfaces
@@ -73,6 +73,13 @@ $kendo-input-md-line-height: var( --kendo-line-height, normal ) !default;
73
73
  /// @group input
74
74
  $kendo-input-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
75
75
 
76
+ /// The calculated height of the Input.
77
+ /// @group input
78
+ $kendo-input-calc-size: calc( ( #{$kendo-input-line-height} * 1em ) + ( #{$kendo-input-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
79
+ $kendo-input-sm-calc-size: calc( ( #{$kendo-input-sm-line-height} * 1em ) + ( #{$kendo-input-sm-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
80
+ $kendo-input-md-calc-size: calc( ( #{$kendo-input-md-line-height} * 1em ) + ( #{$kendo-input-md-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
81
+ $kendo-input-lg-calc-size: calc( ( #{$kendo-input-lg-line-height} * 1em ) + ( #{$kendo-input-lg-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
82
+
76
83
  /// The sizes map for the Input components.
77
84
  /// @group input
78
85
  $kendo-input-sizes: (
@@ -469,6 +476,10 @@ $kendo-picker-flat-hover-focus-border: null !default;
469
476
  $kendo-input-sm-line-height: $kendo-input-sm-line-height,
470
477
  $kendo-input-md-line-height: $kendo-input-md-line-height,
471
478
  $kendo-input-lg-line-height: $kendo-input-lg-line-height,
479
+ $kendo-input-calc-size: $kendo-input-calc-size,
480
+ $kendo-input-sm-calc-size: $kendo-input-sm-calc-size,
481
+ $kendo-input-md-calc-size: $kendo-input-md-calc-size,
482
+ $kendo-input-lg-calc-size: $kendo-input-lg-calc-size,
472
483
  $kendo-input-sizes: $kendo-input-sizes,
473
484
  $kendo-input-bg: $kendo-input-bg,
474
485
  $kendo-input-text: $kendo-input-text,
@@ -0,0 +1,18 @@
1
+ // Dependencies
2
+ @use "../core/_index.scss" as *;
3
+ @use "../input/_index.scss" as *;
4
+
5
+ // Component
6
+ @forward "./_variables.scss";
7
+ @use "./_layout.scss" as *;
8
+ @use "./_theme.scss" as *;
9
+
10
+ // Expose
11
+ @mixin kendo-otp--styles() {
12
+ @include import-once( "otp" ) {
13
+ @include core-styles();
14
+ @include kendo-input--styles();
15
+ @include kendo-otp--layout();
16
+ @include kendo-otp--theme();
17
+ }
18
+ }
@@ -0,0 +1,5 @@
1
+ @use "@progress/kendo-theme-default/scss/otp/_layout.scss" as *;
2
+
3
+ @mixin kendo-otp--layout() {
4
+ @include kendo-otp--layout-base();
5
+ }
@@ -0,0 +1,5 @@
1
+ @use "@progress/kendo-theme-default/scss/otp/_theme.scss" as *;
2
+
3
+ @mixin kendo-otp--theme() {
4
+ @include kendo-otp--theme-base();
5
+ }
@@ -0,0 +1,77 @@
1
+ @use "../core/_index.scss" as *;
2
+ @use "../input/_variables.scss" as *;
3
+
4
+ // OTP
5
+
6
+ /// The gap between the items in the OTP.
7
+ /// @group one-time-password
8
+ $kendo-otp-gap: k-spacing(1.5) !default;
9
+ /// The gap between the items in the small OTP.
10
+ /// @group one-time-password
11
+ $kendo-otp-sm-gap: k-spacing(1) !default;
12
+ /// The gap between the items in the medium OTP.
13
+ /// @group one-time-password
14
+ $kendo-otp-md-gap: $kendo-otp-gap !default;
15
+ /// The gap between the items in the large OTP.
16
+ /// @group one-time-password
17
+ $kendo-otp-lg-gap: k-spacing(2) !default;
18
+
19
+ /// The horizontal padding of the OTP separator.
20
+ /// @group one-time-password
21
+ $kendo-otp-separator-padding-x: $kendo-otp-gap !default;
22
+ /// The horizontal padding of the small OTP separator.
23
+ /// @group one-time-password
24
+ $kendo-otp-sm-separator-padding-x: $kendo-otp-sm-gap !default;
25
+ /// The horizontal padding of the medium OTP separator.
26
+ /// @group one-time-password
27
+ $kendo-otp-md-separator-padding-x: $kendo-otp-separator-padding-x !default;
28
+ /// The horizontal padding of the large OTP separator.
29
+ /// @group one-time-password
30
+ $kendo-otp-lg-separator-padding-x: $kendo-otp-lg-gap !default;
31
+
32
+ /// The horizontal padding of the OTP separator.
33
+ /// @group one-time-password
34
+ $kendo-otp-input-width: $kendo-input-calc-size !default;
35
+ /// The horizontal padding of the small OTP separator.
36
+ /// @group one-time-password
37
+ $kendo-otp-sm-input-width: $kendo-input-sm-calc-size !default;
38
+ /// The horizontal padding of the medium OTP separator.
39
+ /// @group one-time-password
40
+ $kendo-otp-md-input-width: $kendo-otp-input-width !default;
41
+ /// The horizontal padding of the large OTP separator.
42
+ /// @group one-time-password
43
+ $kendo-otp-lg-input-width: $kendo-input-lg-calc-size !default;
44
+
45
+ $kendo-otp-sizes: (
46
+ sm: (
47
+ gap: $kendo-otp-sm-gap,
48
+ separator-padding-x: $kendo-otp-sm-separator-padding-x,
49
+ input-width: $kendo-otp-sm-input-width
50
+ ),
51
+ md: (
52
+ gap: $kendo-otp-md-gap,
53
+ separator-padding-x: $kendo-otp-md-separator-padding-x,
54
+ input-width: $kendo-otp-md-input-width
55
+ ),
56
+ lg: (
57
+ gap: $kendo-otp-lg-gap,
58
+ separator-padding-x: $kendo-otp-lg-separator-padding-x,
59
+ input-width: $kendo-otp-lg-input-width
60
+ )
61
+ ) !default;
62
+
63
+ @forward "@progress/kendo-theme-default/scss/otp/_variables.scss" with (
64
+ $kendo-otp-gap: $kendo-otp-gap,
65
+ $kendo-otp-sm-gap: $kendo-otp-sm-gap,
66
+ $kendo-otp-md-gap: $kendo-otp-md-gap,
67
+ $kendo-otp-lg-gap: $kendo-otp-lg-gap,
68
+ $kendo-otp-separator-padding-x: $kendo-otp-separator-padding-x,
69
+ $kendo-otp-sm-separator-padding-x: $kendo-otp-sm-separator-padding-x,
70
+ $kendo-otp-md-separator-padding-x: $kendo-otp-md-separator-padding-x,
71
+ $kendo-otp-lg-separator-padding-x: $kendo-otp-lg-separator-padding-x,
72
+ $kendo-otp-input-width: $kendo-otp-input-width,
73
+ $kendo-otp-sm-input-width: $kendo-otp-sm-input-width,
74
+ $kendo-otp-md-input-width: $kendo-otp-md-input-width,
75
+ $kendo-otp-lg-input-width: $kendo-otp-lg-input-width,
76
+ $kendo-otp-sizes: $kendo-otp-sizes
77
+ );
@@ -152,7 +152,7 @@ $kendo-radio-checked-glyph: "\e308" !default;
152
152
 
153
153
  /// The image of the checked RadioButton indicator.
154
154
  /// @group radio
155
- $kendo-radio-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
155
+ $kendo-radio-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#ffffff'/></svg>") ) !default;
156
156
  /// The image of the disabled and checked RadioButton indicator.
157
157
  /// @group radio
158
158
  $kendo-radio-disabled-checked-image: null !default;
@@ -27,6 +27,25 @@ $kendo-tabstrip-line-height: var( --kendo-line-height, normal )!default;
27
27
  /// @group tabstrip
28
28
  $kendo-tabstrip-border-width: 1px !default;
29
29
 
30
+ /// The font size of the small TabStrip.
31
+ /// @group tabstrip
32
+ $kendo-tabstrip-sm-font-size: $kendo-tabstrip-font-size !default;
33
+ /// The line height of the small TabStrip.
34
+ /// @group tabstrip
35
+ $kendo-tabstrip-sm-line-height: $kendo-tabstrip-line-height !default;
36
+ /// The font size of the medium TabStrip.
37
+ /// @group tabstrip
38
+ $kendo-tabstrip-md-font-size: $kendo-tabstrip-font-size !default;
39
+ /// The line height of the medium TabStrip.
40
+ /// @group tabstrip
41
+ $kendo-tabstrip-md-line-height: $kendo-tabstrip-line-height !default;
42
+ /// The font size of the large TabStrip.
43
+ /// @group tabstrip
44
+ $kendo-tabstrip-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
45
+ /// The line height of the large TabStrip.
46
+ /// @group tabstrip
47
+ $kendo-tabstrip-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
48
+
30
49
  /// The background color of the TabStrip wrapper.
31
50
  /// @group tabstrip
32
51
  $kendo-tabstrip-wrapper-bg: null !default;
@@ -62,6 +81,24 @@ $kendo-tabstrip-item-border-radius: k-border-radius(md) !default;
62
81
  /// The gap between the TabStrip items.
63
82
  /// @group tabstrip
64
83
  $kendo-tabstrip-item-gap: k-spacing(0) !default;
84
+ /// The horizontal padding of the small TabStrip items.
85
+ /// @group tabstrip
86
+ $kendo-tabstrip-sm-item-padding-x: k-spacing(2) !default;
87
+ /// The vertical padding of the small TabStrip items.
88
+ /// @group tabstrip
89
+ $kendo-tabstrip-sm-item-padding-y: k-spacing(0.5) !default;
90
+ /// The horizontal padding of the medium TabStrip items.
91
+ /// @group tabstrip
92
+ $kendo-tabstrip-md-item-padding-x: $kendo-tabstrip-item-padding-x !default;
93
+ /// The vertical padding of the medium TabStrip items.
94
+ /// @group tabstrip
95
+ $kendo-tabstrip-md-item-padding-y: $kendo-tabstrip-item-padding-y !default;
96
+ /// The horizontal padding of the large TabStrip items.
97
+ /// @group tabstrip
98
+ $kendo-tabstrip-lg-item-padding-x: k-spacing(2) !default;
99
+ /// The vertical padding of the large TabStrip items.
100
+ /// @group tabstrip
101
+ $kendo-tabstrip-lg-item-padding-y: k-spacing(1.5) !default;
65
102
 
66
103
  /// The background color of the TabStrip items.
67
104
  /// @group tabstrip
@@ -162,6 +199,32 @@ $kendo-tabstrip-content-border: $kendo-component-border !default;
162
199
  /// @group tabstrip
163
200
  $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
164
201
 
202
+ /// The left and right scroll overlay of the TabStrip.
203
+ /// @group tabstrip
204
+ $kendo-tabstrip-scroll-overlay: if($kendo-enable-color-system, k-color( app-surface ), rgba( $kendo-color-white, 0)), if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 0%, transparent), rgba( $kendo-color-white, 0)) !default;
205
+
206
+ /// The size map of the TabStrip.
207
+ /// @group tabstrip
208
+ $kendo-tabstrip-sizes: (
209
+ sm: (
210
+ font-size: $kendo-tabstrip-sm-font-size,
211
+ line-height: $kendo-tabstrip-sm-line-height,
212
+ item-padding-x: $kendo-tabstrip-sm-item-padding-x,
213
+ item-padding-y: $kendo-tabstrip-sm-item-padding-y
214
+ ),
215
+ md: (
216
+ font-size: $kendo-tabstrip-md-font-size,
217
+ line-height: $kendo-tabstrip-md-line-height,
218
+ item-padding-x: $kendo-tabstrip-md-item-padding-x,
219
+ item-padding-y: $kendo-tabstrip-md-item-padding-y
220
+ ),
221
+ lg: (
222
+ font-size: $kendo-tabstrip-lg-font-size,
223
+ line-height: $kendo-tabstrip-lg-line-height,
224
+ item-padding-x: $kendo-tabstrip-lg-item-padding-x,
225
+ item-padding-y: $kendo-tabstrip-lg-item-padding-y
226
+ )
227
+ ) !default;
165
228
 
166
229
  @forward "@progress/kendo-theme-default/scss/tabstrip/_variables.scss" with (
167
230
  $kendo-tabstrip-wrapper-padding-x: $kendo-tabstrip-wrapper-padding-x,
@@ -171,6 +234,12 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
171
234
  $kendo-tabstrip-font-size: $kendo-tabstrip-font-size,
172
235
  $kendo-tabstrip-line-height: $kendo-tabstrip-line-height,
173
236
  $kendo-tabstrip-border-width: $kendo-tabstrip-border-width,
237
+ $kendo-tabstrip-sm-font-size: $kendo-tabstrip-sm-font-size,
238
+ $kendo-tabstrip-sm-line-height: $kendo-tabstrip-sm-line-height,
239
+ $kendo-tabstrip-md-font-size: $kendo-tabstrip-md-font-size,
240
+ $kendo-tabstrip-md-line-height: $kendo-tabstrip-md-line-height,
241
+ $kendo-tabstrip-lg-font-size: $kendo-tabstrip-lg-font-size,
242
+ $kendo-tabstrip-lg-line-height: $kendo-tabstrip-lg-line-height,
174
243
  $kendo-tabstrip-wrapper-bg: $kendo-tabstrip-wrapper-bg,
175
244
  $kendo-tabstrip-wrapper-text: $kendo-tabstrip-wrapper-text,
176
245
  $kendo-tabstrip-wrapper-border: $kendo-tabstrip-wrapper-border,
@@ -183,6 +252,12 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
183
252
  $kendo-tabstrip-item-border-radius: $kendo-tabstrip-item-border-radius,
184
253
  $kendo-tabstrip-item-gap: $kendo-tabstrip-item-gap,
185
254
  $kendo-tabstrip-item-bg: $kendo-tabstrip-item-bg,
255
+ $kendo-tabstrip-sm-item-padding-x: $kendo-tabstrip-sm-item-padding-x,
256
+ $kendo-tabstrip-sm-item-padding-y: $kendo-tabstrip-sm-item-padding-y,
257
+ $kendo-tabstrip-md-item-padding-x: $kendo-tabstrip-md-item-padding-x,
258
+ $kendo-tabstrip-md-item-padding-y: $kendo-tabstrip-md-item-padding-y,
259
+ $kendo-tabstrip-lg-item-padding-x: $kendo-tabstrip-lg-item-padding-x,
260
+ $kendo-tabstrip-lg-item-padding-y: $kendo-tabstrip-lg-item-padding-y,
186
261
  $kendo-tabstrip-item-text: $kendo-tabstrip-item-text,
187
262
  $kendo-tabstrip-item-border: $kendo-tabstrip-item-border,
188
263
  $kendo-tabstrip-item-gradient: $kendo-tabstrip-item-gradient,
@@ -211,5 +286,6 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
211
286
  $kendo-tabstrip-content-bg: $kendo-tabstrip-content-bg,
212
287
  $kendo-tabstrip-content-text: $kendo-tabstrip-content-text,
213
288
  $kendo-tabstrip-content-border: $kendo-tabstrip-content-border,
214
- $kendo-tabstrip-content-focus-border: $kendo-tabstrip-content-focus-border
289
+ $kendo-tabstrip-content-focus-border: $kendo-tabstrip-content-focus-border,
290
+ $kendo-tabstrip-scroll-overlay: $kendo-tabstrip-scroll-overlay
215
291
  );
@@ -5,43 +5,56 @@
5
5
 
6
6
  /// The horizontal padding of the Toolbar.
7
7
  /// @group toolbar
8
- $kendo-toolbar-padding-x: null !default;
8
+ $kendo-toolbar-padding-x: k-spacing(2) !default;
9
9
  /// The horizontal padding of the small Toolbar.
10
10
  /// @group toolbar
11
11
  $kendo-toolbar-sm-padding-x: k-spacing(1) !default;
12
12
  /// The horizontal padding of the medium Toolbar.
13
13
  /// @group toolbar
14
- $kendo-toolbar-md-padding-x: k-spacing(2) !default;
14
+ $kendo-toolbar-md-padding-x: $kendo-toolbar-padding-x !default;
15
15
  /// The horizontal padding of the large Toolbar.
16
16
  /// @group toolbar
17
17
  $kendo-toolbar-lg-padding-x: k-spacing(2.5) !default;
18
18
 
19
19
  /// The vertical padding of the Toolbar.
20
20
  /// @group toolbar
21
- $kendo-toolbar-padding-y: null !default;
21
+ $kendo-toolbar-padding-y: k-spacing(2) !default;
22
22
  /// The vertical padding of the small Toolbar.
23
23
  /// @group toolbar
24
24
  $kendo-toolbar-sm-padding-y: k-spacing(1) !default;
25
25
  /// The vertical padding of the medium Toolbar.
26
26
  /// @group toolbar
27
- $kendo-toolbar-md-padding-y: k-spacing(2) !default;
27
+ $kendo-toolbar-md-padding-y: $kendo-toolbar-padding-y !default;
28
28
  /// The vertical padding of the large Toolbar.
29
29
  /// @group toolbar
30
30
  $kendo-toolbar-lg-padding-y: k-spacing(2.5) !default;
31
31
 
32
32
  /// The spacing between the Toolbar tools.
33
33
  /// @group toolbar
34
- $kendo-toolbar-spacing: null !default;
34
+ $kendo-toolbar-spacing: k-spacing(2) !default;
35
35
  /// The spacing between the tools of the small Toolbar.
36
36
  /// @group toolbar
37
37
  $kendo-toolbar-sm-spacing: k-spacing(1.5) !default;
38
38
  /// The spacing between the tools of the medium Toolbar.
39
39
  /// @group toolbar
40
- $kendo-toolbar-md-spacing: k-spacing(2) !default;
40
+ $kendo-toolbar-md-spacing: $kendo-toolbar-spacing !default;
41
41
  /// The spacing between the tools of the large Toolbar.
42
42
  /// @group toolbar
43
43
  $kendo-toolbar-lg-spacing: k-spacing(2.5) !default;
44
44
 
45
+ /// The height of the Toolbar button separator.
46
+ /// @group toolbar
47
+ $kendo-toolbar-separator-height: $kendo-button-md-calc-size !default;
48
+ /// The height of the small Toolbar button separator.
49
+ /// @group toolbar
50
+ $kendo-toolbar-sm-separator-height: $kendo-button-sm-calc-size !default;
51
+ /// The height of the medium Toolbar button separator.
52
+ /// @group toolbar
53
+ $kendo-toolbar-md-separator-height: $kendo-toolbar-separator-height !default;
54
+ /// The height of the large Toolbar button separator.
55
+ /// @group toolbar
56
+ $kendo-toolbar-lg-separator-height: $kendo-button-lg-calc-size !default;
57
+
45
58
  /// The width of the border around the Toolbar.
46
59
  /// @group toolbar
47
60
  $kendo-toolbar-border-width: 1px !default;
@@ -74,6 +87,10 @@ $kendo-toolbar-gradient: null !default;
74
87
  /// The box shadow of the Toolbar.
75
88
  /// @group toolbar
76
89
  $kendo-toolbar-shadow: null !default;
90
+ /// The left and right scroll overlay of the Toolbar.
91
+ /// @group toolbar
92
+ $kendo-toolbar-scroll-overlay: $kendo-toolbar-bg, if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 0%, transparent), rgba( $kendo-color-white, 0)) !default;
93
+
77
94
 
78
95
  /// The text color of the outline Toolbar.
79
96
  /// @group toolbar
@@ -90,6 +107,10 @@ $kendo-toolbar-outline-shadow: null !default;
90
107
  /// The width of the border around the outline Toolbar.
91
108
  /// @group toolbar
92
109
  $kendo-toolbar-outline-border-width: $kendo-toolbar-border-width !default;
110
+ /// The left and right scroll overlay of the outline Toolbar.
111
+ /// @group toolbar
112
+ $kendo-toolbar-outline-scroll-overlay: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white), if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 0%, transparent), rgba( $kendo-color-white, 0)) !default;
113
+
93
114
 
94
115
  /// The text color of the flat Toolbar.
95
116
  /// @group toolbar
@@ -106,6 +127,10 @@ $kendo-toolbar-flat-shadow: null !default;
106
127
  /// Border width of the flat Toolbar.
107
128
  /// @group toolbar
108
129
  $kendo-toolbar-flat-border-width: 1px !default;
130
+ /// The left and right scroll overlay of the flat Toolbar.
131
+ /// @group toolbar
132
+ $kendo-toolbar-flat-scroll-overlay: if($kendo-enable-color-system, k-color( app-surface ), $kendo-color-white), if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 0%, transparent), rgba( $kendo-color-white, 0)) !default;
133
+
109
134
 
110
135
  /// The color of the separator border of the Toolbar.
111
136
  /// @group toolbar
@@ -125,17 +150,20 @@ $kendo-toolbar-sizes: (
125
150
  sm: (
126
151
  padding-x: $kendo-toolbar-sm-padding-x,
127
152
  padding-y: $kendo-toolbar-sm-padding-y,
128
- spacing: $kendo-toolbar-sm-spacing
153
+ spacing: $kendo-toolbar-sm-spacing,
154
+ separator-height: $kendo-toolbar-sm-separator-height
129
155
  ),
130
156
  md: (
131
157
  padding-x: $kendo-toolbar-md-padding-x,
132
158
  padding-y: $kendo-toolbar-md-padding-y,
133
- spacing: $kendo-toolbar-md-spacing
159
+ spacing: $kendo-toolbar-md-spacing,
160
+ separator-height: $kendo-toolbar-md-separator-height
134
161
  ),
135
162
  lg: (
136
163
  padding-x: $kendo-toolbar-lg-padding-x,
137
164
  padding-y: $kendo-toolbar-lg-padding-y,
138
- spacing: $kendo-toolbar-lg-spacing
165
+ spacing: $kendo-toolbar-lg-spacing,
166
+ separator-height: $kendo-toolbar-lg-separator-height
139
167
  )
140
168
  ) !default;
141
169