@reeverdev/ui 0.2.202 → 0.2.203
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/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2338,9 +2338,8 @@ interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "c
|
|
|
2338
2338
|
declare const NProgress: React$1.ForwardRefExoticComponent<NProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2339
2339
|
|
|
2340
2340
|
declare const loadingVariants: (props?: ({
|
|
2341
|
-
variant?: "spinner" | "pulse" | "dots" |
|
|
2341
|
+
variant?: "spinner" | "pulse" | "dots" | null | undefined;
|
|
2342
2342
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2343
|
-
fullScreen?: boolean | null | undefined;
|
|
2344
2343
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2345
2344
|
interface LoadingProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof loadingVariants> {
|
|
2346
2345
|
text?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2338,9 +2338,8 @@ interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "c
|
|
|
2338
2338
|
declare const NProgress: React$1.ForwardRefExoticComponent<NProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2339
2339
|
|
|
2340
2340
|
declare const loadingVariants: (props?: ({
|
|
2341
|
-
variant?: "spinner" | "pulse" | "dots" |
|
|
2341
|
+
variant?: "spinner" | "pulse" | "dots" | null | undefined;
|
|
2342
2342
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2343
|
-
fullScreen?: boolean | null | undefined;
|
|
2344
2343
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2345
2344
|
interface LoadingProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof loadingVariants> {
|
|
2346
2345
|
text?: string;
|