sprof 0.0.39 → 0.0.40
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/{services/PHelp2.d.ts → PF.d.ts} +29 -29
- package/dist/classes/auth/AuthStatus.d.ts +1 -1
- package/dist/classes/auth/AuthUser.d.ts +1 -1
- package/dist/components/ContextWindow.vue.d.ts +1 -1
- package/dist/components/organisms/UploaderFile/UploaderFile.stories.d.ts +27 -27
- package/dist/index.d.ts +3 -6
- package/dist/pfImport.d.ts +1 -0
- package/dist/services/BaseStore.d.ts +1 -1
- package/dist/services/{ClassHelper.d.ts → Classes.d.ts} +1 -1
- package/dist/services/Helpers.d.ts +2 -2
- package/dist/sprof.js +6280 -6415
- package/dist/sprof.umd.cjs +15 -15
- package/dist/store/MenusStore.d.ts +1 -2
- package/dist/store/index.d.ts +13 -14
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/services/PHelp.d.ts +0 -127
- package/dist/services/index.d.ts +0 -47
- package/dist/services/indexNames.d.ts +0 -2
- package/dist/store/Store.d.ts +0 -458
- package/dist/store/indexNames.d.ts +0 -2
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
1
|
+
import * as C from './classes/index';
|
|
2
|
+
import * as M from './modules/index';
|
|
3
|
+
import * as H from './services/Helpers';
|
|
4
|
+
import * as S from './store/index';
|
|
5
5
|
export default abstract class PF {
|
|
6
6
|
static Auth: {
|
|
7
7
|
readonly Form: {
|
|
8
8
|
Block: (fn: () => Promise<void>) => Promise<void>;
|
|
9
9
|
GetValues: () => Map<string, string>;
|
|
10
10
|
Validate: () => string[];
|
|
11
|
-
GetFields: () => import('
|
|
12
|
-
GetMethods: () =>
|
|
13
|
-
Status: () =>
|
|
11
|
+
GetFields: () => import('./classes/auth/fields/AuthField').default[];
|
|
12
|
+
GetMethods: () => C.AuthMethods[];
|
|
13
|
+
Status: () => C.AuthFormStatuses;
|
|
14
14
|
IsLogin: () => boolean;
|
|
15
15
|
IsRegister: () => boolean;
|
|
16
16
|
IsRestore: () => boolean;
|
|
17
17
|
IsRefresh: () => boolean;
|
|
18
|
-
SetStatus: (status:
|
|
18
|
+
SetStatus: (status: C.AuthFormStatuses) => void;
|
|
19
19
|
GetTitle: () => string;
|
|
20
|
-
GetButtons: () => import('
|
|
20
|
+
GetButtons: () => import('./classes/auth/buttons/AuthButton').default[];
|
|
21
21
|
GetSuccessMessage: () => string;
|
|
22
22
|
GetErrorMessage: () => string;
|
|
23
23
|
GetAction: () => string;
|
|
@@ -29,8 +29,8 @@ export default abstract class PF {
|
|
|
29
29
|
AllowLogout: () => void;
|
|
30
30
|
readonly IsAuth: boolean;
|
|
31
31
|
readonly User: unknown;
|
|
32
|
-
SetUserConstructor: (c: import('./
|
|
33
|
-
SetState: (authInfo: import('
|
|
32
|
+
SetUserConstructor: (c: import('./services/Classes').Constructable<import('./interfaces/IWithId').default>) => void;
|
|
33
|
+
SetState: (authInfo: import('./types/AuthInfo').AuthInfo) => void;
|
|
34
34
|
Logout: () => void;
|
|
35
35
|
Actualize: () => void;
|
|
36
36
|
};
|
|
@@ -55,15 +55,15 @@ export default abstract class PF {
|
|
|
55
55
|
path: string;
|
|
56
56
|
isOpen: boolean;
|
|
57
57
|
filterString: string;
|
|
58
|
-
Set: (menu: import('
|
|
59
|
-
Get: () => import('
|
|
60
|
-
filterMenu: () => import('
|
|
58
|
+
Set: (menu: import('./interfaces/IAdminMenu').default[]) => void;
|
|
59
|
+
Get: () => import('./interfaces/IAdminMenu').default[];
|
|
60
|
+
filterMenu: () => import('./interfaces/IAdminMenu').default[];
|
|
61
61
|
IsOpen: () => boolean;
|
|
62
62
|
Toggle: () => void;
|
|
63
63
|
SetPath: (path: string) => void;
|
|
64
64
|
GetPath: () => string;
|
|
65
65
|
SetFilter: (str: string) => void;
|
|
66
|
-
GetChildren: (menu: import('
|
|
66
|
+
GetChildren: (menu: import('./interfaces/IAdminMenu').default) => import('./interfaces/IAdminMenu').default[] | undefined;
|
|
67
67
|
};
|
|
68
68
|
Head: {
|
|
69
69
|
title: any;
|
|
@@ -81,21 +81,21 @@ export default abstract class PF {
|
|
|
81
81
|
static Dialog: {
|
|
82
82
|
GetConfirmButtonText: () => string;
|
|
83
83
|
GetCancelButtonText: () => string;
|
|
84
|
-
Show: (m: string | (import('./Message').MessageOpts & {
|
|
84
|
+
Show: (m: string | (import('./services/Message').MessageOpts & {
|
|
85
85
|
text: string;
|
|
86
86
|
confirmButtonText: string;
|
|
87
87
|
cancelButtonText: string;
|
|
88
|
-
})) => Promise<import('./Dialog').DialogResult>;
|
|
89
|
-
Save: () => Promise<import('./Dialog').DialogResult>;
|
|
88
|
+
})) => Promise<import('./services/Dialog').DialogResult>;
|
|
89
|
+
Save: () => Promise<import('./services/Dialog').DialogResult>;
|
|
90
90
|
Submit: () => void;
|
|
91
91
|
Cancel: () => void;
|
|
92
92
|
GetText: () => string;
|
|
93
93
|
GetTitle: () => string;
|
|
94
94
|
GetType: () => H.Statuses;
|
|
95
|
-
Info: (m: string | import('./Message').MessageOpts) => void;
|
|
96
|
-
Success: (m: string | import('./Message').MessageOpts) => void;
|
|
97
|
-
Error: (m: string | import('./Message').MessageOpts) => void;
|
|
98
|
-
Warning: (m: string | import('./Message').MessageOpts) => void;
|
|
95
|
+
Info: (m: string | import('./services/Message').MessageOpts) => void;
|
|
96
|
+
Success: (m: string | import('./services/Message').MessageOpts) => void;
|
|
97
|
+
Error: (m: string | import('./services/Message').MessageOpts) => void;
|
|
98
|
+
Warning: (m: string | import('./services/Message').MessageOpts) => void;
|
|
99
99
|
FormMessage: (errorFields: any) => string;
|
|
100
100
|
IsVisible: () => boolean;
|
|
101
101
|
};
|
|
@@ -105,10 +105,10 @@ export default abstract class PF {
|
|
|
105
105
|
GetText: () => string;
|
|
106
106
|
GetTitle: () => string;
|
|
107
107
|
GetType: () => H.Statuses;
|
|
108
|
-
Info: (m: string | import('./Message').MessageOpts) => void;
|
|
109
|
-
Success: (m: string | import('./Message').MessageOpts) => void;
|
|
110
|
-
Error: (m: string | import('./Message').MessageOpts) => void;
|
|
111
|
-
Warning: (m: string | import('./Message').MessageOpts) => void;
|
|
108
|
+
Info: (m: string | import('./services/Message').MessageOpts) => void;
|
|
109
|
+
Success: (m: string | import('./services/Message').MessageOpts) => void;
|
|
110
|
+
Error: (m: string | import('./services/Message').MessageOpts) => void;
|
|
111
|
+
Warning: (m: string | import('./services/Message').MessageOpts) => void;
|
|
112
112
|
FormMessage: (errorFields: any) => string;
|
|
113
113
|
IsVisible: () => boolean;
|
|
114
114
|
};
|
|
@@ -126,8 +126,8 @@ export default abstract class PF {
|
|
|
126
126
|
pagesCount: () => number;
|
|
127
127
|
reset: () => void;
|
|
128
128
|
};
|
|
129
|
-
static S: typeof
|
|
130
|
-
static M: typeof
|
|
129
|
+
static S: typeof S;
|
|
130
|
+
static M: typeof M;
|
|
131
131
|
static H: typeof H;
|
|
132
|
-
static C: typeof
|
|
132
|
+
static C: typeof C;
|
|
133
133
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as IWithId } from '../../interfaces/IWithId';
|
|
2
|
-
import { Constructable } from '../../services/
|
|
2
|
+
import { Constructable } from '../../services/Classes';
|
|
3
3
|
import { AuthInfo } from '../../types/AuthInfo';
|
|
4
4
|
export default class AuthStatus<UserT> {
|
|
5
5
|
private isAuth;
|
|
@@ -21,8 +21,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
21
21
|
}>> & Readonly<{
|
|
22
22
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
-
y: number;
|
|
25
24
|
x: number;
|
|
25
|
+
y: number;
|
|
26
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
27
27
|
default?(_: {}): any;
|
|
28
28
|
}>;
|
|
@@ -2,9 +2,9 @@ import { Meta, StoryFn } from '@storybook/vue3';
|
|
|
2
2
|
declare const _default: Meta<{
|
|
3
3
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
4
4
|
fileInfo: {
|
|
5
|
-
type: globalThis.PropType<import('
|
|
5
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
6
6
|
required: false;
|
|
7
|
-
default: import('
|
|
7
|
+
default: import('../../../classes').FileInfo;
|
|
8
8
|
};
|
|
9
9
|
formats: {
|
|
10
10
|
type: globalThis.PropType<string[]>;
|
|
@@ -59,7 +59,7 @@ declare const _default: Meta<{
|
|
|
59
59
|
}, import('vue').PublicProps, {
|
|
60
60
|
label: string;
|
|
61
61
|
mask: string;
|
|
62
|
-
fileInfo: import('
|
|
62
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
63
63
|
placeholder: string;
|
|
64
64
|
margin: string;
|
|
65
65
|
padding: string;
|
|
@@ -76,9 +76,9 @@ declare const _default: Meta<{
|
|
|
76
76
|
Defaults: {};
|
|
77
77
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
78
78
|
fileInfo: {
|
|
79
|
-
type: globalThis.PropType<import('
|
|
79
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
80
80
|
required: false;
|
|
81
|
-
default: import('
|
|
81
|
+
default: import('../../../classes').FileInfo;
|
|
82
82
|
};
|
|
83
83
|
formats: {
|
|
84
84
|
type: globalThis.PropType<string[]>;
|
|
@@ -130,7 +130,7 @@ declare const _default: Meta<{
|
|
|
130
130
|
}>, {}, {}, {}, {}, {
|
|
131
131
|
label: string;
|
|
132
132
|
mask: string;
|
|
133
|
-
fileInfo: import('
|
|
133
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
134
134
|
placeholder: string;
|
|
135
135
|
margin: string;
|
|
136
136
|
padding: string;
|
|
@@ -144,9 +144,9 @@ declare const _default: Meta<{
|
|
|
144
144
|
__isSuspense?: undefined;
|
|
145
145
|
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
146
146
|
fileInfo: {
|
|
147
|
-
type: globalThis.PropType<import('
|
|
147
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
148
148
|
required: false;
|
|
149
|
-
default: import('
|
|
149
|
+
default: import('../../../classes').FileInfo;
|
|
150
150
|
};
|
|
151
151
|
formats: {
|
|
152
152
|
type: globalThis.PropType<string[]>;
|
|
@@ -201,7 +201,7 @@ declare const _default: Meta<{
|
|
|
201
201
|
}, string, {
|
|
202
202
|
label: string;
|
|
203
203
|
mask: string;
|
|
204
|
-
fileInfo: import('
|
|
204
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
205
205
|
placeholder: string;
|
|
206
206
|
margin: string;
|
|
207
207
|
padding: string;
|
|
@@ -218,9 +218,9 @@ export default _default;
|
|
|
218
218
|
export declare const Base: StoryFn<{
|
|
219
219
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
220
220
|
fileInfo: {
|
|
221
|
-
type: globalThis.PropType<import('
|
|
221
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
222
222
|
required: false;
|
|
223
|
-
default: import('
|
|
223
|
+
default: import('../../../classes').FileInfo;
|
|
224
224
|
};
|
|
225
225
|
formats: {
|
|
226
226
|
type: globalThis.PropType<string[]>;
|
|
@@ -275,7 +275,7 @@ export declare const Base: StoryFn<{
|
|
|
275
275
|
}, import('vue').PublicProps, {
|
|
276
276
|
label: string;
|
|
277
277
|
mask: string;
|
|
278
|
-
fileInfo: import('
|
|
278
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
279
279
|
placeholder: string;
|
|
280
280
|
margin: string;
|
|
281
281
|
padding: string;
|
|
@@ -292,9 +292,9 @@ export declare const Base: StoryFn<{
|
|
|
292
292
|
Defaults: {};
|
|
293
293
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
294
294
|
fileInfo: {
|
|
295
|
-
type: globalThis.PropType<import('
|
|
295
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
296
296
|
required: false;
|
|
297
|
-
default: import('
|
|
297
|
+
default: import('../../../classes').FileInfo;
|
|
298
298
|
};
|
|
299
299
|
formats: {
|
|
300
300
|
type: globalThis.PropType<string[]>;
|
|
@@ -346,7 +346,7 @@ export declare const Base: StoryFn<{
|
|
|
346
346
|
}>, {}, {}, {}, {}, {
|
|
347
347
|
label: string;
|
|
348
348
|
mask: string;
|
|
349
|
-
fileInfo: import('
|
|
349
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
350
350
|
placeholder: string;
|
|
351
351
|
margin: string;
|
|
352
352
|
padding: string;
|
|
@@ -360,9 +360,9 @@ export declare const Base: StoryFn<{
|
|
|
360
360
|
__isSuspense?: undefined;
|
|
361
361
|
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
362
362
|
fileInfo: {
|
|
363
|
-
type: globalThis.PropType<import('
|
|
363
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
364
364
|
required: false;
|
|
365
|
-
default: import('
|
|
365
|
+
default: import('../../../classes').FileInfo;
|
|
366
366
|
};
|
|
367
367
|
formats: {
|
|
368
368
|
type: globalThis.PropType<string[]>;
|
|
@@ -417,7 +417,7 @@ export declare const Base: StoryFn<{
|
|
|
417
417
|
}, string, {
|
|
418
418
|
label: string;
|
|
419
419
|
mask: string;
|
|
420
|
-
fileInfo: import('
|
|
420
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
421
421
|
placeholder: string;
|
|
422
422
|
margin: string;
|
|
423
423
|
padding: string;
|
|
@@ -433,9 +433,9 @@ export declare const Base: StoryFn<{
|
|
|
433
433
|
export declare const Base1: StoryFn<{
|
|
434
434
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
435
435
|
fileInfo: {
|
|
436
|
-
type: globalThis.PropType<import('
|
|
436
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
437
437
|
required: false;
|
|
438
|
-
default: import('
|
|
438
|
+
default: import('../../../classes').FileInfo;
|
|
439
439
|
};
|
|
440
440
|
formats: {
|
|
441
441
|
type: globalThis.PropType<string[]>;
|
|
@@ -490,7 +490,7 @@ export declare const Base1: StoryFn<{
|
|
|
490
490
|
}, import('vue').PublicProps, {
|
|
491
491
|
label: string;
|
|
492
492
|
mask: string;
|
|
493
|
-
fileInfo: import('
|
|
493
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
494
494
|
placeholder: string;
|
|
495
495
|
margin: string;
|
|
496
496
|
padding: string;
|
|
@@ -507,9 +507,9 @@ export declare const Base1: StoryFn<{
|
|
|
507
507
|
Defaults: {};
|
|
508
508
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
509
509
|
fileInfo: {
|
|
510
|
-
type: globalThis.PropType<import('
|
|
510
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
511
511
|
required: false;
|
|
512
|
-
default: import('
|
|
512
|
+
default: import('../../../classes').FileInfo;
|
|
513
513
|
};
|
|
514
514
|
formats: {
|
|
515
515
|
type: globalThis.PropType<string[]>;
|
|
@@ -561,7 +561,7 @@ export declare const Base1: StoryFn<{
|
|
|
561
561
|
}>, {}, {}, {}, {}, {
|
|
562
562
|
label: string;
|
|
563
563
|
mask: string;
|
|
564
|
-
fileInfo: import('
|
|
564
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
565
565
|
placeholder: string;
|
|
566
566
|
margin: string;
|
|
567
567
|
padding: string;
|
|
@@ -575,9 +575,9 @@ export declare const Base1: StoryFn<{
|
|
|
575
575
|
__isSuspense?: undefined;
|
|
576
576
|
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
577
577
|
fileInfo: {
|
|
578
|
-
type: globalThis.PropType<import('
|
|
578
|
+
type: globalThis.PropType<import('../../../classes').FileInfo>;
|
|
579
579
|
required: false;
|
|
580
|
-
default: import('
|
|
580
|
+
default: import('../../../classes').FileInfo;
|
|
581
581
|
};
|
|
582
582
|
formats: {
|
|
583
583
|
type: globalThis.PropType<string[]>;
|
|
@@ -632,7 +632,7 @@ export declare const Base1: StoryFn<{
|
|
|
632
632
|
}, string, {
|
|
633
633
|
label: string;
|
|
634
634
|
mask: string;
|
|
635
|
-
fileInfo: import('
|
|
635
|
+
fileInfo: import('../../../classes').FileInfo;
|
|
636
636
|
placeholder: string;
|
|
637
637
|
margin: string;
|
|
638
638
|
padding: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as classesNames } from './classes/indexNames';
|
|
2
1
|
import { default as AdaptiveContainer } from './components/AdaptiveContainer.vue';
|
|
3
2
|
import { default as AdaptiveContainerHorizontal } from './components/AdaptiveContainerHorizontal.vue';
|
|
4
3
|
import { default as AdminGallery } from './components/AdminGallery.vue';
|
|
@@ -86,15 +85,13 @@ import { default as ThemeWrapper } from './components/ThemeWrapper.vue';
|
|
|
86
85
|
import { default as ToggleInfoItem } from './components/ToggleInfoItem.vue';
|
|
87
86
|
import { default as TopSliderContainer } from './components/TopSliderContainer.vue';
|
|
88
87
|
import { default as UploaderImage } from './components/UploaderImage.vue';
|
|
89
|
-
import { default as servicesNames } from './services/indexNames';
|
|
90
|
-
import { default as servicesStoresNames } from './store/indexNames';
|
|
91
88
|
import { default as typesNames } from './types/indexNames';
|
|
92
89
|
declare const servicesComponents: {
|
|
93
90
|
install: (app: {
|
|
94
91
|
component: (a: string, b: unknown) => void;
|
|
95
92
|
}) => void;
|
|
96
93
|
};
|
|
97
|
-
export * from './
|
|
98
|
-
export * from './
|
|
94
|
+
export * from './index';
|
|
95
|
+
export * from './PF';
|
|
99
96
|
export * from './types/index';
|
|
100
|
-
export { AdaptiveContainer, AdaptiveContainerHorizontal, AdminGallery, ArrowLeft, ArrowRight, AuthForm, AuthModal, AuthPage, CarouselImages,
|
|
97
|
+
export { AdaptiveContainer, AdaptiveContainerHorizontal, AdminGallery, ArrowLeft, ArrowRight, AuthForm, AuthModal, AuthPage, CarouselImages, CollapseContainer, CollapseItem, ContactForm, ContextWindow, DateInputRange, DateInputRange_v2, DoubleArrowLeft, DoubleArrowRight, DropList, EllipsisSvg, EmailForm, FilterCheckbox, FiltersButtonsSelect, FilterSelect, FTSPPanel, GeneralItem, GridContainer, IconArrowLeft, IconCheckDefault, IconClose, IconDownload, IconEdit, IconEmail, IconFilter, IconMove, IconPhone, IconSearch, IconSelectArrow, ImageCropper, InfoItem, InfoItemSelectButtons, LeftRightContainer, MessageBody, PAdd, PageNotFound, PAutocomplete, PButton, PCheckBox, PContainer, PContainerStickyHead, PDatePicker, PDel, PDialog, PFlex, PhoneForm, PInput, PInputDate, PInputNumber, PLeftSlider, PList, PListItem, PLoader, PModal, PNotification, PPagination, PRadio, PRightSlider, PSelect, PSticky, PString, PTabs, PTextarea, PTopSlider, RemoteSearch, ResearcheContainer, RightSliderContainer, RightTabsContainer, SelectValueType, servicesComponents, SingleNameToggleForm, SortList, SortSelect, Switch3Pos, ThemeWrapper, ToggleInfoItem, TopSliderContainer, typesNames, UploaderFile, UploaderImage, VerticalCollapseContainer, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as PF } from './PF';
|
|
@@ -3,7 +3,7 @@ import { default as FTSP } from '../classes/filters/FTSP';
|
|
|
3
3
|
import { default as IFileInfosGetter } from '../interfaces/IFileInfosGetter';
|
|
4
4
|
import { default as ItemsWithCount } from '../interfaces/ItemsWithCount';
|
|
5
5
|
import { default as IWithId } from '../interfaces/IWithId';
|
|
6
|
-
import { Constructable } from './
|
|
6
|
+
import { Constructable } from './Classes';
|
|
7
7
|
export interface GetAllOptions {
|
|
8
8
|
withCache?: boolean;
|
|
9
9
|
ftsp: FTSP;
|
|
@@ -5,7 +5,7 @@ export type ClassType = {
|
|
|
5
5
|
export type Constructable<T> = {
|
|
6
6
|
new (...args: any[]): T;
|
|
7
7
|
};
|
|
8
|
-
export default class
|
|
8
|
+
export default class Classes {
|
|
9
9
|
static BuildClass(passedClass: ClassType, arg?: ClassType): void;
|
|
10
10
|
static GetClassConstructor: <T>(construct: Constructable<T>) => PropertyDecorator;
|
|
11
11
|
private static isPrimitive;
|
|
@@ -13,7 +13,6 @@ import { default as Axios } from './Axios';
|
|
|
13
13
|
import { default as BaseStore } from './BaseStore';
|
|
14
14
|
import { default as Cache } from './Cache';
|
|
15
15
|
import { default as CarouselSwipe } from './CarouselSwipe';
|
|
16
|
-
import { default as ClassHelper } from './ClassHelper';
|
|
17
16
|
import { default as Color } from './Color';
|
|
18
17
|
import { default as CreateSortModels } from './CreateSortModels';
|
|
19
18
|
import { default as Cursor } from './Cursor';
|
|
@@ -41,4 +40,5 @@ import { default as useConfirmLeavePage } from './useConfirmLeavePage';
|
|
|
41
40
|
import { default as validate } from './validate';
|
|
42
41
|
import { default as WaitElement } from './WaitElement';
|
|
43
42
|
import { default as WebSocketClient } from './WebSocketClient';
|
|
44
|
-
export {
|
|
43
|
+
export { default as Classes } from './Classes';
|
|
44
|
+
export { Arrays, Axios, BaseStore, Button, Cache, CarouselSwipe, Color, Contact, CreateSortModels, Cursor, DateMask, Dates, Dragger, Email, Extension, Favourite, FilterModel, FTSP, Hooks, HttpClient, MakeCarousel, Period, PhoneService, Rating, Router, RouterGuard, Scheduler, Scroll, Sizes, Sorter, SortModel, Static, Statuses, Strings, Time, Timer, Token, useConfirmLeavePage, validate, ValueType, WaitElement, WebSocketClient, };
|