myshell-react-lib 0.2.14 → 0.2.16
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/assets/animationData.json +4759 -0
- package/dist/assets/animationDataDark.json +4759 -0
- package/dist/index.cjs +8969 -10087
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +8969 -10087
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1473,7 +1473,10 @@ declare const ImgEmptyState: (args: BaseStateProps) => react_jsx_runtime.JSX.Ele
|
|
|
1473
1473
|
declare const SearchEmptyState: (args: BaseStateProps) => react_jsx_runtime.JSX.Element;
|
|
1474
1474
|
declare const NoPageState: (args: BaseStateProps) => react_jsx_runtime.JSX.Element;
|
|
1475
1475
|
|
|
1476
|
-
declare function LogoLoading(
|
|
1476
|
+
declare function LogoLoading({ className, containerClassName, }: {
|
|
1477
|
+
className?: string;
|
|
1478
|
+
containerClassName?: string;
|
|
1479
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1477
1480
|
|
|
1478
1481
|
declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
|
|
1479
1482
|
interface ToastViewportProps extends React$1.ComponentPropsWithoutRef<typeof ToastPrimitives.Viewport> {
|
package/dist/index.d.ts
CHANGED
|
@@ -1473,7 +1473,10 @@ declare const ImgEmptyState: (args: BaseStateProps) => react_jsx_runtime.JSX.Ele
|
|
|
1473
1473
|
declare const SearchEmptyState: (args: BaseStateProps) => react_jsx_runtime.JSX.Element;
|
|
1474
1474
|
declare const NoPageState: (args: BaseStateProps) => react_jsx_runtime.JSX.Element;
|
|
1475
1475
|
|
|
1476
|
-
declare function LogoLoading(
|
|
1476
|
+
declare function LogoLoading({ className, containerClassName, }: {
|
|
1477
|
+
className?: string;
|
|
1478
|
+
containerClassName?: string;
|
|
1479
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1477
1480
|
|
|
1478
1481
|
declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
|
|
1479
1482
|
interface ToastViewportProps extends React$1.ComponentPropsWithoutRef<typeof ToastPrimitives.Viewport> {
|