@inntechcorp/it-design 2.0.10 → 2.0.12

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.
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Card: FC<any>;
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import type { StoryObj } from "@storybook/react";
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").FC<any>;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ argTypes: {};
11
+ args: {
12
+ onClick: import("@vitest/spy").Mock<any, any>;
13
+ };
14
+ };
15
+ export default meta;
16
+ type Story = StoryObj<typeof meta>;
17
+ export declare const Default: Story;
18
+ export declare const Bold: Story;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Tabs: FC<any>;
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import type { StoryObj } from "@storybook/react";
3
+ declare const meta: {
4
+ title: string;
5
+ component: import("react").FC<any>;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ argTypes: {};
11
+ args: {
12
+ onClick: import("@vitest/spy").Mock<any, any>;
13
+ };
14
+ };
15
+ export default meta;
16
+ type Story = StoryObj<typeof meta>;
17
+ export declare const Default: Story;
18
+ export declare const Bold: Story;
@@ -10,6 +10,7 @@ export type CardProps = {
10
10
  activeTabKey?: string;
11
11
  onTabChange?: (key: string) => void;
12
12
  updating?: boolean;
13
+ minWidth?: number;
13
14
  minHeight?: number;
14
15
  contentPadding?: string;
15
16
  children: ChildrenProps;
@@ -1,2 +1,2 @@
1
1
  /// <reference types="react" />
2
- export type ChildrenProps = string | JSX.Element | JSX.Element[] | null;
2
+ export type ChildrenProps = string | JSX.Element | JSX.Element[] | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inntechcorp/it-design",
3
- "version": "2.0.10",
3
+ "version": "2.0.12",
4
4
  "description": "All in one Design library for desktop applications.",
5
5
  "author": "Ali",
6
6
  "license": "ISC",