sprof 0.0.69 → 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 +38 -38
- package/dist/sprof.js +2143 -2182
- package/dist/sprof.umd.cjs +12 -12
- package/package.json +1 -1
|
@@ -33,51 +33,51 @@ import { default as Timer } from './Timer';
|
|
|
33
33
|
import { default as validate } from './validate';
|
|
34
34
|
import { default as WebSocketClient } from './WebSocketClient';
|
|
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
|
-
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: {
|
|
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: {
|
|
51
51
|
addToFavourite: (domain: string, id: string) => void;
|
|
52
52
|
removeFromFavourite: (domain: string, id: string) => void;
|
|
53
53
|
setFavourite: (domain: string, id: (string | undefined)[]) => void;
|
|
54
54
|
isFavourite: (domain: string, id: string) => boolean;
|
|
55
55
|
clearFavourite: () => void;
|
|
56
56
|
};
|
|
57
|
-
FTSP: typeof FTSP;
|
|
58
|
-
Hooks: {
|
|
57
|
+
static FTSP: typeof FTSP;
|
|
58
|
+
static Hooks: {
|
|
59
59
|
onBeforeMount: (f: (param?: string | import('../classes/filters/FilterQuery').default | undefined) => void | Promise<void>, options?: import('./Hooks').IHooksOptions | undefined) => void;
|
|
60
60
|
onBeforeRouteLeave: (submitFunction?: CallableFunction | undefined) => void;
|
|
61
61
|
submit: (submitFunction?: CallableFunction | undefined) => () => Promise<void>;
|
|
62
62
|
};
|
|
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: {
|
|
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: {
|
|
81
81
|
isAuth: () => boolean;
|
|
82
82
|
setTokens: (tokenObj: import('../interfaces/ITokens').default) => void;
|
|
83
83
|
getAccessToken: () => string | null;
|
|
@@ -87,7 +87,7 @@ export default abstract class H {
|
|
|
87
87
|
getUser: () => any;
|
|
88
88
|
updateHuman: (human: import('../classes').Human) => void;
|
|
89
89
|
};
|
|
90
|
-
validate: typeof validate;
|
|
91
|
-
WaitElement: (selector: string) => Promise<unknown>;
|
|
92
|
-
WebSocketClient: typeof WebSocketClient;
|
|
90
|
+
static validate: typeof validate;
|
|
91
|
+
static WaitElement: (selector: string) => Promise<unknown>;
|
|
92
|
+
static WebSocketClient: typeof WebSocketClient;
|
|
93
93
|
}
|