sprof 0.2.7 → 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-BNHHbmEu.js → ExtractsList-CCcvo_02.js} +1 -1
- package/dist/core/auth/Auth.d.ts +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/RemoteSearch.stories.d.ts +20 -20
- 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/PTooltip/PTooltip.stories.d.ts +141 -7
- package/dist/core/components/atoms/PTooltip/PTooltip.vue.d.ts +4 -3
- 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/core/helpers/index.d.ts +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/interfaces/index.d.ts +34 -0
- package/dist/core/store/index.d.ts +24 -24
- package/dist/core/ui/AdminUI.d.ts +4 -4
- package/dist/global-components.d.ts +8 -0
- package/dist/index-Bwtms4B9.js +19392 -0
- package/dist/index.d.ts +9 -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-T6suvcZB.js +0 -14184
|
@@ -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: {
|
|
@@ -72,7 +72,7 @@ export default abstract class H {
|
|
|
72
72
|
static Timer: typeof Timer;
|
|
73
73
|
static Token: {
|
|
74
74
|
isAuth: () => boolean;
|
|
75
|
-
setTokens: (tokenObj: import('../interfaces
|
|
75
|
+
setTokens: (tokenObj: import('../interfaces').ITokens) => void;
|
|
76
76
|
getAccessToken: () => string | null;
|
|
77
77
|
getRefreshToken: () => string | null;
|
|
78
78
|
getUserId: () => any;
|
package/dist/core/index.d.ts
CHANGED
|
@@ -261,7 +261,7 @@ export default abstract class PF {
|
|
|
261
261
|
AllowLogout: () => void;
|
|
262
262
|
readonly IsAuth: boolean;
|
|
263
263
|
readonly User: unknown;
|
|
264
|
-
SetUserConstructor: (c: import('./helpers/Classes').Constructable<
|
|
264
|
+
SetUserConstructor: (c: import('./helpers/Classes').Constructable<I.IWithId>) => void;
|
|
265
265
|
SetUser: (u: unknown) => void;
|
|
266
266
|
SetState: (authInfo: import('./types/AuthInfo').AuthInfo) => void;
|
|
267
267
|
Logout: () => void;
|
|
@@ -2,10 +2,44 @@ export { AdminLayout } from './AdminLayout';
|
|
|
2
2
|
export { Animations } from './Animations';
|
|
3
3
|
export { CalendarScale } from './CalendarScale';
|
|
4
4
|
export type { Callback, MyCallbackWithOptParam } from './Callback';
|
|
5
|
+
export type { default as ICanvas } from './canvas/ICanvas';
|
|
6
|
+
export type { default as ICanvasResult } from './canvas/ICanvasResult';
|
|
7
|
+
export type { default as ICoordinates } from './canvas/ICoordinates';
|
|
5
8
|
export type { ClassNameGetter } from './Class';
|
|
6
9
|
export type { FilterModelBuilder } from './Filter';
|
|
10
|
+
export type { default as IAdminMenu } from './IAdminMenu';
|
|
11
|
+
export type { default as ICursor } from './ICursor';
|
|
12
|
+
export type { default as IEmailPassword } from './IEmailPassword';
|
|
13
|
+
export type { default as IFile } from './IFile';
|
|
14
|
+
export type { default as IFileAnchor } from './IFileAnchor';
|
|
15
|
+
export type { default as IFileInfo } from './IFileInfo';
|
|
16
|
+
export type { default as IFileInfosGetter } from './IFileInfosGetter';
|
|
17
|
+
export type { default as IFiler } from './IFiler';
|
|
18
|
+
export type { default as IFIlesList } from './IFIlesList';
|
|
19
|
+
export type { default as IFilter } from './IFilter';
|
|
20
|
+
export type { default as IFilterQuery } from './IFilterQuery';
|
|
21
|
+
export type { default as IForm } from './IForm';
|
|
22
|
+
export type { IBodilessParams, IBodyfulParams } from './IHTTPTypes';
|
|
23
|
+
export type { default as IMessage } from './IMessage';
|
|
24
|
+
export type { default as IOption } from './IOption';
|
|
25
|
+
export type { default as IOrdered } from './IOrdered';
|
|
26
|
+
export type { default as IPagination } from './IPagination';
|
|
27
|
+
export type { default as ISearchElement } from './ISearchElement';
|
|
28
|
+
export type { default as ISearchObject } from './ISearchObject';
|
|
29
|
+
export type { default as ISearchQuery } from './ISearchQuery';
|
|
30
|
+
export type { default as ISelectFilter } from './ISelectFilter';
|
|
31
|
+
export type { default as ISortModel } from './ISortModel';
|
|
32
|
+
export type { default as IStorePaginator } from './IStorePaginator';
|
|
33
|
+
export type { default as ISupposedTimePeriod } from './ISupposedTimePeriod';
|
|
34
|
+
export type { default as ItemsWithCount } from './ItemsWithCount';
|
|
35
|
+
export type { default as ITimePeriod } from './ITimePeriod';
|
|
36
|
+
export type { default as ITokens } from './ITokens';
|
|
37
|
+
export type { default as IValidator } from './IValidator';
|
|
38
|
+
export type { default as IWithId } from './IWithId';
|
|
39
|
+
export type { default as IWithName } from './IWithName';
|
|
7
40
|
export type { ISupposedTimePeriod as IWithSupposedTimePeriod } from './IWithSupposedTimePeriod';
|
|
8
41
|
export { default as LocalStoreKeys } from './LocalStoreKeys';
|
|
9
42
|
export { SocialTypes } from './SocialTypes';
|
|
10
43
|
export type { SortModelBuilder, SortModelBuildersLib } from './Sort';
|
|
44
|
+
export type { default as SchemaQuery } from './types';
|
|
11
45
|
export { default as ValueRelation } from './ValueRelation';
|