@vaadin/progress-bar 25.1.0-beta1 → 25.1.0-beta2
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 +8 -8
- package/src/vaadin-progress-mixin.js +0 -3
- package/web-types.json +19 -7
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/progress-bar",
|
|
3
|
-
"version": "25.1.0-
|
|
3
|
+
"version": "25.1.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
39
|
-
"@vaadin/component-base": "25.1.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "25.1.0-
|
|
39
|
+
"@vaadin/component-base": "25.1.0-beta2",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
|
|
41
41
|
"lit": "^3.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vaadin/aura": "25.1.0-
|
|
45
|
-
"@vaadin/chai-plugins": "25.1.0-
|
|
46
|
-
"@vaadin/test-runner-commands": "25.1.0-
|
|
44
|
+
"@vaadin/aura": "25.1.0-beta2",
|
|
45
|
+
"@vaadin/chai-plugins": "25.1.0-beta2",
|
|
46
|
+
"@vaadin/test-runner-commands": "25.1.0-beta2",
|
|
47
47
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "25.1.0-
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "25.1.0-beta2"
|
|
49
49
|
},
|
|
50
50
|
"customElements": "custom-elements.json",
|
|
51
51
|
"web-types": [
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
|
|
56
56
|
}
|
|
@@ -21,7 +21,6 @@ export const ProgressMixin = (superClass) =>
|
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* Minimum bound of the progress bar.
|
|
24
|
-
* @type {number}
|
|
25
24
|
*/
|
|
26
25
|
min: {
|
|
27
26
|
type: Number,
|
|
@@ -31,7 +30,6 @@ export const ProgressMixin = (superClass) =>
|
|
|
31
30
|
|
|
32
31
|
/**
|
|
33
32
|
* Maximum bound of the progress bar.
|
|
34
|
-
* @type {number}
|
|
35
33
|
*/
|
|
36
34
|
max: {
|
|
37
35
|
type: Number,
|
|
@@ -42,7 +40,6 @@ export const ProgressMixin = (superClass) =>
|
|
|
42
40
|
/**
|
|
43
41
|
* Indeterminate state of the progress bar.
|
|
44
42
|
* This property takes precedence over other state properties (min, max, value).
|
|
45
|
-
* @type {boolean}
|
|
46
43
|
*/
|
|
47
44
|
indeterminate: {
|
|
48
45
|
type: Boolean,
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/progress-bar",
|
|
4
|
-
"version": "25.1.0-
|
|
4
|
+
"version": "25.1.0-beta2",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
"description": "Indeterminate state of the progress bar.\nThis property takes precedence over other state properties (min, max, value).",
|
|
16
16
|
"value": {
|
|
17
17
|
"type": [
|
|
18
|
-
"boolean"
|
|
18
|
+
"boolean",
|
|
19
|
+
"null",
|
|
20
|
+
"undefined"
|
|
19
21
|
]
|
|
20
22
|
}
|
|
21
23
|
},
|
|
@@ -24,7 +26,9 @@
|
|
|
24
26
|
"description": "Maximum bound of the progress bar.",
|
|
25
27
|
"value": {
|
|
26
28
|
"type": [
|
|
27
|
-
"number"
|
|
29
|
+
"number",
|
|
30
|
+
"null",
|
|
31
|
+
"undefined"
|
|
28
32
|
]
|
|
29
33
|
}
|
|
30
34
|
},
|
|
@@ -33,7 +37,9 @@
|
|
|
33
37
|
"description": "Minimum bound of the progress bar.",
|
|
34
38
|
"value": {
|
|
35
39
|
"type": [
|
|
36
|
-
"number"
|
|
40
|
+
"number",
|
|
41
|
+
"null",
|
|
42
|
+
"undefined"
|
|
37
43
|
]
|
|
38
44
|
}
|
|
39
45
|
},
|
|
@@ -67,7 +73,9 @@
|
|
|
67
73
|
"description": "Indeterminate state of the progress bar.\nThis property takes precedence over other state properties (min, max, value).",
|
|
68
74
|
"value": {
|
|
69
75
|
"type": [
|
|
70
|
-
"boolean"
|
|
76
|
+
"boolean",
|
|
77
|
+
"null",
|
|
78
|
+
"undefined"
|
|
71
79
|
]
|
|
72
80
|
}
|
|
73
81
|
},
|
|
@@ -76,7 +84,9 @@
|
|
|
76
84
|
"description": "Maximum bound of the progress bar.",
|
|
77
85
|
"value": {
|
|
78
86
|
"type": [
|
|
79
|
-
"number"
|
|
87
|
+
"number",
|
|
88
|
+
"null",
|
|
89
|
+
"undefined"
|
|
80
90
|
]
|
|
81
91
|
}
|
|
82
92
|
},
|
|
@@ -85,7 +95,9 @@
|
|
|
85
95
|
"description": "Minimum bound of the progress bar.",
|
|
86
96
|
"value": {
|
|
87
97
|
"type": [
|
|
88
|
-
"number"
|
|
98
|
+
"number",
|
|
99
|
+
"null",
|
|
100
|
+
"undefined"
|
|
89
101
|
]
|
|
90
102
|
}
|
|
91
103
|
},
|