jplan-pack 0.5.43 → 0.5.44
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/jplan-pack.cjs.js +41 -40
- package/dist/jplan-pack.es.js +18139 -18138
- package/package.json +1 -1
- package/dist/types/stories/Button.d.ts +0 -42
- package/dist/types/stories/Button.stories.d.ts +0 -41
- package/dist/types/stories/Header.d.ts +0 -18
- package/dist/types/stories/Header.stories.d.ts +0 -59
- package/dist/types/stories/Page.d.ts +0 -2
- package/dist/types/stories/Page.stories.d.ts +0 -19
- package/dist/types/stories/SpinnerLoader.stories.d.ts +0 -7
package/package.json
CHANGED
@@ -1,42 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{
|
2
|
-
/**
|
3
|
-
* The label of the button
|
4
|
-
*/
|
5
|
-
label: string;
|
6
|
-
/**
|
7
|
-
* primary or secondary button
|
8
|
-
*/
|
9
|
-
primary?: boolean;
|
10
|
-
/**
|
11
|
-
* size of the button
|
12
|
-
*/
|
13
|
-
size?: "small" | "medium" | "large";
|
14
|
-
/**
|
15
|
-
* background color of the button
|
16
|
-
*/
|
17
|
-
backgroundColor?: string;
|
18
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
19
|
-
click: (id: number) => any;
|
20
|
-
}, string, import('vue').PublicProps, Readonly<{
|
21
|
-
/**
|
22
|
-
* The label of the button
|
23
|
-
*/
|
24
|
-
label: string;
|
25
|
-
/**
|
26
|
-
* primary or secondary button
|
27
|
-
*/
|
28
|
-
primary?: boolean;
|
29
|
-
/**
|
30
|
-
* size of the button
|
31
|
-
*/
|
32
|
-
size?: "small" | "medium" | "large";
|
33
|
-
/**
|
34
|
-
* background color of the button
|
35
|
-
*/
|
36
|
-
backgroundColor?: string;
|
37
|
-
}> & Readonly<{
|
38
|
-
onClick?: ((id: number) => any) | undefined;
|
39
|
-
}>, {
|
40
|
-
primary: boolean;
|
41
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
42
|
-
export default _default;
|
@@ -1,41 +0,0 @@
|
|
1
|
-
import { StoryObj } from '@storybook/vue3';
|
2
|
-
declare const meta: {
|
3
|
-
title: string;
|
4
|
-
component: import('vue').DefineComponent<{
|
5
|
-
label: string;
|
6
|
-
primary?: boolean;
|
7
|
-
size?: "small" | "medium" | "large";
|
8
|
-
backgroundColor?: string;
|
9
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
10
|
-
click: (id: number) => any;
|
11
|
-
}, string, import('vue').PublicProps, Readonly<{
|
12
|
-
label: string;
|
13
|
-
primary?: boolean;
|
14
|
-
size?: "small" | "medium" | "large";
|
15
|
-
backgroundColor?: string;
|
16
|
-
}> & Readonly<{
|
17
|
-
onClick?: ((id: number) => any) | undefined;
|
18
|
-
}>, {
|
19
|
-
primary: boolean;
|
20
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
21
|
-
tags: string[];
|
22
|
-
argTypes: {
|
23
|
-
size: {
|
24
|
-
control: "select";
|
25
|
-
options: string[];
|
26
|
-
};
|
27
|
-
backgroundColor: {
|
28
|
-
control: "color";
|
29
|
-
};
|
30
|
-
};
|
31
|
-
args: {
|
32
|
-
primary: false;
|
33
|
-
onClick: import('@vitest/spy').Mock<(...args: any[]) => any>;
|
34
|
-
};
|
35
|
-
};
|
36
|
-
export default meta;
|
37
|
-
type Story = StoryObj<typeof meta>;
|
38
|
-
export declare const Primary: Story;
|
39
|
-
export declare const Secondary: Story;
|
40
|
-
export declare const Large: Story;
|
41
|
-
export declare const Small: Story;
|
@@ -1,18 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{
|
2
|
-
user: {
|
3
|
-
name: string;
|
4
|
-
} | null;
|
5
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
6
|
-
createAccount: () => any;
|
7
|
-
login: () => any;
|
8
|
-
logout: () => any;
|
9
|
-
}, string, import('vue').PublicProps, Readonly<{
|
10
|
-
user: {
|
11
|
-
name: string;
|
12
|
-
} | null;
|
13
|
-
}> & Readonly<{
|
14
|
-
onCreateAccount?: (() => any) | undefined;
|
15
|
-
onLogin?: (() => any) | undefined;
|
16
|
-
onLogout?: (() => any) | undefined;
|
17
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
18
|
-
export default _default;
|
@@ -1,59 +0,0 @@
|
|
1
|
-
import { StoryObj } from '@storybook/vue3';
|
2
|
-
declare const meta: {
|
3
|
-
title: string;
|
4
|
-
component: import('vue').DefineComponent<{
|
5
|
-
user: {
|
6
|
-
name: string;
|
7
|
-
} | null;
|
8
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
9
|
-
createAccount: () => any;
|
10
|
-
login: () => any;
|
11
|
-
logout: () => any;
|
12
|
-
}, string, import('vue').PublicProps, Readonly<{
|
13
|
-
user: {
|
14
|
-
name: string;
|
15
|
-
} | null;
|
16
|
-
}> & Readonly<{
|
17
|
-
onCreateAccount?: (() => any) | undefined;
|
18
|
-
onLogin?: (() => any) | undefined;
|
19
|
-
onLogout?: (() => any) | undefined;
|
20
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
21
|
-
render: (args: any) => {
|
22
|
-
components: {
|
23
|
-
MyHeader: import('vue').DefineComponent<{
|
24
|
-
user: {
|
25
|
-
name: string;
|
26
|
-
} | null;
|
27
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
28
|
-
createAccount: () => any;
|
29
|
-
login: () => any;
|
30
|
-
logout: () => any;
|
31
|
-
}, string, import('vue').PublicProps, Readonly<{
|
32
|
-
user: {
|
33
|
-
name: string;
|
34
|
-
} | null;
|
35
|
-
}> & Readonly<{
|
36
|
-
onCreateAccount?: (() => any) | undefined;
|
37
|
-
onLogin?: (() => any) | undefined;
|
38
|
-
onLogout?: (() => any) | undefined;
|
39
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
40
|
-
};
|
41
|
-
setup(this: void): {
|
42
|
-
args: any;
|
43
|
-
};
|
44
|
-
template: string;
|
45
|
-
};
|
46
|
-
parameters: {
|
47
|
-
layout: string;
|
48
|
-
};
|
49
|
-
args: {
|
50
|
-
onLogin: import('@vitest/spy').Mock<(...args: any[]) => any>;
|
51
|
-
onLogout: import('@vitest/spy').Mock<(...args: any[]) => any>;
|
52
|
-
onCreateAccount: import('@vitest/spy').Mock<(...args: any[]) => any>;
|
53
|
-
};
|
54
|
-
tags: string[];
|
55
|
-
};
|
56
|
-
export default meta;
|
57
|
-
type Story = StoryObj<typeof meta>;
|
58
|
-
export declare const LoggedIn: Story;
|
59
|
-
export declare const LoggedOut: Story;
|
@@ -1,2 +0,0 @@
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
2
|
-
export default _default;
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { StoryObj } from '@storybook/vue3';
|
2
|
-
declare const meta: {
|
3
|
-
title: string;
|
4
|
-
component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
5
|
-
render: () => {
|
6
|
-
components: {
|
7
|
-
MyPage: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
8
|
-
};
|
9
|
-
template: string;
|
10
|
-
};
|
11
|
-
parameters: {
|
12
|
-
layout: string;
|
13
|
-
};
|
14
|
-
tags: string[];
|
15
|
-
};
|
16
|
-
export default meta;
|
17
|
-
type Story = StoryObj<typeof meta>;
|
18
|
-
export declare const LoggedIn: Story;
|
19
|
-
export declare const LoggedOut: Story;
|