cic-kit 0.0.21 → 0.0.23
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/cic-kit.css +1 -1
- package/dist/cmp/Accordion/Accordion.vue.d.ts +7 -2
- package/dist/cmp/Auth/Auth.d.ts +6 -1
- package/dist/cmp/Container/ContainerSideTabs.vue.d.ts +2 -2
- package/dist/cmp/Modal/Modal.vue.d.ts +2 -2
- package/dist/cmp/Router/_router.d.ts +4 -0
- package/dist/cmp/cicKitStore.d.ts +9 -0
- package/dist/cmp/{File → firebase}/FirebaseStrorage.d.ts +27 -5
- package/dist/cmp/input/File/FieldFile.vue.d.ts +68 -0
- package/dist/cmp/input/File/File.d.ts +5 -0
- package/dist/cmp/input/Tag/ColorTagInput.vue.d.ts +2 -2
- package/dist/cmp/input/Tag/TagInput.vue.d.ts +2 -2
- package/dist/cmp/loading/loadingController.d.ts +7 -2
- package/dist/cmp/offCanvas/OffcanvasCmp.vue.d.ts +2 -2
- package/dist/index-DRqJOqUR.js +3484 -0
- package/dist/index-Dnn2SCSl.cjs +1 -0
- package/dist/index.cjs +34 -23
- package/dist/index.d.ts +7 -1
- package/dist/index.mjs +24294 -18310
- package/dist/stores/currentUserStore.d.ts +1 -1
- package/package.json +2 -1
- /package/dist/defaultViews/{user/usersettings/UserFormPersonalInfo.vue.d.ts → HomeView.vue.d.ts} +0 -0
- /package/dist/defaultViews/user/{usersettings/UserFormPersonalInfoTest.vue.d.ts → UserProfileEditForm.vue.d.ts} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,12 @@ import BtnGoogleLogin from "./cmp/Btn/BtnGoogleLogin.vue";
|
|
|
16
16
|
import PwaUpdateButton from "./cmp/Btn/PwaUpdateButton.vue";
|
|
17
17
|
import Avatar from "./cmp/Avatar/Avatar.vue";
|
|
18
18
|
import Logo from "./cmp/Logo/Logo.vue";
|
|
19
|
-
|
|
19
|
+
import UserView from './defaultViews/user/UserView.vue';
|
|
20
|
+
import LoginView from './defaultViews/user/LoginView.vue';
|
|
21
|
+
import RegisterView from './defaultViews/user/RegisterView.vue';
|
|
22
|
+
import ResetPasswordView from './defaultViews/user/ResetPasswordView.vue';
|
|
23
|
+
import HomeView from './defaultViews/HomeView.vue';
|
|
24
|
+
export { Accordion, Btn, ToastCmp, FieldGender, FieldPhoneNumber, InputField, Offcanvas, ObjectViewer, ContainerSub, ContainerSideTabs, ErrorView, BtnMoveIcon, LoaderCmp, BtnGoogleLogin, PwaUpdateButton, Avatar, Logo, UserView, LoginView, RegisterView, ResetPasswordView, HomeView, };
|
|
20
25
|
export declare const CicKit: Plugin;
|
|
21
26
|
export type { BtnColor, BtnVariant, IconGoogle } from "./cmp/Btn/typeBtn";
|
|
22
27
|
export { _CurrentUser, type _CurrentUserData } from "./cmp/Auth/_CurrentUser";
|
|
@@ -29,6 +34,7 @@ export { toast } from "./cmp/toast/toastController";
|
|
|
29
34
|
export type { ToastContent, ToastType } from "./cmp/toast/Toast";
|
|
30
35
|
export type { ToastStore } from "./cmp/toast/toastController";
|
|
31
36
|
export { Toast } from "./cmp/toast/Toast";
|
|
37
|
+
export { _router, initRouter } from "./cmp/Router/_router";
|
|
32
38
|
export { type FirebaseConfig, setupFirebase, ensureFirebase, authorization, provider, analytics, db, storage, functions, messaging, signInWithPopup } from "./cmp/firebase/firebase";
|
|
33
39
|
export { FirestoreModel, type Timestampble, type OptionFireModel, optionFireModelDefault, fireDebugLog } from "./cmp/firebase/FirestoreModel";
|
|
34
40
|
export { FirestoreStore, type GetProps, type FirestoreStoreReactive, type AnyFirestoreStoreReactive, validateQueryGetOpts, buildConstraintsFromGetProps } from "./cmp/firebase/FirestoreStore";
|