@umbraco-ui/uui-progress-bar 1.5.0-rc.0 → 1.5.0-rc.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/README.md +1 -1
- package/custom-elements.json +5 -5
- package/lib/uui-progress-bar.element.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Umbraco style progress-bar component.
|
|
|
6
6
|
|
|
7
7
|
### See it in action
|
|
8
8
|
|
|
9
|
-
Preview the component on [Storybook](https://uui.umbraco.com/?path=/
|
|
9
|
+
Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-progress-bar--docs)
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
package/custom-elements.json
CHANGED
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
}
|
|
14
14
|
],
|
|
15
15
|
"properties": [
|
|
16
|
-
{
|
|
17
|
-
"name": "styles",
|
|
18
|
-
"type": "CSSResult[]",
|
|
19
|
-
"default": "[null]"
|
|
20
|
-
},
|
|
21
16
|
{
|
|
22
17
|
"name": "progress",
|
|
23
18
|
"attribute": "progress",
|
|
24
19
|
"description": "Set this to a number between 0 and 100 to reflect the progress of some operation.",
|
|
25
20
|
"type": "number",
|
|
26
21
|
"default": "\"0\""
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "styles",
|
|
25
|
+
"type": "CSSResult[]",
|
|
26
|
+
"default": "[null]"
|
|
27
27
|
}
|
|
28
28
|
]
|
|
29
29
|
}
|
|
@@ -3,7 +3,6 @@ import { LitElement } from 'lit';
|
|
|
3
3
|
* @element uui-progress-bar
|
|
4
4
|
*/
|
|
5
5
|
export declare class UUIProgressBarElement extends LitElement {
|
|
6
|
-
static styles: import("lit").CSSResult[];
|
|
7
6
|
private _progress;
|
|
8
7
|
/**
|
|
9
8
|
* Set this to a number between 0 and 100 to reflect the progress of some operation.
|
|
@@ -15,6 +14,7 @@ export declare class UUIProgressBarElement extends LitElement {
|
|
|
15
14
|
set progress(newVal: number);
|
|
16
15
|
private _getProgressStyle;
|
|
17
16
|
render(): import("lit-html").TemplateResult<1>;
|
|
17
|
+
static styles: import("lit").CSSResult[];
|
|
18
18
|
}
|
|
19
19
|
declare global {
|
|
20
20
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-progress-bar",
|
|
3
|
-
"version": "1.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.5.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.1"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-progress-bar",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "2ff35a098ed8a3feb8ebed1bf43b4fbb75950d65"
|
|
45
45
|
}
|