@inntechcorp/it-design 2.0.18 → 2.0.20
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/icons/NoData.d.ts +7 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/index.cjs.js +59 -59
- package/dist/index.d.ts +10 -3
- package/dist/index.esm.js +49 -49
- package/dist/status/index.d.ts +1 -1
- package/dist/stories/NoDataIcon.d.ts +2 -0
- package/dist/stories/Table.stories.d.ts +2 -0
- package/dist/table/styled.d.ts +2 -1
- package/dist/types/TableProps.d.ts +1 -1
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +1 -1
package/dist/status/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { StatusProps } from '../index';
|
|
2
|
-
export default function Status({ variant, children, className, }: StatusProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export default function Status({ variant, size, children, className, }: StatusProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,6 +13,8 @@ declare const meta: {
|
|
|
13
13
|
export default meta;
|
|
14
14
|
type Story = StoryObj<typeof meta>;
|
|
15
15
|
export declare const Default: Story;
|
|
16
|
+
export declare const NoData: Story;
|
|
17
|
+
export declare const Empty: Story;
|
|
16
18
|
export declare const Bordered: Story;
|
|
17
19
|
export declare const Headless: Story;
|
|
18
20
|
export declare const Dashed: Story;
|
package/dist/table/styled.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ declare const Wrapper: import("styled-components/dist/types").IStyledComponentBa
|
|
|
4
4
|
$size: ITDSize;
|
|
5
5
|
$noGaps: boolean;
|
|
6
6
|
}>> & string;
|
|
7
|
-
|
|
7
|
+
declare const EmptyBody: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
8
|
+
export { Wrapper, EmptyBody };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ITDSizeSlug } from "../index";
|
|
2
|
-
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "
|
|
2
|
+
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "large" | "small" | "x-small" | "medium" | "default" | "x-large" | "df";
|