@yamada-ui/progress 0.1.5 → 0.2.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/dist/{chunk-RBJMSLYD.mjs → chunk-YVOKDDDL.mjs} +1 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -1
- package/dist/progress.d.ts +2 -1
- package/dist/progress.js +1 -0
- package/dist/progress.mjs +1 -1
- package/package.json +5 -5
|
@@ -27,6 +27,7 @@ var Progress = forwardRef((props, ref) => {
|
|
|
27
27
|
speed,
|
|
28
28
|
borderRadius: _borderRadius,
|
|
29
29
|
rounded,
|
|
30
|
+
filledTrackColor,
|
|
30
31
|
...rest
|
|
31
32
|
} = omitThemeProps(mergedProps);
|
|
32
33
|
const borderRadius = (_a = _borderRadius != null ? _borderRadius : rounded) != null ? _a : styles.track.borderRadius;
|
package/dist/index.js
CHANGED
|
@@ -50,6 +50,7 @@ var Progress = (0, import_core.forwardRef)((props, ref) => {
|
|
|
50
50
|
speed,
|
|
51
51
|
borderRadius: _borderRadius,
|
|
52
52
|
rounded,
|
|
53
|
+
filledTrackColor,
|
|
53
54
|
...rest
|
|
54
55
|
} = (0, import_core.omitThemeProps)(mergedProps);
|
|
55
56
|
const borderRadius = (_a = _borderRadius != null ? _borderRadius : rounded) != null ? _a : styles.track.borderRadius;
|
package/dist/index.mjs
CHANGED
package/dist/progress.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _yamada_ui_core from '@yamada-ui/core';
|
|
2
|
-
import { HTMLUIProps, ThemeProps } from '@yamada-ui/core';
|
|
2
|
+
import { HTMLUIProps, ThemeProps, CSSUIProps } from '@yamada-ui/core';
|
|
3
3
|
|
|
4
4
|
type ProgressOptions = {
|
|
5
5
|
value?: number;
|
|
@@ -9,6 +9,7 @@ type ProgressOptions = {
|
|
|
9
9
|
isStripeAnimation?: boolean;
|
|
10
10
|
isAnimation?: boolean;
|
|
11
11
|
speed?: string | number;
|
|
12
|
+
filledTrackColor?: CSSUIProps<'unResponsive'>['color'];
|
|
12
13
|
};
|
|
13
14
|
type ProgressProps = HTMLUIProps<'div'> & ThemeProps<'Progress'> & ProgressOptions;
|
|
14
15
|
declare const Progress: _yamada_ui_core.Component<"div", ProgressProps>;
|
package/dist/progress.js
CHANGED
|
@@ -46,6 +46,7 @@ var Progress = (0, import_core.forwardRef)((props, ref) => {
|
|
|
46
46
|
speed,
|
|
47
47
|
borderRadius: _borderRadius,
|
|
48
48
|
rounded,
|
|
49
|
+
filledTrackColor,
|
|
49
50
|
...rest
|
|
50
51
|
} = (0, import_core.omitThemeProps)(mergedProps);
|
|
51
52
|
const borderRadius = (_a = _borderRadius != null ? _borderRadius : rounded) != null ? _a : styles.track.borderRadius;
|
package/dist/progress.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/progress",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Yamada UI progress components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@yamada-ui/core": "0.1.
|
|
38
|
+
"@yamada-ui/core": "0.1.6",
|
|
39
39
|
"@yamada-ui/utils": "0.1.1",
|
|
40
|
-
"@yamada-ui/use-value": "0.1.
|
|
41
|
-
"@yamada-ui/use-token": "0.1.
|
|
42
|
-
"@yamada-ui/use-animation": "0.1.
|
|
40
|
+
"@yamada-ui/use-value": "0.1.6",
|
|
41
|
+
"@yamada-ui/use-token": "0.1.6",
|
|
42
|
+
"@yamada-ui/use-animation": "0.1.6"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"react": "^18.0.0",
|