@huyooo/ui 0.4.66 → 0.4.68
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/{AuthkitAppSetting-hzmQcqn0.js → AuthkitAppSetting-CX3_9Jcg.js} +1 -1
- package/dist/{AuthkitAuthorize-B3WS5eGX.js → AuthkitAuthorize-CA0jmnjq.js} +1 -1
- package/dist/{FeedbackItem-Du2qqirA.js → FeedbackItem-C5WqFEqH.js} +2 -2
- package/dist/{FeedbackModal-CqqZyeKu.js → FeedbackModal-BDPw2tu7.js} +1 -1
- package/dist/{Upload.vue_vue_type_script_setup_true_lang-DTijAu7h.js → Upload.vue_vue_type_script_setup_true_lang-CDyUt05d.js} +1 -1
- package/dist/{UserPanel-Bgfdtd01.js → UserPanel-CaaTu1mu.js} +2 -2
- package/dist/authkit.d.ts +0 -1
- package/dist/authkit.js +2 -2
- package/dist/common.js +3 -3
- package/dist/components/Authkit/Auth/AuthkitAuthorize.vue.d.ts +4 -4
- package/dist/components/User/UserAvatar.vue.d.ts +1 -1
- package/dist/components/User/UserBasicInformation.vue.d.ts +1 -1
- package/dist/composables/Authkit/useAuthkitUsersProfile.d.ts +70 -95
- package/dist/composables/Upload/useUploadCos.d.ts +1 -1
- package/dist/composables.js +1 -1
- package/dist/feedback.js +2 -2
- package/dist/index.js +7 -7
- package/dist/style.css +1 -1
- package/dist/types/api.d.ts +1 -0
- package/dist/types/user.d.ts +114 -0
- package/dist/upload.js +2 -2
- package/dist/{useUploadCos-D34wTxEi.js → useUploadCos-B5P_PDcy.js} +634 -628
- package/dist/user.d.ts +1 -1
- package/dist/user.js +1 -1
- package/package.json +1 -1
- package/dist/types/users.d.ts +0 -21
package/dist/user.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ export { default as UserBasicInformation } from './components/User/UserBasicInfo
|
|
|
4
4
|
export { default as UserButton } from './components/User/UserButton.vue';
|
|
5
5
|
export { default as UserPanel } from './components/User/UserPanel.vue';
|
|
6
6
|
export { default as UserAccountMenu } from './components/User/UserAccountMenu.vue';
|
|
7
|
-
export type * from './types/
|
|
7
|
+
export type * from './types/user';
|
package/dist/user.js
CHANGED
package/package.json
CHANGED
package/dist/types/users.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export type UserStatusType = 'inactive' | 'normal';
|
|
2
|
-
export type UsersType = {
|
|
3
|
-
password: string;
|
|
4
|
-
email: string;
|
|
5
|
-
nickname: string;
|
|
6
|
-
description: string;
|
|
7
|
-
phone: string;
|
|
8
|
-
avatar: string;
|
|
9
|
-
status: UserStatusType;
|
|
10
|
-
organizations: string[];
|
|
11
|
-
};
|
|
12
|
-
export type UsersResponseType = {
|
|
13
|
-
userId: string;
|
|
14
|
-
nickname: string;
|
|
15
|
-
description: string;
|
|
16
|
-
email: string;
|
|
17
|
-
phone: string;
|
|
18
|
-
avatar: string;
|
|
19
|
-
status: UserStatusType;
|
|
20
|
-
organizations: string[];
|
|
21
|
-
};
|