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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.485",
3
+ "version": "0.0.486",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.485",
4
+ "version": "0.0.486",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",