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 +1 -1
- package/dist/runtime/components/table/query/order/item.d.vue.ts +0 -0
- package/dist/runtime/components/table/query/order/item.vue.d.ts +0 -0
- package/dist/runtime/components/table/query/order/newer.d.vue.ts +0 -0
- package/dist/runtime/components/table/query/order/newer.vue.d.ts +0 -0
- package/dist/runtime/composables/api/flow/useFlowApi.d.ts +1 -1
- package/dist/runtime/composables/api/flow/useFlowApi.js +2 -0
- package/dist/runtime/composables/api/flow/useFlowNodeApi.d.ts +1 -1
- package/dist/runtime/composables/api/flow/useFlowNodeApi.js +2 -0
- package/dist/runtime/composables/api/flow/useFlowNodeLinkApi.d.ts +1 -1
- package/dist/runtime/composables/api/flow/useFlowNodeLinkApi.js +2 -0
- package/package.json +4 -1
- package/dist/runtime/components/table/query/order/Item.d.vue.ts +0 -28
- package/dist/runtime/components/table/query/order/Item.vue.d.ts +0 -28
- package/dist/runtime/components/table/query/order/Newer.d.vue.ts +0 -25
- package/dist/runtime/components/table/query/order/Newer.vue.d.ts +0 -25
- /package/dist/runtime/components/table/query/order/{Item.vue → item.vue} +0 -0
- /package/dist/runtime/components/table/query/order/{Newer.vue → newer.vue} +0 -0
package/dist/module.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useFlowApi:
|
|
1
|
+
export declare const useFlowApi: () => import("../../../types/index.js").ApiGroup<Model.Flow>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useFlowNodeApi:
|
|
1
|
+
export declare const useFlowNodeApi: () => import("../../../types/index.js").ApiGroup<Model.FlowNode>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useFlowNodeLinkApi:
|
|
1
|
+
export declare const useFlowNodeLinkApi: () => import("../../../types/index.js").ApiGroup<Model.FlowNodeLink>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "v-nuxt-ui",
|
|
3
|
-
"version": "0.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
|
-
}) & {};
|
|
File without changes
|
|
File without changes
|