@vaadin/progress-bar 22.0.2 → 23.0.0-alpha4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/progress-bar",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-alpha4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"main": "vaadin-progress-bar.js",
|
|
20
20
|
"module": "vaadin-progress-bar.js",
|
|
21
|
+
"type": "module",
|
|
21
22
|
"files": [
|
|
22
23
|
"src",
|
|
23
24
|
"theme",
|
|
@@ -35,14 +36,14 @@
|
|
|
35
36
|
"dependencies": {
|
|
36
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
38
|
"@polymer/polymer": "^3.0.0",
|
|
38
|
-
"@vaadin/component-base": "
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
40
|
-
"@vaadin/vaadin-material-styles": "
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
39
|
+
"@vaadin/component-base": "23.0.0-alpha4",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "23.0.0-alpha4",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "23.0.0-alpha4",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "23.0.0-alpha4"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@esm-bundle/chai": "^4.3.4",
|
|
45
46
|
"@vaadin/testing-helpers": "^0.3.2"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "81e2deee5147bb7c1f4884760f4598613306f1fb"
|
|
48
49
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
3
|
+
* Copyright (c) 2017 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
@@ -96,24 +96,31 @@ registerStyles(
|
|
|
96
96
|
0% {
|
|
97
97
|
opacity: 1;
|
|
98
98
|
}
|
|
99
|
+
|
|
99
100
|
10% {
|
|
100
101
|
opacity: 0;
|
|
101
102
|
}
|
|
103
|
+
|
|
102
104
|
40% {
|
|
103
105
|
opacity: 0;
|
|
104
106
|
}
|
|
107
|
+
|
|
105
108
|
50% {
|
|
106
109
|
opacity: 1;
|
|
107
110
|
}
|
|
111
|
+
|
|
108
112
|
50.1% {
|
|
109
113
|
opacity: 1;
|
|
110
114
|
}
|
|
115
|
+
|
|
111
116
|
60% {
|
|
112
117
|
opacity: 0;
|
|
113
118
|
}
|
|
119
|
+
|
|
114
120
|
90% {
|
|
115
121
|
opacity: 0;
|
|
116
122
|
}
|
|
123
|
+
|
|
117
124
|
100% {
|
|
118
125
|
opacity: 1;
|
|
119
126
|
}
|