@huyooo/ui 0.4.73 → 0.4.75
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/{AuthkitAuthModal-hVSE1o31.js → AuthkitAuthModal-A8HqP1Bw.js} +2 -2
- package/dist/{AuthkitAuthorize-CcuxKyfx.js → AuthkitAuthorize-BlEC4PlY.js} +2 -2
- package/dist/{FeedbackItem-BCMwNxsb.js → FeedbackItem-B_EUApFA.js} +1 -1
- package/dist/{FeedbackModal-CmGPYo4h.js → FeedbackModal-D1htK7xY.js} +31 -31
- package/dist/{ReferrerReferees-BFMQJqqj.js → ReferrerReferees-BclAtmgX.js} +1 -1
- package/dist/{UserAccountMenu-CI6Yvfwe.js → UserAccountMenu-C7LQIjwT.js} +5 -5
- package/dist/authkit.js +4 -4
- package/dist/common/downloadOptions.d.ts +23 -0
- package/dist/components/Authkit/Auth/AuthkitAuthContainer.vue.d.ts +1 -1
- package/dist/components/Authkit/Auth/AuthkitAuthorize.vue.d.ts +1 -1
- package/dist/components/Authkit/Auth/AuthkitOAuthList.vue.d.ts +1 -1
- package/dist/components/Authkit/Auth/AuthkitPasswordUpdateAndVerify.vue.d.ts +2 -2
- package/dist/components/Authkit/AuthkitAppSetting.vue.d.ts +2 -2
- package/dist/components/Authkit/AuthkitAuthModal.vue.d.ts +2 -2
- package/dist/components/Download/BrowserExtensions.vue.d.ts +20 -0
- package/dist/components/Download/DesktopDownloads.vue.d.ts +7 -0
- package/dist/components/Download/DownloadCard.vue.d.ts +17 -0
- package/dist/components/Download/DownloadDropdown.vue.d.ts +5 -0
- package/dist/components/Download/DownloadGrid.vue.d.ts +17 -0
- package/dist/components/Download/DownloadSectionHeader.vue.d.ts +6 -0
- package/dist/components/Download/ExtensionCard.vue.d.ts +21 -0
- package/dist/components/Download/MobileDownloads.vue.d.ts +21 -0
- package/dist/components/Feedback/FeedbackBubbleEnd.vue.d.ts +2 -2
- package/dist/components/Feedback/FeedbackBubbleStart.vue.d.ts +2 -2
- package/dist/components/Feedback/FeedbackModal.vue.d.ts +2 -2
- package/dist/components/LandingPage/LandingPageContact.vue.d.ts +2 -2
- package/dist/components/Message/MessageAppMessage.vue.d.ts +2 -2
- package/dist/components/Message/MessageHandle.vue.d.ts +3 -3
- package/dist/components/Pay/PaySubscriptions.vue.d.ts +2 -2
- package/dist/components/User/UserBasicInformation.vue.d.ts +2 -2
- package/dist/components/User/UserPanel.vue.d.ts +15 -15
- package/dist/composables/useDownloads.d.ts +39 -0
- package/dist/composables.d.ts +1 -0
- package/dist/composables.js +22 -70
- package/dist/download.d.ts +8 -0
- package/dist/feedback.js +2 -2
- package/dist/index.js +700 -145
- package/dist/main.d.ts +2 -0
- package/dist/referrer.js +1 -1
- package/dist/style.css +1 -1
- package/dist/{useAuthkitAuthModal-hxivJw_U.js → useAuthkitAppsAuthPageInfo-COeq29Tn.js} +13 -13
- package/dist/{useAuthkitUsersProfile-CRLJnYMy.js → useAuthkitUsersProfile-DNOB_Kuk.js} +62 -62
- package/dist/useDownloads-BkDo_wOR.js +103 -0
- package/dist/user.js +1 -1
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './composables';
|
|
1
2
|
export * from './authkit';
|
|
2
3
|
export * from './message';
|
|
3
4
|
export * from './feedback';
|
|
@@ -7,3 +8,4 @@ export * from './pay';
|
|
|
7
8
|
export * from './referrer';
|
|
8
9
|
export * from './upload';
|
|
9
10
|
export * from './user';
|
|
11
|
+
export * from './download';
|
package/dist/referrer.js
CHANGED