@progress/kendo-theme-default 6.3.1-dev.0 → 6.4.0-dev.1

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 (40) hide show
  1. package/dist/all.css +348 -154
  2. package/dist/all.scss +245 -148
  3. package/dist/default-main-dark.scss +2 -2
  4. package/dist/meta/sassdoc-data.json +988 -1096
  5. package/dist/meta/sassdoc-raw-data.json +494 -544
  6. package/dist/meta/variables.json +16 -16
  7. package/lib/swatches/default-blue.json +1 -1
  8. package/lib/swatches/default-dataviz-v4.json +1 -1
  9. package/lib/swatches/default-green.json +1 -1
  10. package/lib/swatches/default-main-dark.json +4 -4
  11. package/lib/swatches/default-main.json +1 -1
  12. package/lib/swatches/default-nordic.json +1 -1
  13. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  14. package/lib/swatches/default-ocean-blue.json +1 -1
  15. package/lib/swatches/default-orange.json +1 -1
  16. package/lib/swatches/default-purple.json +1 -1
  17. package/lib/swatches/default-turquoise.json +1 -1
  18. package/lib/swatches/default-urban.json +1 -1
  19. package/package.json +4 -4
  20. package/scss/action-sheet/_layout.scss +11 -2
  21. package/scss/adaptive/_layout.scss +5 -8
  22. package/scss/bottom-navigation/_theme.scss +21 -14
  23. package/scss/breadcrumb/_layout.scss +1 -6
  24. package/scss/drawer/_layout.scss +13 -3
  25. package/scss/drawer/_variables.scss +2 -0
  26. package/scss/editor/_layout.scss +0 -18
  27. package/scss/expansion-panel/_layout.scss +3 -0
  28. package/scss/fab/_layout.scss +3 -4
  29. package/scss/fab/_theme.scss +1 -1
  30. package/scss/fab/_variables.scss +5 -11
  31. package/scss/grid/_layout.scss +3 -1
  32. package/scss/icons/_layout.scss +10 -7
  33. package/scss/input/_layout.scss +6 -5
  34. package/scss/input/_variables.scss +0 -3
  35. package/scss/listbox/_layout.scss +2 -5
  36. package/scss/listgroup/_layout.scss +1 -1
  37. package/scss/pager/_layout.scss +1 -12
  38. package/scss/scheduler/_layout.scss +3 -16
  39. package/scss/scrollview/_layout.scss +13 -2
  40. package/scss/spreadsheet/_layout.scss +4 -2
@@ -49,6 +49,7 @@
49
49
 
50
50
  .k-grid-header,
51
51
  .k-grid-content,
52
+ .k-grid-content-locked,
52
53
  .k-grid-footer {
53
54
  .k-table {
54
55
  table-layout: fixed;
@@ -1316,7 +1317,8 @@
1316
1317
  cursor: pointer;
1317
1318
 
1318
1319
  > .k-icon,
1319
- > .k-svg-icon {
1320
+ > .k-svg-icon,
1321
+ > .k-expander-indicator {
1320
1322
  margin-inline-end: $kendo-icon-spacing;
1321
1323
  }
1322
1324
  }
@@ -57,13 +57,16 @@ $ki-icon-size: $kendo-icon-size;
57
57
  }
58
58
 
59
59
  // RTL icons
60
- .k-rtl .k-i-indent-increase,
61
- .k-rtl .k-i-indent-decrease,
62
- .k-rtl .k-i-caret-alt-right,
63
- .k-rtl .k-i-caret-alt-left,
64
- [dir="rtl"] .k-i-caret-alt-right,
65
- [dir="rtl"] .k-i-caret-alt-left {
66
- transform: scaleX(-1);
60
+ .k-rtl,
61
+ [dir="rtl"] {
62
+ .k-i-indent-increase,
63
+ .k-i-indent-decrease,
64
+ .k-i-caret-alt-right,
65
+ .k-i-caret-alt-left,
66
+ .k-svg-i-caret-alt-right,
67
+ .k-svg-i-caret-alt-left {
68
+ transform: scaleX(-1);
69
+ }
67
70
  }
68
71
 
69
72
  .k-sprite {
@@ -33,8 +33,8 @@
33
33
  box-sizing: border-box;
34
34
  }
35
35
 
36
- .k-input,
37
- .k-picker {
36
+ > .k-input,
37
+ > .k-picker {
38
38
  border-width: 0 !important; // sass-lint:disable-line no-important
39
39
  color: inherit;
40
40
  background: none;
@@ -226,6 +226,7 @@
226
226
  flex-flow: row nowrap;
227
227
  align-items: center;
228
228
  justify-content: center;
229
+ box-sizing: content-box;
229
230
  }
230
231
 
231
232
  // Input with SVG icon
@@ -398,7 +399,6 @@
398
399
  $_padding-y: k-map-get( $size-props, padding-y );
399
400
  $_font-size: k-map-get( $size-props, font-size );
400
401
  $_line-height: k-map-get( $size-props, line-height );
401
- $_icon-size: k-map-get( $size-props, icon-size );
402
402
  $_button-padding-x: k-map-get( $size-props, button-padding-x );
403
403
  $_button-padding-y: k-map-get( $size-props, button-padding-y );
404
404
 
@@ -436,8 +436,9 @@
436
436
  .k-input-prefix > .k-svg-icon,
437
437
  .k-input-suffix > .k-icon,
438
438
  .k-input-suffix > .k-svg-icon {
439
- width: $_icon-size;
440
- height: $_icon-size;
439
+ padding-block: $_padding-y;
440
+ padding-inline: $_padding-y;
441
+ box-sizing: content-box;
441
442
  }
442
443
 
443
444
  &.k-icon-picker .k-input-inner {
@@ -76,7 +76,6 @@ $kendo-input-sizes: (
76
76
  padding-y: $kendo-input-sm-padding-y,
77
77
  font-size: $kendo-input-sm-font-size,
78
78
  line-height: $kendo-input-sm-line-height,
79
- icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-sm-padding-y * 2} ),
80
79
  button-padding-x: $kendo-input-sm-padding-y,
81
80
  button-padding-y: $kendo-input-sm-padding-y
82
81
  ),
@@ -85,7 +84,6 @@ $kendo-input-sizes: (
85
84
  padding-y: $kendo-input-md-padding-y,
86
85
  font-size: $kendo-input-md-font-size,
87
86
  line-height: $kendo-input-md-line-height,
88
- icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-md-padding-y * 2} ),
89
87
  button-padding-x: $kendo-input-md-padding-y,
90
88
  button-padding-y: $kendo-input-md-padding-y
91
89
  ),
