v-nuxt-ui 0.1.1 → 0.1.2

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/module.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "dependencies": [
8
8
  "@nuxt/ui"
9
9
  ],
10
- "version": "0.1.1",
10
+ "version": "0.1.2",
11
11
  "builder": {
12
12
  "@nuxt/module-builder": "1.0.2",
13
13
  "unbuild": "unknown"
@@ -1 +1 @@
1
- export declare const useFlowApi: any;
1
+ export declare const useFlowApi: () => import("../../../types/index.js").ApiGroup<Model.Flow>;
@@ -1 +1,3 @@
1
+ import { createSharedComposable } from "@vueuse/core";
2
+ import { useApi } from "../useApi.js";
1
3
  export const useFlowApi = createSharedComposable(() => useApi("/flows"));
@@ -1 +1 @@
1
- export declare const useFlowNodeApi: any;
1
+ export declare const useFlowNodeApi: () => import("../../../types/index.js").ApiGroup<Model.FlowNode>;
@@ -1 +1,3 @@
1
+ import { createSharedComposable } from "@vueuse/core";
2
+ import { useApi } from "../useApi.js";
1
3
  export const useFlowNodeApi = createSharedComposable(() => useApi("/flows/nodes"));
@@ -1 +1 @@
1
- export declare const useFlowNodeLinkApi: any;
1
+ export declare const useFlowNodeLinkApi: () => import("../../../types/index.js").ApiGroup<Model.FlowNodeLink>;
@@ -1 +1,3 @@
1
+ import { createSharedComposable } from "@vueuse/core";
2
+ import { useApi } from "../useApi.js";
1
3
  export const useFlowNodeLinkApi = createSharedComposable(() => useApi("/flows/nodes/links"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v-nuxt-ui",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Veken UI Component Library - Reusable Nuxt UI components, composables, and utilities for enterprise applications",
5
5
  "type": "module",
6
6
  "style": "./dist/runtime/index.css",
@@ -9,6 +9,9 @@
9
9
  "types": "./dist/types.d.mts",
10
10
  "style": "./dist/runtime/index.css",
11
11
  "import": "./dist/module.mjs"
12
+ },
13
+ "./types": {
14
+ "types": "./dist/runtime/types/index.d.ts"
12
15
  }
13
16
  },
14
17
  "main": "./dist/module.mjs",
@@ -1,28 +0,0 @@
1
- import type { OrderQueryOpr, OrderQueryOption, VColumn } from '#v/types';
2
- declare const __VLS_export: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3
- props: import("vue").PublicProps & __VLS_PrettifyLocal<{
4
- field: string;
5
- bizColumns: VColumn<T>[];
6
- opr: OrderQueryOpr;
7
- orderOptions: OrderQueryOption<any>[];
8
- unselectedFields: string[];
9
- } & {
10
- onChange?: ((args_0: string, args_1: OrderQueryOpr) => any) | undefined;
11
- onRemove?: (() => any) | undefined;
12
- }> & (typeof globalThis extends {
13
- __VLS_PROPS_FALLBACK: infer P;
14
- } ? P : {});
15
- expose: (exposed: {}) => void;
16
- attrs: any;
17
- slots: {};
18
- emit: ((evt: "change", args_0: string, args_1: OrderQueryOpr) => void) & ((evt: "remove") => void);
19
- }>) => import("vue").VNode & {
20
- __ctx?: Awaited<typeof __VLS_setup>;
21
- };
22
- declare const _default: typeof __VLS_export;
23
- export default _default;
24
- type __VLS_PrettifyLocal<T> = (T extends any ? {
25
- [K in keyof T]: T[K];
26
- } : {
27
- [K in keyof T as K]: T[K];
28
- }) & {};
@@ -1,28 +0,0 @@
1
- import type { OrderQueryOpr, OrderQueryOption, VColumn } from '#v/types';
2
- declare const __VLS_export: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3
- props: import("vue").PublicProps & __VLS_PrettifyLocal<{
4
- field: string;
5
- bizColumns: VColumn<T>[];
6
- opr: OrderQueryOpr;
7
- orderOptions: OrderQueryOption<any>[];
8
- unselectedFields: string[];
9
- } & {
10
- onChange?: ((args_0: string, args_1: OrderQueryOpr) => any) | undefined;
11
- onRemove?: (() => any) | undefined;
12
- }> & (typeof globalThis extends {
13
- __VLS_PROPS_FALLBACK: infer P;
14
- } ? P : {});
15
- expose: (exposed: {}) => void;
16
- attrs: any;
17
- slots: {};
18
- emit: ((evt: "change", args_0: string, args_1: OrderQueryOpr) => void) & ((evt: "remove") => void);
19
- }>) => import("vue").VNode & {
20
- __ctx?: Awaited<typeof __VLS_setup>;
21
- };
22
- declare const _default: typeof __VLS_export;
23
- export default _default;
24
- type __VLS_PrettifyLocal<T> = (T extends any ? {
25
- [K in keyof T]: T[K];
26
- } : {
27
- [K in keyof T as K]: T[K];
28
- }) & {};
@@ -1,25 +0,0 @@
1
- import type { OrderQueryOption, VColumn } from '#v/types';
2
- declare const __VLS_export: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3
- props: import("vue").PublicProps & __VLS_PrettifyLocal<{
4
- options: OrderQueryOption<T>[];
5
- unselectedFields: string[];
6
- bizColumns: VColumn<T>[];
7
- } & {
8
- onNew?: ((args_0: string) => any) | undefined;
9
- }> & (typeof globalThis extends {
10
- __VLS_PROPS_FALLBACK: infer P;
11
- } ? P : {});
12
- expose: (exposed: {}) => void;
13
- attrs: any;
14
- slots: {};
15
- emit: (evt: "new", args_0: string) => void;
16
- }>) => import("vue").VNode & {
17
- __ctx?: Awaited<typeof __VLS_setup>;
18
- };
19
- declare const _default: typeof __VLS_export;
20
- export default _default;
21
- type __VLS_PrettifyLocal<T> = (T extends any ? {
22
- [K in keyof T]: T[K];
23
- } : {
24
- [K in keyof T as K]: T[K];
25
- }) & {};
@@ -1,25 +0,0 @@
1
- import type { OrderQueryOption, VColumn } from '#v/types';
2
- declare const __VLS_export: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3
- props: import("vue").PublicProps & __VLS_PrettifyLocal<{
4
- options: OrderQueryOption<T>[];
5
- unselectedFields: string[];
6
- bizColumns: VColumn<T>[];
7
- } & {
8
- onNew?: ((args_0: string) => any) | undefined;
9
- }> & (typeof globalThis extends {
10
- __VLS_PROPS_FALLBACK: infer P;
11
- } ? P : {});
12
- expose: (exposed: {}) => void;
13
- attrs: any;
14
- slots: {};
15
- emit: (evt: "new", args_0: string) => void;
16
- }>) => import("vue").VNode & {
17
- __ctx?: Awaited<typeof __VLS_setup>;
18
- };
19
- declare const _default: typeof __VLS_export;
20
- export default _default;
21
- type __VLS_PrettifyLocal<T> = (T extends any ? {
22
- [K in keyof T]: T[K];
23
- } : {
24
- [K in keyof T as K]: T[K];
25
- }) & {};