sprof 0.2.8 → 0.2.9
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/{ExtractsList-DkB5B2ct.js → ExtractsList-CCcvo_02.js} +1 -1
- package/dist/core/components/GeneralItem.vue.d.ts +1 -1
- package/dist/core/components/InfoItem.vue.d.ts +1 -1
- package/dist/core/components/atoms/PDateInput/PDateInput.stories.d.ts +569 -0
- package/dist/core/components/atoms/PDateInput/PDateInput.test.d.ts +1 -0
- package/dist/core/components/atoms/PDateInput/PDateInput.vue.d.ts +77 -0
- package/dist/core/components/atoms/PDialog/PDialog.stories.d.ts +6 -6
- package/dist/core/components/atoms/PDialog/PDialog.vue.d.ts +1 -1
- package/dist/core/components/atoms/PFlex/PFlex.stories.d.ts +12 -12
- package/dist/core/components/atoms/PFlex/PFlex.vue.d.ts +2 -2
- package/dist/core/components/atoms/PHint/PHint.stories.d.ts +34 -0
- package/dist/core/components/atoms/PHint/PHint.test.d.ts +1 -0
- package/dist/core/components/atoms/PHint/PHint.vue.d.ts +5 -0
- package/dist/core/components/atoms/PInput/PInput.stories.d.ts +6 -6
- package/dist/core/components/atoms/PInput/PInput.vue.d.ts +1 -1
- package/dist/core/components/atoms/PLabelField/PLabelField.stories.d.ts +6 -6
- package/dist/core/components/atoms/PLabelField/PLabelField.vue.d.ts +1 -1
- package/dist/core/components/atoms/POptionsListSingle/POptionsListSingle.stories.d.ts +31 -0
- package/dist/core/components/atoms/POptionsListSingle/POptionsListSingle.test.d.ts +1 -0
- package/dist/core/components/atoms/POpts/POpts.test.d.ts +1 -0
- package/dist/core/components/atoms/POpts/POpts.vue.d.ts +28 -0
- package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +6 -6
- package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +1 -1
- package/dist/core/components/atoms/PString/PString.stories.d.ts +2 -2
- package/dist/core/components/atoms/PString/PString.vue.d.ts +1 -1
- package/dist/core/components/atoms/PTableToggle/PTableToggle.test.d.ts +1 -0
- package/dist/core/components/atoms/PTableToggle/PTableToggle.vue.d.ts +12 -0
- package/dist/core/components/atoms/index.d.ts +6 -1
- package/dist/core/components/molecules/PCard/PCard.stories.d.ts +801 -0
- package/dist/core/components/molecules/PCard/PCard.test.d.ts +1 -0
- package/dist/core/components/molecules/PCard/PCard.vue.d.ts +112 -0
- package/dist/core/components/molecules/PCrudList/PCrudList.stories.d.ts +720 -0
- package/dist/core/components/molecules/PCrudList/PCrudList.test.d.ts +1 -0
- package/dist/core/components/molecules/PCrudList/PCrudList.vue.d.ts +137 -0
- package/dist/core/components/molecules/PEditDialog/PEditDialog.stories.d.ts +243 -0
- package/dist/core/components/molecules/PEditDialog/PEditDialog.test.d.ts +1 -0
- package/dist/core/components/molecules/PEditDialog/PEditDialog.vue.d.ts +29 -0
- package/dist/core/components/molecules/PEditDialog/pEditDialogProps.d.ts +10 -0
- package/dist/core/components/molecules/index.d.ts +4 -1
- package/dist/core/components/organisms/PAuthForm/PAuthForm.stories.d.ts +10 -10
- package/dist/core/components/organisms/PAuthForm/PAuthForm.vue.d.ts +5 -5
- package/dist/global-components.d.ts +8 -0
- package/dist/index-Bwtms4B9.js +19392 -0
- package/dist/index.d.ts +8 -0
- package/dist/sprof.js +29 -21
- package/dist/sprof.umd.cjs +23 -14
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/index-BcXeol30.js +0 -14198
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { default as IOrdered } from '../../../interfaces/IOrdered';
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
3
|
+
sortable: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
showAdd: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
showDelete: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
list: {
|
|
16
|
+
type: globalThis.PropType<IOrdered[]>;
|
|
17
|
+
default: () => never[];
|
|
18
|
+
};
|
|
19
|
+
title: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
required: true;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
store: {
|
|
25
|
+
type: typeof import('../../../helpers/BaseStore').default;
|
|
26
|
+
default: undefined;
|
|
27
|
+
};
|
|
28
|
+
addFunc: {
|
|
29
|
+
type: globalThis.PropType<() => IOrdered>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
addToList: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
removeFromList: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
margin: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
required: true;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
background: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
required: true;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
51
|
+
sort: (...args: any[]) => void;
|
|
52
|
+
add: (...args: any[]) => void;
|
|
53
|
+
remove: (...args: any[]) => void;
|
|
54
|
+
update: (...args: any[]) => void;
|
|
55
|
+
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
56
|
+
sortable: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
showAdd: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
showDelete: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
list: {
|
|
69
|
+
type: globalThis.PropType<IOrdered[]>;
|
|
70
|
+
default: () => never[];
|
|
71
|
+
};
|
|
72
|
+
title: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
required: true;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
store: {
|
|
78
|
+
type: typeof import('../../../helpers/BaseStore').default;
|
|
79
|
+
default: undefined;
|
|
80
|
+
};
|
|
81
|
+
addFunc: {
|
|
82
|
+
type: globalThis.PropType<() => IOrdered>;
|
|
83
|
+
required: true;
|
|
84
|
+
};
|
|
85
|
+
addToList: {
|
|
86
|
+
type: BooleanConstructor;
|
|
87
|
+
default: boolean;
|
|
88
|
+
};
|
|
89
|
+
removeFromList: {
|
|
90
|
+
type: BooleanConstructor;
|
|
91
|
+
default: boolean;
|
|
92
|
+
};
|
|
93
|
+
margin: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
required: true;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
background: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
required: true;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
}>> & Readonly<{
|
|
104
|
+
onSort?: ((...args: any[]) => any) | undefined;
|
|
105
|
+
onAdd?: ((...args: any[]) => any) | undefined;
|
|
106
|
+
onRemove?: ((...args: any[]) => any) | undefined;
|
|
107
|
+
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
108
|
+
}>, {
|
|
109
|
+
title: string;
|
|
110
|
+
margin: string;
|
|
111
|
+
background: string;
|
|
112
|
+
store: import('../../../helpers/BaseStore').default<import('../../../interfaces').IWithId & import('../../../interfaces').IFileInfosGetter>;
|
|
113
|
+
list: IOrdered[];
|
|
114
|
+
sortable: boolean;
|
|
115
|
+
showAdd: boolean;
|
|
116
|
+
showDelete: boolean;
|
|
117
|
+
addToList: boolean;
|
|
118
|
+
removeFromList: boolean;
|
|
119
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
120
|
+
title?(_: {}): any;
|
|
121
|
+
default?(_: {
|
|
122
|
+
item: any;
|
|
123
|
+
update: (item?: IOrdered | undefined) => Promise<void>;
|
|
124
|
+
index: any;
|
|
125
|
+
}): any;
|
|
126
|
+
default?(_: {
|
|
127
|
+
item: IOrdered;
|
|
128
|
+
update: (item?: IOrdered | undefined) => Promise<void>;
|
|
129
|
+
index: number;
|
|
130
|
+
}): any;
|
|
131
|
+
}>;
|
|
132
|
+
export default _default;
|
|
133
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
134
|
+
new (): {
|
|
135
|
+
$slots: S;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import { StoryFn } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: {
|
|
5
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
6
|
+
onClose?: (() => any) | undefined;
|
|
7
|
+
onConfirm?: (() => any) | undefined;
|
|
8
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
9
|
+
}>, {
|
|
10
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
11
|
+
toggle: () => void;
|
|
12
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
13
|
+
close: () => any;
|
|
14
|
+
confirm: () => any;
|
|
15
|
+
"update:modelValue": (value: boolean) => any;
|
|
16
|
+
}, import('vue').PublicProps, {
|
|
17
|
+
title: string;
|
|
18
|
+
width: string;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
modelValue: boolean;
|
|
21
|
+
showConfirm: boolean;
|
|
22
|
+
confirmLabel: string;
|
|
23
|
+
cancelLabel: string;
|
|
24
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
25
|
+
P: {};
|
|
26
|
+
B: {};
|
|
27
|
+
D: {};
|
|
28
|
+
C: {};
|
|
29
|
+
M: {};
|
|
30
|
+
Defaults: {};
|
|
31
|
+
}, Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
32
|
+
onClose?: (() => any) | undefined;
|
|
33
|
+
onConfirm?: (() => any) | undefined;
|
|
34
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
35
|
+
}>, {
|
|
36
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
37
|
+
toggle: () => void;
|
|
38
|
+
}, {}, {}, {}, {
|
|
39
|
+
title: string;
|
|
40
|
+
width: string;
|
|
41
|
+
disabled: boolean;
|
|
42
|
+
modelValue: boolean;
|
|
43
|
+
showConfirm: boolean;
|
|
44
|
+
confirmLabel: string;
|
|
45
|
+
cancelLabel: string;
|
|
46
|
+
}>;
|
|
47
|
+
__isFragment?: undefined;
|
|
48
|
+
__isTeleport?: undefined;
|
|
49
|
+
__isSuspense?: undefined;
|
|
50
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
51
|
+
onClose?: (() => any) | undefined;
|
|
52
|
+
onConfirm?: (() => any) | undefined;
|
|
53
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
54
|
+
}>, {
|
|
55
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
56
|
+
toggle: () => void;
|
|
57
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
58
|
+
close: () => any;
|
|
59
|
+
confirm: () => any;
|
|
60
|
+
"update:modelValue": (value: boolean) => any;
|
|
61
|
+
}, string, {
|
|
62
|
+
title: string;
|
|
63
|
+
width: string;
|
|
64
|
+
disabled: boolean;
|
|
65
|
+
modelValue: boolean;
|
|
66
|
+
showConfirm: boolean;
|
|
67
|
+
confirmLabel: string;
|
|
68
|
+
cancelLabel: string;
|
|
69
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
70
|
+
$slots: {
|
|
71
|
+
default?(_: {}): any;
|
|
72
|
+
};
|
|
73
|
+
});
|
|
74
|
+
tags: string[];
|
|
75
|
+
parameters: {
|
|
76
|
+
docs: {
|
|
77
|
+
description: {
|
|
78
|
+
component: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
argTypes: {
|
|
83
|
+
title: {
|
|
84
|
+
control: string;
|
|
85
|
+
};
|
|
86
|
+
confirmLabel: {
|
|
87
|
+
control: string;
|
|
88
|
+
};
|
|
89
|
+
cancelLabel: {
|
|
90
|
+
control: string;
|
|
91
|
+
};
|
|
92
|
+
width: {
|
|
93
|
+
control: string;
|
|
94
|
+
};
|
|
95
|
+
disabled: {
|
|
96
|
+
control: string;
|
|
97
|
+
};
|
|
98
|
+
showConfirm: {
|
|
99
|
+
control: string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
export default _default;
|
|
104
|
+
export declare const Default: StoryFn<{
|
|
105
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
106
|
+
onClose?: (() => any) | undefined;
|
|
107
|
+
onConfirm?: (() => any) | undefined;
|
|
108
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
109
|
+
}>, {
|
|
110
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
111
|
+
toggle: () => void;
|
|
112
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
113
|
+
close: () => any;
|
|
114
|
+
confirm: () => any;
|
|
115
|
+
"update:modelValue": (value: boolean) => any;
|
|
116
|
+
}, import('vue').PublicProps, {
|
|
117
|
+
title: string;
|
|
118
|
+
width: string;
|
|
119
|
+
disabled: boolean;
|
|
120
|
+
modelValue: boolean;
|
|
121
|
+
showConfirm: boolean;
|
|
122
|
+
confirmLabel: string;
|
|
123
|
+
cancelLabel: string;
|
|
124
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
125
|
+
P: {};
|
|
126
|
+
B: {};
|
|
127
|
+
D: {};
|
|
128
|
+
C: {};
|
|
129
|
+
M: {};
|
|
130
|
+
Defaults: {};
|
|
131
|
+
}, Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
132
|
+
onClose?: (() => any) | undefined;
|
|
133
|
+
onConfirm?: (() => any) | undefined;
|
|
134
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
135
|
+
}>, {
|
|
136
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
137
|
+
toggle: () => void;
|
|
138
|
+
}, {}, {}, {}, {
|
|
139
|
+
title: string;
|
|
140
|
+
width: string;
|
|
141
|
+
disabled: boolean;
|
|
142
|
+
modelValue: boolean;
|
|
143
|
+
showConfirm: boolean;
|
|
144
|
+
confirmLabel: string;
|
|
145
|
+
cancelLabel: string;
|
|
146
|
+
}>;
|
|
147
|
+
__isFragment?: undefined;
|
|
148
|
+
__isTeleport?: undefined;
|
|
149
|
+
__isSuspense?: undefined;
|
|
150
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
151
|
+
onClose?: (() => any) | undefined;
|
|
152
|
+
onConfirm?: (() => any) | undefined;
|
|
153
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
154
|
+
}>, {
|
|
155
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
156
|
+
toggle: () => void;
|
|
157
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
158
|
+
close: () => any;
|
|
159
|
+
confirm: () => any;
|
|
160
|
+
"update:modelValue": (value: boolean) => any;
|
|
161
|
+
}, string, {
|
|
162
|
+
title: string;
|
|
163
|
+
width: string;
|
|
164
|
+
disabled: boolean;
|
|
165
|
+
modelValue: boolean;
|
|
166
|
+
showConfirm: boolean;
|
|
167
|
+
confirmLabel: string;
|
|
168
|
+
cancelLabel: string;
|
|
169
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
170
|
+
$slots: {
|
|
171
|
+
default?(_: {}): any;
|
|
172
|
+
};
|
|
173
|
+
})>;
|
|
174
|
+
export declare const WithoutConfirm: StoryFn<{
|
|
175
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
176
|
+
onClose?: (() => any) | undefined;
|
|
177
|
+
onConfirm?: (() => any) | undefined;
|
|
178
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
179
|
+
}>, {
|
|
180
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
181
|
+
toggle: () => void;
|
|
182
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
183
|
+
close: () => any;
|
|
184
|
+
confirm: () => any;
|
|
185
|
+
"update:modelValue": (value: boolean) => any;
|
|
186
|
+
}, import('vue').PublicProps, {
|
|
187
|
+
title: string;
|
|
188
|
+
width: string;
|
|
189
|
+
disabled: boolean;
|
|
190
|
+
modelValue: boolean;
|
|
191
|
+
showConfirm: boolean;
|
|
192
|
+
confirmLabel: string;
|
|
193
|
+
cancelLabel: string;
|
|
194
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
195
|
+
P: {};
|
|
196
|
+
B: {};
|
|
197
|
+
D: {};
|
|
198
|
+
C: {};
|
|
199
|
+
M: {};
|
|
200
|
+
Defaults: {};
|
|
201
|
+
}, Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
202
|
+
onClose?: (() => any) | undefined;
|
|
203
|
+
onConfirm?: (() => any) | undefined;
|
|
204
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
205
|
+
}>, {
|
|
206
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
207
|
+
toggle: () => void;
|
|
208
|
+
}, {}, {}, {}, {
|
|
209
|
+
title: string;
|
|
210
|
+
width: string;
|
|
211
|
+
disabled: boolean;
|
|
212
|
+
modelValue: boolean;
|
|
213
|
+
showConfirm: boolean;
|
|
214
|
+
confirmLabel: string;
|
|
215
|
+
cancelLabel: string;
|
|
216
|
+
}>;
|
|
217
|
+
__isFragment?: undefined;
|
|
218
|
+
__isTeleport?: undefined;
|
|
219
|
+
__isSuspense?: undefined;
|
|
220
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./pEditDialogProps').PEditDialogProps> & Readonly<{
|
|
221
|
+
onClose?: (() => any) | undefined;
|
|
222
|
+
onConfirm?: (() => any) | undefined;
|
|
223
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
224
|
+
}>, {
|
|
225
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
226
|
+
toggle: () => void;
|
|
227
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
228
|
+
close: () => any;
|
|
229
|
+
confirm: () => any;
|
|
230
|
+
"update:modelValue": (value: boolean) => any;
|
|
231
|
+
}, string, {
|
|
232
|
+
title: string;
|
|
233
|
+
width: string;
|
|
234
|
+
disabled: boolean;
|
|
235
|
+
modelValue: boolean;
|
|
236
|
+
showConfirm: boolean;
|
|
237
|
+
confirmLabel: string;
|
|
238
|
+
cancelLabel: string;
|
|
239
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
240
|
+
$slots: {
|
|
241
|
+
default?(_: {}): any;
|
|
242
|
+
};
|
|
243
|
+
})>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { PEditDialogProps } from './pEditDialogProps';
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<PEditDialogProps, {
|
|
3
|
+
opened: globalThis.Ref<boolean, boolean>;
|
|
4
|
+
toggle: () => void;
|
|
5
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
|
+
close: () => any;
|
|
7
|
+
confirm: () => any;
|
|
8
|
+
"update:modelValue": (value: boolean) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<PEditDialogProps> & Readonly<{
|
|
10
|
+
onClose?: (() => any) | undefined;
|
|
11
|
+
onConfirm?: (() => any) | undefined;
|
|
12
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
title: string;
|
|
15
|
+
width: string;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
modelValue: boolean;
|
|
18
|
+
showConfirm: boolean;
|
|
19
|
+
confirmLabel: string;
|
|
20
|
+
cancelLabel: string;
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
22
|
+
default?(_: {}): any;
|
|
23
|
+
}>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -4,9 +4,12 @@ import { default as VerticalCollapseContainer } from './Collapse/VerticalCollaps
|
|
|
4
4
|
import { default as PAdd } from './PAdd/PAdd.vue';
|
|
5
5
|
import { default as PContainer } from './PAdd/PContainer.vue';
|
|
6
6
|
import { default as PContainerStickyHead } from './PAdd/PContainerStickyHead.vue';
|
|
7
|
+
import { default as PCard } from './PCard/PCard.vue';
|
|
8
|
+
import { default as PCrudList } from './PCrudList/PCrudList.vue';
|
|
7
9
|
import { default as PDel } from './PDel/PDel.vue';
|
|
10
|
+
import { default as PEditDialog } from './PEditDialog/PEditDialog.vue';
|
|
8
11
|
import { default as PModal } from './PModal/PModal.vue';
|
|
9
12
|
export default function install(app: {
|
|
10
13
|
component: (a: string, b: unknown) => void;
|
|
11
14
|
}): void;
|
|
12
|
-
export { CollapseContainer, CollapseItem, PAdd, PContainer, PContainerStickyHead, PDel, PModal, VerticalCollapseContainer };
|
|
15
|
+
export { CollapseContainer, CollapseItem, PAdd, PCard, PContainer, PContainerStickyHead, PCrudList, PDel, PEditDialog, PModal, VerticalCollapseContainer, };
|
|
@@ -55,8 +55,8 @@ declare const _default: {
|
|
|
55
55
|
width: string;
|
|
56
56
|
margin: string;
|
|
57
57
|
disabled: boolean;
|
|
58
|
-
rules: import('quasar').ValidationRule[];
|
|
59
58
|
borderColor: string;
|
|
59
|
+
rules: import('quasar').ValidationRule[];
|
|
60
60
|
}> & Omit<{
|
|
61
61
|
readonly color: string;
|
|
62
62
|
readonly label: string;
|
|
@@ -73,7 +73,7 @@ declare const _default: {
|
|
|
73
73
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
74
74
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
75
75
|
readonly "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
76
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "
|
|
76
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "borderColor" | "rules">;
|
|
77
77
|
$attrs: import('vue').Attrs;
|
|
78
78
|
$refs: {
|
|
79
79
|
[x: string]: unknown;
|
|
@@ -159,8 +159,8 @@ declare const _default: {
|
|
|
159
159
|
width: string;
|
|
160
160
|
margin: string;
|
|
161
161
|
disabled: boolean;
|
|
162
|
-
rules: import('quasar').ValidationRule[];
|
|
163
162
|
borderColor: string;
|
|
163
|
+
rules: import('quasar').ValidationRule[];
|
|
164
164
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
165
165
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
166
166
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -189,8 +189,8 @@ declare const _default: {
|
|
|
189
189
|
width: string;
|
|
190
190
|
margin: string;
|
|
191
191
|
disabled: boolean;
|
|
192
|
-
rules: import('quasar').ValidationRule[];
|
|
193
192
|
borderColor: string;
|
|
193
|
+
rules: import('quasar').ValidationRule[];
|
|
194
194
|
}> & Omit<Readonly<globalThis.ExtractPropTypes<{
|
|
195
195
|
label: {
|
|
196
196
|
type: StringConstructor;
|
|
@@ -246,7 +246,7 @@ declare const _default: {
|
|
|
246
246
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
247
247
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
248
248
|
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
249
|
-
}>, "focus" | ("color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "
|
|
249
|
+
}>, "focus" | ("color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "borderColor" | "rules")> & {
|
|
250
250
|
focus: () => void;
|
|
251
251
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
252
252
|
$slots: {
|
|
@@ -331,8 +331,8 @@ export declare const Default: () => {
|
|
|
331
331
|
width: string;
|
|
332
332
|
margin: string;
|
|
333
333
|
disabled: boolean;
|
|
334
|
-
rules: import('quasar').ValidationRule[];
|
|
335
334
|
borderColor: string;
|
|
335
|
+
rules: import('quasar').ValidationRule[];
|
|
336
336
|
}> & Omit<{
|
|
337
337
|
readonly color: string;
|
|
338
338
|
readonly label: string;
|
|
@@ -349,7 +349,7 @@ export declare const Default: () => {
|
|
|
349
349
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
350
350
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
351
351
|
readonly "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
352
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "
|
|
352
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "borderColor" | "rules">;
|
|
353
353
|
$attrs: import('vue').Attrs;
|
|
354
354
|
$refs: {
|
|
355
355
|
[x: string]: unknown;
|
|
@@ -435,8 +435,8 @@ export declare const Default: () => {
|
|
|
435
435
|
width: string;
|
|
436
436
|
margin: string;
|
|
437
437
|
disabled: boolean;
|
|
438
|
-
rules: import('quasar').ValidationRule[];
|
|
439
438
|
borderColor: string;
|
|
439
|
+
rules: import('quasar').ValidationRule[];
|
|
440
440
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
441
441
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
442
442
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -465,8 +465,8 @@ export declare const Default: () => {
|
|
|
465
465
|
width: string;
|
|
466
466
|
margin: string;
|
|
467
467
|
disabled: boolean;
|
|
468
|
-
rules: import('quasar').ValidationRule[];
|
|
469
468
|
borderColor: string;
|
|
469
|
+
rules: import('quasar').ValidationRule[];
|
|
470
470
|
}> & Omit<Readonly<globalThis.ExtractPropTypes<{
|
|
471
471
|
label: {
|
|
472
472
|
type: StringConstructor;
|
|
@@ -522,7 +522,7 @@ export declare const Default: () => {
|
|
|
522
522
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
523
523
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
524
524
|
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
525
|
-
}>, "focus" | ("color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "
|
|
525
|
+
}>, "focus" | ("color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "borderColor" | "rules")> & {
|
|
526
526
|
focus: () => void;
|
|
527
527
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
528
528
|
$slots: {
|
|
@@ -53,8 +53,8 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
53
53
|
width: string;
|
|
54
54
|
margin: string;
|
|
55
55
|
disabled: boolean;
|
|
56
|
-
rules: import('quasar').ValidationRule[];
|
|
57
56
|
borderColor: string;
|
|
57
|
+
rules: import('quasar').ValidationRule[];
|
|
58
58
|
}> & Omit<{
|
|
59
59
|
readonly color: string;
|
|
60
60
|
readonly label: string;
|
|
@@ -71,7 +71,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
71
71
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
72
72
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
73
73
|
readonly "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
74
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "
|
|
74
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "borderColor" | "rules">;
|
|
75
75
|
$attrs: import('vue').Attrs;
|
|
76
76
|
$refs: {
|
|
77
77
|
[x: string]: unknown;
|
|
@@ -157,8 +157,8 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
157
157
|
width: string;
|
|
158
158
|
margin: string;
|
|
159
159
|
disabled: boolean;
|
|
160
|
-
rules: import('quasar').ValidationRule[];
|
|
161
160
|
borderColor: string;
|
|
161
|
+
rules: import('quasar').ValidationRule[];
|
|
162
162
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
163
163
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
164
164
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -187,8 +187,8 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
187
187
|
width: string;
|
|
188
188
|
margin: string;
|
|
189
189
|
disabled: boolean;
|
|
190
|
-
rules: import('quasar').ValidationRule[];
|
|
191
190
|
borderColor: string;
|
|
191
|
+
rules: import('quasar').ValidationRule[];
|
|
192
192
|
}> & Omit<Readonly<globalThis.ExtractPropTypes<{
|
|
193
193
|
label: {
|
|
194
194
|
type: StringConstructor;
|
|
@@ -244,7 +244,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
244
244
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
245
245
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
246
246
|
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
247
|
-
}>, "focus" | ("color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "
|
|
247
|
+
}>, "focus" | ("color" | "label" | "padding" | "mask" | "width" | "margin" | "disabled" | "borderColor" | "rules")> & {
|
|
248
248
|
focus: () => void;
|
|
249
249
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
250
250
|
$slots: {
|
|
@@ -8,21 +8,26 @@ declare module 'vue' {
|
|
|
8
8
|
PButton: typeof Atoms.PButton;
|
|
9
9
|
PCheckBox: typeof Atoms.PCheckBox;
|
|
10
10
|
PChip: typeof Atoms.PChip;
|
|
11
|
+
PDateInput: typeof Atoms.PDateInput;
|
|
11
12
|
PDatePicker: typeof Atoms.PDatePicker;
|
|
12
13
|
PDialog: typeof Atoms.PDialog;
|
|
13
14
|
PFlex: typeof Atoms.PFlex;
|
|
15
|
+
PHint: typeof Atoms.PHint;
|
|
14
16
|
PInput: typeof Atoms.PInput;
|
|
15
17
|
PInputDate: typeof Atoms.PInputDate;
|
|
16
18
|
PInputNumber: typeof Atoms.PInputNumber;
|
|
17
19
|
PLeftSlider: typeof Atoms.PLeftSlider;
|
|
18
20
|
PList: typeof Atoms.PList;
|
|
19
21
|
PListItem: typeof Atoms.PListItem;
|
|
22
|
+
POptionsListSingle: typeof Atoms.POptionsListSingle;
|
|
23
|
+
POpts: typeof Atoms.POpts;
|
|
20
24
|
PRadio: typeof Atoms.PRadio;
|
|
21
25
|
PRightSlider: typeof Atoms.PRightSlider;
|
|
22
26
|
PSelect: typeof Atoms.PSelect;
|
|
23
27
|
PSticky: typeof Atoms.PSticky;
|
|
24
28
|
PString: typeof Atoms.PString;
|
|
25
29
|
PTable: typeof Atoms.PTable;
|
|
30
|
+
PTableToggle: typeof Atoms.PTableToggle;
|
|
26
31
|
PTextarea: typeof Atoms.PTextarea;
|
|
27
32
|
PToggle: typeof Atoms.PToggle;
|
|
28
33
|
PTooltip: typeof Atoms.PTooltip;
|
|
@@ -30,9 +35,12 @@ declare module 'vue' {
|
|
|
30
35
|
CollapseContainer: typeof Molecules.CollapseContainer;
|
|
31
36
|
CollapseItem: typeof Molecules.CollapseItem;
|
|
32
37
|
PAdd: typeof Molecules.PAdd;
|
|
38
|
+
PCard: typeof Molecules.PCard;
|
|
33
39
|
PContainer: typeof Molecules.PContainer;
|
|
34
40
|
PContainerStickyHead: typeof Molecules.PContainerStickyHead;
|
|
41
|
+
PCrudList: typeof Molecules.PCrudList;
|
|
35
42
|
PDel: typeof Molecules.PDel;
|
|
43
|
+
PEditDialog: typeof Molecules.PEditDialog;
|
|
36
44
|
PModal: typeof Molecules.PModal;
|
|
37
45
|
VerticalCollapseContainer: typeof Molecules.VerticalCollapseContainer;
|
|
38
46
|
PAuthForm: typeof Organisms.PAuthForm;
|