@ssa-ui-kit/core 0.0.26-alpha → 0.0.27-alpha
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/components/WithVisibleLG/WithVisibleLG.d.ts +10 -0
- package/dist/components/WithVisibleLG/index.d.ts +1 -0
- package/dist/components/WithVisibleMD/WithVisibleMD.d.ts +6 -0
- package/dist/components/WithVisibleMD/index.d.ts +1 -0
- package/dist/components/WithVisibleSM/WithVisibleSM.d.ts +6 -0
- package/dist/components/WithVisibleSM/index.d.ts +1 -0
- package/dist/components/WithVisibleUpToLG/WithVisibleUpToLG.d.ts +6 -0
- package/dist/components/WithVisibleUpToLG/index.d.ts +1 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/components/WithVisibleLG/WithVisibleLG.spec.tsx +27 -0
- package/src/components/WithVisibleLG/WithVisibleLG.tsx +22 -0
- package/src/components/WithVisibleLG/index.ts +1 -0
- package/src/components/WithVisibleMD/WithVisibleMD.spec.tsx +27 -0
- package/src/components/WithVisibleMD/WithVisibleMD.tsx +23 -0
- package/src/components/WithVisibleMD/index.ts +1 -0
- package/src/components/WithVisibleSM/WithVisibleSM.spec.tsx +27 -0
- package/src/components/WithVisibleSM/WithVisibleSM.tsx +22 -0
- package/src/components/WithVisibleSM/index.ts +1 -0
- package/src/components/WithVisibleUpToLG/WithVisibleUpToLG.spec.tsx +27 -0
- package/src/components/WithVisibleUpToLG/WithVisibleUpToLG.tsx +24 -0
- package/src/components/WithVisibleUpToLG/index.ts +1 -0
- package/src/components/index.ts +4 -0
- package/tsbuildcache +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const VisibleLG: import("@emotion/styled").StyledComponent<{
|
|
3
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
+
as?: import("react").ElementType<any> | undefined;
|
|
5
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
|
+
export declare const WithVisibleLG: <T extends object>(Component: import("react").ComponentType<T>, rest?: Parameters<typeof VisibleLG>[0]) => {
|
|
7
|
+
(props: T): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WithVisibleLG';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SerializedStyles } from '@emotion/react';
|
|
3
|
+
export declare const WithVisibleMD: <T extends object>(Component: import("react").ComponentType<T>, styles?: SerializedStyles) => {
|
|
4
|
+
(props: T): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WithVisibleMD';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SerializedStyles } from '@emotion/react';
|
|
3
|
+
export declare const WithVisibleSM: <T extends object>(Component: import("react").ComponentType<T>, styles?: SerializedStyles) => {
|
|
4
|
+
(props: T): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WithVisibleSM';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SerializedStyles } from '@emotion/react';
|
|
3
|
+
export declare const WithVisibleUpToLG: <T extends object>(Component: import("react").ComponentType<T>, styles?: SerializedStyles) => {
|
|
4
|
+
(props: T): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WithVisibleUpToLG';
|
|
@@ -80,3 +80,7 @@ export { default as FormHelperText } from './FormHelperText';
|
|
|
80
80
|
export { default as Indicator } from './Indicator';
|
|
81
81
|
export * from './ButtonGroup';
|
|
82
82
|
export { default as Link } from './Link';
|
|
83
|
+
export * from './WithVisibleLG';
|
|
84
|
+
export * from './WithVisibleMD';
|
|
85
|
+
export * from './WithVisibleSM';
|
|
86
|
+
export * from './WithVisibleUpToLG';
|