@progress/kendo-theme-classic 6.4.0-dev.1 → 6.4.0-dev.3

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 (45) hide show
  1. package/dist/all.css +49 -103
  2. package/dist/all.scss +401 -245
  3. package/dist/meta/sassdoc-data.json +18181 -11845
  4. package/dist/meta/sassdoc-raw-data.json +9208 -6283
  5. package/dist/meta/variables.json +14 -58
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +7 -6
  21. package/scss/action-sheet/_variables.scss +0 -2
  22. package/scss/avatar/_variables.scss +6 -6
  23. package/scss/badge/_variables.scss +38 -8
  24. package/scss/bottom-navigation/_variables.scss +0 -1
  25. package/scss/breadcrumb/_variables.scss +0 -2
  26. package/scss/button/_variables.scss +4 -4
  27. package/scss/drawer/_variables.scss +1 -2
  28. package/scss/dropdowntree/_variables.scss +5 -0
  29. package/scss/dropzone/_variables.scss +0 -1
  30. package/scss/fab/_variables.scss +40 -28
  31. package/scss/filemanager/_variables.scss +0 -2
  32. package/scss/floating-label/_variables.scss +31 -0
  33. package/scss/forms/_variables.scss +90 -4
  34. package/scss/grid/_variables.scss +3 -3
  35. package/scss/list/_variables.scss +8 -0
  36. package/scss/map/_variables.scss +0 -1
  37. package/scss/menu-button/_variables.scss +1 -1
  38. package/scss/pager/_variables.scss +57 -33
  39. package/scss/pdf-viewer/_variables.scss +0 -1
  40. package/scss/rating/_variables.scss +0 -2
  41. package/scss/scrollview/_variables.scss +0 -1
  42. package/scss/splitter/_variables.scss +1 -2
  43. package/scss/toolbar/_variables.scss +35 -17
  44. package/scss/treeview/_variables.scss +56 -32
  45. package/scss/upload/_variables.scss +0 -2
@@ -1,45 +1,69 @@
1
- // Treeview
1
+ // TreeView
2
2
 
3
- /// Font family of the treeview component.
3
+ /// The font family of the TreeView.
4
4
  /// @group treeview
5
5
  $kendo-treeview-font-family: $kendo-font-family !default;
6
- /// Font size of the treeview component.
6
+ /// The font size of the TreeView.
7
7
  /// @group treeview
8
8
  $kendo-treeview-font-size: $kendo-font-size-md !default;
9
+ /// The font size of the small TreeView.
10
+ /// @group treeview
9
11
  $kendo-treeview-sm-font-size: $kendo-font-size-md !default;
12
+ /// The font size of the medium TreeView.
13
+ /// @group treeview
10
14
  $kendo-treeview-md-font-size: $kendo-font-size-md !default;
15
+ /// The font size of the large TreeView.
16
+ /// @group treeview
11
17
  $kendo-treeview-lg-font-size: $kendo-font-size-lg !default;
12
- /// Line height of the treeview component.
18
+ /// The line height of the TreeView.
13
19
  /// @group treeview
14
20
  $kendo-treeview-line-height: $kendo-line-height-md !default;
21
+ /// The line height of the small TreeView.
22
+ /// @group treeview
15
23
  $kendo-treeview-sm-line-height: $kendo-line-height-md !default;
24
+ /// The line height of the medium TreeView.
25
+ /// @group treeview
16
26
  $kendo-treeview-md-line-height: $kendo-line-height-md !default;
27
+ /// The line height of the large TreeView.
28
+ /// @group treeview
17
29
  $kendo-treeview-lg-line-height: $kendo-line-height-lg !default;
18
- /// Indentation of child groups in treeview component.
30
+ /// The indentation of child groups in the TreeView.
19
31
  /// @group treeview
20
32
  $kendo-treeview-indent: 16px !default;
21
33
 
22
- /// Horizontal padding of treeview items.
34
+ /// The horizontal padding of the TreeView items.
23
35
  /// @group treeview
24
36
  $kendo-treeview-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
37
+ /// The horizontal padding of the small TreeView items.
38
+ /// @group treeview
25
39
  $kendo-treeview-sm-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
40
+ /// The horizontal padding of the medium TreeView items.
41
+ /// @group treeview
26
42
  $kendo-treeview-md-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
43
+ /// The horizontal padding of the large TreeView items.
44
+ /// @group treeview
27
45
  $kendo-treeview-lg-item-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
28
- /// Vertical padding of treeview items.
46
+ /// The vertical padding of the TreeView items.
29
47
  /// @group treeview
30
48
  $kendo-treeview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
49
+ /// The vertical padding of the small TreeView items.
50
+ /// @group treeview
31
51
  $kendo-treeview-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
52
+ /// The vertical padding of the medium TreeView items.
53
+ /// @group treeview
32
54
  $kendo-treeview-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
55
+ /// The vertical padding of the large TreeView items.
56
+ /// @group treeview
33
57
  $kendo-treeview-lg-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
34
- /// Border width of treeview items.
58
+ /// The border width of the TreeView items
35
59
  /// @group treeview
36
60
  $kendo-treeview-item-border-width: 0px !default;
37
- /// Border radius of treeview items.
61
+ /// The border radius of the TreeView items.
38
62
  /// @group treeview
39
63
  $kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
40
64
 
41
65
 
42
- /// The sizes of the treeview.
66
+ /// The sizes map of the TreeView.
43
67
  /// @group treeview
