sprof 0.0.122 → 0.0.124
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/components/ContextWindow.vue.d.ts +1 -1
- package/dist/core/components/DateInputRange.vue.d.ts +1 -1
- package/dist/core/components/DropList.vue.d.ts +1 -1
- package/dist/core/components/GeneralItem.vue.d.ts +1 -1
- package/dist/core/components/GridContainer.vue.d.ts +1 -1
- package/dist/core/components/ImageCropper.vue.d.ts +133 -1
- package/dist/core/components/InfoItem.vue.d.ts +1 -1
- package/dist/core/components/LeftRightContainer.vue.d.ts +1 -1
- package/dist/core/components/MessageBody.vue.d.ts +1 -1
- package/dist/core/components/PPagination.vue.d.ts +1 -1
- package/dist/core/components/PhoneForm.vue.d.ts +2 -2
- package/dist/core/components/RemoteSearch.vue.d.ts +3 -1
- package/dist/core/components/ResearcheContainer.vue.d.ts +1 -1
- package/dist/core/components/RightSliderContainer.vue.d.ts +1 -1
- package/dist/core/components/RightTabsContainer.vue.d.ts +2 -2
- package/dist/core/components/SingleNameToggleForm.vue.d.ts +3 -1
- package/dist/core/components/Switch3Pos.vue.d.ts +1 -1
- package/dist/core/components/ThemeWrapper.vue.d.ts +1 -1
- package/dist/core/components/atoms/PCheckbox/PCheckBox.stories.d.ts +6 -2
- package/dist/core/components/atoms/PCheckbox/PCheckBox.vue.d.ts +3 -1
- package/dist/core/components/atoms/PDatePicker/PDatePicker.vue.d.ts +3 -1
- package/dist/core/components/atoms/PInput/PInput.stories.d.ts +12 -2
- package/dist/core/components/atoms/PInput/PInput.vue.d.ts +3 -1
- package/dist/core/components/atoms/PInputDate/PInputDate.stories.d.ts +2 -2
- package/dist/core/components/atoms/PInputDate/PInputDate.vue.d.ts +1 -1
- package/dist/core/components/atoms/PInputNumber/PInputNumber.stories.d.ts +23 -109
- package/dist/core/components/atoms/PInputNumber/PInputNumber.vue.d.ts +16 -3
- package/dist/core/components/atoms/PList/PList.stories.d.ts +2 -2
- package/dist/core/components/atoms/PList/PList.vue.d.ts +1 -1
- package/dist/core/components/atoms/PListItem/PListItem.stories.d.ts +3 -3
- package/dist/core/components/atoms/PListItem/PListItem.vue.d.ts +1 -1
- package/dist/core/components/atoms/PRadio/PRadio.stories.d.ts +6 -2
- package/dist/core/components/atoms/PRadio/PRadio.vue.d.ts +3 -1
- package/dist/core/components/atoms/PRightSlider/PRightSlider.stories.d.ts +2 -2
- package/dist/core/components/atoms/PRightSlider/PRightSlider.vue.d.ts +1 -1
- package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +10 -0
- package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +2 -0
- package/dist/core/components/atoms/PSticky/PSticky.stories.d.ts +2 -2
- package/dist/core/components/atoms/PSticky/PSticky.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/PTable/PTable.storeis.d.ts +2 -2
- package/dist/core/components/atoms/PTable/PTable.vue.d.ts +1 -1
- package/dist/core/components/atoms/PTextarea/PTextarea.stories.d.ts +12 -2
- package/dist/core/components/atoms/PTextarea/PTextarea.vue.d.ts +3 -1
- package/dist/core/components/molecules/Collapse/VerticalCollapseContainer.vue.d.ts +3 -3
- package/dist/core/components/molecules/PAdd/PAdd.vue.d.ts +1 -1
- package/dist/core/components/molecules/PAdd/PContainer.vue.d.ts +1 -1
- package/dist/core/components/molecules/PDel/PDel.vue.d.ts +1 -1
- package/dist/core/components/organisms/AuthForm/AuthForm.vue.d.ts +1 -1
- package/dist/core/components/organisms/PTabs/PTabs.stories.d.ts +6 -2
- package/dist/core/components/organisms/PTabs/PTabs.vue.d.ts +3 -1
- package/dist/core/components/pages/AuthPage.vue.d.ts +1 -1
- package/dist/core/components/pages/PageNotFound.vue.d.ts +1 -1
- package/dist/core/helpers/BaseRoutes.d.ts +2 -2
- package/dist/core/helpers/Numbers.d.ts +3 -0
- package/dist/core/helpers/Router.d.ts +1 -0
- package/dist/modules/forms/components/admin/Fields/DateFieldEdit.vue.d.ts +1 -1
- package/dist/modules/forms/components/admin/Fields/FieldsEditsComponents.d.ts +3 -3
- package/dist/modules/forms/components/admin/Fields/StringFieldEdit.vue.d.ts +1 -1
- package/dist/sprof.js +1782 -1792
- package/dist/sprof.umd.cjs +13 -13
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { StoryFn } from '@storybook/vue3';
|
|
2
1
|
declare const _default: {
|
|
3
2
|
title: string;
|
|
4
3
|
component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
@@ -42,13 +41,19 @@ declare const _default: {
|
|
|
42
41
|
default: number;
|
|
43
42
|
required: false;
|
|
44
43
|
};
|
|
44
|
+
precision: {
|
|
45
|
+
type: NumberConstructor;
|
|
46
|
+
default: number;
|
|
47
|
+
required: false;
|
|
48
|
+
};
|
|
45
49
|
modelValue: {
|
|
46
|
-
type: globalThis.PropType<
|
|
50
|
+
type: globalThis.PropType<number>;
|
|
47
51
|
};
|
|
48
52
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
49
53
|
input: (...args: any[]) => void;
|
|
50
54
|
blur: (...args: any[]) => void;
|
|
51
55
|
change: (...args: any[]) => void;
|
|
56
|
+
"update:modelValue": (value: number) => void;
|
|
52
57
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
53
58
|
label: {
|
|
54
59
|
type: StringConstructor;
|
|
@@ -90,13 +95,19 @@ declare const _default: {
|
|
|
90
95
|
default: number;
|
|
91
96
|
required: false;
|
|
92
97
|
};
|
|
98
|
+
precision: {
|
|
99
|
+
type: NumberConstructor;
|
|
100
|
+
default: number;
|
|
101
|
+
required: false;
|
|
102
|
+
};
|
|
93
103
|
modelValue: {
|
|
94
|
-
type: globalThis.PropType<
|
|
104
|
+
type: globalThis.PropType<number>;
|
|
95
105
|
};
|
|
96
106
|
}>> & Readonly<{
|
|
97
107
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
98
108
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
99
109
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
110
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
100
111
|
}>, {
|
|
101
112
|
label: string;
|
|
102
113
|
margin: string;
|
|
@@ -106,7 +117,8 @@ declare const _default: {
|
|
|
106
117
|
min: number;
|
|
107
118
|
disabled: boolean;
|
|
108
119
|
step: number;
|
|
109
|
-
|
|
120
|
+
precision: number;
|
|
121
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
110
122
|
tags: string[];
|
|
111
123
|
parameters: {
|
|
112
124
|
docs: {
|
|
@@ -147,109 +159,11 @@ declare const _default: {
|
|
|
147
159
|
};
|
|
148
160
|
};
|
|
149
161
|
export default _default;
|
|
150
|
-
export declare const Default:
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
margin: {
|
|
157
|
-
type: StringConstructor;
|
|
158
|
-
required: false;
|
|
159
|
-
default: string;
|
|
160
|
-
};
|
|
161
|
-
padding: {
|
|
162
|
-
type: StringConstructor;
|
|
163
|
-
default: string;
|
|
164
|
-
required: false;
|
|
165
|
-
};
|
|
166
|
-
color: {
|
|
167
|
-
type: StringConstructor;
|
|
168
|
-
default: string;
|
|
169
|
-
required: false;
|
|
170
|
-
};
|
|
171
|
-
disabled: {
|
|
172
|
-
type: BooleanConstructor;
|
|
173
|
-
required: false;
|
|
174
|
-
default: boolean;
|
|
175
|
-
};
|
|
176
|
-
max: {
|
|
177
|
-
type: NumberConstructor;
|
|
178
|
-
default: number;
|
|
179
|
-
required: false;
|
|
180
|
-
};
|
|
181
|
-
min: {
|
|
182
|
-
type: NumberConstructor;
|
|
183
|
-
default: number;
|
|
184
|
-
required: false;
|
|
185
|
-
};
|
|
186
|
-
step: {
|
|
187
|
-
type: NumberConstructor;
|
|
188
|
-
default: number;
|
|
189
|
-
required: false;
|
|
190
|
-
};
|
|
191
|
-
modelValue: {
|
|
192
|
-
type: globalThis.PropType<string>;
|
|
193
|
-
};
|
|
194
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
195
|
-
input: (...args: any[]) => void;
|
|
196
|
-
blur: (...args: any[]) => void;
|
|
197
|
-
change: (...args: any[]) => void;
|
|
198
|
-
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
199
|
-
label: {
|
|
200
|
-
type: StringConstructor;
|
|
201
|
-
default: string;
|
|
202
|
-
required: false;
|
|
203
|
-
};
|
|
204
|
-
margin: {
|
|
205
|
-
type: StringConstructor;
|
|
206
|
-
required: false;
|
|
207
|
-
default: string;
|
|
208
|
-
};
|
|
209
|
-
padding: {
|
|
210
|
-
type: StringConstructor;
|
|
211
|
-
default: string;
|
|
212
|
-
required: false;
|
|
213
|
-
};
|
|
214
|
-
color: {
|
|
215
|
-
type: StringConstructor;
|
|
216
|
-
default: string;
|
|
217
|
-
required: false;
|
|
218
|
-
};
|
|
219
|
-
disabled: {
|
|
220
|
-
type: BooleanConstructor;
|
|
221
|
-
required: false;
|
|
222
|
-
default: boolean;
|
|
223
|
-
};
|
|
224
|
-
max: {
|
|
225
|
-
type: NumberConstructor;
|
|
226
|
-
default: number;
|
|
227
|
-
required: false;
|
|
228
|
-
};
|
|
229
|
-
min: {
|
|
230
|
-
type: NumberConstructor;
|
|
231
|
-
default: number;
|
|
232
|
-
required: false;
|
|
233
|
-
};
|
|
234
|
-
step: {
|
|
235
|
-
type: NumberConstructor;
|
|
236
|
-
default: number;
|
|
237
|
-
required: false;
|
|
238
|
-
};
|
|
239
|
-
modelValue: {
|
|
240
|
-
type: globalThis.PropType<string>;
|
|
162
|
+
export declare const Default: {
|
|
163
|
+
args: {
|
|
164
|
+
label: string;
|
|
165
|
+
color: string;
|
|
166
|
+
disabled: boolean;
|
|
167
|
+
max: number;
|
|
241
168
|
};
|
|
242
|
-
}
|
|
243
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
244
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
245
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
246
|
-
}>, {
|
|
247
|
-
label: string;
|
|
248
|
-
margin: string;
|
|
249
|
-
padding: string;
|
|
250
|
-
color: string;
|
|
251
|
-
max: number;
|
|
252
|
-
min: number;
|
|
253
|
-
disabled: boolean;
|
|
254
|
-
step: number;
|
|
255
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
169
|
+
};
|
|
@@ -39,13 +39,19 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
39
39
|
default: number;
|
|
40
40
|
required: false;
|
|
41
41
|
};
|
|
42
|
+
precision: {
|
|
43
|
+
type: NumberConstructor;
|
|
44
|
+
default: number;
|
|
45
|
+
required: false;
|
|
46
|
+
};
|
|
42
47
|
modelValue: {
|
|
43
|
-
type: globalThis.PropType<
|
|
48
|
+
type: globalThis.PropType<number>;
|
|
44
49
|
};
|
|
45
50
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
51
|
input: (...args: any[]) => void;
|
|
47
52
|
blur: (...args: any[]) => void;
|
|
48
53
|
change: (...args: any[]) => void;
|
|
54
|
+
"update:modelValue": (value: number) => void;
|
|
49
55
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
50
56
|
label: {
|
|
51
57
|
type: StringConstructor;
|
|
@@ -87,13 +93,19 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
87
93
|
default: number;
|
|
88
94
|
required: false;
|
|
89
95
|
};
|
|
96
|
+
precision: {
|
|
97
|
+
type: NumberConstructor;
|
|
98
|
+
default: number;
|
|
99
|
+
required: false;
|
|
100
|
+
};
|
|
90
101
|
modelValue: {
|
|
91
|
-
type: globalThis.PropType<
|
|
102
|
+
type: globalThis.PropType<number>;
|
|
92
103
|
};
|
|
93
104
|
}>> & Readonly<{
|
|
94
105
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
95
106
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
96
107
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
108
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
97
109
|
}>, {
|
|
98
110
|
label: string;
|
|
99
111
|
margin: string;
|
|
@@ -103,5 +115,6 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
103
115
|
min: number;
|
|
104
116
|
disabled: boolean;
|
|
105
117
|
step: number;
|
|
106
|
-
|
|
118
|
+
precision: number;
|
|
119
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
107
120
|
export default _default;
|
|
@@ -22,7 +22,7 @@ declare const _default: {
|
|
|
22
22
|
width: string;
|
|
23
23
|
margin: string;
|
|
24
24
|
padding: string;
|
|
25
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
25
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLUListElement, import('vue').ComponentProvideOptions, {
|
|
26
26
|
P: {};
|
|
27
27
|
B: {};
|
|
28
28
|
D: {};
|
|
@@ -123,7 +123,7 @@ export declare const Default: StoryFn<{
|
|
|
123
123
|
width: string;
|
|
124
124
|
margin: string;
|
|
125
125
|
padding: string;
|
|
126
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
126
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLUListElement, import('vue').ComponentProvideOptions, {
|
|
127
127
|
P: {};
|
|
128
128
|
B: {};
|
|
129
129
|
D: {};
|
|
@@ -34,7 +34,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
34
34
|
width: string;
|
|
35
35
|
margin: string;
|
|
36
36
|
padding: string;
|
|
37
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLUListElement>, {
|
|
38
38
|
default?(_: {}): any;
|
|
39
39
|
}>;
|
|
40
40
|
export default _default;
|
|
@@ -22,7 +22,7 @@ declare const _default: {
|
|
|
22
22
|
margin: string;
|
|
23
23
|
padding: string;
|
|
24
24
|
showDivider: boolean;
|
|
25
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
25
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLLIElement, import('vue').ComponentProvideOptions, {
|
|
26
26
|
P: {};
|
|
27
27
|
B: {};
|
|
28
28
|
D: {};
|
|
@@ -115,7 +115,7 @@ export declare const Default: StoryFn<{
|
|
|
115
115
|
margin: string;
|
|
116
116
|
padding: string;
|
|
117
117
|
showDivider: boolean;
|
|
118
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
118
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLLIElement, import('vue').ComponentProvideOptions, {
|
|
119
119
|
P: {};
|
|
120
120
|
B: {};
|
|
121
121
|
D: {};
|
|
@@ -192,7 +192,7 @@ export declare const WithDivider: StoryFn<{
|
|
|
192
192
|
margin: string;
|
|
193
193
|
padding: string;
|
|
194
194
|
showDivider: boolean;
|
|
195
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
195
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLLIElement, import('vue').ComponentProvideOptions, {
|
|
196
196
|
P: {};
|
|
197
197
|
B: {};
|
|
198
198
|
D: {};
|
|
@@ -34,7 +34,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
34
34
|
margin: string;
|
|
35
35
|
padding: string;
|
|
36
36
|
showDivider: boolean;
|
|
37
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLIElement>, {
|
|
38
38
|
default?(_: {}): any;
|
|
39
39
|
}>;
|
|
40
40
|
export default _default;
|
|
@@ -43,6 +43,7 @@ declare const _default: {
|
|
|
43
43
|
};
|
|
44
44
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
45
45
|
change: (...args: any[]) => void;
|
|
46
|
+
"update:modelValue": (value: string) => void;
|
|
46
47
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
47
48
|
label: {
|
|
48
49
|
type: StringConstructor;
|
|
@@ -85,6 +86,7 @@ declare const _default: {
|
|
|
85
86
|
};
|
|
86
87
|
}>> & Readonly<{
|
|
87
88
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
89
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
88
90
|
}>, {
|
|
89
91
|
label: string;
|
|
90
92
|
size: string;
|
|
@@ -95,7 +97,7 @@ declare const _default: {
|
|
|
95
97
|
padding: string;
|
|
96
98
|
fontSize: string;
|
|
97
99
|
borderRadius: string;
|
|
98
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
100
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
99
101
|
tags: string[];
|
|
100
102
|
parameters: {
|
|
101
103
|
docs: {
|
|
@@ -178,6 +180,7 @@ export declare const DefaultRadio: StoryFn<import('vue').DefineComponent<globalT
|
|
|
178
180
|
};
|
|
179
181
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
180
182
|
change: (...args: any[]) => void;
|
|
183
|
+
"update:modelValue": (value: string) => void;
|
|
181
184
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
182
185
|
label: {
|
|
183
186
|
type: StringConstructor;
|
|
@@ -220,6 +223,7 @@ export declare const DefaultRadio: StoryFn<import('vue').DefineComponent<globalT
|
|
|
220
223
|
};
|
|
221
224
|
}>> & Readonly<{
|
|
222
225
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
226
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
223
227
|
}>, {
|
|
224
228
|
label: string;
|
|
225
229
|
size: string;
|
|
@@ -230,4 +234,4 @@ export declare const DefaultRadio: StoryFn<import('vue').DefineComponent<globalT
|
|
|
230
234
|
padding: string;
|
|
231
235
|
fontSize: string;
|
|
232
236
|
borderRadius: string;
|
|
233
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
237
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>>;
|
|
@@ -40,6 +40,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
40
40
|
};
|
|
41
41
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42
42
|
change: (...args: any[]) => void;
|
|
43
|
+
"update:modelValue": (value: string) => void;
|
|
43
44
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
44
45
|
label: {
|
|
45
46
|
type: StringConstructor;
|
|
@@ -82,6 +83,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
82
83
|
};
|
|
83
84
|
}>> & Readonly<{
|
|
84
85
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
86
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
85
87
|
}>, {
|
|
86
88
|
label: string;
|
|
87
89
|
size: string;
|
|
@@ -92,5 +94,5 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
92
94
|
padding: string;
|
|
93
95
|
fontSize: string;
|
|
94
96
|
borderRadius: string;
|
|
95
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
97
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
96
98
|
export default _default;
|
|
@@ -58,7 +58,7 @@ declare const _default: {
|
|
|
58
58
|
widthOpened: string;
|
|
59
59
|
titleOpen: string;
|
|
60
60
|
titleClose: string;
|
|
61
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
61
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
62
62
|
P: {};
|
|
63
63
|
B: {};
|
|
64
64
|
D: {};
|
|
@@ -282,7 +282,7 @@ export declare const DefaultSlider: StoryFn<{
|
|
|
282
282
|
widthOpened: string;
|
|
283
283
|
titleOpen: string;
|
|
284
284
|
titleClose: string;
|
|
285
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
285
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
286
286
|
P: {};
|
|
287
287
|
B: {};
|
|
288
288
|
D: {};
|
|
@@ -96,7 +96,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
96
96
|
widthOpened: string;
|
|
97
97
|
titleOpen: string;
|
|
98
98
|
titleClose: string;
|
|
99
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
99
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
100
100
|
content?(_: {}): any;
|
|
101
101
|
default?(_: {}): any;
|
|
102
102
|
}>;
|
|
@@ -64,9 +64,11 @@ declare const _default: {
|
|
|
64
64
|
}>> & Readonly<{
|
|
65
65
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
66
66
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
67
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
67
68
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
68
69
|
clear: (...args: any[]) => void;
|
|
69
70
|
change: (...args: any[]) => void;
|
|
71
|
+
"update:modelValue": (value: unknown) => void;
|
|
70
72
|
}, import('vue').PublicProps, {
|
|
71
73
|
label: string;
|
|
72
74
|
readonly: boolean;
|
|
@@ -148,6 +150,7 @@ declare const _default: {
|
|
|
148
150
|
}>> & Readonly<{
|
|
149
151
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
150
152
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
153
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
151
154
|
}>, {}, {}, {}, {}, {
|
|
152
155
|
label: string;
|
|
153
156
|
readonly: boolean;
|
|
@@ -226,9 +229,11 @@ declare const _default: {
|
|
|
226
229
|
}>> & Readonly<{
|
|
227
230
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
228
231
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
232
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
229
233
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
230
234
|
clear: (...args: any[]) => void;
|
|
231
235
|
change: (...args: any[]) => void;
|
|
236
|
+
"update:modelValue": (value: unknown) => void;
|
|
232
237
|
}, string, {
|
|
233
238
|
label: string;
|
|
234
239
|
readonly: boolean;
|
|
@@ -351,9 +356,11 @@ export declare const Default: StoryFn<{
|
|
|
351
356
|
}>> & Readonly<{
|
|
352
357
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
353
358
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
359
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
354
360
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
355
361
|
clear: (...args: any[]) => void;
|
|
356
362
|
change: (...args: any[]) => void;
|
|
363
|
+
"update:modelValue": (value: unknown) => void;
|
|
357
364
|
}, import('vue').PublicProps, {
|
|
358
365
|
label: string;
|
|
359
366
|
readonly: boolean;
|
|
@@ -435,6 +442,7 @@ export declare const Default: StoryFn<{
|
|
|
435
442
|
}>> & Readonly<{
|
|
436
443
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
437
444
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
445
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
438
446
|
}>, {}, {}, {}, {}, {
|
|
439
447
|
label: string;
|
|
440
448
|
readonly: boolean;
|
|
@@ -513,9 +521,11 @@ export declare const Default: StoryFn<{
|
|
|
513
521
|
}>> & Readonly<{
|
|
514
522
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
515
523
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
524
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
516
525
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
517
526
|
clear: (...args: any[]) => void;
|
|
518
527
|
change: (...args: any[]) => void;
|
|
528
|
+
"update:modelValue": (value: unknown) => void;
|
|
519
529
|
}, string, {
|
|
520
530
|
label: string;
|
|
521
531
|
readonly: boolean;
|
|
@@ -60,6 +60,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
60
60
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
61
61
|
clear: (...args: any[]) => void;
|
|
62
62
|
change: (...args: any[]) => void;
|
|
63
|
+
"update:modelValue": (value: unknown) => void;
|
|
63
64
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
64
65
|
label: {
|
|
65
66
|
type: StringConstructor;
|
|
@@ -122,6 +123,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
122
123
|
}>> & Readonly<{
|
|
123
124
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
124
125
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
126
|
+
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
125
127
|
}>, {
|
|
126
128
|
label: string;
|
|
127
129
|
readonly: boolean;
|
|
@@ -29,7 +29,7 @@ declare const _default: {
|
|
|
29
29
|
zIndex: number;
|
|
30
30
|
padding: string;
|
|
31
31
|
shadow: boolean;
|
|
32
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
32
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
33
33
|
P: {};
|
|
34
34
|
B: {};
|
|
35
35
|
D: {};
|
|
@@ -159,7 +159,7 @@ export declare const Default: StoryFn<{
|
|
|
159
159
|
zIndex: number;
|
|
160
160
|
padding: string;
|
|
161
161
|
shadow: boolean;
|
|
162
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
162
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
163
163
|
P: {};
|
|
164
164
|
B: {};
|
|
165
165
|
D: {};
|
|
@@ -46,7 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
46
46
|
zIndex: number;
|
|
47
47
|
padding: string;
|
|
48
48
|
shadow: boolean;
|
|
49
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
50
50
|
default?(_: {}): any;
|
|
51
51
|
}>;
|
|
52
52
|
export default _default;
|
|
@@ -140,7 +140,7 @@ declare const _default: {
|
|
|
140
140
|
fontWeight: string;
|
|
141
141
|
customClass: string;
|
|
142
142
|
isHtml: boolean;
|
|
143
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
143
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
144
144
|
tags: string[];
|
|
145
145
|
parameters: {
|
|
146
146
|
docs: {
|
|
@@ -344,4 +344,4 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
|
|
|
344
344
|
fontWeight: string;
|
|
345
345
|
customClass: string;
|
|
346
346
|
isHtml: boolean;
|
|
347
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
347
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>>;
|
|
@@ -137,5 +137,5 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
137
137
|
fontWeight: string;
|
|
138
138
|
customClass: string;
|
|
139
139
|
isHtml: boolean;
|
|
140
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
140
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
141
141
|
export default _default;
|
|
@@ -22,7 +22,7 @@ declare const _default: {
|
|
|
22
22
|
width: string;
|
|
23
23
|
margin: string;
|
|
24
24
|
fontSize: string;
|
|
25
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
25
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLTableElement, import('vue').ComponentProvideOptions, {
|
|
26
26
|
P: {};
|
|
27
27
|
B: {};
|
|
28
28
|
D: {};
|
|
@@ -124,7 +124,7 @@ export declare const Default: StoryFn<{
|
|
|
124
124
|
width: string;
|
|
125
125
|
margin: string;
|
|
126
126
|
fontSize: string;
|
|
127
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
127
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLTableElement, import('vue').ComponentProvideOptions, {
|
|
128
128
|
P: {};
|
|
129
129
|
B: {};
|
|
130
130
|
D: {};
|
|
@@ -34,7 +34,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
34
34
|
width: string;
|
|
35
35
|
margin: string;
|
|
36
36
|
fontSize: string;
|
|
37
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLTableElement>, {
|
|
38
38
|
thead?(_: {}): any;
|
|
39
39
|
tbody?(_: {}): any;
|
|
40
40
|
}>;
|
|
@@ -39,9 +39,11 @@ declare const _default: {
|
|
|
39
39
|
}>> & Readonly<{
|
|
40
40
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
41
41
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
42
43
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
43
44
|
input: (...args: any[]) => void;
|
|
44
45
|
blur: (...args: any[]) => void;
|
|
46
|
+
"update:modelValue": (value: string) => void;
|
|
45
47
|
}, import('vue').PublicProps, {
|
|
46
48
|
label: string;
|
|
47
49
|
mask: string;
|
|
@@ -49,7 +51,7 @@ declare const _default: {
|
|
|
49
51
|
padding: string;
|
|
50
52
|
color: string;
|
|
51
53
|
borderColor: string;
|
|
52
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
54
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
53
55
|
P: {};
|
|
54
56
|
B: {};
|
|
55
57
|
D: {};
|
|
@@ -93,6 +95,7 @@ declare const _default: {
|
|
|
93
95
|
}>> & Readonly<{
|
|
94
96
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
95
97
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
98
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
96
99
|
}>, {}, {}, {}, {}, {
|
|
97
100
|
label: string;
|
|
98
101
|
mask: string;
|
|
@@ -141,9 +144,11 @@ declare const _default: {
|
|
|
141
144
|
}>> & Readonly<{
|
|
142
145
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
143
146
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
147
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
144
148
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
145
149
|
input: (...args: any[]) => void;
|
|
146
150
|
blur: (...args: any[]) => void;
|
|
151
|
+
"update:modelValue": (value: string) => void;
|
|
147
152
|
}, string, {
|
|
148
153
|
label: string;
|
|
149
154
|
mask: string;
|
|
@@ -231,9 +236,11 @@ export declare const Default: StoryFn<{
|
|
|
231
236
|
}>> & Readonly<{
|
|
232
237
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
233
238
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
239
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
234
240
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
235
241
|
input: (...args: any[]) => void;
|
|
236
242
|
blur: (...args: any[]) => void;
|
|
243
|
+
"update:modelValue": (value: string) => void;
|
|
237
244
|
}, import('vue').PublicProps, {
|
|
238
245
|
label: string;
|
|
239
246
|
mask: string;
|
|
@@ -241,7 +248,7 @@ export declare const Default: StoryFn<{
|
|
|
241
248
|
padding: string;
|
|
242
249
|
color: string;
|
|
243
250
|
borderColor: string;
|
|
244
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {},
|
|
251
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
245
252
|
P: {};
|
|
246
253
|
B: {};
|
|
247
254
|
D: {};
|
|
@@ -285,6 +292,7 @@ export declare const Default: StoryFn<{
|
|
|
285
292
|
}>> & Readonly<{
|
|
286
293
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
287
294
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
295
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
288
296
|
}>, {}, {}, {}, {}, {
|
|
289
297
|
label: string;
|
|
290
298
|
mask: string;
|
|
@@ -333,9 +341,11 @@ export declare const Default: StoryFn<{
|
|
|
333
341
|
}>> & Readonly<{
|
|
334
342
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
335
343
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
344
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
336
345
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
337
346
|
input: (...args: any[]) => void;
|
|
338
347
|
blur: (...args: any[]) => void;
|
|
348
|
+
"update:modelValue": (value: string) => void;
|
|
339
349
|
}, string, {
|
|
340
350
|
label: string;
|
|
341
351
|
mask: string;
|
|
@@ -35,6 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
35
35
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
36
|
input: (...args: any[]) => void;
|
|
37
37
|
blur: (...args: any[]) => void;
|
|
38
|
+
"update:modelValue": (value: string) => void;
|
|
38
39
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
39
40
|
label: {
|
|
40
41
|
type: StringConstructor;
|
|
@@ -72,6 +73,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
72
73
|
}>> & Readonly<{
|
|
73
74
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
74
75
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
75
77
|
}>, {
|
|
76
78
|
label: string;
|
|
77
79
|
mask: string;
|
|
@@ -79,7 +81,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
79
81
|
padding: string;
|
|
80
82
|
color: string;
|
|
81
83
|
borderColor: string;
|
|
82
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
84
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
83
85
|
default?(_: {}): any;
|
|
84
86
|
right?(_: {}): any;
|
|
85
87
|
}>;
|