sprof 0.0.177 → 0.0.179
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/core/auth/AuthForm.d.ts +4 -4
- package/dist/core/auth/fields/EmailField.d.ts +3 -1
- package/dist/core/auth/fields/PasswordField.d.ts +3 -1
- package/dist/core/auth/fields/PasswordRepeatField.d.ts +3 -1
- package/dist/core/auth/settings/AuthFormSettings.d.ts +4 -7
- package/dist/core/classes/FileInfo.d.ts +3 -0
- package/dist/core/components/AdminGallery.vue.d.ts +6 -6
- package/dist/core/components/organisms/PAuthForm/PAuthForm.stories.d.ts +348 -2
- package/dist/core/components/organisms/PAuthForm/PAuthForm.vue.d.ts +174 -1
- package/dist/sprof.js +1180 -1163
- package/dist/sprof.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -41,5 +41,178 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
41
41
|
padding: string;
|
|
42
42
|
width: string;
|
|
43
43
|
background: string;
|
|
44
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
44
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
45
|
+
fields: (({
|
|
46
|
+
$: import('vue').ComponentInternalInstance;
|
|
47
|
+
$data: {};
|
|
48
|
+
$props: Partial<{
|
|
49
|
+
label: string;
|
|
50
|
+
mask: string;
|
|
51
|
+
margin: string;
|
|
52
|
+
padding: string;
|
|
53
|
+
color: string;
|
|
54
|
+
disabled: boolean;
|
|
55
|
+
borderColor: string;
|
|
56
|
+
}> & Omit<{
|
|
57
|
+
readonly label: string;
|
|
58
|
+
readonly margin: string;
|
|
59
|
+
readonly padding: string;
|
|
60
|
+
readonly color: string;
|
|
61
|
+
readonly disabled: boolean;
|
|
62
|
+
readonly borderColor: string;
|
|
63
|
+
readonly mask?: string | undefined;
|
|
64
|
+
readonly modelValue?: string | undefined;
|
|
65
|
+
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
66
|
+
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
67
|
+
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
68
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "label" | "mask" | "margin" | "padding" | "color" | "disabled" | "borderColor">;
|
|
69
|
+
$attrs: {
|
|
70
|
+
[x: string]: unknown;
|
|
71
|
+
};
|
|
72
|
+
$refs: {
|
|
73
|
+
[x: string]: unknown;
|
|
74
|
+
} & {
|
|
75
|
+
input: HTMLInputElement;
|
|
76
|
+
};
|
|
77
|
+
$slots: Readonly<{
|
|
78
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
79
|
+
}>;
|
|
80
|
+
$root: globalThis.ComponentPublicInstance | null;
|
|
81
|
+
$parent: globalThis.ComponentPublicInstance | null;
|
|
82
|
+
$host: Element | null;
|
|
83
|
+
$emit: ((event: "input", ...args: any[]) => void) & ((event: "blur", ...args: any[]) => void) & ((event: "update:modelValue", value: string) => void);
|
|
84
|
+
$el: HTMLDivElement;
|
|
85
|
+
$options: import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
86
|
+
label: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: string;
|
|
89
|
+
required: false;
|
|
90
|
+
};
|
|
91
|
+
margin: {
|
|
92
|
+
type: StringConstructor;
|
|
93
|
+
required: false;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
|
+
disabled: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
required: false;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
101
|
+
padding: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: string;
|
|
104
|
+
required: false;
|
|
105
|
+
};
|
|
106
|
+
mask: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
required: false;
|
|
109
|
+
default: undefined;
|
|
110
|
+
};
|
|
111
|
+
borderColor: {
|
|
112
|
+
type: StringConstructor;
|
|
113
|
+
default: string;
|
|
114
|
+
required: false;
|
|
115
|
+
};
|
|
116
|
+
color: {
|
|
117
|
+
type: StringConstructor;
|
|
118
|
+
default: string;
|
|
119
|
+
required: false;
|
|
120
|
+
};
|
|
121
|
+
modelValue: {
|
|
122
|
+
type: globalThis.PropType<string>;
|
|
123
|
+
};
|
|
124
|
+
}>> & Readonly<{
|
|
125
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
126
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
127
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
128
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
129
|
+
input: (...args: any[]) => void;
|
|
130
|
+
blur: (...args: any[]) => void;
|
|
131
|
+
"update:modelValue": (value: string) => void;
|
|
132
|
+
}, string, {
|
|
133
|
+
label: string;
|
|
134
|
+
mask: string;
|
|
135
|
+
margin: string;
|
|
136
|
+
padding: string;
|
|
137
|
+
color: string;
|
|
138
|
+
disabled: boolean;
|
|
139
|
+
borderColor: string;
|
|
140
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
141
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
142
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
143
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
144
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
145
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
146
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
147
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
148
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
149
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
150
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
151
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
152
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
153
|
+
renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
154
|
+
renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
155
|
+
errorCaptured?: (((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void)[]) | undefined;
|
|
156
|
+
};
|
|
157
|
+
$forceUpdate: () => void;
|
|
158
|
+
$nextTick: typeof import('vue').nextTick;
|
|
159
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
160
|
+
} & Readonly<{
|
|
161
|
+
label: string;
|
|
162
|
+
mask: string;
|
|
163
|
+
margin: string;
|
|
164
|
+
padding: string;
|
|
165
|
+
color: string;
|
|
166
|
+
disabled: boolean;
|
|
167
|
+
borderColor: string;
|
|
168
|
+
}> & Omit<Readonly<globalThis.ExtractPropTypes<{
|
|
169
|
+
label: {
|
|
170
|
+
type: StringConstructor;
|
|
171
|
+
default: string;
|
|
172
|
+
required: false;
|
|
173
|
+
};
|
|
174
|
+
margin: {
|
|
175
|
+
type: StringConstructor;
|
|
176
|
+
required: false;
|
|
177
|
+
default: string;
|
|
178
|
+
};
|
|
179
|
+
disabled: {
|
|
180
|
+
type: BooleanConstructor;
|
|
181
|
+
required: false;
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
184
|
+
padding: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
required: false;
|
|
188
|
+
};
|
|
189
|
+
mask: {
|
|
190
|
+
type: StringConstructor;
|
|
191
|
+
required: false;
|
|
192
|
+
default: undefined;
|
|
193
|
+
};
|
|
194
|
+
borderColor: {
|
|
195
|
+
type: StringConstructor;
|
|
196
|
+
default: string;
|
|
197
|
+
required: false;
|
|
198
|
+
};
|
|
199
|
+
color: {
|
|
200
|
+
type: StringConstructor;
|
|
201
|
+
default: string;
|
|
202
|
+
required: false;
|
|
203
|
+
};
|
|
204
|
+
modelValue: {
|
|
205
|
+
type: globalThis.PropType<string>;
|
|
206
|
+
};
|
|
207
|
+
}>> & Readonly<{
|
|
208
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
209
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
210
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
211
|
+
}>, "label" | "mask" | "margin" | "padding" | "color" | "disabled" | "borderColor"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
212
|
+
$slots: {
|
|
213
|
+
default?(_: {}): any;
|
|
214
|
+
right?(_: {}): any;
|
|
215
|
+
};
|
|
216
|
+
}) | null)[];
|
|
217
|
+
}, HTMLDivElement>;
|
|
45
218
|
export default _default;
|