@yamada-ui/progress 0.1.4 → 0.2.0

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.
@@ -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
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-ENCTHIX3.mjs";
5
5
  import {
6
6
  Progress
7
- } from "./chunk-RBJMSLYD.mjs";
7
+ } from "./chunk-YVOKDDDL.mjs";
8
8
  export {
9
9
  CircleProgress,
10
10
  CircleProgressLabel,
@@ -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
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  Progress
3
- } from "./chunk-RBJMSLYD.mjs";
3
+ } from "./chunk-YVOKDDDL.mjs";
4
4
  export {
5
5
  Progress
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamada-ui/progress",
3
- "version": "0.1.4",
3
+ "version": "0.2.0",
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.4",
39
- "@yamada-ui/utils": "0.1.0",
40
- "@yamada-ui/use-value": "0.1.4",
41
- "@yamada-ui/use-token": "0.1.4",
42
- "@yamada-ui/use-animation": "0.1.4"
38
+ "@yamada-ui/core": "0.1.5",
39
+ "@yamada-ui/utils": "0.1.1",
40
+ "@yamada-ui/use-value": "0.1.5",
41
+ "@yamada-ui/use-token": "0.1.5",
42
+ "@yamada-ui/use-animation": "0.1.5"
43
43
  },
44
44
  "devDependencies": {
45
45
  "react": "^18.0.0",