sprof 0.0.131 → 0.0.133
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 +16 -4
- package/dist/core/components/index.d.ts +2 -1
- package/dist/core/components/organisms/PModal.vue.d.ts +1 -1
- package/dist/sprof.js +619 -598
- package/dist/sprof.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/core/auth/Auth.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { default as AuthModal } from './AuthModal';
|
|
2
|
-
import { default as AuthStatus } from './AuthStatus';
|
|
3
1
|
declare class Auth<UserT> {
|
|
4
2
|
static instance: unknown | undefined;
|
|
5
3
|
private form;
|
|
@@ -246,8 +244,22 @@ declare class Auth<UserT> {
|
|
|
246
244
|
ResetFields: () => void;
|
|
247
245
|
Reset: () => void;
|
|
248
246
|
};
|
|
249
|
-
get Status():
|
|
250
|
-
|
|
247
|
+
get Status(): {
|
|
248
|
+
DeprecateLogout: () => void;
|
|
249
|
+
AllowLogout: () => void;
|
|
250
|
+
readonly IsAuth: boolean;
|
|
251
|
+
readonly User: import('vue').UnwrapRef<UserT> | undefined;
|
|
252
|
+
SetUserConstructor: (c: import('../helpers/Classes').Constructable<import('../interfaces/IWithId').default>) => void;
|
|
253
|
+
SetState: (authInfo: import('../types/AuthInfo').AuthInfo) => void;
|
|
254
|
+
Logout: () => void;
|
|
255
|
+
Actualize: () => void;
|
|
256
|
+
};
|
|
257
|
+
get Modal(): {
|
|
258
|
+
IsClosable: () => boolean;
|
|
259
|
+
IsVisible: () => boolean;
|
|
260
|
+
Close: () => void;
|
|
261
|
+
Open: (closable?: boolean | undefined) => void;
|
|
262
|
+
};
|
|
251
263
|
}
|
|
252
264
|
declare const _default: Auth<unknown>;
|
|
253
265
|
export default _default;
|
|
@@ -16,6 +16,7 @@ import { default as PRightSlider } from './atoms/PRightSlider/PRightSlider.vue';
|
|
|
16
16
|
import { default as PSelect } from './atoms/PSelect/PSelect.vue';
|
|
17
17
|
import { default as PSticky } from './atoms/PSticky/PSticky.vue';
|
|
18
18
|
import { default as PString } from './atoms/PString/PString.vue';
|
|
19
|
+
import { default as PTable } from './atoms/PTable/PTable.vue';
|
|
19
20
|
import { default as PTextarea } from './atoms/PTextarea/PTextarea.vue';
|
|
20
21
|
import { default as PTopSlider } from './atoms/PTopSlider/PTopSlider.vue';
|
|
21
22
|
import { default as AuthModal } from './AuthModal.vue';
|
|
@@ -87,4 +88,4 @@ declare const servicesComponents: {
|
|
|
87
88
|
component: (a: string, b: unknown) => void;
|
|
88
89
|
}) => void;
|
|
89
90
|
};
|
|
90
|
-
export { AdaptiveContainer, AdaptiveContainerHorizontal, AdminGallery, ArrowLeft, ArrowRight, AuthForm, AuthModal, CarouselImages, CollapseContainer, CollapseItem, ContextWindow, DateInputRange, DateInputRange_v2, DoubleArrowLeft, DoubleArrowRight, DropList, EllipsisSvg, 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, UploaderFile, UploaderImage, VerticalCollapseContainer, };
|
|
91
|
+
export { AdaptiveContainer, AdaptiveContainerHorizontal, AdminGallery, ArrowLeft, ArrowRight, AuthForm, AuthModal, CarouselImages, CollapseContainer, CollapseItem, ContextWindow, DateInputRange, DateInputRange_v2, DoubleArrowLeft, DoubleArrowRight, DropList, EllipsisSvg, 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, PTable, PTabs, PTextarea, PTopSlider, RemoteSearch, ResearcheContainer, RightSliderContainer, RightTabsContainer, SelectValueType, servicesComponents, SingleNameToggleForm, SortList, SortSelect, Switch3Pos, ThemeWrapper, ToggleInfoItem, TopSliderContainer, UploaderFile, UploaderImage, VerticalCollapseContainer, };
|
|
@@ -91,6 +91,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
91
91
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
92
92
|
onSave?: ((...args: any[]) => any) | undefined;
|
|
93
93
|
}>, {
|
|
94
|
+
closable: boolean;
|
|
94
95
|
title: string;
|
|
95
96
|
top: string;
|
|
96
97
|
margin: string;
|
|
@@ -98,7 +99,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
|
|
|
98
99
|
width: string;
|
|
99
100
|
maxHeight: string;
|
|
100
101
|
show: boolean;
|
|
101
|
-
closable: boolean;
|
|
102
102
|
showClose: boolean;
|
|
103
103
|
showCloseDialog: boolean;
|
|
104
104
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|