@vaadin/progress-bar 25.0.0-rc1 → 25.0.1
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 +7 -7
- package/src/vaadin-progress-bar.d.ts +20 -12
- package/src/vaadin-progress-bar.js +18 -10
- package/web-types.json +2 -2
- package/web-types.lit.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/progress-bar",
|
|
3
|
-
"version": "25.0.
|
|
3
|
+
"version": "25.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,19 +35,19 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/component-base": "25.0.
|
|
39
|
-
"@vaadin/vaadin-themable-mixin": "25.0.
|
|
38
|
+
"@vaadin/component-base": "~25.0.1",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "~25.0.1",
|
|
40
40
|
"lit": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@vaadin/chai-plugins": "25.0.
|
|
44
|
-
"@vaadin/test-runner-commands": "25.0.
|
|
43
|
+
"@vaadin/chai-plugins": "~25.0.1",
|
|
44
|
+
"@vaadin/test-runner-commands": "~25.0.1",
|
|
45
45
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
46
|
-
"@vaadin/vaadin-lumo-styles": "25.0.
|
|
46
|
+
"@vaadin/vaadin-lumo-styles": "~25.0.1"
|
|
47
47
|
},
|
|
48
48
|
"web-types": [
|
|
49
49
|
"web-types.json",
|
|
50
50
|
"web-types.lit.json"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "ced28c07a8abee586510349b312452c8a555fd10"
|
|
53
53
|
}
|
|
@@ -19,24 +19,32 @@ import { ProgressMixin } from './vaadin-progress-mixin.js';
|
|
|
19
19
|
*
|
|
20
20
|
* The following shadow DOM parts are available for styling:
|
|
21
21
|
*
|
|
22
|
-
* Part name
|
|
23
|
-
*
|
|
24
|
-
* `bar`
|
|
25
|
-
* `value`
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
* `--vaadin-progress-
|
|
22
|
+
* Part name | Description
|
|
23
|
+
* -----------|----------------
|
|
24
|
+
* `bar` | Progress-bar's background
|
|
25
|
+
* `value` | Progress-bar's foreground
|
|
26
|
+
*
|
|
27
|
+
* The following custom CSS properties are available for styling:
|
|
28
|
+
*
|
|
29
|
+
* Custom CSS property |
|
|
30
|
+
* :--------------------------------------------|
|
|
31
|
+
* | `--vaadin-progress-bar-animation-duration` |
|
|
32
|
+
* | `--vaadin-progress-bar-background` |
|
|
33
|
+
* | `--vaadin-progress-bar-border-color` |
|
|
34
|
+
* | `--vaadin-progress-bar-border-radius` |
|
|
35
|
+
* | `--vaadin-progress-bar-border-width` |
|
|
36
|
+
* | `--vaadin-progress-bar-height` |
|
|
37
|
+
* | `--vaadin-progress-bar-padding` |
|
|
38
|
+
* | `--vaadin-progress-bar-value-background` |
|
|
39
|
+
* | `--vaadin-progress-value` |
|
|
34
40
|
*
|
|
35
41
|
* The following state attributes are available for styling:
|
|
36
42
|
*
|
|
37
43
|
* Attribute | Description
|
|
38
44
|
* ----------------|-------------------------------------
|
|
39
45
|
* `indeterminate` | Set to an indeterminate progress bar
|
|
46
|
+
*
|
|
47
|
+
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
40
48
|
*/
|
|
41
49
|
declare class ProgressBar extends ProgressMixin(ThemableMixin(ElementMixin(HTMLElement))) {}
|
|
42
50
|
|
|
@@ -24,18 +24,24 @@ import { ProgressMixin } from './vaadin-progress-mixin.js';
|
|
|
24
24
|
*
|
|
25
25
|
* The following shadow DOM parts are available for styling:
|
|
26
26
|
*
|
|
27
|
-
* Part name
|
|
28
|
-
*
|
|
29
|
-
* `bar`
|
|
30
|
-
* `value`
|
|
27
|
+
* Part name | Description
|
|
28
|
+
* -----------|----------------
|
|
29
|
+
* `bar` | Progress-bar's background
|
|
30
|
+
* `value` | Progress-bar's foreground
|
|
31
31
|
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
* The following custom properties are available:
|
|
32
|
+
* The following custom CSS properties are available for styling:
|
|
35
33
|
*
|
|
36
|
-
* Custom property
|
|
37
|
-
*
|
|
38
|
-
* `--vaadin-progress-
|
|
34
|
+
* Custom CSS property |
|
|
35
|
+
* :--------------------------------------------|
|
|
36
|
+
* | `--vaadin-progress-bar-animation-duration` |
|
|
37
|
+
* | `--vaadin-progress-bar-background` |
|
|
38
|
+
* | `--vaadin-progress-bar-border-color` |
|
|
39
|
+
* | `--vaadin-progress-bar-border-radius` |
|
|
40
|
+
* | `--vaadin-progress-bar-border-width` |
|
|
41
|
+
* | `--vaadin-progress-bar-height` |
|
|
42
|
+
* | `--vaadin-progress-bar-padding` |
|
|
43
|
+
* | `--vaadin-progress-bar-value-background` |
|
|
44
|
+
* | `--vaadin-progress-value` |
|
|
39
45
|
*
|
|
40
46
|
* The following state attributes are available for styling:
|
|
41
47
|
*
|
|
@@ -43,6 +49,8 @@ import { ProgressMixin } from './vaadin-progress-mixin.js';
|
|
|
43
49
|
* ----------------|-------------------------------------
|
|
44
50
|
* `indeterminate` | Set to an indeterminate progress bar
|
|
45
51
|
*
|
|
52
|
+
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
53
|
+
*
|
|
46
54
|
* @customElement
|
|
47
55
|
* @extends HTMLElement
|
|
48
56
|
* @mixes ProgressMixin
|
package/web-types.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/progress-bar",
|
|
4
|
-
"version": "25.0.
|
|
4
|
+
"version": "25.0.1",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "vaadin-progress-bar",
|
|
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
|
|
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
14
|
"name": "value",
|
package/web-types.lit.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.0.
|
|
4
|
+
"version": "25.0.1",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"elements": [
|
|
17
17
|
{
|
|
18
18
|
"name": "vaadin-progress-bar",
|
|
19
|
-
"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
|
|
19
|
+
"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.",
|
|
20
20
|
"extension": true,
|
|
21
21
|
"attributes": [
|
|
22
22
|
{
|