ownui-system 0.0.2 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ownui-system",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
package/dist/App.d.ts DELETED
@@ -1,2 +0,0 @@
1
- declare function App(): import("react/jsx-runtime").JSX.Element;
2
- export default App;
@@ -1,23 +0,0 @@
1
- import { Accordion } from '.';
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Accordion;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- type: {
11
- if: {
12
- arg: string;
13
- exists: true;
14
- };
15
- };
16
- };
17
- };
18
- export default meta;
19
- type Story = StoryObj<typeof meta>;
20
- export declare const Default: Story;
21
- export declare const Bordered: Story;
22
- export declare const Splitted: Story;
23
- export declare const Multi: Story;
@@ -1,14 +0,0 @@
1
- import Badge from '.';
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Badge;
6
- parameters: {
7
- layout: string;
8
- };
9
- tags: string[];
10
- };
11
- export default meta;
12
- type Story = StoryObj<typeof meta>;
13
- export declare const Default: Story;
14
- export declare const WithContent: Story;
@@ -1,43 +0,0 @@
1
- /// <reference types="react" />
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: import("react").ForwardRefExoticComponent<Omit<import('.').ButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- type: {
11
- if: {
12
- arg: string;
13
- exists: true;
14
- };
15
- };
16
- children: {
17
- control: {
18
- type: string;
19
- };
20
- };
21
- disabled: {
22
- control: {
23
- type: string;
24
- };
25
- };
26
- startContent: {
27
- if: {
28
- arg: string;
29
- exists: true;
30
- };
31
- };
32
- endContent: {
33
- if: {
34
- arg: string;
35
- exists: true;
36
- };
37
- };
38
- };
39
- tags: string[];
40
- };
41
- export default meta;
42
- type Story = StoryObj<typeof meta>;
43
- export declare const Default: Story;
@@ -1,30 +0,0 @@
1
- /// <reference types="react" />
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: import("react").ForwardRefExoticComponent<import('.').CheckboxProps & import("react").RefAttributes<HTMLInputElement>>;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- isChecked: {
11
- if: {
12
- arg: string;
13
- exists: true;
14
- };
15
- };
16
- radius: {
17
- control: string;
18
- options: string[];
19
- };
20
- size: {
21
- control: string;
22
- options: string[];
23
- };
24
- };
25
- };
26
- export default meta;
27
- type Story = StoryObj<typeof meta>;
28
- export declare const Default: Story;
29
- export declare const Controlled: Story;
30
- export declare const Disabled: Story;
@@ -1,19 +0,0 @@
1
- import Divider from '.';
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Divider;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- direction: {
11
- control: string;
12
- options: string[];
13
- };
14
- };
15
- tags: string[];
16
- };
17
- export default meta;
18
- type Story = StoryObj<typeof meta>;
19
- export declare const Default: Story;
@@ -1,36 +0,0 @@
1
- import type { StoryObj } from "@storybook/react";
2
- import Drawer from "./drawer";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Drawer;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- children: {
11
- if: {
12
- arg: string;
13
- exists: false;
14
- };
15
- };
16
- isOpen: {
17
- if: {
18
- arg: string;
19
- exists: false;
20
- };
21
- };
22
- motionVariant: {
23
- if: {
24
- arg: string;
25
- exists: true;
26
- };
27
- };
28
- };
29
- };
30
- export default meta;
31
- type Story = StoryObj<typeof meta>;
32
- export declare const Default: Story;
33
- export declare const FromTop: Story;
34
- export declare const FromBottom: Story;
35
- export declare const FromLeft: Story;
36
- export declare const FromRight: Story;
@@ -1,12 +0,0 @@
1
- import type { StoryObj } from "@storybook/react";
2
- import Dropdown from "./dropdown";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Dropdown;
6
- parameters: {
7
- layout: string;
8
- };
9
- };
10
- export default meta;
11
- type Story = StoryObj<typeof meta>;
12
- export declare const Default: Story;
@@ -1,37 +0,0 @@
1
- import type { StoryObj } from "@storybook/react";
2
- import Input from '.';
3
- declare const meta: {
4
- title: string;
5
- component: typeof Input;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- inValid: {
11
- control: {
12
- type: string;
13
- };
14
- };
15
- disabled: {
16
- control: {
17
- type: string;
18
- };
19
- };
20
- left: {
21
- if: {
22
- arg: string;
23
- exists: true;
24
- };
25
- };
26
- right: {
27
- if: {
28
- arg: string;
29
- exists: true;
30
- };
31
- };
32
- };
33
- tags: string[];
34
- };
35
- export default meta;
36
- type Story = StoryObj<typeof meta>;
37
- export declare const Default: Story;
@@ -1,12 +0,0 @@
1
- import { Modal } from '.';
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Modal;
6
- parameters: {
7
- layout: string;
8
- };
9
- };
10
- export default meta;
11
- type Story = StoryObj<typeof meta>;
12
- export declare const Default: Story;
@@ -1,32 +0,0 @@
1
- import { Popover } from '.';
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Popover;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- children: {
11
- if: {
12
- arg: string;
13
- exists: false;
14
- };
15
- };
16
- isOpen: {
17
- if: {
18
- arg: string;
19
- exists: false;
20
- };
21
- };
22
- motionVariant: {
23
- if: {
24
- arg: string;
25
- exists: true;
26
- };
27
- };
28
- };
29
- };
30
- export default meta;
31
- type Story = StoryObj<typeof meta>;
32
- export declare const Default: Story;
@@ -1,16 +0,0 @@
1
- import type { StoryObj } from "@storybook/react";
2
- import Tab from ".";
3
- declare const meta: {
4
- title: string;
5
- component: typeof Tab;
6
- parameters: {
7
- layout: string;
8
- };
9
- tags: string[];
10
- };
11
- export default meta;
12
- type Story = StoryObj<typeof meta>;
13
- export declare const Default: Story;
14
- export declare const Box: Story;
15
- export declare const TextTabGroup: Story;
16
- export declare const BoxTabGroup: Story;
@@ -1,33 +0,0 @@
1
- /// <reference types="react" />
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: import("react").ForwardRefExoticComponent<Omit<import('.').TextAreaProps, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>>;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- size: {
11
- control: string;
12
- options: string[];
13
- };
14
- hasError: {
15
- control: {
16
- type: string;
17
- };
18
- };
19
- disabled: {
20
- control: {
21
- type: string;
22
- };
23
- };
24
- focusColor: {
25
- controls: {
26
- type: string;
27
- };
28
- };
29
- };
30
- };
31
- export default meta;
32
- type Story = StoryObj<typeof meta>;
33
- export declare const Default: Story;
@@ -1,30 +0,0 @@
1
- /// <reference types="react" />
2
- import type { StoryObj } from "@storybook/react";
3
- declare const meta: {
4
- title: string;
5
- component: import("react").ForwardRefExoticComponent<Omit<import('.').TextFieldProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
6
- parameters: {
7
- layout: string;
8
- };
9
- argTypes: {
10
- hasError: {
11
- control: {
12
- type: string;
13
- };
14
- };
15
- disabled: {
16
- control: {
17
- type: string;
18
- };
19
- };
20
- focusColor: {
21
- controls: {
22
- type: string;
23
- };
24
- };
25
- };
26
- tags: string[];
27
- };
28
- export default meta;
29
- type Story = StoryObj<typeof meta>;
30
- export declare const Default: Story;
package/dist/main.d.ts DELETED
File without changes