@progress/kendo-theme-fluent 10.3.2-dev.0 → 10.4.0-dev.9
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 +1 -1
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +520 -358
- package/dist/meta/sassdoc-raw-data.json +249 -174
- package/dist/meta/variables.json +21 -9
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main-dark.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/action-buttons/_layout.scss +4 -0
- package/scss/action-sheet/_index.scss +0 -1
- package/scss/action-sheet/_layout.scss +5 -8
- package/scss/action-sheet/_theme.scss +6 -5
- package/scss/action-sheet/_variables.scss +18 -7
- package/scss/grid/_layout.scss +23 -1
- package/scss/grid/_theme.scss +3 -0
- package/scss/pdf-viewer/_layout.scss +7 -0
package/dist/meta/variables.json
CHANGED
|
@@ -10639,7 +10639,7 @@
|
|
|
10639
10639
|
},
|
|
10640
10640
|
"kendo-actionsheet-header-border": {
|
|
10641
10641
|
"type": "String",
|
|
10642
|
-
"value": "
|
|
10642
|
+
"value": "var(--kendo-component-border, initial)"
|
|
10643
10643
|
},
|
|
10644
10644
|
"kendo-actionsheet-header-shadow": {
|
|
10645
10645
|
"type": "String",
|
|
@@ -10657,6 +10657,26 @@
|
|
|
10657
10657
|
"type": "String",
|
|
10658
10658
|
"value": "var(--kendo-subtle-text, inherit)"
|
|
10659
10659
|
},
|
|
10660
|
+
"kendo-actionsheet-footer-border-width": {
|
|
10661
|
+
"type": "Number",
|
|
10662
|
+
"value": "1px"
|
|
10663
|
+
},
|
|
10664
|
+
"kendo-actionsheet-footer-bg": {
|
|
10665
|
+
"type": "Null",
|
|
10666
|
+
"value": "null"
|
|
10667
|
+
},
|
|
10668
|
+
"kendo-actionsheet-footer-text": {
|
|
10669
|
+
"type": "Null",
|
|
10670
|
+
"value": "null"
|
|
10671
|
+
},
|
|
10672
|
+
"kendo-actionsheet-footer-border": {
|
|
10673
|
+
"type": "String",
|
|
10674
|
+
"value": "var(--kendo-component-border, initial)"
|
|
10675
|
+
},
|
|
10676
|
+
"kendo-actionsheet-footer-shadow": {
|
|
10677
|
+
"type": "Null",
|
|
10678
|
+
"value": "null"
|
|
10679
|
+
},
|
|
10660
10680
|
"kendo-actionsheet-item-min-height": {
|
|
10661
10681
|
"type": "Number",
|
|
10662
10682
|
"value": "40px"
|
|
@@ -10757,10 +10777,6 @@
|
|
|
10757
10777
|
"type": "Number",
|
|
10758
10778
|
"value": "1rem"
|
|
10759
10779
|
},
|
|
10760
|
-
"kendo-adaptive-actionsheet-header-border-width": {
|
|
10761
|
-
"type": "Number",
|
|
10762
|
-
"value": "1px"
|
|
10763
|
-
},
|
|
10764
10780
|
"kendo-adaptive-actionsheet-header-padding-y": {
|
|
10765
10781
|
"type": "String",
|
|
10766
10782
|
"value": "var(--kendo-spacing-4, 1rem)"
|
|
@@ -10769,10 +10785,6 @@
|
|
|
10769
10785
|
"type": "String",
|
|
10770
10786
|
"value": "var(--kendo-spacing-4, 1rem)"
|
|
10771
10787
|
},
|
|
10772
|
-
"kendo-adaptive-actionsheet-header-border": {
|
|
10773
|
-
"type": "String",
|
|
10774
|
-
"value": "var(--kendo-component-border, initial)"
|
|
10775
|
-
},
|
|
10776
10788
|
"kendo-adaptive-actionsheet-content-padding-y": {
|
|
10777
10789
|
"type": "String",
|
|
10778
10790
|
"value": "var(--kendo-spacing-2, 0.5rem)"
|
package/lib/swatches/all.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-fluent",
|
|
3
3
|
"description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
|
|
4
|
-
"version": "10.
|
|
4
|
+
"version": "10.4.0-dev.9",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
57
|
-
"@progress/kendo-theme-core": "10.
|
|
58
|
-
"@progress/kendo-theme-utils": "10.
|
|
57
|
+
"@progress/kendo-theme-core": "10.4.0-dev.9",
|
|
58
|
+
"@progress/kendo-theme-utils": "10.4.0-dev.9"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "0955993e3e23e9b104deae9fef0fc7acbe3d0a51"
|
|
65
65
|
}
|
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
.k-actions-end {
|
|
40
40
|
justify-content: flex-end;
|
|
41
41
|
}
|
|
42
|
+
.k-actions-justify {
|
|
43
|
+
justify-content: space-between;
|
|
44
|
+
}
|
|
42
45
|
.k-actions-stretched > * {
|
|
43
46
|
flex: 1 0 0%;
|
|
44
47
|
}
|
|
@@ -50,5 +53,6 @@
|
|
|
50
53
|
}
|
|
51
54
|
.k-actions-vertical {
|
|
52
55
|
flex-flow: column nowrap;
|
|
56
|
+
align-items: normal;
|
|
53
57
|
}
|
|
54
58
|
}
|
|
@@ -71,6 +71,8 @@
|
|
|
71
71
|
line-height: var( --kendo-actionsheet-line-height, #{$kendo-actionsheet-line-height} );
|
|
72
72
|
overflow: hidden;
|
|
73
73
|
position: relative;
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-flow: column nowrap;
|
|
74
76
|
|
|
75
77
|
*,
|
|
76
78
|
*::before,
|
|
@@ -91,10 +93,8 @@
|
|
|
91
93
|
.k-actionsheet-header {
|
|
92
94
|
padding-inline: var( --kendo-actionsheet-header-padding-x, #{$kendo-actionsheet-header-padding-x} );
|
|
93
95
|
padding-block: var( --kendo-actionsheet-header-padding-y, #{$kendo-actionsheet-header-padding-y} );
|
|
94
|
-
border-width: 0;
|
|
95
96
|
border-bottom-width: var( --kendo-actionsheet-header-border-width, #{$kendo-actionsheet-header-border-width} );
|
|
96
|
-
border-style: solid;
|
|
97
|
-
border-color: transparent;
|
|
97
|
+
border-bottom-style: solid;
|
|
98
98
|
box-sizing: border-box;
|
|
99
99
|
font-size: var( --kendo-actionsheet-header-font-size, #{$kendo-actionsheet-header-font-size} );
|
|
100
100
|
font-family: var( --kendo-actionsheet-header-font-family, #{$kendo-actionsheet-header-font-family} );
|
|
@@ -144,6 +144,8 @@
|
|
|
144
144
|
// Actionsheet footer
|
|
145
145
|
.k-actionsheet-footer {
|
|
146
146
|
flex: none;
|
|
147
|
+
border-top-width: $kendo-actionsheet-footer-border-width;
|
|
148
|
+
border-top-style: solid;
|
|
147
149
|
}
|
|
148
150
|
|
|
149
151
|
|
|
@@ -262,14 +264,9 @@
|
|
|
262
264
|
width: 100%;
|
|
263
265
|
font-size: $kendo-adaptive-actionsheet-font-size;
|
|
264
266
|
|
|
265
|
-
// TMP: this should be moved to action sheet
|
|
266
|
-
display: flex;
|
|
267
|
-
flex-flow: column nowrap;
|
|
268
|
-
|
|
269
267
|
.k-actionsheet-titlebar {
|
|
270
268
|
padding-inline: var( --kendo-adaptive-actionsheet-header-padding-x, #{$kendo-adaptive-actionsheet-header-padding-x} );
|
|
271
269
|
padding-block: var( --kendo-adaptive-actionsheet-header-padding-y, #{$kendo-adaptive-actionsheet-header-padding-y} );
|
|
272
|
-
border-bottom-width: var( --kendo-adaptive-actionsheet-header-border-width, #{$kendo-adaptive-actionsheet-header-border-width} );
|
|
273
270
|
}
|
|
274
271
|
|
|
275
272
|
.k-actionsheet-content {
|
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
border-color: var( --kendo-actionsheet-header-border, #{$kendo-actionsheet-header-border} );
|
|
20
20
|
@include box-shadow( var( --kendo-actionsheet-header-shadow, #{$kendo-actionsheet-header-shadow} ) );
|
|
21
21
|
}
|
|
22
|
+
.k-actionsheet-footer {
|
|
23
|
+
color: var( --kendo-actionsheet-footer-text, #{$kendo-actionsheet-footer-text} );
|
|
24
|
+
background-color: var( --kendo-actionsheet-footer-bg, #{$kendo-actionsheet-footer-bg} );
|
|
25
|
+
border-color: var( --kendo-actionsheet-footer-border, #{$kendo-actionsheet-footer-border} );
|
|
26
|
+
@include box-shadow( var( --kendo-actionsheet-footer-shadow, #{$kendo-actionsheet-footer-shadow} ) );
|
|
27
|
+
}
|
|
22
28
|
.k-actionsheet-subtitle-text {
|
|
23
29
|
color: var( --kendo-actionsheet-subtitle-text, #{$kendo-actionsheet-subtitle-text} );
|
|
24
30
|
}
|
|
@@ -94,9 +100,4 @@
|
|
|
94
100
|
border-color: var( --kendo-actionsheet-border, #{$kendo-actionsheet-border} );
|
|
95
101
|
}
|
|
96
102
|
|
|
97
|
-
// Adaptive Actionsheet
|
|
98
|
-
.k-adaptive-actionsheet .k-actionsheet-titlebar {
|
|
99
|
-
border-color: var( --kendo-adaptive-actionsheet-header-border, #{$kendo-adaptive-actionsheet-header-border} );
|
|
100
|
-
}
|
|
101
|
-
|
|
102
103
|
}
|
|
@@ -81,7 +81,7 @@ $kendo-actionsheet-header-bg: inherit !default;
|
|
|
81
81
|
$kendo-actionsheet-header-text: inherit !default;
|
|
82
82
|
/// Border color of the action sheet header.
|
|
83
83
|
/// @group action-sheet
|
|
84
|
-
$kendo-actionsheet-header-border:
|
|
84
|
+
$kendo-actionsheet-header-border: var( --kendo-component-border, initial ) !default;
|
|
85
85
|
/// Box shadow of the action sheet header.
|
|
86
86
|
/// @group action-sheet
|
|
87
87
|
$kendo-actionsheet-header-shadow: none !default;
|
|
@@ -96,6 +96,23 @@ $kendo-actionsheet-subtitle-line-height: var( --kendo-line-height-sm, inherit )
|
|
|
96
96
|
/// @group action-sheet
|
|
97
97
|
$kendo-actionsheet-subtitle-text: var( --kendo-subtle-text, inherit ) !default;
|
|
98
98
|
|
|
99
|
+
/// Border width of the action sheet footer.
|
|
100
|
+
/// @group action-sheet
|
|
101
|
+
$kendo-actionsheet-footer-border-width: 1px !default;
|
|
102
|
+
|
|
103
|
+
/// Background color of the action sheet footer.
|
|
104
|
+
/// @group action-sheet
|
|
105
|
+
$kendo-actionsheet-footer-bg: null !default;
|
|
106
|
+
/// Text color of the action sheet footer.
|
|
107
|
+
/// @group action-sheet
|
|
108
|
+
$kendo-actionsheet-footer-text: null !default;
|
|
109
|
+
/// Border color of the action sheet footer.
|
|
110
|
+
/// @group action-sheet
|
|
111
|
+
$kendo-actionsheet-footer-border: var( --kendo-component-border, initial ) !default;
|
|
112
|
+
/// Box shadow of the action sheet footer.
|
|
113
|
+
/// @group action-sheet
|
|
114
|
+
$kendo-actionsheet-footer-shadow: null !default;
|
|
115
|
+
|
|
99
116
|
/// Minimum height of the action sheet item.
|
|
100
117
|
/// @group action-sheet
|
|
101
118
|
$kendo-actionsheet-item-min-height: 40px !default;
|
|
@@ -182,18 +199,12 @@ $kendo-actionsheet-item-disabled-border: var( --kendo-disabled-border, inherit )
|
|
|
182
199
|
/// Font size of the adaptive action sheet.
|
|
183
200
|
$kendo-adaptive-actionsheet-font-size: $kendo-font-size-lg !default;
|
|
184
201
|
|
|
185
|
-
/// Border width of the adaptive action sheet titlebar.
|
|
186
|
-
/// @group action-sheet
|
|
187
|
-
$kendo-adaptive-actionsheet-header-border-width: 1px !default;
|
|
188
202
|
/// Vertical padding of the adaptive action sheet titlebar.
|
|
189
203
|
/// @group action-sheet
|
|
190
204
|
$kendo-adaptive-actionsheet-header-padding-y: k-spacing(4) !default;
|
|
191
205
|
/// Horizontal padding of the adaptive action sheet titlebar.
|
|
192
206
|
/// @group action-sheet
|
|
193
207
|
$kendo-adaptive-actionsheet-header-padding-x: $kendo-adaptive-actionsheet-header-padding-y !default;
|
|
194
|
-
/// Text color of the adaptive action sheet titlebar.
|
|
195
|
-
/// @group action-sheet
|
|
196
|
-
$kendo-adaptive-actionsheet-header-border: var( --kendo-component-border, initial ) !default;
|
|
197
208
|
|
|
198
209
|
/// Vertical padding of the adaptive action sheet content.
|
|
199
210
|
/// @group action-sheet
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -1241,6 +1241,27 @@
|
|
|
1241
1241
|
align-items: center;
|
|
1242
1242
|
}
|
|
1243
1243
|
}
|
|
1244
|
+
|
|
1245
|
+
.k-columnmenu-indicators {
|
|
1246
|
+
padding-inline: k-spacing(1);
|
|
1247
|
+
display: flex;
|
|
1248
|
+
align-items: center;
|
|
1249
|
+
justify-content: center;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
// TODO: Check if k-columnmenu-item should not be flex by default
|
|
1253
|
+
.k-columnmenu-item:has(> .k-columnmenu-item-actions, > .k-columnmenu-indicators) {
|
|
1254
|
+
display: flex;
|
|
1255
|
+
align-items: center;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.k-columnmenu-drag-handle {
|
|
1259
|
+
margin-inline-end: k-spacing(1.5);
|
|
1260
|
+
display: inline-flex;
|
|
1261
|
+
align-items: center;
|
|
1262
|
+
justify-content: center;
|
|
1263
|
+
cursor: move;
|
|
1264
|
+
}
|
|
1244
1265
|
}
|
|
1245
1266
|
.k-column-menu-tabbed {
|
|
1246
1267
|
border-radius: var( --kendo-tabstrip-item-border-radius, #{$kendo-tabstrip-item-border-radius} ) var( --kendo-tabstrip-item-border-radius, #{$kendo-tabstrip-item-border-radius} ) 0 0;
|
|
@@ -1314,7 +1335,8 @@
|
|
|
1314
1335
|
}
|
|
1315
1336
|
}
|
|
1316
1337
|
|
|
1317
|
-
.k-columnmenu-item-wrapper + .k-columnmenu-item-wrapper
|
|
1338
|
+
.k-columnmenu-item-wrapper + .k-columnmenu-item-wrapper,
|
|
1339
|
+
.k-column-menu-footer {
|
|
1318
1340
|
border-top: 1px solid;
|
|
1319
1341
|
border-top-color: var( --kendo-component-border, inherit );
|
|
1320
1342
|
}
|
package/scss/grid/_theme.scss
CHANGED