@jamsrui/linear-progress 0.0.6 → 0.0.8

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.
@@ -8,8 +8,9 @@ import './styles.mjs';
8
8
  import 'tailwind-variants';
9
9
 
10
10
  declare const useLinearProgressConfig: () => LinearProgressConfig.Props;
11
- declare const LinearProgressConfig: (props: LinearProgressConfig.Props & {
11
+ declare const LinearProgressConfig: (props: Omit<Partial<LinearProgressConfig.Props>, "children"> & {
12
12
  merge?: boolean;
13
+ children: React.ReactNode;
13
14
  }) => react_jsx_runtime.JSX.Element;
14
15
  declare namespace LinearProgressConfig {
15
16
  interface Props extends LinearProgress.Props, GlobalConfigProps<LinearProgress.Props> {
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@jamsrui/linear-progress",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "peerDependencies": {
5
5
  "motion": ">=12",
6
6
  "react": ">=19"
7
7
  },
8
8
  "dependencies": {
9
- "@jamsrui/core": "^0.0.6",
10
- "@jamsrui/utils": "^0.0.6",
11
- "@jamsrui/hooks": "^0.0.6"
9
+ "@jamsrui/hooks": "^0.0.8",
10
+ "@jamsrui/core": "^0.0.7",
11
+ "@jamsrui/utils": "^0.0.8"
12
12
  },
13
13
  "exports": {
14
14
  ".": {