@progress/kendo-theme-classic 9.1.0-dev.3 → 9.1.0-dev.5

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 (50) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/all.scss +478 -92
  3. package/dist/classic-green-dark.css +1 -1
  4. package/dist/classic-green.css +1 -1
  5. package/dist/classic-lavender-dark.css +1 -1
  6. package/dist/classic-lavender.css +1 -1
  7. package/dist/classic-main-dark.css +1 -1
  8. package/dist/classic-main.css +1 -1
  9. package/dist/classic-metro-dark.css +1 -1
  10. package/dist/classic-metro.css +1 -1
  11. package/dist/classic-moonlight.css +1 -1
  12. package/dist/classic-opal-dark.css +1 -1
  13. package/dist/classic-opal.css +1 -1
  14. package/dist/classic-silver-dark.css +1 -1
  15. package/dist/classic-silver.css +1 -1
  16. package/dist/classic-uniform.css +1 -1
  17. package/dist/meta/sassdoc-data.json +1632 -654
  18. package/dist/meta/sassdoc-raw-data.json +751 -301
  19. package/dist/meta/variables.json +121 -29
  20. package/lib/swatches/classic-green-dark.json +1 -1
  21. package/lib/swatches/classic-green.json +1 -1
  22. package/lib/swatches/classic-lavender-dark.json +1 -1
  23. package/lib/swatches/classic-lavender.json +1 -1
  24. package/lib/swatches/classic-main-dark.json +1 -1
  25. package/lib/swatches/classic-main.json +1 -1
  26. package/lib/swatches/classic-metro-dark.json +1 -1
  27. package/lib/swatches/classic-metro.json +1 -1
  28. package/lib/swatches/classic-moonlight.json +1 -1
  29. package/lib/swatches/classic-opal-dark.json +1 -1
  30. package/lib/swatches/classic-opal.json +1 -1
  31. package/lib/swatches/classic-silver-dark.json +1 -1
  32. package/lib/swatches/classic-silver.json +1 -1
  33. package/lib/swatches/classic-uniform.json +1 -1
  34. package/package.json +5 -5
  35. package/scss/dataviz/_index.scss +3 -1
  36. package/scss/dataviz/_variables.scss +9 -0
  37. package/scss/index.scss +2 -0
  38. package/scss/list/_index.scss +3 -1
  39. package/scss/list/_variables.scss +0 -4
  40. package/scss/no-data/_index.scss +32 -0
  41. package/scss/no-data/_layout.scss +5 -0
  42. package/scss/no-data/_theme.scss +5 -0
  43. package/scss/no-data/_variables.scss +7 -0
  44. package/scss/orgchart/_variables.scss +1 -1
  45. package/scss/pdf-viewer/_variables.scss +23 -0
  46. package/scss/scheduler/_index.scss +3 -1
  47. package/scss/splitter/_variables.scss +1 -1
  48. package/scss/stepper/_variables.scss +3 -0
  49. package/scss/timeline/_variables.scss +5 -5
  50. package/scss/toolbar/_variables.scss +32 -4
@@ -23,7 +23,8 @@ $_kendo-module-meta: (
23
23
  "toolbar",
24
24
  "tooltip",
25
25
  "time-marker",
26
- "window"
26
+ "window",
27
+ "no-data"
27
28
  )
28
29
  );
29
30
 
