sprof 0.2.2 → 0.2.4
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-DRZdaLvF.js → ExtractsList-CqMn_6Rp.js} +1 -1
- package/dist/core/components/atoms/PButton/PButton.stories.d.ts +6 -26
- package/dist/core/components/atoms/PButton/PButton.vue.d.ts +2 -6
- package/dist/core/components/atoms/PCheckbox/PCheckBox.stories.d.ts +2 -2
- package/dist/core/components/atoms/PCheckbox/PCheckBox.vue.d.ts +1 -1
- package/dist/core/components/atoms/PInput/PInput.stories.d.ts +140 -16
- package/dist/core/components/atoms/PInput/PInput.vue.d.ts +38 -4
- package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +88 -16
- package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +40 -4
- package/dist/core/components/organisms/PAuthForm/PAuthForm.stories.d.ts +102 -20
- package/dist/core/components/organisms/PAuthForm/PAuthForm.vue.d.ts +51 -10
- package/dist/{index-CNpz7Czv.js → index-8p7UPAAQ.js} +3645 -3445
- package/dist/index.d.ts +5 -0
- package/dist/sprof.js +20 -5
- package/dist/sprof.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +4 -2
|
@@ -51,22 +51,27 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
51
51
|
padding: string;
|
|
52
52
|
mask: string;
|
|
53
53
|
margin: string;
|
|
54
|
+
width: string;
|
|
54
55
|
disabled: boolean;
|
|
56
|
+
rules: import('quasar').ValidationRule[];
|
|
55
57
|
borderColor: string;
|
|
56
58
|
}> & Omit<{
|
|
57
59
|
readonly color: string;
|
|
58
60
|
readonly label: string;
|
|
59
61
|
readonly padding: string;
|
|
60
62
|
readonly margin: string;
|
|
63
|
+
readonly width: string;
|
|
61
64
|
readonly disabled: boolean;
|
|
62
65
|
readonly borderColor: string;
|
|
63
66
|
readonly mask?: string | undefined;
|
|
64
|
-
readonly modelValue?: string | undefined;
|
|
67
|
+
readonly modelValue?: string | number | null | undefined;
|
|
68
|
+
readonly rules?: import('quasar').ValidationRule[] | undefined;
|
|
69
|
+
readonly onClear?: ((...args: any[]) => any) | undefined;
|
|
65
70
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
66
71
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
67
72
|
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
68
|
-
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
69
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "color" | "label" | "padding" | "mask" | "margin" | "disabled" | "borderColor">;
|
|
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" | "margin" | "width" | "disabled" | "rules" | "borderColor">;
|
|
70
75
|
$attrs: import('vue').Attrs;
|
|
71
76
|
$refs: {
|
|
72
77
|
[x: string]: unknown;
|
|
@@ -82,7 +87,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
82
87
|
$root: globalThis.ComponentPublicInstance | null;
|
|
83
88
|
$parent: globalThis.ComponentPublicInstance | null;
|
|
84
89
|
$host: Element | null;
|
|
85
|
-
$emit: ((event: "input", ...args: any[]) => void) & ((event: "blur", ...args: any[]) => void) & ((event: "focus", ...args: any[]) => void) & ((event: "update:modelValue", value: string) => void);
|
|
90
|
+
$emit: ((event: "clear", ...args: any[]) => void) & ((event: "input", ...args: any[]) => void) & ((event: "blur", ...args: any[]) => void) & ((event: "focus", ...args: any[]) => void) & ((event: "update:modelValue", value: string | number | null | undefined) => void);
|
|
86
91
|
$el: any;
|
|
87
92
|
$options: import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
88
93
|
label: {
|
|
@@ -105,6 +110,11 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
105
110
|
default: string;
|
|
106
111
|
required: false;
|
|
107
112
|
};
|
|
113
|
+
width: {
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
required: false;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
108
118
|
mask: {
|
|
109
119
|
type: StringConstructor;
|
|
110
120
|
required: false;
|
|
@@ -120,28 +130,37 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
120
130
|
default: string;
|
|
121
131
|
required: false;
|
|
122
132
|
};
|
|
133
|
+
rules: {
|
|
134
|
+
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
135
|
+
required: false;
|
|
136
|
+
default: undefined;
|
|
137
|
+
};
|
|
123
138
|
modelValue: {
|
|
124
|
-
type: globalThis.PropType<string>;
|
|
139
|
+
type: globalThis.PropType<string | number | null>;
|
|
125
140
|
};
|
|
126
141
|
}>> & Readonly<{
|
|
142
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
127
143
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
128
144
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
129
145
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
130
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
146
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
131
147
|
}>, {
|
|
132
148
|
focus: () => void;
|
|
133
149
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
150
|
+
clear: (...args: any[]) => void;
|
|
134
151
|
input: (...args: any[]) => void;
|
|
135
152
|
blur: (...args: any[]) => void;
|
|
136
153
|
focus: (...args: any[]) => void;
|
|
137
|
-
"update:modelValue": (value: string) => void;
|
|
154
|
+
"update:modelValue": (value: string | number | null | undefined) => void;
|
|
138
155
|
}, string, {
|
|
139
156
|
color: string;
|
|
140
157
|
label: string;
|
|
141
158
|
padding: string;
|
|
142
159
|
mask: string;
|
|
143
160
|
margin: string;
|
|
161
|
+
width: string;
|
|
144
162
|
disabled: boolean;
|
|
163
|
+
rules: import('quasar').ValidationRule[];
|
|
145
164
|
borderColor: string;
|
|
146
165
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
147
166
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -169,7 +188,9 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
169
188
|
padding: string;
|
|
170
189
|
mask: string;
|
|
171
190
|
margin: string;
|
|
191
|
+
width: string;
|
|
172
192
|
disabled: boolean;
|
|
193
|
+
rules: import('quasar').ValidationRule[];
|
|
173
194
|
borderColor: string;
|
|
174
195
|
}> & Omit<Readonly<globalThis.ExtractPropTypes<{
|
|
175
196
|
label: {
|
|
@@ -192,6 +213,11 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
192
213
|
default: string;
|
|
193
214
|
required: false;
|
|
194
215
|
};
|
|
216
|
+
width: {
|
|
217
|
+
type: StringConstructor;
|
|
218
|
+
required: false;
|
|
219
|
+
default: string;
|
|
220
|
+
};
|
|
195
221
|
mask: {
|
|
196
222
|
type: StringConstructor;
|
|
197
223
|
required: false;
|
|
@@ -207,20 +233,35 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
207
233
|
default: string;
|
|
208
234
|
required: false;
|
|
209
235
|
};
|
|
236
|
+
rules: {
|
|
237
|
+
type: globalThis.PropType<import('quasar').ValidationRule[]>;
|
|
238
|
+
required: false;
|
|
239
|
+
default: undefined;
|
|
240
|
+
};
|
|
210
241
|
modelValue: {
|
|
211
|
-
type: globalThis.PropType<string>;
|
|
242
|
+
type: globalThis.PropType<string | number | null>;
|
|
212
243
|
};
|
|
213
244
|
}>> & Readonly<{
|
|
245
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
214
246
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
215
247
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
216
248
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
217
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
218
|
-
}>, "focus" | ("color" | "label" | "padding" | "mask" | "margin" | "disabled" | "borderColor")> & {
|
|
249
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
250
|
+
}>, "focus" | ("color" | "label" | "padding" | "mask" | "margin" | "width" | "disabled" | "rules" | "borderColor")> & {
|
|
219
251
|
focus: () => void;
|
|
220
252
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
221
253
|
$slots: {
|
|
254
|
+
prepend?(_: {}): any;
|
|
255
|
+
before?(_: {}): any;
|
|
222
256
|
default?(_: {}): any;
|
|
257
|
+
after?(_: {}): any;
|
|
258
|
+
append?(_: {}): any;
|
|
223
259
|
right?(_: {}): any;
|
|
260
|
+
label?(_: {}): any;
|
|
261
|
+
error?(_: {}): any;
|
|
262
|
+
hint?(_: {}): any;
|
|
263
|
+
counter?(_: {}): any;
|
|
264
|
+
loading?(_: {}): any;
|
|
224
265
|
};
|
|
225
266
|
}) | null)[];
|
|
226
267
|
}, HTMLDivElement>;
|