@@ -94,7 +92,6 @@ $kendo-input-sizes: (
94
92
  padding-y: $kendo-input-lg-padding-y,
95
93
  font-size: $kendo-input-lg-font-size,
96
94
  line-height: $kendo-input-lg-line-height,
97
- icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-lg-padding-y * 2} ),
98
95
  button-padding-x: $kendo-input-lg-padding-y,
99
96
  button-padding-y: $kendo-input-lg-padding-y
100
97
  )
@@ -76,11 +76,8 @@
76
76
  &[dir="rtl"],
77
77
  [dir="rtl"] & {
78
78
 
79
- &.k-listbox-actions-left,
80
- &.k-listbox-actions-right {
81
- .k-listbox-actions {
82
- transform: scaleX(-1);
83
- }
79
+ .k-listbox-actions .k-button-icon {
80
+ transform: scaleX(-1);
84
81
  }
85
82
  }
86
83
  }
@@ -69,7 +69,7 @@
69
69
  flex: 0 0 auto;
70
70
  position: absolute;
71
71
  top: 50%;
72
- right: 0;
72
+ inset-inline-end: 0;
73
73
  transform: translateY(-50%);
74
74
  }
75
75
  }
@@ -28,18 +28,7 @@
28
28
  .k-rtl &,
29
29
  &[dir="rtl"],
30
30
  [dir="rtl"] & {
31
- .k-i-caret-alt-to-left,
32
- .k-i-caret-alt-to-right,
33
- .k-i-caret-alt-left,
34
- .k-i-caret-alt-right,
35
- .k-i-arrow-end-left,
36
- .k-i-arrow-60-left,
37
- .k-i-arrow-60-right,
38
- .k-i-arrow-end-right,
39
- .k-i-seek-w,
40
- .k-i-arrow-w,
41
- .k-i-arrow-e,
42
- .k-i-seek-e {
31
+ .k-pager-nav .k-button-icon {
43
32
  transform: scaleX(-1);
44
33
  }
45
34
  }
@@ -237,24 +237,11 @@
237
237
  // Scheduler navigation
238
238
  .k-scheduler-navigation {}
239
239
 
240
-
241
- // View switcher
242
- .k-scheduler-views-wrapper {
243
-
244
- // Views dropdown
245
- .k-views-dropdown {
246
- width: auto;
247
- font: inherit;
248
- display: none;
249
- }
250
-
251
- @media (max-width: 1024px) {
252
- .k-scheduler-views { display: none; }
253
- .k-views-dropdown { display: inline-block; }
254
- }
240
+ .k-scheduler-toolbar .k-views-dropdown {
241
+ width: auto;
242
+ font: inherit;
255
243
  }
256
244
 
257
-
258
245
  // Scheduler footer
259
246
  .k-scheduler-footer {
260
247
  @include box-shadow( none );
@@ -174,11 +174,11 @@
174
174
  }
175
175
 
176
176
  .k-scrollview-prev {
177
- left: 0;
177
+ inset-inline-start: 0;
178
178
  }
179
179
 
180
180
  .k-scrollview-next {
181
- right: 0;
181
+ inset-inline-end: 0;
182
182
  }
183
183
 
184
184
 
@@ -204,6 +204,17 @@
204
204
  }
205
205
  }
206
206
 
207
+ .k-rtl,
208
+ [dir="rtl"] {
209
+ .k-scrollview-prev,
210
+ .k-scrollview-next {
211
+ .k-icon,
212
+ .k-svg-icon {
213
+ transform: scaleX(-1);
214
+ }
215
+ }
216
+ }
217
+
207
218
  }
208
219
 
209
220
 
@@ -121,7 +121,8 @@
121
121
  align-items: center;
122
122
  flex: 1;
123
123
 
124
- > .k-i-formula-fx {
124
+ > .k-icon,
125
+ > .k-svg-icon {
125
126
  padding-block: 0;
126
127
  padding-inline: $kendo-padding-md-y;
127
128
  box-sizing: content-box;
@@ -632,7 +633,8 @@
632
633
  cursor: pointer;
633
634
 
634
635
  > .k-icon,
635
- > .k-svg-icon {
636
+ > .k-svg-icon,
637
+ > .k-expander-indicator {
636
638
  margin-right: $kendo-padding-md-y;
637
639
  }
638
640
  }