@streamscloud/kit 0.0.1-1771078892208 → 0.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.
|
@@ -2,11 +2,6 @@
|
|
|
2
2
|
@component
|
|
3
3
|
A horizontal progress bar that fills from left to right based on a normalized value.
|
|
4
4
|
|
|
5
|
-
### Props
|
|
6
|
-
| Prop | Type | Description |
|
|
7
|
-
|---|---|---|
|
|
8
|
-
| `value` | `number` | Completion value from 0 to 1 |
|
|
9
|
-
|
|
10
5
|
### CSS Custom Properties
|
|
11
6
|
| Property | Description | Default |
|
|
12
7
|
|---|---|---|
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
type Props = {
|
|
2
|
+
/** Completion value from 0 to 1 */
|
|
2
3
|
value: number;
|
|
3
4
|
};
|
|
4
5
|
/**
|
|
5
6
|
* A horizontal progress bar that fills from left to right based on a normalized value.
|
|
6
7
|
*
|
|
7
|
-
* ### Props
|
|
8
|
-
* | Prop | Type | Description |
|
|
9
|
-
* |---|---|---|
|
|
10
|
-
* | `value` | `number` | Completion value from 0 to 1 |
|
|
11
|
-
*
|
|
12
8
|
* ### CSS Custom Properties
|
|
13
9
|
* | Property | Description | Default |
|
|
14
10
|
* |---|---|---|
|