sprof 0.0.69 → 0.0.71
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/organisms/PTabs/PTabs.stories.d.ts +12 -12
- package/dist/core/components/organisms/PTabs/PTabs.vue.d.ts +4 -5
- package/dist/core/helpers/index.d.ts +40 -38
- package/dist/sprof.js +2722 -2745
- package/dist/sprof.umd.cjs +12 -12
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -3,8 +3,8 @@ declare const _default: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
component: {
|
|
5
5
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
6
|
-
|
|
7
|
-
type: globalThis.PropType<
|
|
6
|
+
store: {
|
|
7
|
+
type: globalThis.PropType<TabsStore>;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
10
|
tabHeight: {
|
|
@@ -50,8 +50,8 @@ declare const _default: {
|
|
|
50
50
|
M: {};
|
|
51
51
|
Defaults: {};
|
|
52
52
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
53
|
-
|
|
54
|
-
type: globalThis.PropType<
|
|
53
|
+
store: {
|
|
54
|
+
type: globalThis.PropType<TabsStore>;
|
|
55
55
|
required: true;
|
|
56
56
|
};
|
|
57
57
|
tabHeight: {
|
|
@@ -92,8 +92,8 @@ declare const _default: {
|
|
|
92
92
|
__isTeleport?: undefined;
|
|
93
93
|
__isSuspense?: undefined;
|
|
94
94
|
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
95
|
-
|
|
96
|
-
type: globalThis.PropType<
|
|
95
|
+
store: {
|
|
96
|
+
type: globalThis.PropType<TabsStore>;
|
|
97
97
|
required: true;
|
|
98
98
|
};
|
|
99
99
|
tabHeight: {
|
|
@@ -178,8 +178,8 @@ declare const _default: {
|
|
|
178
178
|
export default _default;
|
|
179
179
|
export declare const Default: StoryFn<{
|
|
180
180
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
181
|
-
|
|
182
|
-
type: globalThis.PropType<
|
|
181
|
+
store: {
|
|
182
|
+
type: globalThis.PropType<TabsStore>;
|
|
183
183
|
required: true;
|
|
184
184
|
};
|
|
185
185
|
tabHeight: {
|
|
@@ -225,8 +225,8 @@ export declare const Default: StoryFn<{
|
|
|
225
225
|
M: {};
|
|
226
226
|
Defaults: {};
|
|
227
227
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
228
|
-
|
|
229
|
-
type: globalThis.PropType<
|
|
228
|
+
store: {
|
|
229
|
+
type: globalThis.PropType<TabsStore>;
|
|
230
230
|
required: true;
|
|
231
231
|
};
|
|
232
232
|
tabHeight: {
|
|
@@ -267,8 +267,8 @@ export declare const Default: StoryFn<{
|
|
|
267
267
|
__isTeleport?: undefined;
|
|
268
268
|
__isSuspense?: undefined;
|
|
269
269
|
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
270
|
-
|
|
271
|
-
type: globalThis.PropType<
|
|
270
|
+
store: {
|
|
271
|
+
type: globalThis.PropType<TabsStore>;
|
|
272
272
|
required: true;
|
|
273
273
|
};
|
|
274
274
|
tabHeight: {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { default as ITab } from './ITab';
|
|
2
1
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
3
|
-
|
|
4
|
-
type: globalThis.PropType<
|
|
2
|
+
store: {
|
|
3
|
+
type: globalThis.PropType<TabsStore>;
|
|
5
4
|
required: true;
|
|
6
5
|
};
|
|
7
6
|
tabHeight: {
|
|
@@ -32,8 +31,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
32
31
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
33
32
|
select: (...args: any[]) => void;
|
|
34
33
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
35
|
-
|
|
36
|
-
type: globalThis.PropType<
|
|
34
|
+
store: {
|
|
35
|
+
type: globalThis.PropType<TabsStore>;
|
|
37
36
|
required: true;
|
|
38
37
|
};
|
|
39
38
|
tabHeight: {
|
|
@@ -28,56 +28,57 @@ import { default as Scroll } from './Scroll';
|
|
|
28
28
|
import { default as Sorter } from './Sorter';
|
|
29
29
|
import { default as Static } from './Static';
|
|
30
30
|
import { default as Strings } from './Strings';
|
|
31
|
+
import { default as TabsStore } from './TabsStore';
|
|
31
32
|
import { default as Time } from './Time';
|
|
32
33
|
import { default as Timer } from './Timer';
|
|
33
34
|
import { default as validate } from './validate';
|
|
34
35
|
import { default as WebSocketClient } from './WebSocketClient';
|
|
35
36
|
export default abstract class H {
|
|
36
|
-
Arrays: typeof Arrays;
|
|
37
|
-
Axios: typeof Axios;
|
|
38
|
-
BaseStore: typeof BaseStore;
|
|
39
|
-
Phone: typeof Phone;
|
|
40
|
-
Cache: typeof Cache;
|
|
41
|
-
Classes: typeof Classes;
|
|
42
|
-
CarouselSwipe: typeof CarouselSwipe;
|
|
43
|
-
Color: typeof Color;
|
|
44
|
-
CreateSortModels: typeof CreateSortModels;
|
|
45
|
-
Cursor: typeof Cursor;
|
|
46
|
-
DateMask: typeof DateMask;
|
|
47
|
-
Dates: typeof Dates;
|
|
48
|
-
Dragger: typeof Dragger;
|
|
49
|
-
Extension: typeof Extension;
|
|
50
|
-
Favourite: {
|
|
37
|
+
static Arrays: typeof Arrays;
|
|
38
|
+
static Axios: typeof Axios;
|
|
39
|
+
static BaseStore: typeof BaseStore;
|
|
40
|
+
static Phone: typeof Phone;
|
|
41
|
+
static Cache: typeof Cache;
|
|
42
|
+
static Classes: typeof Classes;
|
|
43
|
+
static CarouselSwipe: typeof CarouselSwipe;
|
|
44
|
+
static Color: typeof Color;
|
|
45
|
+
static CreateSortModels: typeof CreateSortModels;
|
|
46
|
+
static Cursor: typeof Cursor;
|
|
47
|
+
static DateMask: typeof DateMask;
|
|
48
|
+
static Dates: typeof Dates;
|
|
49
|
+
static Dragger: typeof Dragger;
|
|
50
|
+
static Extension: typeof Extension;
|
|
51
|
+
static Favourite: {
|
|
51
52
|
addToFavourite: (domain: string, id: string) => void;
|
|
52
53
|
removeFromFavourite: (domain: string, id: string) => void;
|
|
53
54
|
setFavourite: (domain: string, id: (string | undefined)[]) => void;
|
|
54
55
|
isFavourite: (domain: string, id: string) => boolean;
|
|
55
56
|
clearFavourite: () => void;
|
|
56
57
|
};
|
|
57
|
-
FTSP: typeof FTSP;
|
|
58
|
-
Hooks: {
|
|
58
|
+
static FTSP: typeof FTSP;
|
|
59
|
+
static Hooks: {
|
|
59
60
|
onBeforeMount: (f: (param?: string | import('../classes/filters/FilterQuery').default | undefined) => void | Promise<void>, options?: import('./Hooks').IHooksOptions | undefined) => void;
|
|
60
61
|
onBeforeRouteLeave: (submitFunction?: CallableFunction | undefined) => void;
|
|
61
62
|
submit: (submitFunction?: CallableFunction | undefined) => () => Promise<void>;
|
|
62
63
|
};
|
|
63
|
-
HttpClient: typeof HttpClient;
|
|
64
|
-
Id: typeof Id;
|
|
65
|
-
MakeCarousel: typeof MakeCarousel;
|
|
66
|
-
Period: typeof Period;
|
|
67
|
-
PhoneService: typeof PhoneService;
|
|
68
|
-
Rating: typeof Rating;
|
|
69
|
-
Router: typeof Router;
|
|
70
|
-
RouterGuard: typeof RouterGuard;
|
|
71
|
-
Scheduler: typeof Scheduler;
|
|
72
|
-
Scroll: typeof Scroll;
|
|
73
|
-
Sizes: typeof Sizes;
|
|
74
|
-
Sorter: typeof Sorter;
|
|
75
|
-
Static: typeof Static;
|
|
76
|
-
Statuses: typeof Statuses;
|
|
77
|
-
Strings: typeof Strings;
|
|
78
|
-
Time: typeof Time;
|
|
79
|
-
Timer: typeof Timer;
|
|
80
|
-
Token: {
|
|
64
|
+
static HttpClient: typeof HttpClient;
|
|
65
|
+
static Id: typeof Id;
|
|
66
|
+
static MakeCarousel: typeof MakeCarousel;
|
|
67
|
+
static Period: typeof Period;
|
|
68
|
+
static PhoneService: typeof PhoneService;
|
|
69
|
+
static Rating: typeof Rating;
|
|
70
|
+
static Router: typeof Router;
|
|
71
|
+
static RouterGuard: typeof RouterGuard;
|
|
72
|
+
static Scheduler: typeof Scheduler;
|
|
73
|
+
static Scroll: typeof Scroll;
|
|
74
|
+
static Sizes: typeof Sizes;
|
|
75
|
+
static Sorter: typeof Sorter;
|
|
76
|
+
static Static: typeof Static;
|
|
77
|
+
static Statuses: typeof Statuses;
|
|
78
|
+
static Strings: typeof Strings;
|
|
79
|
+
static Time: typeof Time;
|
|
80
|
+
static Timer: typeof Timer;
|
|
81
|
+
static Token: {
|
|
81
82
|
isAuth: () => boolean;
|
|
82
83
|
setTokens: (tokenObj: import('../interfaces/ITokens').default) => void;
|
|
83
84
|
getAccessToken: () => string | null;
|
|
@@ -87,7 +88,8 @@ export default abstract class H {
|
|
|
87
88
|
getUser: () => any;
|
|
88
89
|
updateHuman: (human: import('../classes').Human) => void;
|
|
89
90
|
};
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
static TabsStore: typeof TabsStore;
|
|
92
|
+
static validate: typeof validate;
|
|
93
|
+
static WaitElement: (selector: string) => Promise<unknown>;
|
|
94
|
+
static WebSocketClient: typeof WebSocketClient;
|
|
93
95
|
}
|