sprof 0.0.139 → 0.0.141
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/Auth.d.ts +8 -8
- package/dist/core/classes/SearchModel.d.ts +1 -1
- package/dist/core/classes/index.d.ts +0 -2
- package/dist/core/components/atoms/PButton/PButton.stories.d.ts +2 -2
- package/dist/core/components/atoms/PButton/PButton.vue.d.ts +2 -2
- package/dist/core/components/index.d.ts +3 -4
- package/dist/core/components/organisms/PModal.vue.d.ts +1 -1
- package/dist/core/components/{SingleNameToggleForm.vue.d.ts → organisms/PNameEdit/PNameEdit.vue.d.ts} +1 -1
- package/dist/core/components/organisms/PTabs/PTabs.stories.d.ts +72 -0
- package/dist/core/components/organisms/PTabs/PTabs.vue.d.ts +22 -0
- package/dist/core/components/organisms/PUploaderImage/Cropper.d.ts +37 -0
- package/dist/core/components/{ImageCropper.vue.d.ts → organisms/PUploaderImage/ImageCropper.vue.d.ts} +12 -10
- package/dist/core/components/organisms/PUploaderImage/PUploaderImage.stories.d.ts +159 -0
- package/dist/core/components/{UploaderImage.vue.d.ts → organisms/PUploaderImage/PUploaderImage.vue.d.ts} +9 -23
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderChange.stories.d.ts +93 -0
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderChange.vue.d.ts +34 -0
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderDel.stories.d.ts +93 -0
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderDel.vue.d.ts +34 -0
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderPlus.stories.d.ts +93 -0
- package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderPlus.vue.d.ts +34 -0
- package/dist/core/ftsp/Cursor.d.ts +1 -1
- package/dist/core/ftsp/FilterModel.d.ts +2 -2
- package/dist/core/ftsp/OperatorsOptions.d.ts +1 -1
- package/dist/core/ftsp/OperatorsTextOptions.d.ts +1 -1
- package/dist/core/ftsp/SortModel.d.ts +1 -1
- package/dist/core/ftsp/index.d.ts +8 -0
- package/dist/core/helpers/CreateSortModels.d.ts +1 -1
- package/dist/core/helpers/Message.d.ts +1 -1
- package/dist/core/index.d.ts +27 -10
- package/dist/core/interfaces/ICursor.d.ts +1 -1
- package/dist/core/interfaces/ISortModel.d.ts +1 -1
- package/dist/core/interfaces/Sort.d.ts +1 -1
- package/dist/core/store/SearchStore.d.ts +1 -1
- package/dist/core/store/index.d.ts +1 -7
- package/dist/core/{interfaces → types}/DataTypes.d.ts +2 -1
- package/dist/core/{interfaces → types}/Operators.d.ts +2 -1
- package/dist/core/types/Orders.d.ts +2 -1
- package/dist/core/types/Sizes.d.ts +2 -1
- package/dist/core/types/Statuses.d.ts +2 -1
- package/dist/core/types/index.d.ts +14 -4
- package/dist/core/ui/AdminUI.d.ts +1 -1
- package/dist/core/ui/Btn.d.ts +1 -1
- package/dist/core/ui/Notify.d.ts +1 -1
- package/dist/core/ui/index.d.ts +7 -7
- package/dist/modules/chats/classes/Chat.d.ts +12 -0
- package/dist/modules/chats/classes/ChatMessage.d.ts +14 -0
- package/dist/modules/chats/classes/index.d.ts +2 -0
- package/dist/modules/chats/index.d.ts +3 -0
- package/dist/modules/chats/store/ChatMessagesStore.d.ts +7 -0
- package/dist/modules/chats/store/ChatsStore.d.ts +7 -0
- package/dist/modules/chats/store/index.d.ts +2 -0
- package/dist/modules/chats/types/ChatMessageTypes.d.ts +9 -0
- package/dist/modules/chats/types/index.d.ts +4 -0
- package/dist/modules/forms/components/FormPageSections.vue.d.ts +24 -0
- package/dist/modules/forms/components/index.d.ts +6 -0
- package/dist/sprof.js +4973 -4868
- package/dist/sprof.umd.cjs +12 -12
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/core/classes/Cropper.d.ts +0 -8
- package/dist/core/store/CropperStore.d.ts +0 -9
- /package/dist/core/{interfaces → types}/RoleName.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { default as FileInfo } from '
|
|
1
|
+
import { default as FileInfo } from '../../../classes/FileInfo';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
3
3
|
withCrop: {
|
|
4
4
|
type: BooleanConstructor;
|
|
@@ -12,19 +12,11 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
12
12
|
type: NumberConstructor;
|
|
13
13
|
default: number;
|
|
14
14
|
};
|
|
15
|
-
width: {
|
|
16
|
-
type: NumberConstructor;
|
|
17
|
-
default: number;
|
|
18
|
-
};
|
|
19
|
-
cropRatio: {
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
15
|
emitCrop: {
|
|
24
16
|
type: BooleanConstructor;
|
|
25
17
|
default: boolean;
|
|
26
18
|
};
|
|
27
|
-
|
|
19
|
+
ratio: {
|
|
28
20
|
type: NumberConstructor;
|
|
29
21
|
required: false;
|
|
30
22
|
default: number;
|
|
@@ -32,6 +24,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
32
24
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
33
25
|
crop: (...args: any[]) => void;
|
|
34
26
|
removeFile: (...args: any[]) => void;
|
|
27
|
+
"update:ratio": (...args: any[]) => void;
|
|
35
28
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
36
29
|
withCrop: {
|
|
37
30
|
type: BooleanConstructor;
|
|
@@ -45,19 +38,11 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
45
38
|
type: NumberConstructor;
|
|
46
39
|
default: number;
|
|
47
40
|
};
|
|
48
|
-
width: {
|
|
49
|
-
type: NumberConstructor;
|
|
50
|
-
default: number;
|
|
51
|
-
};
|
|
52
|
-
cropRatio: {
|
|
53
|
-
type: BooleanConstructor;
|
|
54
|
-
default: boolean;
|
|
55
|
-
};
|
|
56
41
|
emitCrop: {
|
|
57
42
|
type: BooleanConstructor;
|
|
58
43
|
default: boolean;
|
|
59
44
|
};
|
|
60
|
-
|
|
45
|
+
ratio: {
|
|
61
46
|
type: NumberConstructor;
|
|
62
47
|
required: false;
|
|
63
48
|
default: number;
|
|
@@ -65,12 +50,13 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
65
50
|
}>> & Readonly<{
|
|
66
51
|
onCrop?: ((...args: any[]) => any) | undefined;
|
|
67
52
|
onRemoveFile?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
"onUpdate:ratio"?: ((...args: any[]) => any) | undefined;
|
|
68
54
|
}>, {
|
|
69
|
-
|
|
55
|
+
ratio: number;
|
|
70
56
|
height: number;
|
|
71
|
-
width: number;
|
|
72
57
|
withCrop: boolean;
|
|
73
|
-
cropRatio: boolean;
|
|
74
58
|
emitCrop: boolean;
|
|
75
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
59
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
60
|
+
uploader: HTMLInputElement;
|
|
61
|
+
}, any>;
|
|
76
62
|
export default _default;
|
package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderChange.stories.d.ts
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { StoryFn } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
5
|
+
size: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
margin: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
iconClass: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
19
|
+
size: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
margin: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
iconClass: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
}>> & Readonly<{}>, {
|
|
33
|
+
size: string;
|
|
34
|
+
margin: string;
|
|
35
|
+
iconClass: string;
|
|
36
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
37
|
+
tags: string[];
|
|
38
|
+
parameters: {
|
|
39
|
+
docs: {
|
|
40
|
+
description: {
|
|
41
|
+
component: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
argTypes: {
|
|
46
|
+
size: {
|
|
47
|
+
control: string;
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
margin: {
|
|
51
|
+
control: string;
|
|
52
|
+
description: string;
|
|
53
|
+
};
|
|
54
|
+
iconClass: {
|
|
55
|
+
control: string;
|
|
56
|
+
description: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
export default _default;
|
|
61
|
+
export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
62
|
+
size: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
margin: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
iconClass: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
required: false;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
76
|
+
size: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
margin: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
iconClass: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
required: false;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
}>> & Readonly<{}>, {
|
|
90
|
+
size: string;
|
|
91
|
+
margin: string;
|
|
92
|
+
iconClass: string;
|
|
93
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderChange.vue.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
margin: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
iconClass: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
margin: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
iconClass: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
required: false;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string;
|
|
31
|
+
margin: string;
|
|
32
|
+
iconClass: string;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default _default;
|
package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderDel.stories.d.ts
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { StoryFn } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
5
|
+
size: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
margin: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
iconClass: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
19
|
+
size: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
margin: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
iconClass: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
}>> & Readonly<{}>, {
|
|
33
|
+
size: string;
|
|
34
|
+
margin: string;
|
|
35
|
+
iconClass: string;
|
|
36
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
37
|
+
tags: string[];
|
|
38
|
+
parameters: {
|
|
39
|
+
docs: {
|
|
40
|
+
description: {
|
|
41
|
+
component: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
argTypes: {
|
|
46
|
+
size: {
|
|
47
|
+
control: string;
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
margin: {
|
|
51
|
+
control: string;
|
|
52
|
+
description: string;
|
|
53
|
+
};
|
|
54
|
+
iconClass: {
|
|
55
|
+
control: string;
|
|
56
|
+
description: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
export default _default;
|
|
61
|
+
export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
62
|
+
size: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
margin: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
iconClass: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
required: false;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
76
|
+
size: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
margin: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
iconClass: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
required: false;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
}>> & Readonly<{}>, {
|
|
90
|
+
size: string;
|
|
91
|
+
margin: string;
|
|
92
|
+
iconClass: string;
|
|
93
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
margin: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
iconClass: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
margin: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
iconClass: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
required: false;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string;
|
|
31
|
+
margin: string;
|
|
32
|
+
iconClass: string;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default _default;
|
package/dist/core/components/organisms/PUploaderImage/UploaderImage/IconUploaderPlus.stories.d.ts
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { StoryFn } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
5
|
+
size: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
margin: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
iconClass: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
19
|
+
size: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
margin: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
iconClass: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
}>> & Readonly<{}>, {
|
|
33
|
+
size: string;
|
|
34
|
+
margin: string;
|
|
35
|
+
iconClass: string;
|
|
36
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
37
|
+
tags: string[];
|
|
38
|
+
parameters: {
|
|
39
|
+
docs: {
|
|
40
|
+
description: {
|
|
41
|
+
component: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
argTypes: {
|
|
46
|
+
size: {
|
|
47
|
+
control: string;
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
margin: {
|
|
51
|
+
control: string;
|
|
52
|
+
description: string;
|
|
53
|
+
};
|
|
54
|
+
iconClass: {
|
|
55
|
+
control: string;
|
|
56
|
+
description: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
export default _default;
|
|
61
|
+
export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
62
|
+
size: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
margin: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
iconClass: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
required: false;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
76
|
+
size: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
margin: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
iconClass: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
required: false;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
}>> & Readonly<{}>, {
|
|
90
|
+
size: string;
|
|
91
|
+
margin: string;
|
|
92
|
+
iconClass: string;
|
|
93
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
margin: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
iconClass: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
margin: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
iconClass: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
required: false;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string;
|
|
31
|
+
margin: string;
|
|
32
|
+
iconClass: string;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import { ClassNameGetter } from '../interfaces/Class';
|
|
3
|
-
import { DataTypes } from '../
|
|
4
|
-
import { Operators } from '../
|
|
3
|
+
import { default as DataTypes } from '../types/DataTypes';
|
|
4
|
+
import { default as Operators } from '../types/Operators';
|
|
5
5
|
export default class FilterModel {
|
|
6
6
|
id?: string;
|
|
7
7
|
model: string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as FilterModel } from './FilterModel';
|
|
2
|
+
import { default as FTSP } from './FTSP';
|
|
3
|
+
import { default as SortModel } from './SortModel';
|
|
4
|
+
export default abstract class F {
|
|
5
|
+
static SortModel: typeof SortModel;
|
|
6
|
+
static FilterModel: typeof FilterModel;
|
|
7
|
+
static FTSP: typeof FTSP;
|
|
8
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { default as SortModel } from '../ftsp/SortModel';
|
|
2
2
|
import { SortModelBuildersLib } from '../interfaces/Sort';
|
|
3
|
-
import { Orders } from '../types/Orders';
|
|
3
|
+
import { default as Orders } from '../types/Orders';
|
|
4
4
|
export default function createSortModels(lib: SortModelBuildersLib, mainOrder?: Orders): SortModel[];
|
package/dist/core/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { default as C } from './classes/index';
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as F } from './ftsp/index';
|
|
3
3
|
import { default as H } from './helpers/index';
|
|
4
4
|
import { default as S } from './store/index';
|
|
5
|
+
import { default as T } from './types/index';
|
|
5
6
|
import { default as UI } from './ui/index';
|
|
6
7
|
export default abstract class PF {
|
|
7
8
|
static Auth: {
|
|
@@ -27,7 +28,7 @@ export default abstract class PF {
|
|
|
27
28
|
chunk: import('./auth').AuthChunks;
|
|
28
29
|
isLink: boolean;
|
|
29
30
|
GetChunk: () => import('./auth').AuthChunks;
|
|
30
|
-
type?: import('./types').
|
|
31
|
+
type?: import('./types/Statuses').default | undefined;
|
|
31
32
|
condition?: boolean | undefined;
|
|
32
33
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
33
34
|
disabled: boolean;
|
|
@@ -38,7 +39,7 @@ export default abstract class PF {
|
|
|
38
39
|
chunk: import('./auth').AuthChunks;
|
|
39
40
|
isLink: boolean;
|
|
40
41
|
GetChunk: () => import('./auth').AuthChunks;
|
|
41
|
-
type?: import('./types').
|
|
42
|
+
type?: import('./types/Statuses').default | undefined;
|
|
42
43
|
condition?: boolean | undefined;
|
|
43
44
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
44
45
|
disabled: boolean;
|
|
@@ -49,7 +50,7 @@ export default abstract class PF {
|
|
|
49
50
|
chunk: import('./auth').AuthChunks;
|
|
50
51
|
isLink: boolean;
|
|
51
52
|
GetChunk: () => import('./auth').AuthChunks;
|
|
52
|
-
type?: import('./types').
|
|
53
|
+
type?: import('./types/Statuses').default | undefined;
|
|
53
54
|
condition?: boolean | undefined;
|
|
54
55
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
55
56
|
disabled: boolean;
|
|
@@ -95,7 +96,7 @@ export default abstract class PF {
|
|
|
95
96
|
chunk: import('./auth').AuthChunks;
|
|
96
97
|
isLink: boolean;
|
|
97
98
|
GetChunk: () => import('./auth').AuthChunks;
|
|
98
|
-
type?: import('./types').
|
|
99
|
+
type?: import('./types/Statuses').default | undefined;
|
|
99
100
|
condition?: boolean | undefined;
|
|
100
101
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
101
102
|
disabled: boolean;
|
|
@@ -106,7 +107,7 @@ export default abstract class PF {
|
|
|
106
107
|
chunk: import('./auth').AuthChunks;
|
|
107
108
|
isLink: boolean;
|
|
108
109
|
GetChunk: () => import('./auth').AuthChunks;
|
|
109
|
-
type?: import('./types').
|
|
110
|
+
type?: import('./types/Statuses').default | undefined;
|
|
110
111
|
condition?: boolean | undefined;
|
|
111
112
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
112
113
|
disabled: boolean;
|
|
@@ -117,7 +118,7 @@ export default abstract class PF {
|
|
|
117
118
|
chunk: import('./auth').AuthChunks;
|
|
118
119
|
isLink: boolean;
|
|
119
120
|
GetChunk: () => import('./auth').AuthChunks;
|
|
120
|
-
type?: import('./types').
|
|
121
|
+
type?: import('./types/Statuses').default | undefined;
|
|
121
122
|
condition?: boolean | undefined;
|
|
122
123
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
123
124
|
disabled: boolean;
|
|
@@ -178,7 +179,7 @@ export default abstract class PF {
|
|
|
178
179
|
chunk: import('./auth').AuthChunks;
|
|
179
180
|
isLink: boolean;
|
|
180
181
|
GetChunk: () => import('./auth').AuthChunks;
|
|
181
|
-
type?: import('./types').
|
|
182
|
+
type?: import('./types/Statuses').default | undefined;
|
|
182
183
|
condition?: boolean | undefined;
|
|
183
184
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
184
185
|
disabled: boolean;
|
|
@@ -211,7 +212,7 @@ export default abstract class PF {
|
|
|
211
212
|
chunk: import('./auth').AuthChunks;
|
|
212
213
|
isLink: boolean;
|
|
213
214
|
GetChunk: () => import('./auth').AuthChunks;
|
|
214
|
-
type?: import('./types').
|
|
215
|
+
type?: import('./types/Statuses').default | undefined;
|
|
215
216
|
condition?: boolean | undefined;
|
|
216
217
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
217
218
|
disabled: boolean;
|
|
@@ -272,8 +273,24 @@ export default abstract class PF {
|
|
|
272
273
|
pagesCount: () => number;
|
|
273
274
|
reset: () => void;
|
|
274
275
|
};
|
|
275
|
-
|
|
276
|
+
/**
|
|
277
|
+
* Stores
|
|
278
|
+
*/
|
|
276
279
|
static S: typeof S;
|
|
280
|
+
/**
|
|
281
|
+
* Helpers
|
|
282
|
+
*/
|
|
277
283
|
static H: typeof H;
|
|
284
|
+
/**
|
|
285
|
+
* Classes
|
|
286
|
+
*/
|
|
278
287
|
static C: typeof C;
|
|
288
|
+
/**
|
|
289
|
+
* Types
|
|
290
|
+
*/
|
|
291
|
+
static T: typeof T;
|
|
292
|
+
/**
|
|
293
|
+
* FTSP
|
|
294
|
+
*/
|
|
295
|
+
static F: typeof F;
|
|
279
296
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as SortModel } from '../ftsp/SortModel';
|
|
2
|
-
import { Orders } from '../types/Orders';
|
|
2
|
+
import { default as Orders } from '../types/Orders';
|
|
3
3
|
export type SortModelBuilder = (order?: Orders) => SortModel;
|
|
4
4
|
export interface SortModelBuildersLib {
|
|
5
5
|
[key: string]: SortModelBuilder;
|