@vaadin/progress-bar 25.1.0-alpha8 → 25.1.0-alpha9

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": "25.1.0-alpha8",
3
+ "version": "25.1.0-alpha9",
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-alpha8",
40
- "@vaadin/vaadin-themable-mixin": "25.1.0-alpha8",
39
+ "@vaadin/component-base": "25.1.0-alpha9",
40
+ "@vaadin/vaadin-themable-mixin": "25.1.0-alpha9",
41
41
  "lit": "^3.0.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@vaadin/aura": "25.1.0-alpha8",
45
- "@vaadin/chai-plugins": "25.1.0-alpha8",
46
- "@vaadin/test-runner-commands": "25.1.0-alpha8",
44
+ "@vaadin/aura": "25.1.0-alpha9",
45
+ "@vaadin/chai-plugins": "25.1.0-alpha9",
46
+ "@vaadin/test-runner-commands": "25.1.0-alpha9",
47
47
  "@vaadin/testing-helpers": "^2.0.0",
48
- "@vaadin/vaadin-lumo-styles": "25.1.0-alpha8"
48
+ "@vaadin/vaadin-lumo-styles": "25.1.0-alpha9"
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": "810590c9c7682a9326c9352df795b5ea4891a71f"
55
+ "gitHead": "ef432311376ba3dac4233cb23d393a49a425e0a4"
56
56
  }
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-alpha8",
4
+ "version": "25.1.0-alpha9",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -11,19 +11,17 @@
11
11
  "description": "`<vaadin-progress-bar>` is a Web Component for progress bars.\n\n```html\n<vaadin-progress-bar min=\"0\" max=\"1\" value=\"0.5\">\n</vaadin-progress-bar>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n-----------|----------------\n`bar` | Progress-bar's background\n`value` | Progress-bar's foreground\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property |\n:--------------------------------------------|\n| `--vaadin-progress-bar-animation-duration` |\n| `--vaadin-progress-bar-background` |\n| `--vaadin-progress-bar-border-color` |\n| `--vaadin-progress-bar-border-radius` |\n| `--vaadin-progress-bar-border-width` |\n| `--vaadin-progress-bar-height` |\n| `--vaadin-progress-bar-padding` |\n| `--vaadin-progress-bar-value-background` |\n| `--vaadin-progress-value` |\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n----------------|-------------------------------------\n`indeterminate` | Set to an indeterminate progress bar\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
12
12
  "attributes": [
13
13
  {
14
- "name": "value",
15
- "description": "Current progress value.",
14
+ "name": "indeterminate",
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
- "number",
19
- "null",
20
- "undefined"
18
+ "boolean"
21
19
  ]
22
20
  }
23
21
  },
24
22
  {
25
- "name": "min",
26
- "description": "Minimum bound of the progress bar.",
23
+ "name": "max",
24
+ "description": "Maximum bound of the progress bar.",
27
25
  "value": {
28
26
  "type": [
29
27
  "number"
@@ -31,8 +29,8 @@
31
29
  }
32
30
  },
33
31
  {
34
- "name": "max",
35
- "description": "Maximum bound of the progress bar.",
32
+ "name": "min",
33
+ "description": "Minimum bound of the progress bar.",
36
34
  "value": {
37
35
  "type": [
38
36
  "number"
@@ -40,20 +38,22 @@
40
38
  }
41
39
  },
42
40
  {
43
- "name": "indeterminate",
44
- "description": "Indeterminate state of the progress bar.\nThis property takes precedence over other state properties (min, max, value).",
41
+ "name": "theme",
42
+ "description": "The theme variants to apply to the component.",
45
43
  "value": {
46
44
  "type": [
47
- "boolean"
45
+ "string",
46
+ "null",
47
+ "undefined"
48
48
  ]
49
49
  }
50
50
  },
51
51
  {
52
- "name": "theme",
53
- "description": "The theme variants to apply to the component.",
52
+ "name": "value",
53
+ "description": "Current progress value.",
54
54
  "value": {
55
55
  "type": [
56
- "string",
56
+ "number",
57
57
  "null",
58
58
  "undefined"
59
59
  ]
@@ -63,19 +63,17 @@
63
63
  "js": {
64
64
  "properties": [
65
65
  {
66
- "name": "value",
67
- "description": "Current progress value.",
66
+ "name": "indeterminate",
67
+ "description": "Indeterminate state of the progress bar.\nThis property takes precedence over other state properties (min, max, value).",
68
68
  "value": {
69
69
  "type": [
70
- "number",
71
- "null",
72
- "undefined"
70
+ "boolean"
73
71
  ]
74
72
  }
75
73
  },
76
74
  {
77
- "name": "min",
78
- "description": "Minimum bound of the progress bar.",
75
+ "name": "max",
76
+ "description": "Maximum bound of the progress bar.",
79
77
  "value": {
80
78
  "type": [
81
79
  "number"
@@ -83,8 +81,8 @@
83
81
  }
84
82
  },
85
83
  {
86
- "name": "max",
87
- "description": "Maximum bound of the progress bar.",
84
+ "name": "min",
85
+ "description": "Minimum bound of the progress bar.",
88
86
  "value": {
89
87
  "type": [
90
88
  "number"
@@ -92,11 +90,13 @@
92
90
  }
93
91
  },
94
92
  {
95
- "name": "indeterminate",
96
- "description": "Indeterminate state of the progress bar.\nThis property takes precedence over other state properties (min, max, value).",
93
+ "name": "value",
94
+ "description": "Current progress value.",
97
95
  "value": {
98
96
  "type": [
99
- "boolean"
97
+ "number",
98
+ "null",
99
+ "undefined"
100
100
  ]
101
101
  }
102
102
  }
@@ -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-alpha8",
4
+ "version": "25.1.0-alpha9",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -27,8 +27,8 @@
27
27
  }
28
28
  },
29
29
  {
30
- "name": ".value",
31
- "description": "Current progress value.",
30
+ "name": ".max",
31
+ "description": "Maximum bound of the progress bar.",
32
32
  "value": {
33
33
  "kind": "expression"
34
34
  }
@@ -41,8 +41,8 @@
41
41
  }
42
42
  },
43
43
  {
44
- "name": ".max",
45
- "description": "Maximum bound of the progress bar.",
44
+ "name": ".value",
45
+ "description": "Current progress value.",
46
46
  "value": {
47
47
  "kind": "expression"
48
48
  }