@vanjana/vue-ui 0.1.126 → 0.1.129
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/theme-light.css +1 -1
- package/dist/types/components/accordion.vue.d.ts +10 -9
- package/dist/types/components/chip.vue.d.ts +2 -2
- package/dist/types/components/dialog.vue.d.ts +2 -2
- package/dist/types/components/form/form-field.vue.d.ts +2 -2
- package/dist/types/components/form/input-select.vue.d.ts +1 -1
- package/dist/types/components/form/input-slider.vue.d.ts +2 -2
- package/dist/types/components/form/input-text-area.vue.d.ts +2 -2
- package/dist/types/components/form/input-text.vue.d.ts +2 -2
- package/dist/types/components/form/input.vue.d.ts +1 -1
- package/dist/types/components/form/textarea.vue.d.ts +1 -1
- package/dist/types/components/page.vue.d.ts +1 -1
- package/dist/types/components/paginator.vue.d.ts +1 -1
- package/dist/types/components/slider.vue.d.ts +2 -2
- package/dist/types/components/step-flow.vue.d.ts +16 -0
- package/dist/types/stories/components/accordion.stories.d.ts +15 -25
- package/dist/types/stories/components/chip.stories.d.ts +2 -2
- package/dist/types/stories/components/compact.stories.d.ts +2 -2
- package/dist/types/stories/components/dialog.stories.d.ts +5 -5
- package/dist/types/stories/components/form-field-help.stories.d.ts +2 -2
- package/dist/types/stories/components/form-field.stories.d.ts +2 -2
- package/dist/types/stories/components/input.stories.d.ts +1 -1
- package/dist/types/stories/components/page.stories.d.ts +7 -6
- package/dist/types/stories/components/step-flow.stories.d.ts +31 -0
- package/dist/types/stories/components/textarea.stories.d.ts +1 -1
- package/dist/vanjana-vue-ui.es.js +1020 -1015
- package/dist/vanjana-vue-ui.umd.js +1 -1
- package/dist/vue-ui.css +1 -1
- package/package.json +1 -1
- package/themes/common/_mixins.scss +4 -1
- package/themes/common/components/_page.scss +16 -5
- package/themes/common/components/form/_select.scss +53 -14
|
@@ -3,7 +3,7 @@ declare const meta: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
component: {
|
|
5
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
6
|
-
title
|
|
6
|
+
title?: string;
|
|
7
7
|
subTitle?: string;
|
|
8
8
|
backLabel?: string;
|
|
9
9
|
scrollable?: boolean;
|
|
@@ -22,7 +22,7 @@ declare const meta: {
|
|
|
22
22
|
M: {};
|
|
23
23
|
Defaults: {};
|
|
24
24
|
}, Readonly<{
|
|
25
|
-
title
|
|
25
|
+
title?: string;
|
|
26
26
|
subTitle?: string;
|
|
27
27
|
backLabel?: string;
|
|
28
28
|
scrollable?: boolean;
|
|
@@ -36,7 +36,7 @@ declare const meta: {
|
|
|
36
36
|
__isTeleport?: never;
|
|
37
37
|
__isSuspense?: never;
|
|
38
38
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
39
|
-
title
|
|
39
|
+
title?: string;
|
|
40
40
|
subTitle?: string;
|
|
41
41
|
backLabel?: string;
|
|
42
42
|
scrollable?: boolean;
|
|
@@ -66,7 +66,7 @@ declare const meta: {
|
|
|
66
66
|
components: {
|
|
67
67
|
Page: {
|
|
68
68
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
69
|
-
title
|
|
69
|
+
title?: string;
|
|
70
70
|
subTitle?: string;
|
|
71
71
|
backLabel?: string;
|
|
72
72
|
scrollable?: boolean;
|
|
@@ -85,7 +85,7 @@ declare const meta: {
|
|
|
85
85
|
M: {};
|
|
86
86
|
Defaults: {};
|
|
87
87
|
}, Readonly<{
|
|
88
|
-
title
|
|
88
|
+
title?: string;
|
|
89
89
|
subTitle?: string;
|
|
90
90
|
backLabel?: string;
|
|
91
91
|
scrollable?: boolean;
|
|
@@ -99,7 +99,7 @@ declare const meta: {
|
|
|
99
99
|
__isTeleport?: never;
|
|
100
100
|
__isSuspense?: never;
|
|
101
101
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
102
|
-
title
|
|
102
|
+
title?: string;
|
|
103
103
|
subTitle?: string;
|
|
104
104
|
backLabel?: string;
|
|
105
105
|
scrollable?: boolean;
|
|
@@ -145,4 +145,5 @@ export declare const Primary: Story;
|
|
|
145
145
|
export declare const WithFooter: Story;
|
|
146
146
|
export declare const WithFlexFooter: Story;
|
|
147
147
|
export declare const WithHeaderActionsAndFlexFooter: Story;
|
|
148
|
+
export declare const WithoutTitle: Story;
|
|
148
149
|
export declare const WithLoading: Story;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/vue3-vite';
|
|
2
|
+
declare const meta: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: {
|
|
5
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
6
|
+
currentStep: number;
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
8
|
+
P: {};
|
|
9
|
+
B: {};
|
|
10
|
+
D: {};
|
|
11
|
+
C: {};
|
|
12
|
+
M: {};
|
|
13
|
+
Defaults: {};
|
|
14
|
+
}, Readonly<{
|
|
15
|
+
currentStep: number;
|
|
16
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
17
|
+
__isFragment?: never;
|
|
18
|
+
__isTeleport?: never;
|
|
19
|
+
__isSuspense?: never;
|
|
20
|
+
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
21
|
+
currentStep: number;
|
|
22
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
23
|
+
$slots: {
|
|
24
|
+
default?: (props: {}) => any;
|
|
25
|
+
};
|
|
26
|
+
});
|
|
27
|
+
tags: string[];
|
|
28
|
+
};
|
|
29
|
+
export default meta;
|
|
30
|
+
type Story = StoryObj<typeof meta>;
|
|
31
|
+
export declare const Default: Story;
|
|
@@ -24,9 +24,9 @@ declare const meta: {
|
|
|
24
24
|
} & {
|
|
25
25
|
modelValue?: string;
|
|
26
26
|
}> & Readonly<{
|
|
27
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
27
28
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
28
29
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
29
|
-
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
30
30
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
31
|
tags: string[];
|
|
32
32
|
argTypes: {
|