@syncfusion/ej2-dropdowns 25.2.7 → 26.1.35
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/.eslintrc.json +3 -2
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +505 -224
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +498 -216
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +14 -13
- package/src/auto-complete/auto-complete.js +1 -1
- package/src/combo-box/combo-box.js +15 -0
- package/src/common/interface.js +0 -1
- package/src/common/virtual-scroll.js +1 -0
- package/src/drop-down-base/drop-down-base-model.d.ts +8 -1
- package/src/drop-down-base/drop-down-base.d.ts +28 -2
- package/src/drop-down-base/drop-down-base.js +64 -9
- package/src/drop-down-list/drop-down-list.d.ts +15 -2
- package/src/drop-down-list/drop-down-list.js +129 -13
- package/src/drop-down-tree/drop-down-tree-model.d.ts +15 -15
- package/src/drop-down-tree/drop-down-tree.d.ts +17 -13
- package/src/drop-down-tree/drop-down-tree.js +52 -38
- package/src/list-box/list-box.js +30 -9
- package/src/mention/mention.js +23 -8
- package/src/multi-select/interface.js +0 -1
- package/src/multi-select/multi-select.d.ts +15 -0
- package/src/multi-select/multi-select.js +135 -12
- package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -0
- package/styles/auto-complete/_fluent2-definition.scss +2 -0
- package/styles/auto-complete/bootstrap-dark.css +5 -2
- package/styles/auto-complete/bootstrap.css +5 -2
- package/styles/auto-complete/bootstrap4.css +6 -2
- package/styles/auto-complete/bootstrap5-dark.css +6 -2
- package/styles/auto-complete/bootstrap5.css +6 -2
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +6 -2
- package/styles/auto-complete/fluent.css +6 -2
- package/styles/auto-complete/fluent2.css +1140 -0
- package/styles/auto-complete/fluent2.scss +4 -0
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +16 -5
- package/styles/auto-complete/material.css +16 -5
- package/styles/auto-complete/material3-dark.css +17 -6
- package/styles/auto-complete/material3.css +17 -6
- package/styles/auto-complete/tailwind-dark.css +16 -5
- package/styles/auto-complete/tailwind.css +16 -5
- package/styles/bootstrap-dark.css +196 -228
- package/styles/bootstrap-dark.scss +28 -8
- package/styles/bootstrap.css +196 -228
- package/styles/bootstrap.scss +28 -8
- package/styles/bootstrap4.css +199 -229
- package/styles/bootstrap4.scss +28 -8
- package/styles/bootstrap5-dark.css +196 -221
- package/styles/bootstrap5-dark.scss +28 -8
- package/styles/bootstrap5.css +196 -221
- package/styles/bootstrap5.scss +28 -8
- package/styles/combo-box/_bootstrap5.3-definition.scss +2 -0
- package/styles/combo-box/_fluent2-definition.scss +2 -0
- package/styles/combo-box/bootstrap-dark.css +5 -2
- package/styles/combo-box/bootstrap.css +5 -2
- package/styles/combo-box/bootstrap4.css +6 -2
- package/styles/combo-box/bootstrap5-dark.css +6 -2
- package/styles/combo-box/bootstrap5.css +6 -2
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +6 -2
- package/styles/combo-box/fluent.css +6 -2
- package/styles/combo-box/fluent2.css +1140 -0
- package/styles/combo-box/fluent2.scss +4 -0
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +16 -5
- package/styles/combo-box/material.css +16 -5
- package/styles/combo-box/material3-dark.css +17 -6
- package/styles/combo-box/material3.css +17 -6
- package/styles/combo-box/tailwind-dark.css +16 -5
- package/styles/combo-box/tailwind.css +16 -5
- package/styles/drop-down-base/_bds-definition.scss +2 -2
- package/styles/drop-down-base/_bootstrap5.3-definition.scss +117 -0
- package/styles/drop-down-base/_fluent2-definition.scss +134 -0
- package/styles/drop-down-base/_layout.scss +12 -2
- package/styles/drop-down-base/_material3-definition.scss +0 -11
- package/styles/drop-down-base/_theme.scss +2 -11
- package/styles/drop-down-base/bootstrap-dark.css +2 -1
- package/styles/drop-down-base/bootstrap.css +2 -1
- package/styles/drop-down-base/bootstrap4.css +2 -1
- package/styles/drop-down-base/bootstrap5-dark.css +2 -1
- package/styles/drop-down-base/bootstrap5.css +2 -1
- package/styles/drop-down-base/fabric-dark.css +2 -1
- package/styles/drop-down-base/fabric.css +2 -1
- package/styles/drop-down-base/fluent-dark.css +2 -1
- package/styles/drop-down-base/fluent.css +2 -1
- package/styles/drop-down-base/fluent2.css +1447 -0
- package/styles/drop-down-base/fluent2.scss +3 -0
- package/styles/drop-down-base/highcontrast-light.css +2 -1
- package/styles/drop-down-base/highcontrast.css +2 -1
- package/styles/drop-down-base/material-dark.css +2 -1
- package/styles/drop-down-base/material.css +2 -1
- package/styles/drop-down-base/material3-dark.css +9 -2
- package/styles/drop-down-base/material3.css +9 -2
- package/styles/drop-down-base/tailwind-dark.css +2 -1
- package/styles/drop-down-base/tailwind.css +2 -1
- package/styles/drop-down-list/_bootstrap5.3-definition.scss +201 -0
- package/styles/drop-down-list/_fluent2-definition.scss +134 -0
- package/styles/drop-down-list/_layout.scss +5 -3
- package/styles/drop-down-list/_material3-definition.scss +0 -8
- package/styles/drop-down-list/bootstrap-dark.css +38 -3
- package/styles/drop-down-list/bootstrap.css +38 -3
- package/styles/drop-down-list/bootstrap4.css +39 -3
- package/styles/drop-down-list/bootstrap5-dark.css +39 -3
- package/styles/drop-down-list/bootstrap5.css +39 -3
- package/styles/drop-down-list/fabric-dark.css +36 -2
- package/styles/drop-down-list/fabric.css +36 -2
- package/styles/drop-down-list/fluent-dark.css +39 -3
- package/styles/drop-down-list/fluent.css +39 -3
- package/styles/drop-down-list/fluent2.css +1684 -0
- package/styles/drop-down-list/fluent2.scss +9 -0
- package/styles/drop-down-list/highcontrast-light.css +36 -2
- package/styles/drop-down-list/highcontrast.css +36 -2
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +14 -0
- package/styles/drop-down-list/icons/_fluent2.scss +14 -0
- package/styles/drop-down-list/material-dark.css +58 -7
- package/styles/drop-down-list/material.css +72 -9
- package/styles/drop-down-list/material3-dark.css +74 -10
- package/styles/drop-down-list/material3.css +74 -10
- package/styles/drop-down-list/tailwind-dark.css +49 -6
- package/styles/drop-down-list/tailwind.css +49 -6
- package/styles/drop-down-tree/_bds-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -0
- package/styles/drop-down-tree/_bootstrap5-definition.scss +5 -0
- package/styles/drop-down-tree/_bootstrap5.3-definition.scss +66 -0
- package/styles/drop-down-tree/_fluent-definition.scss +4 -0
- package/styles/drop-down-tree/_fluent2-definition.scss +75 -0
- package/styles/drop-down-tree/_layout.scss +289 -327
- package/styles/drop-down-tree/_material3-definition.scss +3 -5
- package/styles/drop-down-tree/_tailwind-definition.scss +7 -2
- package/styles/drop-down-tree/_theme.scss +24 -41
- package/styles/drop-down-tree/bootstrap-dark.css +63 -29
- package/styles/drop-down-tree/bootstrap.css +63 -29
- package/styles/drop-down-tree/bootstrap4.css +64 -30
- package/styles/drop-down-tree/bootstrap5-dark.css +63 -27
- package/styles/drop-down-tree/bootstrap5.css +63 -27
- package/styles/drop-down-tree/fabric-dark.css +63 -29
- package/styles/drop-down-tree/fabric.css +63 -29
- package/styles/drop-down-tree/fluent-dark.css +71 -35
- package/styles/drop-down-tree/fluent.css +71 -35
- package/styles/drop-down-tree/fluent2.css +1732 -0
- package/styles/drop-down-tree/fluent2.scss +9 -0
- package/styles/drop-down-tree/highcontrast-light.css +63 -29
- package/styles/drop-down-tree/highcontrast.css +63 -23
- package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -0
- package/styles/drop-down-tree/icons/_fluent2.scss +14 -0
- package/styles/drop-down-tree/material-dark.css +80 -43
- package/styles/drop-down-tree/material.css +97 -51
- package/styles/drop-down-tree/material3-dark.css +85 -32
- package/styles/drop-down-tree/material3.css +85 -32
- package/styles/drop-down-tree/tailwind-dark.css +72 -28
- package/styles/drop-down-tree/tailwind.css +72 -28
- package/styles/fabric-dark.css +194 -227
- package/styles/fabric-dark.scss +28 -8
- package/styles/fabric.css +194 -227
- package/styles/fabric.scss +28 -8
- package/styles/fluent-dark.css +206 -236
- package/styles/fluent-dark.scss +28 -8
- package/styles/fluent.css +206 -236
- package/styles/fluent.scss +28 -8
- package/styles/fluent2.css +4771 -0
- package/styles/fluent2.scss +28 -0
- package/styles/highcontrast-light.css +197 -227
- package/styles/highcontrast-light.scss +28 -8
- package/styles/highcontrast.css +197 -221
- package/styles/highcontrast.scss +28 -8
- package/styles/list-box/_bootstrap-dark-definition.scss +0 -2
- package/styles/list-box/_bootstrap5.3-definition.scss +120 -0
- package/styles/list-box/_fabric-dark-definition.scss +0 -2
- package/styles/list-box/_fluent2-definition.scss +121 -0
- package/styles/list-box/_highcontrast-light-definition.scss +0 -2
- package/styles/list-box/_layout.scss +65 -44
- package/styles/list-box/_material-dark-definition.scss +0 -2
- package/styles/list-box/_tailwind-definition.scss +1 -1
- package/styles/list-box/_theme.scss +36 -65
- package/styles/list-box/bootstrap-dark.css +72 -112
- package/styles/list-box/bootstrap.css +72 -112
- package/styles/list-box/bootstrap4.css +72 -112
- package/styles/list-box/bootstrap5-dark.css +72 -106
- package/styles/list-box/bootstrap5.css +72 -106
- package/styles/list-box/fabric-dark.css +72 -112
- package/styles/list-box/fabric.css +72 -112
- package/styles/list-box/fluent-dark.css +72 -112
- package/styles/list-box/fluent.css +72 -112
- package/styles/list-box/fluent2.css +2029 -0
- package/styles/list-box/fluent2.scss +5 -0
- package/styles/list-box/highcontrast-light.css +72 -112
- package/styles/list-box/highcontrast.css +72 -112
- package/styles/list-box/icons/_bootstrap5.3.scss +25 -0
- package/styles/list-box/icons/_fluent2.scss +25 -0
- package/styles/list-box/material-dark.css +72 -112
- package/styles/list-box/material.css +72 -112
- package/styles/list-box/material3-dark.css +73 -113
- package/styles/list-box/material3.css +73 -113
- package/styles/list-box/tailwind-dark.css +74 -114
- package/styles/list-box/tailwind.css +74 -114
- package/styles/material-dark.css +236 -260
- package/styles/material-dark.scss +28 -8
- package/styles/material.css +253 -284
- package/styles/material.scss +28 -8
- package/styles/material3-dark.css +253 -266
- package/styles/material3-dark.scss +28 -8
- package/styles/material3.css +253 -266
- package/styles/material3.scss +28 -8
- package/styles/mention/_bootstrap5.3-definition.scss +1 -0
- package/styles/mention/_fluent2-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +24 -0
- package/styles/mention/bootstrap.css +24 -0
- package/styles/mention/bootstrap4.css +24 -0
- package/styles/mention/bootstrap5-dark.css +24 -0
- package/styles/mention/bootstrap5.css +24 -0
- package/styles/mention/fabric-dark.css +24 -0
- package/styles/mention/fabric.css +24 -0
- package/styles/mention/fluent-dark.css +24 -0
- package/styles/mention/fluent.css +24 -0
- package/styles/mention/fluent2.css +1130 -0
- package/styles/mention/fluent2.scss +6 -0
- package/styles/mention/highcontrast-light.css +24 -0
- package/styles/mention/highcontrast.css +24 -0
- package/styles/mention/material-dark.css +24 -0
- package/styles/mention/material.css +24 -0
- package/styles/mention/material3-dark.css +25 -1
- package/styles/mention/material3.css +25 -1
- package/styles/mention/tailwind-dark.css +24 -0
- package/styles/mention/tailwind.css +24 -0
- package/styles/multi-select/_bootstrap5.3-definition.scss +230 -0
- package/styles/multi-select/_fluent2-definition.scss +236 -0
- package/styles/multi-select/_layout.scss +32 -38
- package/styles/multi-select/_material3-definition.scss +0 -15
- package/styles/multi-select/_theme.scss +0 -4
- package/styles/multi-select/bootstrap-dark.css +67 -28
- package/styles/multi-select/bootstrap.css +67 -28
- package/styles/multi-select/bootstrap4.css +70 -29
- package/styles/multi-select/bootstrap5-dark.css +67 -28
- package/styles/multi-select/bootstrap5.css +67 -28
- package/styles/multi-select/fabric-dark.css +67 -28
- package/styles/multi-select/fabric.css +67 -28
- package/styles/multi-select/fluent-dark.css +69 -29
- package/styles/multi-select/fluent.css +69 -29
- package/styles/multi-select/fluent2.css +2663 -0
- package/styles/multi-select/fluent2.scss +9 -0
- package/styles/multi-select/highcontrast-light.css +70 -28
- package/styles/multi-select/highcontrast.css +70 -28
- package/styles/multi-select/icons/_bootstrap5.3.scss +26 -0
- package/styles/multi-select/icons/_fluent2.scss +692 -0
- package/styles/multi-select/material-dark.css +88 -32
- package/styles/multi-select/material.css +102 -34
- package/styles/multi-select/material3-dark.css +109 -35
- package/styles/multi-select/material3.css +109 -35
- package/styles/multi-select/tailwind-dark.css +67 -28
- package/styles/multi-select/tailwind.css +67 -28
- package/styles/tailwind-dark.css +217 -233
- package/styles/tailwind-dark.scss +28 -8
- package/styles/tailwind.css +217 -233
- package/styles/tailwind.scss +28 -8
- package/CHANGELOG.md +0 -2200
package/styles/material3.scss
CHANGED
|
@@ -1,10 +1,30 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
@import 'drop-down-
|
|
5
|
-
@import 'drop-down-
|
|
6
|
-
|
|
7
|
-
@import '
|
|
8
|
-
@import '
|
|
9
|
-
@import '
|
|
10
|
-
@import '
|
|
3
|
+
|
|
4
|
+
@import 'drop-down-base/material3-definition.scss';
|
|
5
|
+
@import 'drop-down-base/all.scss';
|
|
6
|
+
|
|
7
|
+
@import 'ej2-inputs/styles/input/material3-definition.scss';
|
|
8
|
+
@import 'ej2-popups/styles/popup/material3-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/spinner/material3-definition.scss';
|
|
10
|
+
@import 'ej2-notifications/styles/skeleton/material3-definition.scss';
|
|
11
|
+
@import 'drop-down-list/material3-definition.scss';
|
|
12
|
+
@import 'drop-down-list/icons/material3.scss';
|
|
13
|
+
@import 'drop-down-list/all.scss';
|
|
14
|
+
@import 'ej2-navigations/styles/treeview/material3-definition.scss';
|
|
15
|
+
@import 'drop-down-tree/material3-definition.scss';
|
|
16
|
+
@import 'drop-down-tree/icons/material3.scss';
|
|
17
|
+
@import 'drop-down-tree/all.scss';
|
|
18
|
+
@import 'combo-box/material3-definition.scss';
|
|
19
|
+
@import 'combo-box/all.scss';
|
|
20
|
+
@import 'auto-complete/material3-definition.scss';
|
|
21
|
+
@import 'auto-complete/all.scss';
|
|
22
|
+
@import 'ej2-buttons/styles/check-box/material3-definition.scss';
|
|
23
|
+
@import 'multi-select/material3-definition.scss';
|
|
24
|
+
@import 'multi-select/icons/material3.scss';
|
|
25
|
+
@import 'multi-select/all.scss';
|
|
26
|
+
@import 'list-box/material3-definition.scss';
|
|
27
|
+
@import 'list-box/icons/material3.scss';
|
|
28
|
+
@import 'list-box/all.scss';
|
|
29
|
+
@import 'mention/material3-definition.scss';
|
|
30
|
+
@import 'mention/all.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
@@ -1,17 +1,41 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
3
|
+
0% {
|
|
4
|
+
-webkit-transform: rotate(0);
|
|
5
|
+
transform: rotate(0);
|
|
6
|
+
}
|
|
7
|
+
100% {
|
|
8
|
+
-webkit-transform: rotate(360deg);
|
|
9
|
+
transform: rotate(360deg);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
2
12
|
@keyframes material-spinner-rotate {
|
|
3
13
|
0% {
|
|
14
|
+
-webkit-transform: rotate(0);
|
|
15
|
+
transform: rotate(0);
|
|
16
|
+
}
|
|
17
|
+
100% {
|
|
18
|
+
-webkit-transform: rotate(360deg);
|
|
19
|
+
transform: rotate(360deg);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
23
|
+
0% {
|
|
24
|
+
-webkit-transform: rotate(0);
|
|
4
25
|
transform: rotate(0);
|
|
5
26
|
}
|
|
6
27
|
100% {
|
|
28
|
+
-webkit-transform: rotate(360deg);
|
|
7
29
|
transform: rotate(360deg);
|
|
8
30
|
}
|
|
9
31
|
}
|
|
10
32
|
@keyframes fabric-spinner-rotate {
|
|
11
33
|
0% {
|
|
34
|
+
-webkit-transform: rotate(0);
|
|
12
35
|
transform: rotate(0);
|
|
13
36
|
}
|
|
14
37
|
100% {
|
|
38
|
+
-webkit-transform: rotate(360deg);
|
|
15
39
|
transform: rotate(360deg);
|
|
16
40
|
}
|
|
17
41
|
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
3
|
+
0% {
|
|
4
|
+
-webkit-transform: rotate(0);
|
|
5
|
+
transform: rotate(0);
|
|
6
|
+
}
|
|
7
|
+
100% {
|
|
8
|
+
-webkit-transform: rotate(360deg);
|
|
9
|
+
transform: rotate(360deg);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
2
12
|
@keyframes material-spinner-rotate {
|
|
3
13
|
0% {
|
|
14
|
+
-webkit-transform: rotate(0);
|
|
15
|
+
transform: rotate(0);
|
|
16
|
+
}
|
|
17
|
+
100% {
|
|
18
|
+
-webkit-transform: rotate(360deg);
|
|
19
|
+
transform: rotate(360deg);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
23
|
+
0% {
|
|
24
|
+
-webkit-transform: rotate(0);
|
|
4
25
|
transform: rotate(0);
|
|
5
26
|
}
|
|
6
27
|
100% {
|
|
28
|
+
-webkit-transform: rotate(360deg);
|
|
7
29
|
transform: rotate(360deg);
|
|
8
30
|
}
|
|
9
31
|
}
|
|
10
32
|
@keyframes fabric-spinner-rotate {
|
|
11
33
|
0% {
|
|
34
|
+
-webkit-transform: rotate(0);
|
|
12
35
|
transform: rotate(0);
|
|
13
36
|
}
|
|
14
37
|
100% {
|
|
38
|
+
-webkit-transform: rotate(360deg);
|
|
15
39
|
transform: rotate(360deg);
|
|
16
40
|
}
|
|
17
41
|
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
3
|
+
0% {
|
|
4
|
+
-webkit-transform: rotate(0);
|
|
5
|
+
transform: rotate(0);
|
|
6
|
+
}
|
|
7
|
+
100% {
|
|
8
|
+
-webkit-transform: rotate(360deg);
|
|
9
|
+
transform: rotate(360deg);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
2
12
|
@keyframes material-spinner-rotate {
|
|
3
13
|
0% {
|
|
14
|
+
-webkit-transform: rotate(0);
|
|
15
|
+
transform: rotate(0);
|
|
16
|
+
}
|
|
17
|
+
100% {
|
|
18
|
+
-webkit-transform: rotate(360deg);
|
|
19
|
+
transform: rotate(360deg);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
23
|
+
0% {
|
|
24
|
+
-webkit-transform: rotate(0);
|
|
4
25
|
transform: rotate(0);
|
|
5
26
|
}
|
|
6
27
|
100% {
|
|
28
|
+
-webkit-transform: rotate(360deg);
|
|
7
29
|
transform: rotate(360deg);
|
|
8
30
|
}
|
|
9
31
|
}
|
|
10
32
|
@keyframes fabric-spinner-rotate {
|
|
11
33
|
0% {
|
|
34
|
+
-webkit-transform: rotate(0);
|
|
12
35
|
transform: rotate(0);
|
|
13
36
|
}
|
|
14
37
|
100% {
|
|
38
|
+
-webkit-transform: rotate(360deg);
|
|
15
39
|
transform: rotate(360deg);
|
|
16
40
|
}
|
|
17
41
|
}
|
|
@@ -1,18 +1,42 @@
|
|
|
1
1
|
/* stylelint-disable-line no-empty-source */
|
|
2
2
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
4
|
+
0% {
|
|
5
|
+
-webkit-transform: rotate(0);
|
|
6
|
+
transform: rotate(0);
|
|
7
|
+
}
|
|
8
|
+
100% {
|
|
9
|
+
-webkit-transform: rotate(360deg);
|
|
10
|
+
transform: rotate(360deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
3
13
|
@keyframes material-spinner-rotate {
|
|
4
14
|
0% {
|
|
15
|
+
-webkit-transform: rotate(0);
|
|
16
|
+
transform: rotate(0);
|
|
17
|
+
}
|
|
18
|
+
100% {
|
|
19
|
+
-webkit-transform: rotate(360deg);
|
|
20
|
+
transform: rotate(360deg);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
24
|
+
0% {
|
|
25
|
+
-webkit-transform: rotate(0);
|
|
5
26
|
transform: rotate(0);
|
|
6
27
|
}
|
|
7
28
|
100% {
|
|
29
|
+
-webkit-transform: rotate(360deg);
|
|
8
30
|
transform: rotate(360deg);
|
|
9
31
|
}
|
|
10
32
|
}
|
|
11
33
|
@keyframes fabric-spinner-rotate {
|
|
12
34
|
0% {
|
|
35
|
+
-webkit-transform: rotate(0);
|
|
13
36
|
transform: rotate(0);
|
|
14
37
|
}
|
|
15
38
|
100% {
|
|
39
|
+
-webkit-transform: rotate(360deg);
|
|
16
40
|
transform: rotate(360deg);
|
|
17
41
|
}
|
|
18
42
|
}
|
|
@@ -1,18 +1,42 @@
|
|
|
1
1
|
/* stylelint-disable-line no-empty-source */
|
|
2
2
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
4
|
+
0% {
|
|
5
|
+
-webkit-transform: rotate(0);
|
|
6
|
+
transform: rotate(0);
|
|
7
|
+
}
|
|
8
|
+
100% {
|
|
9
|
+
-webkit-transform: rotate(360deg);
|
|
10
|
+
transform: rotate(360deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
3
13
|
@keyframes material-spinner-rotate {
|
|
4
14
|
0% {
|
|
15
|
+
-webkit-transform: rotate(0);
|
|
16
|
+
transform: rotate(0);
|
|
17
|
+
}
|
|
18
|
+
100% {
|
|
19
|
+
-webkit-transform: rotate(360deg);
|
|
20
|
+
transform: rotate(360deg);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
24
|
+
0% {
|
|
25
|
+
-webkit-transform: rotate(0);
|
|
5
26
|
transform: rotate(0);
|
|
6
27
|
}
|
|
7
28
|
100% {
|
|
29
|
+
-webkit-transform: rotate(360deg);
|
|
8
30
|
transform: rotate(360deg);
|
|
9
31
|
}
|
|
10
32
|
}
|
|
11
33
|
@keyframes fabric-spinner-rotate {
|
|
12
34
|
0% {
|
|
35
|
+
-webkit-transform: rotate(0);
|
|
13
36
|
transform: rotate(0);
|
|
14
37
|
}
|
|
15
38
|
100% {
|
|
39
|
+
-webkit-transform: rotate(360deg);
|
|
16
40
|
transform: rotate(360deg);
|
|
17
41
|
}
|
|
18
42
|
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
3
|
+
0% {
|
|
4
|
+
-webkit-transform: rotate(0);
|
|
5
|
+
transform: rotate(0);
|
|
6
|
+
}
|
|
7
|
+
100% {
|
|
8
|
+
-webkit-transform: rotate(360deg);
|
|
9
|
+
transform: rotate(360deg);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
2
12
|
@keyframes material-spinner-rotate {
|
|
3
13
|
0% {
|
|
14
|
+
-webkit-transform: rotate(0);
|
|
15
|
+
transform: rotate(0);
|
|
16
|
+
}
|
|
17
|
+
100% {
|
|
18
|
+
-webkit-transform: rotate(360deg);
|
|
19
|
+
transform: rotate(360deg);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
23
|
+
0% {
|
|
24
|
+
-webkit-transform: rotate(0);
|
|
4
25
|
transform: rotate(0);
|
|
5
26
|
}
|
|
6
27
|
100% {
|
|
28
|
+
-webkit-transform: rotate(360deg);
|
|
7
29
|
transform: rotate(360deg);
|
|
8
30
|
}
|
|
9
31
|
}
|
|
10
32
|
@keyframes fabric-spinner-rotate {
|
|
11
33
|
0% {
|
|
34
|
+
-webkit-transform: rotate(0);
|
|
12
35
|
transform: rotate(0);
|
|
13
36
|
}
|
|
14
37
|
100% {
|
|
38
|
+
-webkit-transform: rotate(360deg);
|
|
15
39
|
transform: rotate(360deg);
|
|
16
40
|
}
|
|
17
41
|
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
1
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
3
|
+
0% {
|
|
4
|
+
-webkit-transform: rotate(0);
|
|
5
|
+
transform: rotate(0);
|
|
6
|
+
}
|
|
7
|
+
100% {
|
|
8
|
+
-webkit-transform: rotate(360deg);
|
|
9
|
+
transform: rotate(360deg);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
2
12
|
@keyframes material-spinner-rotate {
|
|
3
13
|
0% {
|
|
14
|
+
-webkit-transform: rotate(0);
|
|
15
|
+
transform: rotate(0);
|
|
16
|
+
}
|
|
17
|
+
100% {
|
|
18
|
+
-webkit-transform: rotate(360deg);
|
|
19
|
+
transform: rotate(360deg);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
23
|
+
0% {
|
|
24
|
+
-webkit-transform: rotate(0);
|
|
4
25
|
transform: rotate(0);
|
|
5
26
|
}
|
|
6
27
|
100% {
|
|
28
|
+
-webkit-transform: rotate(360deg);
|
|
7
29
|
transform: rotate(360deg);
|
|
8
30
|
}
|
|
9
31
|
}
|
|
10
32
|
@keyframes fabric-spinner-rotate {
|
|
11
33
|
0% {
|
|
34
|
+
-webkit-transform: rotate(0);
|
|
12
35
|
transform: rotate(0);
|
|
13
36
|
}
|
|
14
37
|
100% {
|
|
38
|
+
-webkit-transform: rotate(360deg);
|
|
15
39
|
transform: rotate(360deg);
|
|
16
40
|
}
|
|
17
41
|
}
|
|
@@ -1,18 +1,42 @@
|
|
|
1
1
|
/* stylelint-disable-line no-empty-source */
|
|
2
2
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
4
|
+
0% {
|
|
5
|
+
-webkit-transform: rotate(0);
|
|
6
|
+
transform: rotate(0);
|
|
7
|
+
}
|
|
8
|
+
100% {
|
|
9
|
+
-webkit-transform: rotate(360deg);
|
|
10
|
+
transform: rotate(360deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
3
13
|
@keyframes material-spinner-rotate {
|
|
4
14
|
0% {
|
|
15
|
+
-webkit-transform: rotate(0);
|
|
16
|
+
transform: rotate(0);
|
|
17
|
+
}
|
|
18
|
+
100% {
|
|
19
|
+
-webkit-transform: rotate(360deg);
|
|
20
|
+
transform: rotate(360deg);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
24
|
+
0% {
|
|
25
|
+
-webkit-transform: rotate(0);
|
|
5
26
|
transform: rotate(0);
|
|
6
27
|
}
|
|
7
28
|
100% {
|
|
29
|
+
-webkit-transform: rotate(360deg);
|
|
8
30
|
transform: rotate(360deg);
|
|
9
31
|
}
|
|
10
32
|
}
|
|
11
33
|
@keyframes fabric-spinner-rotate {
|
|
12
34
|
0% {
|
|
35
|
+
-webkit-transform: rotate(0);
|
|
13
36
|
transform: rotate(0);
|
|
14
37
|
}
|
|
15
38
|
100% {
|
|
39
|
+
-webkit-transform: rotate(360deg);
|
|
16
40
|
transform: rotate(360deg);
|
|
17
41
|
}
|
|
18
42
|
}
|
|
@@ -1,18 +1,42 @@
|
|
|
1
1
|
/* stylelint-disable-line no-empty-source */
|
|
2
2
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
4
|
+
0% {
|
|
5
|
+
-webkit-transform: rotate(0);
|
|
6
|
+
transform: rotate(0);
|
|
7
|
+
}
|
|
8
|
+
100% {
|
|
9
|
+
-webkit-transform: rotate(360deg);
|
|
10
|
+
transform: rotate(360deg);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
3
13
|
@keyframes material-spinner-rotate {
|
|
4
14
|
0% {
|
|
15
|
+
-webkit-transform: rotate(0);
|
|
16
|
+
transform: rotate(0);
|
|
17
|
+
}
|
|
18
|
+
100% {
|
|
19
|
+
-webkit-transform: rotate(360deg);
|
|
20
|
+
transform: rotate(360deg);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
24
|
+
0% {
|
|
25
|
+
-webkit-transform: rotate(0);
|
|
5
26
|
transform: rotate(0);
|
|
6
27
|
}
|
|
7
28
|
100% {
|
|
29
|
+
-webkit-transform: rotate(360deg);
|
|
8
30
|
transform: rotate(360deg);
|
|
9
31
|
}
|
|
10
32
|
}
|
|
11
33
|
@keyframes fabric-spinner-rotate {
|
|
12
34
|
0% {
|
|
35
|
+
-webkit-transform: rotate(0);
|
|
13
36
|
transform: rotate(0);
|
|
14
37
|
}
|
|
15
38
|
100% {
|
|
39
|
+
-webkit-transform: rotate(360deg);
|
|
16
40
|
transform: rotate(360deg);
|
|
17
41
|
}
|
|
18
42
|
}
|