sprof 0.0.127 → 0.0.129
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 +198 -2
- package/dist/core/auth/AuthForm.d.ts +4 -4
- package/dist/core/auth/buttons/AuthButton.d.ts +3 -3
- package/dist/core/auth/buttons/AuthButtonLogin.d.ts +2 -0
- package/dist/core/auth/buttons/AuthButtonRegister.d.ts +2 -0
- package/dist/core/auth/index.d.ts +2 -2
- package/dist/core/auth/types/{AuthFormStatuses.d.ts → AuthChunks.d.ts} +2 -2
- package/dist/core/components/GeneralItem.vue.d.ts +2 -2
- package/dist/core/components/GridContainer.vue.d.ts +2 -2
- package/dist/core/components/InfoItem.vue.d.ts +2 -2
- package/dist/core/components/UploaderImage.vue.d.ts +1 -1
- package/dist/core/components/atoms/PButton/PButton.stories.d.ts +18 -18
- package/dist/core/components/atoms/PButton/PButton.vue.d.ts +3 -3
- package/dist/core/components/atoms/PCheckbox/PCheckBox.stories.d.ts +6 -6
- package/dist/core/components/atoms/PCheckbox/PCheckBox.vue.d.ts +3 -3
- package/dist/core/components/atoms/PDatePicker/PDatePicker.vue.d.ts +1 -1
- package/dist/core/components/atoms/PFlex/PFlex.stories.d.ts +12 -12
- package/dist/core/components/atoms/PFlex/PFlex.vue.d.ts +2 -2
- package/dist/core/components/atoms/PInputDate/PInputDate.stories.d.ts +4 -4
- package/dist/core/components/atoms/PInputDate/PInputDate.vue.d.ts +2 -2
- package/dist/core/components/atoms/PList/PList.stories.d.ts +6 -6
- package/dist/core/components/atoms/PList/PList.vue.d.ts +1 -1
- package/dist/core/components/atoms/PRadio/PRadio.stories.d.ts +6 -6
- package/dist/core/components/atoms/PRadio/PRadio.vue.d.ts +3 -3
- package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +12 -12
- package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +2 -2
- package/dist/core/components/atoms/PString/PString.stories.d.ts +4 -4
- package/dist/core/components/atoms/PString/PString.vue.d.ts +2 -2
- package/dist/core/components/atoms/PTable/PTable.storeis.d.ts +6 -6
- package/dist/core/components/atoms/PTable/PTable.vue.d.ts +1 -1
- package/dist/core/components/index.d.ts +1 -2
- package/dist/core/components/molecules/Collapse/CollapseItem.stories.d.ts +2 -2
- package/dist/core/components/molecules/Collapse/CollapseItem.vue.d.ts +1 -1
- package/dist/core/components/molecules/PAdd/PAdd.vue.d.ts +1 -1
- package/dist/core/components/molecules/PAdd/PContainer.vue.d.ts +1 -1
- package/dist/core/components/molecules/PAdd/PContainerStickyHead.vue.d.ts +1 -1
- package/dist/core/components/molecules/PDel/PDel.vue.d.ts +1 -1
- package/dist/core/components/organisms/AuthForm/AuthForm.stories.d.ts +50 -0
- package/dist/core/components/organisms/AuthForm/AuthForm.vue.d.ts +1 -1
- package/dist/core/components/organisms/PModal.vue.d.ts +2 -2
- package/dist/core/components/organisms/UploaderFile/UploaderFile.stories.d.ts +9 -9
- package/dist/core/components/organisms/UploaderFile/UploaderFile.vue.d.ts +1 -1
- package/dist/core/helpers/BaseRoutes.d.ts +2 -18
- package/dist/core/index.d.ts +10 -10
- package/dist/sprof.js +2024 -2046
- package/dist/sprof.umd.cjs +12 -12
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/core/components/pages/AuthPage.vue.d.ts +0 -2
package/dist/core/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export default abstract class PF {
|
|
|
13
13
|
Validate: () => string[];
|
|
14
14
|
GetFields: () => import('./auth/fields/AuthField').default[];
|
|
15
15
|
GetMethods: () => import('./auth').AuthMethods[];
|
|
16
|
-
|
|
16
|
+
Chunk: () => import('./auth').AuthChunks;
|
|
17
17
|
readonly Settings: {
|
|
18
18
|
allowRestore: boolean;
|
|
19
19
|
login: {
|
|
@@ -25,9 +25,9 @@ export default abstract class PF {
|
|
|
25
25
|
text: string;
|
|
26
26
|
isSubmit: boolean;
|
|
27
27
|
disabled: boolean;
|
|
28
|
-
|
|
28
|
+
chunk: import('./auth').AuthChunks;
|
|
29
29
|
submit: boolean;
|
|
30
|
-
|
|
30
|
+
GetChunk: () => import('./auth').AuthChunks;
|
|
31
31
|
type?: import('./types').Statuses | undefined;
|
|
32
32
|
condition?: boolean | undefined;
|
|
33
33
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
@@ -36,9 +36,9 @@ export default abstract class PF {
|
|
|
36
36
|
text: string;
|
|
37
37
|
isSubmit: boolean;
|
|
38
38
|
disabled: boolean;
|
|
39
|
-
|
|
39
|
+
chunk: import('./auth').AuthChunks;
|
|
40
40
|
submit: boolean;
|
|
41
|
-
|
|
41
|
+
GetChunk: () => import('./auth').AuthChunks;
|
|
42
42
|
type?: import('./types').Statuses | undefined;
|
|
43
43
|
condition?: boolean | undefined;
|
|
44
44
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
@@ -82,9 +82,9 @@ export default abstract class PF {
|
|
|
82
82
|
text: string;
|
|
83
83
|
isSubmit: boolean;
|
|
84
84
|
disabled: boolean;
|
|
85
|
-
|
|
85
|
+
chunk: import('./auth').AuthChunks;
|
|
86
86
|
submit: boolean;
|
|
87
|
-
|
|
87
|
+
GetChunk: () => import('./auth').AuthChunks;
|
|
88
88
|
type?: import('./types').Statuses | undefined;
|
|
89
89
|
condition?: boolean | undefined;
|
|
90
90
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
@@ -93,9 +93,9 @@ export default abstract class PF {
|
|
|
93
93
|
text: string;
|
|
94
94
|
isSubmit: boolean;
|
|
95
95
|
disabled: boolean;
|
|
96
|
-
|
|
96
|
+
chunk: import('./auth').AuthChunks;
|
|
97
97
|
submit: boolean;
|
|
98
|
-
|
|
98
|
+
GetChunk: () => import('./auth').AuthChunks;
|
|
99
99
|
type?: import('./types').Statuses | undefined;
|
|
100
100
|
condition?: boolean | undefined;
|
|
101
101
|
action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
|
|
@@ -192,7 +192,7 @@ export default abstract class PF {
|
|
|
192
192
|
IsRegister: () => boolean;
|
|
193
193
|
IsRestore: () => boolean;
|
|
194
194
|
IsRefresh: () => boolean;
|
|
195
|
-
|
|
195
|
+
SetChunk: (chunk: import('./auth').AuthChunks) => void;
|
|
196
196
|
GetTitle: () => string;
|
|
197
197
|
GetButtons: () => import('./auth/buttons/AuthButton').default[];
|
|
198
198
|
GetSuccessMessage: () => string;
|