sprof 0.0.108 → 0.0.109
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/atoms/PButton/PButton.stories.d.ts +6 -6
- package/dist/core/components/atoms/PButton/PButton.vue.d.ts +1 -1
- package/dist/core/components/atoms/PDatePicker/PDatePicker.vue.d.ts +1 -1
- package/dist/modules/index.d.ts +0 -1
- package/dist/sprof.js +2293 -2389
- package/dist/sprof.umd.cjs +32 -32
- package/package.json +1 -1
|
@@ -53,9 +53,9 @@ declare const _default: Meta<{
|
|
|
53
53
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
54
54
|
click: (...args: any[]) => void;
|
|
55
55
|
}, import('vue').PublicProps, {
|
|
56
|
+
text: string;
|
|
56
57
|
type: Statuses;
|
|
57
58
|
size: Sizes;
|
|
58
|
-
text: string;
|
|
59
59
|
width: string;
|
|
60
60
|
margin: string;
|
|
61
61
|
height: string;
|
|
@@ -118,9 +118,9 @@ declare const _default: Meta<{
|
|
|
118
118
|
}>> & Readonly<{
|
|
119
119
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
120
120
|
}>, {}, {}, {}, {}, {
|
|
121
|
+
text: string;
|
|
121
122
|
type: Statuses;
|
|
122
123
|
size: Sizes;
|
|
123
|
-
text: string;
|
|
124
124
|
width: string;
|
|
125
125
|
margin: string;
|
|
126
126
|
height: string;
|
|
@@ -182,9 +182,9 @@ declare const _default: Meta<{
|
|
|
182
182
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
183
183
|
click: (...args: any[]) => void;
|
|
184
184
|
}, string, {
|
|
185
|
+
text: string;
|
|
185
186
|
type: Statuses;
|
|
186
187
|
size: Sizes;
|
|
187
|
-
text: string;
|
|
188
188
|
width: string;
|
|
189
189
|
margin: string;
|
|
190
190
|
height: string;
|
|
@@ -249,9 +249,9 @@ export declare const Base: StoryFn<{
|
|
|
249
249
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
250
250
|
click: (...args: any[]) => void;
|
|
251
251
|
}, import('vue').PublicProps, {
|
|
252
|
+
text: string;
|
|
252
253
|
type: Statuses;
|
|
253
254
|
size: Sizes;
|
|
254
|
-
text: string;
|
|
255
255
|
width: string;
|
|
256
256
|
margin: string;
|
|
257
257
|
height: string;
|
|
@@ -314,9 +314,9 @@ export declare const Base: StoryFn<{
|
|
|
314
314
|
}>> & Readonly<{
|
|
315
315
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
316
316
|
}>, {}, {}, {}, {}, {
|
|
317
|
+
text: string;
|
|
317
318
|
type: Statuses;
|
|
318
319
|
size: Sizes;
|
|
319
|
-
text: string;
|
|
320
320
|
width: string;
|
|
321
321
|
margin: string;
|
|
322
322
|
height: string;
|
|
@@ -378,9 +378,9 @@ export declare const Base: StoryFn<{
|
|
|
378
378
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
379
379
|
click: (...args: any[]) => void;
|
|
380
380
|
}, string, {
|
|
381
|
+
text: string;
|
|
381
382
|
type: Statuses;
|
|
382
383
|
size: Sizes;
|
|
383
|
-
text: string;
|
|
384
384
|
width: string;
|
|
385
385
|
margin: string;
|
|
386
386
|
height: string;
|
|
@@ -97,9 +97,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
97
97
|
}>> & Readonly<{
|
|
98
98
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
99
99
|
}>, {
|
|
100
|
+
text: string;
|
|
100
101
|
type: Statuses;
|
|
101
102
|
size: Sizes;
|
|
102
|
-
text: string;
|
|
103
103
|
width: string;
|
|
104
104
|
margin: string;
|
|
105
105
|
height: string;
|
|
@@ -65,8 +65,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
65
65
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
66
66
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
|
-
label: string;
|
|
69
68
|
text: string;
|
|
69
|
+
label: string;
|
|
70
70
|
margin: string;
|
|
71
71
|
placeholder: string;
|
|
72
72
|
padding: string;
|
package/dist/modules/index.d.ts
CHANGED