@progress/kendo-theme-default 6.4.1-dev.1 → 6.5.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.
- package/dist/all.css +103 -36
- package/dist/all.scss +1092 -192
- package/dist/meta/sassdoc-data.json +42290 -20378
- package/dist/meta/sassdoc-raw-data.json +18688 -8588
- package/dist/meta/variables.json +273 -213
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/appbar/_variables.scss +39 -7
- package/scss/bottom-navigation/_variables.scss +42 -8
- package/scss/breadcrumb/_layout.scss +28 -13
- package/scss/breadcrumb/_variables.scss +177 -6
- package/scss/chip/_layout.scss +4 -0
- package/scss/coloreditor/_variables.scss +53 -4
- package/scss/colorgradient/_variables.scss +86 -4
- package/scss/colorpalette/_variables.scss +18 -1
- package/scss/dialog/_variables.scss +16 -2
- package/scss/dropdowntree/_layout.scss +4 -5
- package/scss/editor/_variables.scss +33 -0
- package/scss/expansion-panel/_variables.scss +55 -11
- package/scss/filter/_variables.scss +18 -1
- package/scss/icons/_layout.scss +4 -0
- package/scss/list/_layout.scss +1 -0
- package/scss/list/_variables.scss +2 -2
- package/scss/listbox/_variables.scss +21 -20
- package/scss/listview/_variables.scss +42 -7
- package/scss/loader/_variables.scss +88 -12
- package/scss/notification/_variables.scss +20 -19
- package/scss/popover/_variables.scss +60 -6
- package/scss/progressbar/_variables.scss +24 -23
- package/scss/scheduler/_layout.scss +1 -0
- package/scss/scrollview/_variables.scss +59 -6
- package/scss/splitter/_layout.scss +1 -0
- package/scss/splitter/_variables.scss +2 -0
- package/scss/spreadsheet/_variables.scss +1 -0
- package/scss/tilelayout/_variables.scss +22 -3
- package/scss/treelist/_layout.scss +6 -0
- package/scss/treeview/_layout.scss +13 -9
- package/scss/treeview/_variables.scss +30 -4
- package/scss/upload/_variables.scss +62 -9
- package/scss/window/_variables.scss +61 -6
|
@@ -73,13 +73,18 @@
|
|
|
73
73
|
|
|
74
74
|
// Treeview toggle
|
|
75
75
|
.k-treeview-toggle {
|
|
76
|
-
margin-
|
|
76
|
+
margin-inline-start: -$kendo-treeview-indent;
|
|
77
77
|
flex: none;
|
|
78
78
|
display: inline-flex;
|
|
79
79
|
flex-flow: row nowrap;
|
|
80
80
|
align-items: center;
|
|
81
81
|
cursor: pointer;
|
|
82
82
|
}
|
|
83
|
+
.k-treeview-toggle .k-icon,
|
|
84
|
+
.k-treeview-toggle .k-svg-icon {
|
|
85
|
+
padding: $kendo-icon-padding;
|
|
86
|
+
box-sizing: content-box;
|
|
87
|
+
}
|
|
83
88
|
|
|
84
89
|
|
|
85
90
|
// Loading icon
|
|
@@ -91,8 +96,6 @@
|
|
|
91
96
|
// Checkbox
|
|
92
97
|
.k-treeview .k-checkbox-wrap,
|
|
93
98
|
.k-treeview .k-checkbox-wrapper {
|
|
94
|
-
margin-left: $kendo-icon-spacing;
|
|
95
|
-
margin-right: $kendo-icon-spacing;
|
|
96
99
|
align-self: center;
|
|
97
100
|
}
|
|
98
101
|
|
|
@@ -148,12 +151,6 @@
|
|
|
148
151
|
padding-right: $kendo-treeview-indent;
|
|
149
152
|
}
|
|
150
153
|
|
|
151
|
-
// Treeview toggle
|
|
152
|
-
.k-treeview-toggle {
|
|
153
|
-
margin-left: 0;
|
|
154
|
-
margin-right: -$kendo-treeview-indent;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
154
|
// Loading
|
|
158
155
|
.k-treeview-loading {
|
|
159
156
|
margin-right: 0;
|
|
@@ -178,6 +175,8 @@
|
|
|
178
175
|
$_line-height: k-map-get( $size-props, line-height);
|
|
179
176
|
$_item-padding-x: k-map-get( $size-props, item-padding-x);
|
|
180
177
|
$_item-padding-y: k-map-get( $size-props, item-padding-y);
|
|
178
|
+
$_checkbox-padding-x: k-map-get( $size-props, checkbox-padding-x );
|
|
179
|
+
$_checkbox-padding-y: k-map-get( $size-props, checkbox-padding-y );
|
|
181
180
|
|
|
182
181
|
.k-treeview-#{$size} {
|
|
183
182
|
font-size: $_font-size;
|
|
@@ -187,6 +186,11 @@
|
|
|
187
186
|
padding-block: $_item-padding-y;
|
|
188
187
|
padding-inline: $_item-padding-x;
|
|
189
188
|
}
|
|
189
|
+
|
|
190
|
+
.k-checkbox-wrap {
|
|
191
|
+
padding-block: $_checkbox-padding-y;
|
|
192
|
+
padding-inline: $_checkbox-padding-x;
|
|
193
|
+
}
|
|
190
194
|
}
|
|
191
195
|
}
|
|
192
196
|
|
|
@@ -29,7 +29,7 @@ $kendo-treeview-md-line-height: $kendo-line-height-md !default;
|
|
|
29
29
|
$kendo-treeview-lg-line-height: $kendo-line-height-lg !default;
|
|
30
30
|
/// The indentation of child groups in the TreeView.
|
|
31
31
|
/// @group treeview
|
|
32
|
-
$kendo-treeview-indent:
|
|
32
|
+
$kendo-treeview-indent: 24px !default;
|
|
33
33
|
|
|
34
34
|
/// The horizontal padding of the TreeView items.
|
|
35
35
|
/// @group treeview
|
|
@@ -62,6 +62,25 @@ $kendo-treeview-item-border-width: 0px !default;
|
|
|
62
62
|
/// @group treeview
|
|
63
63
|
$kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
|
|
64
64
|
|
|
65
|
+
/// The horizontal padding of the checkbox in the small TreeView.
|
|
66
|
+
/// @group treeview
|
|
67
|
+
$kendo-treeview-sm-checkbox-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
68
|
+
/// The horizontal padding of the checkbox in the medium TreeView.
|
|
69
|
+
/// @group treeview
|
|
70
|
+
$kendo-treeview-md-checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x !default;
|
|
71
|
+
/// The horizontal padding of the checkbox in the large TreeView.
|
|
72
|
+
/// @group treeview
|
|
73
|
+
$kendo-treeview-lg-checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x !default;
|
|
74
|
+
/// The vertical padding of the checkbox in the small TreeView.
|
|
75
|
+
/// @group treeview
|
|
76
|
+
$kendo-treeview-sm-checkbox-padding-y: k-map-get( $kendo-spacing, .5 ) !default;
|
|
77
|
+
/// The vertical padding of the checkbox in the medium TreeView.
|
|
78
|
+
/// @group treeview
|
|
79
|
+
$kendo-treeview-md-checkbox-padding-y: $kendo-treeview-sm-checkbox-padding-y !default;
|
|
80
|
+
/// The vertical padding of the checkbox in the large TreeView.
|
|
81
|
+
/// @group treeview
|
|
82
|
+
$kendo-treeview-lg-checkbox-padding-y: null !default;
|
|
83
|
+
|
|
65
84
|
|
|
66
85
|
/// The sizes map of the TreeView.
|
|
67
86
|
/// @group treeview
|
|
@@ -70,19 +89,25 @@ $kendo-treeview-sizes: (
|
|
|
70
89
|
font-size: $kendo-treeview-sm-font-size,
|
|
71
90
|
line-height: $kendo-treeview-sm-line-height,
|
|
72
91
|
item-padding-x: $kendo-treeview-sm-item-padding-x,
|
|
73
|
-
item-padding-y: $kendo-treeview-sm-item-padding-y
|
|
92
|
+
item-padding-y: $kendo-treeview-sm-item-padding-y,
|
|
93
|
+
checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x,
|
|
94
|
+
checkbox-padding-y: $kendo-treeview-sm-checkbox-padding-y
|
|
74
95
|
),
|
|
75
96
|
md: (
|
|
76
97
|
font-size: $kendo-treeview-md-font-size,
|
|
77
98
|
line-height: $kendo-treeview-md-line-height,
|
|
78
99
|
item-padding-x: $kendo-treeview-md-item-padding-x,
|
|
79
|
-
item-padding-y: $kendo-treeview-md-item-padding-y
|
|
100
|
+
item-padding-y: $kendo-treeview-md-item-padding-y,
|
|
101
|
+
checkbox-padding-x: $kendo-treeview-md-checkbox-padding-x,
|
|
102
|
+
checkbox-padding-y: $kendo-treeview-md-checkbox-padding-y
|
|
80
103
|
),
|
|
81
104
|
lg: (
|
|
82
105
|
font-size: $kendo-treeview-lg-font-size,
|
|
83
106
|
line-height: $kendo-treeview-lg-line-height,
|
|
84
107
|
item-padding-x: $kendo-treeview-lg-item-padding-x,
|
|
85
|
-
item-padding-y: $kendo-treeview-lg-item-padding-y
|
|
108
|
+
item-padding-y: $kendo-treeview-lg-item-padding-y,
|
|
109
|
+
checkbox-padding-x: $kendo-treeview-lg-checkbox-padding-x,
|
|
110
|
+
checkbox-padding-y: $kendo-treeview-lg-checkbox-padding-y
|
|
86
111
|
)
|
|
87
112
|
) !default;
|
|
88
113
|
|
|
@@ -159,3 +184,4 @@ $kendo-treeview-loadmore-focus-border: null !default;
|
|
|
159
184
|
/// The box shadow of the focused Load More button in the TreeView.
|
|
160
185
|
/// @group treeview
|
|
161
186
|
$kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !default;
|
|
187
|
+
|
|
@@ -1,46 +1,99 @@
|
|
|
1
1
|
// Upload
|
|
2
2
|
|
|
3
|
+
/// The width of the border around the Upload.
|
|
4
|
+
/// @group upload
|
|
3
5
|
$kendo-upload-border-width: 1px !default;
|
|
6
|
+
/// The font family of the Upload.
|
|
7
|
+
/// @group upload
|
|
4
8
|
$kendo-upload-font-family: $kendo-font-family !default;
|
|
9
|
+
/// The font size of the Upload.
|
|
10
|
+
/// @group upload
|
|
5
11
|
$kendo-upload-font-size: $kendo-font-size-md !default;
|
|
12
|
+
/// The line height of the Upload.
|
|
13
|
+
/// @group upload
|
|
6
14
|
$kendo-upload-line-height: $kendo-line-height-md !default;
|
|
15
|
+
/// The maximum height of the list with uploaded items.
|
|
16
|
+
/// @group upload
|
|
7
17
|
$kendo-upload-max-height: 300px !default;
|
|
8
18
|
|
|
9
|
-
|
|
19
|
+
/// The text color of the Upload.
|
|
20
|
+
/// @group upload
|
|
10
21
|
$kendo-upload-text: $kendo-component-text !default;
|
|
22
|
+
/// The background color of the Upload.
|
|
23
|
+
/// @group upload
|
|
24
|
+
$kendo-upload-bg: $kendo-component-bg !default;
|
|
25
|
+
/// The border color of the Upload.
|
|
26
|
+
/// @group upload
|
|
11
27
|
$kendo-upload-border: $kendo-component-border !default;
|
|
12
28
|
|
|
29
|
+
/// The horizontal padding of the Upload dropzone.
|
|
30
|
+
/// @group upload
|
|
13
31
|
$kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
32
|
+
/// The vertical padding of the Upload dropzone.
|
|
33
|
+
/// @group upload
|
|
14
34
|
$kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
15
|
-
|
|
35
|
+
/// The text color of the Upload dropzone.
|
|
36
|
+
/// @group upload
|
|
16
37
|
$kendo-upload-dropzone-text: $kendo-component-header-text !default;
|
|
38
|
+
/// The background color of the Upload dropzone.
|
|
39
|
+
/// @group upload
|
|
40
|
+
$kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
|
|
41
|
+
/// The border color of the Upload dropzone.
|
|
42
|
+
/// @group upload
|
|
17
43
|
$kendo-upload-dropzone-border: $kendo-upload-border !default;
|
|
44
|
+
/// The background color of the hovered Upload dropzone.
|
|
45
|
+
/// @group upload
|
|
18
46
|
$kendo-upload-dropzone-hover-bg: $kendo-hover-bg !default;
|
|
19
47
|
|
|
48
|
+
/// The text color of the Upload status message.
|
|
49
|
+
/// @group upload
|
|
20
50
|
$kendo-upload-status-text: $kendo-subtle-text !default;
|
|
51
|
+
/// The opacity of the Upload status message.
|
|
52
|
+
/// @group upload
|
|
21
53
|
$kendo-upload-status-text-opacity: null !default;
|
|
22
54
|
|
|
55
|
+
/// The horizontal padding of an uploaded item.
|
|
56
|
+
/// @group upload
|
|
23
57
|
$kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
58
|
+
/// The vertical padding of an uploaded item.
|
|
59
|
+
/// @group upload
|
|
24
60
|
$kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
25
61
|
|
|
62
|
+
/// The vertical spacing between uploaded batch items.
|
|
63
|
+
/// @group upload
|
|
26
64
|
$kendo-upload-multiple-items-spacing: 12px !default;
|
|
27
65
|
|
|
66
|
+
/// The font size of the Upload validation message.
|
|
67
|
+
/// @group upload
|
|
28
68
|
$kendo-upload-validation-font-size: 11px !default;
|
|
69
|
+
/// The horizontal spacing of the Upload status icon.
|
|
70
|
+
/// @group upload
|
|
29
71
|
$kendo-upload-icon-spacing: $kendo-icon-spacing !default;
|
|
72
|
+
/// The color of the uploaded items icon.
|
|
73
|
+
/// @group upload
|
|
30
74
|
$kendo-upload-icon-color: $kendo-subtle-text !default;
|
|
31
75
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
$kendo-upload-item-image-border: 0px !default; // TODO: remove
|
|
35
|
-
|
|
76
|
+
/// The thickness of the Upload progress bar.
|
|
77
|
+
/// @group upload
|
|
36
78
|
$kendo-upload-progress-thickness: 2px !default;
|
|
79
|
+
/// The background color of the Upload progress bar.
|
|
80
|
+
/// @group upload
|
|
37
81
|
$kendo-upload-progress-bg: $kendo-color-info !default;
|
|
38
82
|
|
|
39
|
-
|
|
83
|
+
/// The success text color of the Upload.
|
|
84
|
+
/// @group upload
|
|
40
85
|
$kendo-upload-success-text: $kendo-color-success !default;
|
|
86
|
+
/// The success background color of the Upload progress bar.
|
|
87
|
+
/// @group upload
|
|
88
|
+
$kendo-upload-success-bg: $kendo-color-success !default;
|
|
41
89
|
|
|
42
|
-
|
|
90
|
+
/// The error text color of the Upload.
|
|
91
|
+
/// @group upload
|
|
43
92
|
$kendo-upload-error-text: $kendo-color-error !default;
|
|
44
|
-
|
|
93
|
+
/// The error background color of the Upload progress bar.
|
|
94
|
+
/// @group upload
|
|
95
|
+
$kendo-upload-error-bg: $kendo-color-error !default;
|
|
45
96
|
|
|
97
|
+
/// The shadow of the focused Upload button, actions and uploaded items.
|
|
98
|
+
/// @group upload
|
|
46
99
|
$kendo-upload-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
@@ -1,53 +1,108 @@
|
|
|
1
1
|
@import "../action-buttons/_variables.scss";
|
|
2
2
|
|
|
3
|
-
|
|
4
3
|
// Window
|
|
5
4
|
|
|
5
|
+
/// The width of the border around the Window.
|
|
6
|
+
/// @group window
|
|
6
7
|
$kendo-window-border-width: 0px !default;
|
|
8
|
+
/// The border radius of the Window.
|
|
9
|
+
/// @group window
|
|
7
10
|
$kendo-window-border-radius: 0px !default;
|
|
11
|
+
/// The font family of the Window.
|
|
12
|
+
/// @group window
|
|
8
13
|
$kendo-window-font-family: $kendo-font-family !default;
|
|
14
|
+
/// The font size of the Window.
|
|
15
|
+
/// @group window
|
|
9
16
|
$kendo-window-font-size: $kendo-font-size-md !default;
|
|
17
|
+
/// The line height of the Window.
|
|
18
|
+
/// @group window
|
|
10
19
|
$kendo-window-line-height: 1.25 !default;
|
|
11
20
|
|
|
21
|
+
/// The horizontal padding of the Window titlebar.
|
|
22
|
+
/// @group window
|
|
12
23
|
$kendo-window-titlebar-padding-x: 16px !default;
|
|
24
|
+
/// The vertical padding of the Window titlebar.
|
|
25
|
+
/// @group window
|
|
13
26
|
$kendo-window-titlebar-padding-y: 12px !default;
|
|
27
|
+
/// The width of the border of the Window titlebar.
|
|
28
|
+
/// @group window
|
|
14
29
|
$kendo-window-titlebar-border-width: 0 0 1px !default;
|
|
30
|
+
/// The style of the border of the Window titlebar.
|
|
31
|
+
/// @group window
|
|
15
32
|
$kendo-window-titlebar-border-style: solid !default;
|
|
16
33
|
|
|
34
|
+
/// The font size of the title of the Window.
|
|
35
|
+
/// @group window
|
|
17
36
|
$kendo-window-title-font-size: $kendo-font-size-lg !default;
|
|
37
|
+
/// The line height of the title of the Window.
|
|
38
|
+
/// @group window
|
|
18
39
|
$kendo-window-title-line-height: 1.25 !default;
|
|
19
40
|
|
|
41
|
+
/// The spacing between the buttons in the Window titlebar.
|
|
42
|
+
/// @group window
|
|
20
43
|
$kendo-window-actions-gap: null !default;
|
|
21
|
-
|
|
44
|
+
/// The opacity of the buttons in the Window titlebar.
|
|
45
|
+
/// @group window
|
|
22
46
|
$kendo-window-action-opacity: null !default;
|
|
47
|
+
/// The opacity of the hovered buttons in the Window titlebar.
|
|
48
|
+
/// @group window
|
|
23
49
|
$kendo-window-action-hover-opacity: null !default;
|
|
24
50
|
|
|
51
|
+
/// The horizontal padding of the content of the Window.
|
|
52
|
+
/// @group window
|
|
25
53
|
$kendo-window-inner-padding-x: 16px !default;
|
|
54
|
+
/// The vertical padding of the content of the Window.
|
|
55
|
+
/// @group window
|
|
26
56
|
$kendo-window-inner-padding-y: 16px !default;
|
|
27
57
|
|
|
58
|
+
/// The horizontal padding of the Window action buttons.
|
|
59
|
+
/// @group window
|
|
28
60
|
$kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
61
|
+
/// The vertical padding of the Window action buttons.
|
|
62
|
+
/// @group window
|
|
29
63
|
$kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
64
|
+
/// The width of the top border of the Window action buttons.
|
|
65
|
+
/// @group window
|
|
30
66
|
$kendo-window-buttongroup-border-width: 1px !default;
|
|
31
67
|
|
|
68
|
+
/// The background color of the Window.
|
|
69
|
+
/// @group window
|
|
32
70
|
$kendo-window-bg: $kendo-component-bg !default;
|
|
71
|
+
/// The text color of the Window.
|
|
72
|
+
/// @group window
|
|
33
73
|
$kendo-window-text: $kendo-component-text !default;
|
|
74
|
+
/// The border color of the Window.
|
|
75
|
+
/// @group window
|
|
34
76
|
$kendo-window-border: $kendo-component-border !default;
|
|
77
|
+
/// The box shadow of the Window.
|
|
78
|
+
/// @group window
|
|
79
|
+
$kendo-window-shadow: 0 3px 3px 0 rgba(0, 0, 0, .06) !default;
|
|
80
|
+
/// The box shadow of the focused Window.
|
|
81
|
+
/// @group window
|
|
82
|
+
$kendo-window-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
|
|
35
83
|
|
|
84
|
+
/// The background color of the Window titlebar.
|
|
85
|
+
/// @group window
|
|
36
86
|
$kendo-window-titlebar-bg: $kendo-component-header-bg !default;
|
|
87
|
+
/// The text color of the Window titlebar.
|
|
88
|
+
/// @group window
|
|
37
89
|
$kendo-window-titlebar-text: $kendo-component-header-text !default;
|
|
90
|
+
/// The border color of the Window titlebar.
|
|
91
|
+
/// @group window
|
|
38
92
|
$kendo-window-titlebar-border: inherit !default;
|
|
93
|
+
/// The background gradient of the Window titlebar.
|
|
94
|
+
/// @group window
|
|
39
95
|
$kendo-window-titlebar-gradient: null !default;
|
|
40
96
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
97
|
+
/// The map of the width for the different Window sizes.
|
|
98
|
+
/// @group window
|
|
44
99
|
$kendo-window-sizes: (
|
|
45
100
|
sm: 300px,
|
|
46
101
|
md: 800px,
|
|
47
102
|
lg: 1200px
|
|
48
103
|
) !default;
|
|
49
104
|
|
|
50
|
-
///
|
|
105
|
+
/// The theme colors map for the Window.
|
|
51
106
|
/// @group window
|
|
52
107
|
$kendo-window-theme-colors: (
|
|
53
108
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|