@binamik/components 0.1.7 → 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.
- package/dist/Assets/animations/Spinner/SpinnerStyles.d.ts +3 -17
- package/dist/Buttons/DefaultButton/Button.styles.d.ts +1 -10
- package/dist/DatePicker/DatePicker.constants.d.ts +5 -0
- package/dist/DatePicker/DatePicker.d.ts +2 -0
- package/dist/DatePicker/DatePicker.types.d.ts +8 -0
- package/dist/DatePicker/index.d.ts +1 -0
- package/dist/Styles/binamikCssReset.d.ts +1 -1
- package/dist/Styles/binamikGlobalStyles.d.ts +1 -1
- package/dist/Styles/binamikTheme.d.ts +1 -1
- package/dist/Table/MobileSortMenu.d.ts +0 -1
- package/dist/Table/styles.d.ts +15 -2348
- package/dist/binamik-components.es.js +10280 -1034
- package/dist/binamik-components.umd.js +97 -80
- package/dist/index.d.ts +1 -0
- package/dist/shadcn/components/ui/button.d.ts +8 -0
- package/dist/shadcn/components/ui/calendar.d.ts +7 -0
- package/dist/shadcn/components/ui/popover.d.ts +7 -0
- package/dist/shadcn/lib/utils.d.ts +2 -0
- package/package.json +53 -37
|
@@ -1,17 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
export declare const SpinnerContainer: import("@emotion/styled").StyledComponent<{
|
|
6
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
7
|
-
as?: import("react").ElementType<any> | undefined;
|
|
8
|
-
} & SpinnerStylesProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
9
|
-
export declare const SpinnerComponent: import("@emotion/styled").StyledComponent<{
|
|
10
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
11
|
-
as?: import("react").ElementType<any> | undefined;
|
|
12
|
-
}, import("react").SVGProps<SVGSVGElement>, {}>;
|
|
13
|
-
export declare const Circle: import("@emotion/styled").StyledComponent<{
|
|
14
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
15
|
-
as?: import("react").ElementType<any> | undefined;
|
|
16
|
-
}, import("react").SVGProps<SVGCircleElement>, {}>;
|
|
17
|
-
export {};
|
|
1
|
+
export declare const SpinnerContainer: any;
|
|
2
|
+
export declare const SpinnerComponent: any;
|
|
3
|
+
export declare const Circle: any;
|
|
@@ -1,10 +1 @@
|
|
|
1
|
-
|
|
2
|
-
interface ButtonProps {
|
|
3
|
-
isLoading: boolean;
|
|
4
|
-
hasLoadingText: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare const DefaultButtonContainer: import("@emotion/styled").StyledComponent<{
|
|
7
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
8
|
-
as?: import("react").ElementType<any> | undefined;
|
|
9
|
-
} & ButtonProps, import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
|
|
10
|
-
export {};
|
|
1
|
+
export declare const DefaultButtonContainer: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './DatePicker';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const binamikCssReset:
|
|
1
|
+
export declare const binamikCssReset: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const binamikGlobalStyles:
|
|
1
|
+
export declare const binamikGlobalStyles: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const binamikTheme:
|
|
1
|
+
export declare const binamikTheme: any;
|