@progress/kendo-theme-fluent 10.1.0-dev.1 → 10.1.0-dev.2
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/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/gridlayout/_index.scss +19 -0
- package/scss/gridlayout/_layout.scss +10 -0
- package/scss/gridlayout/_theme.scss +10 -0
- package/scss/gridlayout/_variables.scss +1 -0
- package/scss/index.scss +8 -53
- package/scss/notification/_layout.scss +4 -0
- package/scss/stacklayout/_index.scss +19 -0
- package/scss/stacklayout/_layout.scss +10 -0
- package/scss/stacklayout/_theme.scss +10 -0
- package/scss/stacklayout/_variables.scss +1 -0
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.1.0-dev.
|
|
4
|
+
"version": "10.1.0-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
56
|
-
"@progress/kendo-theme-core": "10.1.0-dev.
|
|
57
|
-
"@progress/kendo-theme-utils": "10.1.0-dev.
|
|
56
|
+
"@progress/kendo-theme-core": "10.1.0-dev.2",
|
|
57
|
+
"@progress/kendo-theme-utils": "10.1.0-dev.2"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "3bdbfbae6356962c8f37ba63b38f124e37f00e1a"
|
|
64
64
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../utils/_index.scss" as *;
|
|
4
|
+
|
|
5
|
+
// Component
|
|
6
|
+
@forward "./_variables.scss";
|
|
7
|
+
@use "./_layout.scss" as *;
|
|
8
|
+
@use "./_theme.scss" as *;
|
|
9
|
+
|
|
10
|
+
// Expose
|
|
11
|
+
@mixin kendo-grid-layout--styles() {
|
|
12
|
+
@include import-once( "grid-layout" ) {
|
|
13
|
+
@include core-styles();
|
|
14
|
+
@include kendo-grid-layout--layout();
|
|
15
|
+
@include kendo-grid-layout--theme();
|
|
16
|
+
@include kendo-utils--flex-grid--align-items();
|
|
17
|
+
@include kendo-utils--flex-grid--justify-items();
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// GridLayout
|
package/scss/index.scss
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
// Forward component modules by dependency order
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
@forward "./core/_index.scss";
|
|
5
4
|
@forward "./typography/_index.scss";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
// Generic content
|
|
9
5
|
@forward "./icons/_index.scss";
|
|
10
6
|
@forward "./messagebox/_index.scss";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
// Primitive components
|
|
14
7
|
@forward "./draggable/_index.scss";
|
|
15
8
|
@forward "./list/_index.scss";
|
|
16
9
|
@forward "./listgroup/_index.scss";
|
|
@@ -18,21 +11,17 @@
|
|
|
18
11
|
@forward "./popup/_index.scss";
|
|
19
12
|
@forward "./ripple/_index.scss";
|
|
20
13
|
@forward "./table/_index.scss";
|
|
14
|
+
@forward "./gridlayout/_index.scss";
|
|
15
|
+
@forward "./stacklayout/_index.scss";
|
|
21
16
|
@forward "./virtual-scroller/_index.scss";
|
|
22
17
|
@forward "./no-data/_index.scss";
|
|
23
|
-
|
|
24
|
-
// Indicators
|
|
25
18
|
@forward "./avatar/_index.scss";
|
|
26
19
|
@forward "./badge/_index.scss";
|
|
27
20
|
@forward "./color-preview/_index.scss";
|
|
28
21
|
@forward "./loader/_index.scss";
|
|
29
|
-
// @use "./loading/_index.scss";
|
|
30
22
|
@forward "./skeleton/_index.scss";
|
|
31
23
|
@forward "./time-marker/_index.scss";
|
|
32
|
-
|
|
33
24
|
@forward "./tooltip/_index.scss";
|
|
34
|
-
|
|
35
|
-
// Native forms
|
|
36
25
|
@forward "./button/_index.scss";
|
|
37
26
|
@forward "./input/_index.scss";
|
|
38
27
|
@forward "./floating-label/_index.scss";
|
|
@@ -44,23 +33,15 @@
|
|
|
44
33
|
@forward "./radio/_index.scss";
|
|
45
34
|
@forward "./slider/_index.scss";
|
|
46
35
|
@forward "./chip/_index.scss";
|
|
47
|
-
|
|
48
36
|
@forward "./action-buttons/_index.scss";
|
|
49
37
|
@forward "./menu/_index.scss";
|
|
50
38
|
@forward "./menu-button/_index.scss";
|
|
51
39
|
@forward "./split-button/_index.scss";
|
|
52
40
|
@forward "./toolbar/_index.scss";
|
|
53
|
-
|
|
54
|
-
// Form helpers
|
|
55
41
|
@forward "./forms/_index.scss";
|
|
56
42
|
@forward "./validator/_index.scss";
|
|
57
|
-
|
|
58
|
-
// Form requirements
|
|
59
43
|
@forward "./calendar/_index.scss";
|
|
60
44
|
@forward "./timeselector/_index.scss";
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
// Augmented forms
|
|
64
45
|
@forward "./autocomplete/_index.scss";
|
|
65
46
|
@forward "./captcha/_index.scss";
|
|
66
47
|
@forward "./colorpalette/_index.scss";
|
|
@@ -86,15 +67,9 @@
|
|
|
86
67
|
@forward "./switch/_index.scss";
|
|
87
68
|
@forward "./dropzone/_index.scss";
|
|
88
69
|
@forward "./upload/_index.scss";
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
// Command interfaces
|
|
92
70
|
@forward "./appbar/_index.scss";
|
|
93
71
|
@forward "./fab/_index.scss";
|
|
94
|
-
|
|
95
72
|
@forward "./card/_index.scss";
|
|
96
|
-
|
|
97
|
-
// Popups and modals
|
|
98
73
|
@forward "./action-sheet/_index.scss";
|
|
99
74
|
@forward "./window/_index.scss";
|
|
100
75
|
@forward "./dialog/_index.scss";
|
|
@@ -102,18 +77,12 @@
|
|
|
102
77
|
@forward "./notification/_index.scss";
|
|
103
78
|
@forward "./popover/_index.scss";
|
|
104
79
|
@forward "./responsivepanel/_index.scss";
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
// Navigation
|
|
108
80
|
@forward "./bottom-navigation/_index.scss";
|
|
109
81
|
@forward "./breadcrumb/_index.scss";
|
|
110
82
|
@forward "./pager/_index.scss";
|
|
111
83
|
@forward "./stepper/_index.scss";
|
|
112
84
|
@forward "./tabstrip/_index.scss";
|
|
113
85
|
@forward "./wizard/_index.scss";
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
// Layout & containers
|
|
117
86
|
@forward "./expansion-panel/_index.scss";
|
|
118
87
|
@forward "./panel/_index.scss";
|
|
119
88
|
@forward "./panelbar/_index.scss";
|
|
@@ -123,31 +92,16 @@
|
|
|
123
92
|
@forward "./adaptive/_index.scss";
|
|
124
93
|
@forward "./grid/_index.scss";
|
|
125
94
|
@forward "./listview/_index.scss";
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
// Data management
|
|
129
|
-
|
|
130
|
-
|
|
131
95
|
@forward "./spreadsheet/_index.scss";
|
|
132
96
|
@forward "./pivotgrid/_index.scss";
|
|
133
97
|
@forward "./treelist/_index.scss";
|
|
134
98
|
@forward "./filter/_index.scss";
|
|
135
99
|
@forward "./filemanager/_index.scss";
|
|
136
100
|
@forward "./taskboard/_index.scss";
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
// Editors
|
|
140
101
|
@forward "./editor/_index.scss";
|
|
141
102
|
@forward "./imageeditor/_index.scss";
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
// Scheduling
|
|
145
103
|
@forward "./gantt/_index.scss";
|
|
146
104
|
@forward "./scheduler/_index.scss";
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
// Misc
|
|
150
|
-
|
|
151
105
|
@forward "./chat/_index.scss";
|
|
152
106
|
@forward "./mediaplayer/_index.scss";
|
|
153
107
|
@forward "./timeline/_index.scss";
|
|
@@ -155,9 +109,6 @@
|
|
|
155
109
|
@forward "./scroller/_index.scss";
|
|
156
110
|
@forward "./scrollview/_index.scss";
|
|
157
111
|
@forward "./prompt/_index.scss";
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
// Dataviz
|
|
161
112
|
@forward "./dataviz/_index.scss";
|
|
162
113
|
@forward "./chart-wizard/_index.scss";
|
|
163
114
|
@forward "./map/_index.scss";
|
|
@@ -287,6 +238,8 @@
|
|
|
287
238
|
@use "./panelbar/index.scss" as *;
|
|
288
239
|
@use "./splitter/index.scss" as *;
|
|
289
240
|
@use "./tilelayout/index.scss" as *;
|
|
241
|
+
@use "./gridlayout/_index.scss" as *;
|
|
242
|
+
@use "./stacklayout/_index.scss" as *;
|
|
290
243
|
@use "./dock-manager/index.scss" as *;
|
|
291
244
|
@use "./chart-wizard/index.scss" as *;
|
|
292
245
|
|
|
@@ -461,6 +414,8 @@
|
|
|
461
414
|
@include kendo-panelbar--styles();
|
|
462
415
|
@include kendo-splitter--styles();
|
|
463
416
|
@include kendo-tile-layout--styles();
|
|
417
|
+
@include kendo-grid-layout--styles();
|
|
418
|
+
@include kendo-stack-layout--styles();
|
|
464
419
|
@include kendo-dock-manager--styles();
|
|
465
420
|
@include kendo-chart-wizard--styles();
|
|
466
421
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../utils/_index.scss" as *;
|
|
4
|
+
|
|
5
|
+
// Component
|
|
6
|
+
@forward "./_variables.scss";
|
|
7
|
+
@use "./_layout.scss" as *;
|
|
8
|
+
@use "./_theme.scss" as *;
|
|
9
|
+
|
|
10
|
+
// Expose
|
|
11
|
+
@mixin kendo-stack-layout--styles() {
|
|
12
|
+
@include import-once( "stack-layout" ) {
|
|
13
|
+
@include core-styles();
|
|
14
|
+
@include kendo-stack-layout--layout();
|
|
15
|
+
@include kendo-stack-layout--theme();
|
|
16
|
+
@include kendo-utils--flex-grid--align-items();
|
|
17
|
+
@include kendo-utils--flex-grid--justify-content();
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// StackLayout
|