sprof 0.2.12 → 0.2.16
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-DVHUnWqh.js → ExtractsList-DOcnyFU8.js} +1 -1
- package/dist/core/components/atoms/PDateInput/PDateInput.stories.d.ts +452 -44
- package/dist/core/components/atoms/PDateInput/PDateInput.vue.d.ts +69 -6
- package/dist/core/components/atoms/PInputDate/PInputDate.stories.d.ts +4 -0
- package/dist/core/components/atoms/PInputDate/PInputDate.vue.d.ts +2 -0
- package/dist/core/components/organisms/index.d.ts +2 -2
- package/dist/core/helpers/Menus.d.ts +1 -1
- package/dist/global-components.d.ts +5 -1
- package/dist/{index-dEuisIfL.js → index-BHTU_vkN.js} +4550 -4297
- package/dist/index.d.ts +7 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/tabs/ITab.d.ts +21 -0
- package/dist/modules/tabs/TabsStore.d.ts +24 -0
- package/dist/modules/tabs/TabsStore.test.d.ts +1 -0
- package/dist/modules/tabs/components/PTabs.stories.d.ts +996 -0
- package/dist/modules/tabs/components/PTabs.test.d.ts +1 -0
- package/dist/modules/tabs/components/PTabs.vue.d.ts +66 -0
- package/dist/modules/tabs/components/PTabsLeft.vue.d.ts +50 -0
- package/dist/modules/tabs/index.d.ts +7 -0
- package/dist/sprof.js +28 -25
- package/dist/sprof.umd.cjs +13 -13
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderChange.stories.d.ts +0 -93
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderChange.vue.d.ts +0 -34
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderDel.stories.d.ts +0 -93
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderDel.vue.d.ts +0 -34
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderPlus.stories.d.ts +0 -93
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderPlus.vue.d.ts +0 -34
- /package/dist/core/components/organisms/{PTabs → PMenuTabs}/ITab.d.ts +0 -0
- /package/dist/core/components/organisms/{PTabs/PTabs.stories.d.ts → PMenuTabs/PMenuTabs.stories.d.ts} +0 -0
- /package/dist/core/components/organisms/{PTabs/PTabs.vue.d.ts → PMenuTabs/PMenuTabs.vue.d.ts} +0 -0
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
2
|
label: {
|
|
3
3
|
type: StringConstructor;
|
|
4
|
-
|
|
4
|
+
default: string;
|
|
5
|
+
required: false;
|
|
6
|
+
};
|
|
7
|
+
placeholder: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
required: false;
|
|
5
11
|
};
|
|
6
12
|
dense: {
|
|
7
13
|
type: BooleanConstructor;
|
|
@@ -23,16 +29,44 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
23
29
|
type: BooleanConstructor;
|
|
24
30
|
default: boolean;
|
|
25
31
|
};
|
|
32
|
+
margin: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
required: false;
|
|
36
|
+
};
|
|
37
|
+
padding: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
required: false;
|
|
41
|
+
};
|
|
42
|
+
width: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
required: false;
|
|
46
|
+
};
|
|
47
|
+
/** Принудительный режим модели: 'date' | 'string' (по умолчанию — автодетект) */
|
|
48
|
+
modelType: {
|
|
49
|
+
type: globalThis.PropType<"string" | "date">;
|
|
50
|
+
default: undefined;
|
|
51
|
+
required: false;
|
|
52
|
+
};
|
|
26
53
|
modelValue: {
|
|
27
|
-
type: globalThis.PropType<string>;
|
|
54
|
+
type: globalThis.PropType<string | Date | null>;
|
|
28
55
|
};
|
|
29
56
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
57
|
+
input: (...args: any[]) => void;
|
|
30
58
|
blur: (...args: any[]) => void;
|
|
31
|
-
"update:modelValue": (value: string) => void;
|
|
59
|
+
"update:modelValue": (value: string | Date | null | undefined) => void;
|
|
32
60
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
33
61
|
label: {
|
|
34
62
|
type: StringConstructor;
|
|
35
|
-
|
|
63
|
+
default: string;
|
|
64
|
+
required: false;
|
|
65
|
+
};
|
|
66
|
+
placeholder: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
required: false;
|
|
36
70
|
};
|
|
37
71
|
dense: {
|
|
38
72
|
type: BooleanConstructor;
|
|
@@ -54,19 +88,48 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
54
88
|
type: BooleanConstructor;
|
|
55
89
|
default: boolean;
|
|
56
90
|
};
|
|
91
|
+
margin: {
|
|
92
|
+
type: StringConstructor;
|
|
93
|
+
default: string;
|
|
94
|
+
required: false;
|
|
95
|
+
};
|
|
96
|
+
padding: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
default: string;
|
|
99
|
+
required: false;
|
|
100
|
+
};
|
|
101
|
+
width: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: string;
|
|
104
|
+
required: false;
|
|
105
|
+
};
|
|
106
|
+
/** Принудительный режим модели: 'date' | 'string' (по умолчанию — автодетект) */
|
|
107
|
+
modelType: {
|
|
108
|
+
type: globalThis.PropType<"string" | "date">;
|
|
109
|
+
default: undefined;
|
|
110
|
+
required: false;
|
|
111
|
+
};
|
|
57
112
|
modelValue: {
|
|
58
|
-
type: globalThis.PropType<string>;
|
|
113
|
+
type: globalThis.PropType<string | Date | null>;
|
|
59
114
|
};
|
|
60
115
|
}>> & Readonly<{
|
|
116
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
61
117
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
62
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
118
|
+
"onUpdate:modelValue"?: ((value: string | Date | null | undefined) => any) | undefined;
|
|
63
119
|
}>, {
|
|
120
|
+
label: string;
|
|
121
|
+
padding: string;
|
|
64
122
|
dense: boolean;
|
|
65
123
|
disable: boolean;
|
|
66
124
|
readonly: boolean;
|
|
125
|
+
placeholder: string;
|
|
126
|
+
width: string;
|
|
127
|
+
margin: string;
|
|
67
128
|
clearable: boolean;
|
|
68
129
|
outlined: boolean;
|
|
130
|
+
modelType: "string" | "date";
|
|
69
131
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
132
|
+
before?(_: {}): any;
|
|
70
133
|
append?(_: {}): any;
|
|
71
134
|
}>;
|
|
72
135
|
export default _default;
|
|
@@ -25,6 +25,7 @@ declare const _default: {
|
|
|
25
25
|
type: globalThis.PropType<Date>;
|
|
26
26
|
};
|
|
27
27
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
+
input: (...args: any[]) => void;
|
|
28
29
|
change: (...args: any[]) => void;
|
|
29
30
|
"update:modelValue": (...args: any[]) => void;
|
|
30
31
|
beforeChange: (...args: any[]) => void;
|
|
@@ -52,6 +53,7 @@ declare const _default: {
|
|
|
52
53
|
type: globalThis.PropType<Date>;
|
|
53
54
|
};
|
|
54
55
|
}>> & Readonly<{
|
|
56
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
55
57
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
56
58
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
57
59
|
onBeforeChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -113,6 +115,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
|
|
|
113
115
|
type: globalThis.PropType<Date>;
|
|
114
116
|
};
|
|
115
117
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
118
|
+
input: (...args: any[]) => void;
|
|
116
119
|
change: (...args: any[]) => void;
|
|
117
120
|
"update:modelValue": (...args: any[]) => void;
|
|
118
121
|
beforeChange: (...args: any[]) => void;
|
|
@@ -140,6 +143,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
|
|
|
140
143
|
type: globalThis.PropType<Date>;
|
|
141
144
|
};
|
|
142
145
|
}>> & Readonly<{
|
|
146
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
143
147
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
144
148
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
145
149
|
onBeforeChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -22,6 +22,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
22
22
|
type: globalThis.PropType<Date>;
|
|
23
23
|
};
|
|
24
24
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
+
input: (...args: any[]) => void;
|
|
25
26
|
change: (...args: any[]) => void;
|
|
26
27
|
"update:modelValue": (...args: any[]) => void;
|
|
27
28
|
beforeChange: (...args: any[]) => void;
|
|
@@ -49,6 +50,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
49
50
|
type: globalThis.PropType<Date>;
|
|
50
51
|
};
|
|
51
52
|
}>> & Readonly<{
|
|
53
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
52
54
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
53
55
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
54
56
|
onBeforeChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { default as PAuthForm } from './PAuthForm/PAuthForm.vue';
|
|
2
2
|
import { default as PAuthModal } from './PAuthModal/PAuthModal.vue';
|
|
3
|
+
import { default as PMenuTabs } from './PMenuTabs/PMenuTabs.vue';
|
|
3
4
|
import { default as PNameEdit } from './PNameEdit/PNameEdit.vue';
|
|
4
|
-
import { default as PTabs } from './PTabs/PTabs.vue';
|
|
5
5
|
import { default as PUploaderFile } from './PUploaderFile/PUploaderFile.vue';
|
|
6
6
|
import { default as PUploaderImage } from './PUploaderImage/PUploaderImage.vue';
|
|
7
7
|
export default function install(app: {
|
|
8
8
|
component: (a: string, b: unknown) => void;
|
|
9
9
|
}): void;
|
|
10
|
-
export { PAuthForm, PAuthModal,
|
|
10
|
+
export { PAuthForm, PAuthModal, PMenuTabs, PNameEdit, PUploaderFile, PUploaderImage };
|
|
@@ -2,6 +2,7 @@ import type * as Atoms from '@/core/components/atoms';
|
|
|
2
2
|
import type * as Components from '@/core/components/components';
|
|
3
3
|
import type * as Molecules from '@/core/components/molecules';
|
|
4
4
|
import type * as Organisms from '@/core/components/organisms';
|
|
5
|
+
import type * as Tabs from '@/modules/tabs';
|
|
5
6
|
declare module 'vue' {
|
|
6
7
|
interface GlobalComponents {
|
|
7
8
|
PBadge: typeof Atoms.PBadge;
|
|
@@ -45,8 +46,8 @@ declare module 'vue' {
|
|
|
45
46
|
VerticalCollapseContainer: typeof Molecules.VerticalCollapseContainer;
|
|
46
47
|
PAuthForm: typeof Organisms.PAuthForm;
|
|
47
48
|
PAuthModal: typeof Organisms.PAuthModal;
|
|
49
|
+
PMenuTabs: typeof Organisms.PMenuTabs;
|
|
48
50
|
PNameEdit: typeof Organisms.PNameEdit;
|
|
49
|
-
PTabs: typeof Organisms.PTabs;
|
|
50
51
|
PUploaderFile: typeof Organisms.PUploaderFile;
|
|
51
52
|
PUploaderImage: typeof Organisms.PUploaderImage;
|
|
52
53
|
AdaptiveContainer: typeof Components.AdaptiveContainer;
|
|
@@ -81,6 +82,9 @@ declare module 'vue' {
|
|
|
81
82
|
ThemeWrapper: typeof Components.ThemeWrapper;
|
|
82
83
|
ToggleInfoItem: typeof Components.ToggleInfoItem;
|
|
83
84
|
TopSliderContainer: typeof Components.TopSliderContainer;
|
|
85
|
+
PTabs: typeof Tabs.PTabs;
|
|
86
|
+
PTabsLeft: typeof Tabs.PTabsLeft;
|
|
87
|
+
TabsStore: typeof Tabs.TabsStore;
|
|
84
88
|
}
|
|
85
89
|
}
|
|
86
90
|
export {};
|