sprof 0.0.68 → 0.0.70
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/helpers/index.d.ts +42 -41
- package/dist/sprof.js +2219 -2257
- package/dist/sprof.umd.cjs +12 -12
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { default as FTSP } from '../classes/filters/FTSP';
|
|
2
|
+
import { default as Phone } from '../classes/Phone';
|
|
2
3
|
import { Sizes } from '../types/Sizes';
|
|
3
4
|
import { Statuses } from '../types/Statuses';
|
|
4
5
|
import { default as Arrays } from './Arrays';
|
|
5
6
|
import { default as Axios } from './Axios';
|
|
7
|
+
import { default as BaseStore } from './BaseStore';
|
|
6
8
|
import { default as Cache } from './Cache';
|
|
7
9
|
import { default as CarouselSwipe } from './CarouselSwipe';
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as Phone } from '../classes/Phone';
|
|
10
|
-
import { default as BaseStore } from './BaseStore';
|
|
10
|
+
import { default as Classes } from './Classes';
|
|
11
11
|
import { default as Color } from './Color';
|
|
12
12
|
import { default as CreateSortModels } from './CreateSortModels';
|
|
13
13
|
import { default as Cursor } from './Cursor';
|
|
@@ -16,6 +16,7 @@ import { default as Dates } from './Dates';
|
|
|
16
16
|
import { default as Dragger } from './Dragger';
|
|
17
17
|
import { default as Extension } from './Extension';
|
|
18
18
|
import { default as HttpClient } from './HttpClient';
|
|
19
|
+
import { default as Id } from './Id';
|
|
19
20
|
import { default as MakeCarousel } from './MakeCarousel';
|
|
20
21
|
import { default as Period } from './Period';
|
|
21
22
|
import { default as PhoneService } from './PhoneService';
|
|
@@ -31,52 +32,52 @@ import { default as Time } from './Time';
|
|
|
31
32
|
import { default as Timer } from './Timer';
|
|
32
33
|
import { default as validate } from './validate';
|
|
33
34
|
import { default as WebSocketClient } from './WebSocketClient';
|
|
34
|
-
export { default as Classes } from './Classes';
|
|
35
35
|
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
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
36
|
+
static Arrays: typeof Arrays;
|
|
37
|
+
static Axios: typeof Axios;
|
|
38
|
+
static BaseStore: typeof BaseStore;
|
|
39
|
+
static Phone: typeof Phone;
|
|
40
|
+
static Cache: typeof Cache;
|
|
41
|
+
static Classes: typeof Classes;
|
|
42
|
+
static CarouselSwipe: typeof CarouselSwipe;
|
|
43
|
+
static Color: typeof Color;
|
|
44
|
+
static CreateSortModels: typeof CreateSortModels;
|
|
45
|
+
static Cursor: typeof Cursor;
|
|
46
|
+
static DateMask: typeof DateMask;
|
|
47
|
+
static Dates: typeof Dates;
|
|
48
|
+
static Dragger: typeof Dragger;
|
|
49
|
+
static Extension: typeof Extension;
|
|
50
|
+
static Favourite: {
|
|
50
51
|
addToFavourite: (domain: string, id: string) => void;
|
|
51
52
|
removeFromFavourite: (domain: string, id: string) => void;
|
|
52
53
|
setFavourite: (domain: string, id: (string | undefined)[]) => void;
|
|
53
54
|
isFavourite: (domain: string, id: string) => boolean;
|
|
54
55
|
clearFavourite: () => void;
|
|
55
56
|
};
|
|
56
|
-
FTSP: typeof FTSP;
|
|
57
|
-
Hooks: {
|
|
57
|
+
static FTSP: typeof FTSP;
|
|
58
|
+
static Hooks: {
|
|
58
59
|
onBeforeMount: (f: (param?: string | import('../classes/filters/FilterQuery').default | undefined) => void | Promise<void>, options?: import('./Hooks').IHooksOptions | undefined) => void;
|
|
59
60
|
onBeforeRouteLeave: (submitFunction?: CallableFunction | undefined) => void;
|
|
60
61
|
submit: (submitFunction?: CallableFunction | undefined) => () => Promise<void>;
|
|
61
62
|
};
|
|
62
|
-
HttpClient: typeof HttpClient;
|
|
63
|
-
Id: typeof Id;
|
|
64
|
-
MakeCarousel: typeof MakeCarousel;
|
|
65
|
-
Period: typeof Period;
|
|
66
|
-
PhoneService: typeof PhoneService;
|
|
67
|
-
Rating: typeof Rating;
|
|
68
|
-
Router: typeof Router;
|
|
69
|
-
RouterGuard: typeof RouterGuard;
|
|
70
|
-
Scheduler: typeof Scheduler;
|
|
71
|
-
Scroll: typeof Scroll;
|
|
72
|
-
Sizes: typeof Sizes;
|
|
73
|
-
Sorter: typeof Sorter;
|
|
74
|
-
Static: typeof Static;
|
|
75
|
-
Statuses: typeof Statuses;
|
|
76
|
-
Strings: typeof Strings;
|
|
77
|
-
Time: typeof Time;
|
|
78
|
-
Timer: typeof Timer;
|
|
79
|
-
Token: {
|
|
63
|
+
static HttpClient: typeof HttpClient;
|
|
64
|
+
static Id: typeof Id;
|
|
65
|
+
static MakeCarousel: typeof MakeCarousel;
|
|
66
|
+
static Period: typeof Period;
|
|
67
|
+
static PhoneService: typeof PhoneService;
|
|
68
|
+
static Rating: typeof Rating;
|
|
69
|
+
static Router: typeof Router;
|
|
70
|
+
static RouterGuard: typeof RouterGuard;
|
|
71
|
+
static Scheduler: typeof Scheduler;
|
|
72
|
+
static Scroll: typeof Scroll;
|
|
73
|
+
static Sizes: typeof Sizes;
|
|
74
|
+
static Sorter: typeof Sorter;
|
|
75
|
+
static Static: typeof Static;
|
|
76
|
+
static Statuses: typeof Statuses;
|
|
77
|
+
static Strings: typeof Strings;
|
|
78
|
+
static Time: typeof Time;
|
|
79
|
+
static Timer: typeof Timer;
|
|
80
|
+
static Token: {
|
|
80
81
|
isAuth: () => boolean;
|
|
81
82
|
setTokens: (tokenObj: import('../interfaces/ITokens').default) => void;
|
|
82
83
|
getAccessToken: () => string | null;
|
|
@@ -86,7 +87,7 @@ export default abstract class H {
|
|
|
86
87
|
getUser: () => any;
|
|
87
88
|
updateHuman: (human: import('../classes').Human) => void;
|
|
88
89
|
};
|
|
89
|
-
validate: typeof validate;
|
|
90
|
-
WaitElement: (selector: string) => Promise<unknown>;
|
|
91
|
-
WebSocketClient: typeof WebSocketClient;
|
|
90
|
+
static validate: typeof validate;
|
|
91
|
+
static WaitElement: (selector: string) => Promise<unknown>;
|
|
92
|
+
static WebSocketClient: typeof WebSocketClient;
|
|
92
93
|
}
|