44
68
  $kendo-treeview-sizes: (
45
69
  sm: (
@@ -63,75 +87,75 @@ $kendo-treeview-sizes: (
63
87
  ) !default;
64
88
 
65
89
 
66
- /// Background color of the treeview component.
90
+ /// The background color of the TreeView.
67
91
  /// @group treeview
68
92
  $kendo-treeview-bg: null !default;
69
- /// Text color of the treeview component.
93
+ /// The text color of the TreeView.
70
94
  /// @group treeview
71
95
  $kendo-treeview-text: $kendo-component-text !default;
72
- /// Border color of the treeview component.
96
+ /// The border color of the TreeView.
73
97
  /// @group treeview
74
98
  $kendo-treeview-border: null !default;
75
99
 
76
- /// Background color of hovered treeview items.
100
+ /// The background color of hovered TreeView items.
77
101
  /// @group treeview
78
102
  $kendo-treeview-item-hover-bg: $kendo-hover-bg !default;
79
- /// Text color of hovered treeview items.
103
+ /// The text color of hovered TreeView items.
80
104
  /// @group treeview
81
105
  $kendo-treeview-item-hover-text: $kendo-hover-text !default;
82
- /// Border color of hovered treeview items.
106
+ /// The border color of hovered TreeView items.
83
107
  /// @group treeview
84
108
  $kendo-treeview-item-hover-border: $kendo-hover-border !default;
85
- /// Background gradient of hovered treeview items.
109
+ /// The background gradient of hovered TreeView items.
86
110
  /// @group treeview
87
111
  $kendo-treeview-item-hover-gradient: $kendo-hover-gradient !default;
88
112
 
89
- /// Background color of selected treeview items.
113
+ /// The background color of selected TreeView items.
90
114
  /// @group treeview
91
115
  $kendo-treeview-item-selected-bg: $kendo-selected-bg !default;
92
- /// Text color of selected treeview items.
116
+ /// The text color of selected TreeView items.
93
117
  /// @group treeview
94
118
  $kendo-treeview-item-selected-text: $kendo-selected-text !default;
95
- /// Border color of selected treeview items.
119
+ /// The border color of selected TreeView items.
96
120
  /// @group treeview
97
121
  $kendo-treeview-item-selected-border: $kendo-selected-border !default;
98
- /// Background gradient of selected treeview items.
122
+ /// The background gradient of selected TreeView items.
99
123
  /// @group treeview
100
124
  $kendo-treeview-item-selected-gradient: $kendo-selected-gradient !default;
101
125
 
102
- /// Box shadow of focused treeview items.
126
+ /// The box shadow of focused TreeView items.
103
127
  /// @group treeview
104
128
  $kendo-treeview-item-focus-shadow: $kendo-focus-shadow !default;
105
129
 
106
- /// Background color of load more.
130
+ /// The border color of the Load More button in the TreeView.
107
131
  /// @group treeview
108
132
  $kendo-treeview-loadmore-bg: transparent !default;
109
- /// Text color of load more.
133
+ /// The text color of the Load More button in the TreeView.
110
134
  /// @group treeview
111
135
  $kendo-treeview-loadmore-text: $kendo-link-text !default;
112
- /// Border color of load more.
136
+ /// The border color of the Load More button in the TreeView.
113
137
  /// @group treeview
114
138
  $kendo-treeview-loadmore-border: null !default;
115
139
 
116
- /// Background color of a hovered load more.
140
+ /// The background color of the hovered Load More button in the TreeView.
117
141
  /// @group treeview
118
142
  $kendo-treeview-loadmore-hover-bg: transparent !default;
119
- /// Text color of a hovered load more.
143
+ /// The text color of the hovered Load More button in the TreeView.
120
144
  /// @group treeview
121
145
  $kendo-treeview-loadmore-hover-text: $kendo-link-hover-text !default;
122
- /// Border color of a hovered load more.
146
+ /// The border color of the hovered Load More button in the TreeView.
123
147
  /// @group treeview
124
148
  $kendo-treeview-loadmore-hover-border: null !default;
125
149
 
126
- /// Background color of a focused load more.
150
+ /// The background color of the focused Load More button in the TreeView.
127
151
  /// @group treeview
128
152
  $kendo-treeview-loadmore-focus-bg: transparent !default;
129
- /// Text color of a focused load more.
153
+ /// The text color of the focused Load More button in the TreeView.
130
154
  /// @group treeview
131
155
  $kendo-treeview-loadmore-focus-text: $kendo-link-hover-text !default;
132
- /// Border color of a focused load more.
156
+ /// The border color of the focused Load More button in the TreeView.
133
157
  /// @group treeview
134
158
  $kendo-treeview-loadmore-focus-border: null !default;
135
- /// Box shadow of a focused load more.
159
+ /// The box shadow of the focused Load More button in the TreeView.
136
160
  /// @group treeview
137
161
  $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !default;
@@ -33,8 +33,6 @@ $kendo-upload-item-image-width: 30px !default;
33
33
  $kendo-upload-item-image-height: 30px !default;
34
34
  $kendo-upload-item-image-border: 0px !default; // TODO: remove
35
35
 
36
- $kendo-upload-group-icon-size: $kendo-icon-size-xxl !default;
37
-
38
36
  $kendo-upload-progress-thickness: 2px !default;
39
37
  $kendo-upload-progress-bg: $kendo-color-info !default;
40
38