@@ -36,6 +37,7 @@ $_kendo-module-meta: (
36
37
  @import "../dropdownlist/_index.scss";
37
38
  @import "../dialog/_index.scss";
38
39
  @import "../tooltip/_index.scss";
40
+ @import "../no-data/_index.scss";
39
41
 
40
42
 
41
43
  // Component
@@ -34,7 +34,7 @@ $kendo-splitter-drag-handle-length: 20px !default;
34
34
  $kendo-splitter-drag-handle-thickness: 2px !default;
35
35
  /// The margin of the Splitter drag handle icon.
36
36
  /// @group splitter
37
- $kendo-splitter-drag-icon-margin: calc( #{k-spacing(3.5)} / 2 ) !default;
37
+ $kendo-splitter-drag-icon-margin: k-spacing(2) !default;
38
38
  /// The horizontal padding of the collapse icon in the Splitter.
39
39
  /// @group splitter
40
40
  $kendo-splitter-collapse-icon-padding-x: null !default;
@@ -21,6 +21,9 @@ $kendo-stepper-label-padding-x: k-spacing(3) !default;
21
21
  /// The vertical padding the Stepper label.
22
22
  /// @group stepper
23
23
  $kendo-stepper-label-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
24
+ /// The border radius of the Stepper label.
25
+ /// @group stepper
26
+ $kendo-stepper-label-border-radius: k-border-radius(xxxl) !default;
24
27
  /// The width of the border around the Stepper.
25
28
  /// @group stepper
26
29
  $kendo-stepper-border-width: 0px !default;
@@ -29,10 +29,10 @@ $kendo-timeline-mobile-spacing-y: k-spacing(4) !default;
29
29
 
30
30
  /// The width of the Timeline track arrow.
31
31
  /// @group timeline
32
- $kendo-timeline-track-arrow-width: 30px !default;
32
+ $kendo-timeline-track-arrow-width: k-spacing(7.5) !default;
33
33
  /// The height of the Timeline track arrow.
34
34
  /// @group timeline
35
- $kendo-timeline-track-arrow-height: 30px !default;
35
+ $kendo-timeline-track-arrow-height: k-spacing(7.5) !default;
36
36
 
37
37
  /// The background color of the disabled Timeline track arrow.
38
38
  /// @group timeline
@@ -46,10 +46,10 @@ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, colo
46
46
 
47
47
  /// The size of the Timeline track.
48
48
  /// @group timeline
49
- $kendo-timeline-track-size: 6px !default;
49
+ $kendo-timeline-track-size: k-spacing(1.5) !default;
50
50
  /// The bottom padding of the Timeline's track wrapper.
51
51
  /// @group timeline
52
- $kendo-timeline-track-wrap-padding-bottom: k-math-div( $kendo-timeline-track-size, 2 ) !default;
52
+ $kendo-timeline-track-wrap-padding-bottom: calc( #{$kendo-timeline-track-size} / 2) !default;
53
53
  /// The border width of the Timeline track.
54
54
  /// @group timeline
55
55
  $kendo-timeline-track-border-width: 1px !default;
@@ -58,7 +58,7 @@ $kendo-timeline-track-border-width: 1px !default;
58
58
  $kendo-timeline-track-margin-bottom: k-spacing(4) !default;
59
59
  /// The bottom offset of the Timeline track.
60
60
  /// @group timeline
61
- $kendo-timeline-track-bottom-calc: calc(#{k-math-div( $kendo-timeline-track-arrow-height, 2 )} + #{$kendo-timeline-track-wrap-padding-bottom}) !default;
61
+ $kendo-timeline-track-bottom-calc: calc( calc( #{$kendo-timeline-track-arrow-height} / 2) + #{$kendo-timeline-track-wrap-padding-bottom}) !default;
62
62
  /// The left offset of the Timeline track.
63
63
  /// @group timeline
64
64
  $kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
@@ -72,6 +72,38 @@ $kendo-toolbar-gradient: null !default;
72
72
  /// @group toolbar
73
73
  $kendo-toolbar-shadow: null !default;
74
74
 
75
+ /// The text color of the outline Toolbar.
76
+ /// @group toolbar
77
+ $kendo-toolbar-outline-text: $kendo-button-text !default;
78
+ /// The color of the border around the outline Toolbar.
79
+ /// @group toolbar
80
+ $kendo-toolbar-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 50%, transparent), rgba( $kendo-toolbar-outline-text, .5)) !default;
81
+ /// The gradient of the outline Toolbar.
82
+ /// @group toolbar
83
+ $kendo-toolbar-outline-gradient: null !default;
84
+ /// The box shadow of the outline Toolbar.
85
+ /// @group toolbar
86
+ $kendo-toolbar-outline-shadow: null !default;
87
+ /// The width of the border around the outline Toolbar.
88
+ /// @group toolbar
89
+ $kendo-toolbar-outline-border-width: $kendo-toolbar-border-width !default;
90
+
91
+ /// The text color of the flat Toolbar.
92
+ /// @group toolbar
93
+ $kendo-toolbar-flat-text: null !default;
94
+ /// The color of the border around the flat Toolbar.
95
+ /// @group toolbar
96
+ $kendo-toolbar-flat-border: $kendo-toolbar-border !default;
97
+ /// The gradient of the flat Toolbar.
98
+ /// @group toolbar
99
+ $kendo-toolbar-flat-gradient: null !default;
100
+ /// The box shadow of the flat Toolbar.
101
+ /// @group toolbar
102
+ $kendo-toolbar-flat-shadow: null !default;
103
+ /// Border width of the flat Toolbar.
104
+ /// @group toolbar
105
+ $kendo-toolbar-flat-border-width: 1px !default;
106
+
75
107
  /// The color of the separator border of the Toolbar.
76
108
  /// @group toolbar
77
109
  $kendo-toolbar-separator-border: inherit !default;
@@ -84,10 +116,6 @@ $kendo-toolbar-input-width: 10em !default;
84
116
  /// @group toolbar
85
117
  $kendo-toolbar-item-shadow: $kendo-button-focus-shadow !default;
86
118
 
87
- /// Border width of the flat Toolbar.
88
- /// @group toolbar
89
- $kendo-toolbar-flat-border-width: 1px !default;
90
-
91
119
  /// The sizes map for the Toolbar.
92
120
  /// @group toolbar
93
121
  $kendo-toolbar-sizes: (