vueless 0.0.485 → 0.0.486
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/index.d.ts +23 -0
- package/package.json +1 -1
- package/web-types.json +1 -1
package/index.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { App } from "vue";
|
|
2
|
+
import type { CreateVuelessOptions } from "./types.ts";
|
|
3
|
+
export { setTitle } from "./utils/helper.ts";
|
|
4
|
+
export { setTheme } from "./utils/theme.ts";
|
|
5
|
+
export { default as createVueI18nAdapter } from "./adatper.locale/vue-i18n.js";
|
|
6
|
+
export { default as defaultEnLocale } from "./adatper.locale/locales/en.js";
|
|
7
|
+
export { useLocale } from "./composables/useLocale.ts";
|
|
8
|
+
export { useLoaderProgress } from "./ui.loader-progress/useLoaderProgress.js";
|
|
9
|
+
export { loaderProgressOn, loaderProgressOff } from "./ui.loader-progress/utilLoaderProgress.js";
|
|
10
|
+
export { useLoaderOverlay } from "./ui.loader-overlay/useLoaderOverlay.js";
|
|
11
|
+
export { loaderOverlayOn, loaderOverlayOff } from "./ui.loader-overlay/utilLoaderOverlay.js";
|
|
12
|
+
export {
|
|
13
|
+
notify,
|
|
14
|
+
notifySuccess,
|
|
15
|
+
notifyWarning,
|
|
16
|
+
notifyError,
|
|
17
|
+
clearNotifications,
|
|
18
|
+
setDelayedNotify,
|
|
19
|
+
getDelayedNotify,
|
|
20
|
+
} from "./ui.text-notify/utilNotify.js";
|
|
21
|
+
export declare function createVueless(options?: CreateVuelessOptions): {
|
|
22
|
+
install: (app: App) => void;
|
|
23
|
+
};
|
package/package.json
CHANGED