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