@oiij/naive-ui 0.0.80 → 0.0.82
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/README.md +351 -87
- package/dist/_virtual/_/plugin-vue/export-helper.js +1 -2
- package/dist/components/_utils/cssr-bem.js +1 -3
- package/dist/components/config-providers/ConfigProviders.js +3 -6
- package/dist/components/config-providers/ConfigProviders.vue.d.ts +2 -2
- package/dist/components/config-providers/index.d.ts +0 -1
- package/dist/components/copy-button/CopyButton.js +3 -6
- package/dist/components/copy-button/CopyButton.vue.d.ts +4 -4
- package/dist/components/data-table-plus/DataTablePlus.js +3 -6
- package/dist/components/data-table-plus/DataTablePlus.vue.d.ts +38 -39
- package/dist/components/icons/MageCopyFill.js +1 -3
- package/dist/components/icons/MageMultiplyCircleFill.js +1 -3
- package/dist/components/icons/MageSearch.js +1 -3
- package/dist/components/index.d.ts +0 -1
- package/dist/components/loading-provider/LoadingProvider.js +3 -6
- package/dist/components/loading-provider/LoadingProvider.vue.d.ts +2 -2
- package/dist/components/loading-provider/index.js +2 -4
- package/dist/components/loading-provider/loading-provider.cssr.js +1 -3
- package/dist/components/preset-form/PresetForm.js +7 -9
- package/dist/components/preset-form/PresetForm.vue.d.ts +21 -18
- package/dist/components/preset-form/_utils.js +1 -2
- package/dist/components/preset-input/PresetInput.js +3 -6
- package/dist/components/preset-input/PresetInput.vue.d.ts +3 -3
- package/dist/components/preset-picker/PresetPicker.js +1 -4
- package/dist/components/preset-picker/PresetPicker.vue.d.ts +4 -4
- package/dist/components/preset-select/PresetSelect.js +1 -4
- package/dist/components/preset-select/PresetSelect.vue.d.ts +29 -29
- package/dist/components/remote-request/RemoteRequest.js +1 -4
- package/dist/components/remote-request/RemoteRequest.vue.d.ts +11 -11
- package/dist/components/search-input/SearchInput.js +1 -4
- package/dist/components/search-input/SearchInput.vue.d.ts +4 -4
- package/dist/components/toggle-input/ToggleInput.js +1 -4
- package/dist/components/toggle-input/ToggleInput.vue.d.ts +5 -5
- package/dist/components/tooltip-button/TooltipButton.js +1 -4
- package/dist/components/tooltip-button/TooltipButton.vue.d.ts +4 -4
- package/dist/components/transition/BaseTransition.js +1 -4
- package/dist/components/transition/BaseTransition.vue.d.ts +2 -2
- package/dist/components/transition/transition.cssr.js +1 -3
- package/dist/components.d.ts +0 -1
- package/dist/components.js +14 -15
- package/dist/composables/_helper.js +1 -3
- package/dist/composables/use-data-request.d.ts +7 -7
- package/dist/composables/use-data-request.js +1 -3
- package/dist/composables/use-loading.js +1 -3
- package/dist/composables/use-naive-form.d.ts +7 -6
- package/dist/composables/use-naive-form.js +15 -14
- package/dist/composables/use-naive-menu.d.ts +3 -3
- package/dist/composables/use-naive-menu.js +1 -3
- package/dist/composables/use-naive-theme.js +1 -3
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -2
- package/package.json +20 -20
|
@@ -1,20 +1,15 @@
|
|
|
1
1
|
import { DataObject } from "../../composables/use-data-request.js";
|
|
2
2
|
import { DataTablePlusEmits, DataTablePlusExpose, DataTablePlusProps } from "./index.js";
|
|
3
|
-
import "
|
|
4
|
-
import * as
|
|
5
|
-
import * as vue33 from "vue";
|
|
3
|
+
import * as _vueuse_core0 from "@vueuse/core";
|
|
4
|
+
import * as vue from "vue";
|
|
6
5
|
import { DataTableBaseColumn, DataTableFilterState, DataTableInst, DataTableSortState } from "naive-ui";
|
|
7
6
|
import { RowKey } from "naive-ui/es/data-table/src/interface";
|
|
8
7
|
|
|
9
8
|
//#region src/components/data-table-plus/DataTablePlus.vue.d.ts
|
|
10
9
|
declare const __VLS_export: <P extends DataObject, D extends DataObject, R extends DataObject>(__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<{
|
|
11
|
-
props:
|
|
12
|
-
onError?: ((err: Error, params: P[]) => any) | undefined;
|
|
10
|
+
props: vue.PublicProps & __VLS_PrettifyLocal<DataTablePlusProps<P, D, R> & {
|
|
13
11
|
onSuccess?: ((data: D, params: P[]) => any) | undefined;
|
|
14
|
-
|
|
15
|
-
onBefore?: ((params: P[]) => any) | undefined;
|
|
16
|
-
"onUpdate:page"?: ((page: number) => any) | undefined;
|
|
17
|
-
"onUpdate:pageSize"?: ((pageSize: number) => any) | undefined;
|
|
12
|
+
onError?: ((err: Error, params: P[]) => any) | undefined;
|
|
18
13
|
onClickRow?: ((row: R, index: number, event: MouseEvent, currentData: R[]) => any) | undefined;
|
|
19
14
|
onContextMenuRow?: ((row: R, index: number, event: MouseEvent, currentData: R[]) => any) | undefined;
|
|
20
15
|
"onUpdate:checkedRowKeys"?: ((keys: RowKey[], rows: R[], meta: {
|
|
@@ -22,12 +17,16 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
22
17
|
action: "check" | "uncheck" | "checkAll" | "uncheckAll";
|
|
23
18
|
}, currentData: R[]) => any) | undefined;
|
|
24
19
|
"onUpdate:filters"?: ((filterState: DataTableFilterState, sourceColumn: DataTableBaseColumn) => any) | undefined;
|
|
20
|
+
onBefore?: ((params: P[]) => any) | undefined;
|
|
25
21
|
"onUpdate:sorter"?: ((options: DataTableSortState | DataTableSortState[] | null) => any) | undefined;
|
|
22
|
+
"onUpdate:page"?: ((page: number) => any) | undefined;
|
|
23
|
+
"onUpdate:pageSize"?: ((pageSize: number) => any) | undefined;
|
|
26
24
|
onLoadedRows?: ((data: R[]) => any) | undefined;
|
|
25
|
+
onFinally?: ((params: P[], data?: D | undefined, err?: Error | undefined) => any) | undefined;
|
|
27
26
|
}> & (typeof globalThis extends {
|
|
28
27
|
__VLS_PROPS_FALLBACK: infer P_1;
|
|
29
28
|
} ? P_1 : {});
|
|
30
|
-
expose: (exposed:
|
|
29
|
+
expose: (exposed: vue.ShallowUnwrapRef<DataTablePlusExpose<P, D, R>>) => void;
|
|
31
30
|
attrs: any;
|
|
32
31
|
slots: {
|
|
33
32
|
header?: (props: {
|
|
@@ -53,10 +52,10 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
53
52
|
setParams: (_params: Partial<P>) => void;
|
|
54
53
|
runParams: (_params: Partial<P>) => void;
|
|
55
54
|
runParamsAsync: (_params: Partial<P>) => Promise<D>;
|
|
56
|
-
onBefore:
|
|
57
|
-
onSuccess:
|
|
58
|
-
onError:
|
|
59
|
-
onFinally:
|
|
55
|
+
onBefore: _vueuse_core0.EventHookOn<[P[]]>;
|
|
56
|
+
onSuccess: _vueuse_core0.EventHookOn<[D, P[]]>;
|
|
57
|
+
onError: _vueuse_core0.EventHookOn<[Error, P[]]>;
|
|
58
|
+
onFinally: _vueuse_core0.EventHookOn<[P[], D | undefined, Error | undefined]>;
|
|
60
59
|
}) => any;
|
|
61
60
|
} & {
|
|
62
61
|
title?: (props: {}) => any;
|
|
@@ -84,10 +83,10 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
84
83
|
setParams: (_params: Partial<P>) => void;
|
|
85
84
|
runParams: (_params: Partial<P>) => void;
|
|
86
85
|
runParamsAsync: (_params: Partial<P>) => Promise<D>;
|
|
87
|
-
onBefore:
|
|
88
|
-
onSuccess:
|
|
89
|
-
onError:
|
|
90
|
-
onFinally:
|
|
86
|
+
onBefore: _vueuse_core0.EventHookOn<[P[]]>;
|
|
87
|
+
onSuccess: _vueuse_core0.EventHookOn<[D, P[]]>;
|
|
88
|
+
onError: _vueuse_core0.EventHookOn<[Error, P[]]>;
|
|
89
|
+
onFinally: _vueuse_core0.EventHookOn<[P[], D | undefined, Error | undefined]>;
|
|
91
90
|
}) => any;
|
|
92
91
|
} & {
|
|
93
92
|
filter?: (props: {
|
|
@@ -113,10 +112,10 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
113
112
|
setParams: (_params: Partial<P>) => void;
|
|
114
113
|
runParams: (_params: Partial<P>) => void;
|
|
115
114
|
runParamsAsync: (_params: Partial<P>) => Promise<D>;
|
|
116
|
-
onBefore:
|
|
117
|
-
onSuccess:
|
|
118
|
-
onError:
|
|
119
|
-
onFinally:
|
|
115
|
+
onBefore: _vueuse_core0.EventHookOn<[P[]]>;
|
|
116
|
+
onSuccess: _vueuse_core0.EventHookOn<[D, P[]]>;
|
|
117
|
+
onError: _vueuse_core0.EventHookOn<[Error, P[]]>;
|
|
118
|
+
onFinally: _vueuse_core0.EventHookOn<[P[], D | undefined, Error | undefined]>;
|
|
120
119
|
}) => any;
|
|
121
120
|
} & {
|
|
122
121
|
empty?: (props: {
|
|
@@ -142,10 +141,10 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
142
141
|
setParams: (_params: Partial<P>) => void;
|
|
143
142
|
runParams: (_params: Partial<P>) => void;
|
|
144
143
|
runParamsAsync: (_params: Partial<P>) => Promise<D>;
|
|
145
|
-
onBefore:
|
|
146
|
-
onSuccess:
|
|
147
|
-
onError:
|
|
148
|
-
onFinally:
|
|
144
|
+
onBefore: _vueuse_core0.EventHookOn<[P[]]>;
|
|
145
|
+
onSuccess: _vueuse_core0.EventHookOn<[D, P[]]>;
|
|
146
|
+
onError: _vueuse_core0.EventHookOn<[Error, P[]]>;
|
|
147
|
+
onFinally: _vueuse_core0.EventHookOn<[P[], D | undefined, Error | undefined]>;
|
|
149
148
|
}) => any;
|
|
150
149
|
} & {
|
|
151
150
|
loading?: (props: {
|
|
@@ -171,10 +170,10 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
171
170
|
setParams: (_params: Partial<P>) => void;
|
|
172
171
|
runParams: (_params: Partial<P>) => void;
|
|
173
172
|
runParamsAsync: (_params: Partial<P>) => Promise<D>;
|
|
174
|
-
onBefore:
|
|
175
|
-
onSuccess:
|
|
176
|
-
onError:
|
|
177
|
-
onFinally:
|
|
173
|
+
onBefore: _vueuse_core0.EventHookOn<[P[]]>;
|
|
174
|
+
onSuccess: _vueuse_core0.EventHookOn<[D, P[]]>;
|
|
175
|
+
onError: _vueuse_core0.EventHookOn<[Error, P[]]>;
|
|
176
|
+
onFinally: _vueuse_core0.EventHookOn<[P[], D | undefined, Error | undefined]>;
|
|
178
177
|
}) => any;
|
|
179
178
|
} & {
|
|
180
179
|
footer?: (props: {
|
|
@@ -200,10 +199,10 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
200
199
|
setParams: (_params: Partial<P>) => void;
|
|
201
200
|
runParams: (_params: Partial<P>) => void;
|
|
202
201
|
runParamsAsync: (_params: Partial<P>) => Promise<D>;
|
|
203
|
-
onBefore:
|
|
204
|
-
onSuccess:
|
|
205
|
-
onError:
|
|
206
|
-
onFinally:
|
|
202
|
+
onBefore: _vueuse_core0.EventHookOn<[P[]]>;
|
|
203
|
+
onSuccess: _vueuse_core0.EventHookOn<[D, P[]]>;
|
|
204
|
+
onError: _vueuse_core0.EventHookOn<[Error, P[]]>;
|
|
205
|
+
onFinally: _vueuse_core0.EventHookOn<[P[], D | undefined, Error | undefined]>;
|
|
207
206
|
}) => any;
|
|
208
207
|
} & {
|
|
209
208
|
'footer-extra'?: (props: {
|
|
@@ -229,14 +228,14 @@ declare const __VLS_export: <P extends DataObject, D extends DataObject, R exten
|
|
|
229
228
|
setParams: (_params: Partial<P>) => void;
|
|
230
229
|
runParams: (_params: Partial<P>) => void;
|
|
231
230
|
runParamsAsync: (_params: Partial<P>) => Promise<D>;
|
|
232
|
-
onBefore:
|
|
233
|
-
onSuccess:
|
|
234
|
-
onError:
|
|
235
|
-
onFinally:
|
|
231
|
+
onBefore: _vueuse_core0.EventHookOn<[P[]]>;
|
|
232
|
+
onSuccess: _vueuse_core0.EventHookOn<[D, P[]]>;
|
|
233
|
+
onError: _vueuse_core0.EventHookOn<[Error, P[]]>;
|
|
234
|
+
onFinally: _vueuse_core0.EventHookOn<[P[], D | undefined, Error | undefined]>;
|
|
236
235
|
}) => any;
|
|
237
236
|
};
|
|
238
237
|
emit: DataTablePlusEmits<P, D, R>;
|
|
239
|
-
}>) =>
|
|
238
|
+
}>) => vue.VNode & {
|
|
240
239
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
241
240
|
};
|
|
242
241
|
declare const _default: typeof __VLS_export;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import export_helper_default from "../../_virtual/_/plugin-vue/export-helper.js";
|
|
2
2
|
import { createCommentVNode, createElementBlock, createElementVNode, openBlock } from "vue";
|
|
3
|
-
|
|
4
3
|
//#region src/components/icons/MageCopyFill.vue
|
|
5
4
|
const _sfc_main = { name: "MageCopyFill" };
|
|
6
5
|
const _hoisted_1 = {
|
|
@@ -16,6 +15,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
15
|
}, null, -1))]);
|
|
17
16
|
}
|
|
18
17
|
var MageCopyFill_default = /* @__PURE__ */ export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
19
|
-
|
|
20
18
|
//#endregion
|
|
21
|
-
export { MageCopyFill_default as default };
|
|
19
|
+
export { MageCopyFill_default as default };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import export_helper_default from "../../_virtual/_/plugin-vue/export-helper.js";
|
|
2
2
|
import { createCommentVNode, createElementBlock, createElementVNode, openBlock } from "vue";
|
|
3
|
-
|
|
4
3
|
//#region src/components/icons/MageMultiplyCircleFill.vue
|
|
5
4
|
const _sfc_main = { name: "MageMultiplyCircleFill" };
|
|
6
5
|
const _hoisted_1 = {
|
|
@@ -16,6 +15,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
16
15
|
}, null, -1))]);
|
|
17
16
|
}
|
|
18
17
|
var MageMultiplyCircleFill_default = /* @__PURE__ */ export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
19
|
-
|
|
20
18
|
//#endregion
|
|
21
|
-
export { MageMultiplyCircleFill_default as default };
|
|
19
|
+
export { MageMultiplyCircleFill_default as default };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import export_helper_default from "../../_virtual/_/plugin-vue/export-helper.js";
|
|
2
2
|
import { createCommentVNode, createElementBlock, createElementVNode, openBlock } from "vue";
|
|
3
|
-
|
|
4
3
|
//#region src/components/icons/MageSearch.vue
|
|
5
4
|
const _sfc_main = { name: "MageSearch" };
|
|
6
5
|
const _hoisted_1 = {
|
|
@@ -20,6 +19,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20
19
|
}, null, -1))]);
|
|
21
20
|
}
|
|
22
21
|
var MageSearch_default = /* @__PURE__ */ export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
23
|
-
|
|
24
22
|
//#endregion
|
|
25
|
-
export { MageSearch_default as default };
|
|
23
|
+
export { MageSearch_default as default };
|
|
@@ -20,7 +20,6 @@ import { PresetPickerEmits, PresetPickerExpose, PresetPickerInst, PresetPickerPr
|
|
|
20
20
|
import { _default as _default$9 } from "./preset-select/PresetSelect.vue.js";
|
|
21
21
|
import { ArrayAwareType, OptionFormat, PresetSelectEmits, PresetSelectExpose, PresetSelectFields, PresetSelectInst, PresetSelectProps, PresetSelectValue } from "./preset-select/index.js";
|
|
22
22
|
import { _default as _default$10 } from "./toggle-input/ToggleInput.vue.js";
|
|
23
|
-
import "./toggle-input/index.js";
|
|
24
23
|
import { _default as _default$11 } from "./tooltip-button/TooltipButton.vue.js";
|
|
25
24
|
import { TooltipButtonProps } from "./tooltip-button/index.js";
|
|
26
25
|
import { _default as _default$12 } from "./transition/BaseTransition.vue.js";
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _sfc_main$1 from "../transition/BaseTransition.js";
|
|
2
2
|
import { cName, loadingProviderCssr } from "./loading-provider.cssr.js";
|
|
3
3
|
import { LOADING_PROVIDER_INJECTION_KEY } from "./index.js";
|
|
4
4
|
import { Fragment, Teleport, createBlock, createCommentVNode, createElementBlock, createSlots, createVNode, defineComponent, mergeProps, normalizeClass, normalizeStyle, openBlock, provide, ref, renderSlot, unref, watchEffect, withCtx } from "vue";
|
|
5
5
|
import { useStyle } from "@oiij/css-render";
|
|
6
6
|
import { NEl, NSpin } from "naive-ui";
|
|
7
|
-
|
|
8
7
|
//#region src/components/loading-provider/LoadingProvider.vue
|
|
9
8
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
10
9
|
__name: "LoadingProvider",
|
|
@@ -46,7 +45,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
46
45
|
hide: hideLoading
|
|
47
46
|
});
|
|
48
47
|
return (_ctx, _cache) => {
|
|
49
|
-
return openBlock(), createElementBlock(Fragment, null, [createVNode(unref(
|
|
48
|
+
return openBlock(), createElementBlock(Fragment, null, [createVNode(unref(_sfc_main$1), null, {
|
|
50
49
|
default: withCtx(() => [(openBlock(), createBlock(Teleport, { to: __props.appendTo }, [_show.value ? (openBlock(), createBlock(unref(NEl), {
|
|
51
50
|
key: 0,
|
|
52
51
|
class: normalizeClass([
|
|
@@ -72,7 +71,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
72
71
|
};
|
|
73
72
|
}
|
|
74
73
|
});
|
|
75
|
-
var LoadingProvider_default = _sfc_main;
|
|
76
|
-
|
|
77
74
|
//#endregion
|
|
78
|
-
export {
|
|
75
|
+
export { _sfc_main as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LoadingProviderProps } from "./index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as vue from "vue";
|
|
3
3
|
|
|
4
4
|
//#region src/components/loading-provider/LoadingProvider.vue.d.ts
|
|
5
5
|
declare var __VLS_26: {}, __VLS_29: {}, __VLS_31: {};
|
|
@@ -10,7 +10,7 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
} & {
|
|
11
11
|
default?: (props: typeof __VLS_31) => any;
|
|
12
12
|
};
|
|
13
|
-
declare const __VLS_base:
|
|
13
|
+
declare const __VLS_base: vue.DefineComponent<LoadingProviderProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<LoadingProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
|
|
14
14
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
15
|
declare const _default: typeof __VLS_export;
|
|
16
16
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import "./LoadingProvider.js";
|
|
3
2
|
//#region src/components/loading-provider/index.ts
|
|
4
3
|
/**
|
|
5
4
|
* 加载提供者注入键
|
|
6
5
|
*/
|
|
7
6
|
const LOADING_PROVIDER_INJECTION_KEY = Symbol("loading-provider-key");
|
|
8
|
-
|
|
9
7
|
//#endregion
|
|
10
|
-
export { LOADING_PROVIDER_INJECTION_KEY };
|
|
8
|
+
export { LOADING_PROVIDER_INJECTION_KEY };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { cssr, namespace, plugin } from "../_utils/cssr-bem.js";
|
|
2
2
|
import { cM } from "naive-ui";
|
|
3
|
-
|
|
4
3
|
//#region src/components/loading-provider/loading-provider.cssr.ts
|
|
5
4
|
const { c, cB } = {
|
|
6
5
|
...cssr,
|
|
@@ -17,6 +16,5 @@ function loadingProviderCssr() {
|
|
|
17
16
|
justifyContent: "center"
|
|
18
17
|
}, [cM("mask", { background: "rgba(0,0,0,.3)" }), cM("blur", { backdropFilter: "blur(10px)" })])]);
|
|
19
18
|
}
|
|
20
|
-
|
|
21
19
|
//#endregion
|
|
22
|
-
export { cName, loadingProviderCssr };
|
|
20
|
+
export { cName, loadingProviderCssr };
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { useNaiveForm } from "../../composables/use-naive-form.js";
|
|
2
|
-
import
|
|
2
|
+
import _sfc_main$1 from "../preset-input/PresetInput.js";
|
|
3
3
|
import { mergeRule } from "./_utils.js";
|
|
4
4
|
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createTextVNode, createVNode, defineComponent, guardReactiveProps, mergeProps, normalizeProps, openBlock, ref, renderList, renderSlot, resolveDynamicComponent, toDisplayString, toValue, unref, useTemplateRef, withCtx } from "vue";
|
|
5
5
|
import { NButton, NCollapseTransition, NDivider, NForm, NFormItem, NGi, NGrid } from "naive-ui";
|
|
6
|
-
|
|
7
6
|
//#region src/components/preset-form/PresetForm.vue
|
|
8
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
9
8
|
__name: "PresetForm",
|
|
@@ -18,7 +17,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
18
17
|
emits: ["validated"],
|
|
19
18
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
20
19
|
const emit = __emit;
|
|
21
|
-
const { formValues, formRules, formInst, formProps: _formProps, setValue, validate, resetValidation, resetForm, reset, clear, onValidated } = useNaiveForm(useTemplateRef("form-ref"), {
|
|
20
|
+
const { formValues, formRules, formInst, formProps: _formProps, setValue, validate, resetValidation, resetForm, reset, clear, onValidated, onUpdateValue } = useNaiveForm(useTemplateRef("form-ref"), {
|
|
22
21
|
values: __props.values,
|
|
23
22
|
rules: __props.rules,
|
|
24
23
|
clearRules: __props.clearRules
|
|
@@ -68,7 +67,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
68
67
|
resetForm,
|
|
69
68
|
reset,
|
|
70
69
|
clear,
|
|
71
|
-
onValidated
|
|
70
|
+
onValidated,
|
|
71
|
+
onUpdateValue
|
|
72
72
|
};
|
|
73
73
|
const templateBind = computed(() => {
|
|
74
74
|
return {
|
|
@@ -110,7 +110,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
110
110
|
default: withCtx(() => [render ? (openBlock(), createBlock(resolveDynamicComponent(render({
|
|
111
111
|
...expose,
|
|
112
112
|
overflow
|
|
113
|
-
})), { key: 0 })) : (openBlock(), createBlock(unref(
|
|
113
|
+
})), { key: 0 })) : (openBlock(), createBlock(unref(_sfc_main$1), {
|
|
114
114
|
key: 1,
|
|
115
115
|
options: inputOption,
|
|
116
116
|
value: key ? unref(formValues)[key] : void 0,
|
|
@@ -162,7 +162,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
162
162
|
default: withCtx(() => [render ? (openBlock(), createBlock(resolveDynamicComponent(render({
|
|
163
163
|
...expose,
|
|
164
164
|
overflow
|
|
165
|
-
})), { key: 0 })) : (openBlock(), createBlock(unref(
|
|
165
|
+
})), { key: 0 })) : (openBlock(), createBlock(unref(_sfc_main$1), {
|
|
166
166
|
key: 1,
|
|
167
167
|
options: inputOption,
|
|
168
168
|
value: key ? unref(formValues)[key] : void 0,
|
|
@@ -192,7 +192,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
192
192
|
};
|
|
193
193
|
}
|
|
194
194
|
});
|
|
195
|
-
var PresetForm_default = _sfc_main;
|
|
196
|
-
|
|
197
195
|
//#endregion
|
|
198
|
-
export {
|
|
196
|
+
export { _sfc_main as default };
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import { DataObject } from "../../composables/use-data-request.js";
|
|
2
2
|
import { PresetFormExpose, PresetFormProps } from "./index.js";
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
3
|
+
import * as _vueuse_core0 from "@vueuse/core";
|
|
4
|
+
import * as vue from "vue";
|
|
5
|
+
import * as naive_ui0 from "naive-ui";
|
|
6
6
|
import { FormInst, FormRules } from "naive-ui";
|
|
7
7
|
import * as async_validator0 from "async-validator";
|
|
8
8
|
|
|
9
9
|
//#region src/components/preset-form/PresetForm.vue.d.ts
|
|
10
10
|
declare const __VLS_export: <V extends DataObject>(__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<{
|
|
11
|
-
props:
|
|
11
|
+
props: vue.PublicProps & __VLS_PrettifyLocal<PresetFormProps<V> & {
|
|
12
12
|
onValidated?: ((val: V) => any) | undefined;
|
|
13
13
|
}> & (typeof globalThis extends {
|
|
14
14
|
__VLS_PROPS_FALLBACK: infer P;
|
|
15
15
|
} ? P : {});
|
|
16
|
-
expose: (exposed:
|
|
16
|
+
expose: (exposed: vue.ShallowUnwrapRef<PresetFormExpose<V>>) => void;
|
|
17
17
|
attrs: any;
|
|
18
18
|
slots: {
|
|
19
19
|
header?: (props: {
|
|
20
20
|
formInst: FormInst | null;
|
|
21
21
|
formValues: V;
|
|
22
|
-
formRules: Partial<Record<keyof V, FormRules |
|
|
22
|
+
formRules: Partial<Record<keyof V, FormRules | naive_ui0.FormItemRule | naive_ui0.FormItemRule[]>>;
|
|
23
23
|
formProps: {
|
|
24
|
-
model:
|
|
25
|
-
rules:
|
|
24
|
+
model: vue.Reactive<V>;
|
|
25
|
+
rules: vue.Reactive<Partial<Record<keyof V, FormRules | naive_ui0.FormItemRule | naive_ui0.FormItemRule[]>>>;
|
|
26
26
|
};
|
|
27
27
|
setValue: (value: Partial<V>) => void;
|
|
28
28
|
validate: () => Promise<{
|
|
@@ -32,16 +32,17 @@ declare const __VLS_export: <V extends DataObject>(__VLS_props: NonNullable<Awai
|
|
|
32
32
|
resetForm: () => void;
|
|
33
33
|
reset: () => void;
|
|
34
34
|
clear: () => void;
|
|
35
|
-
onValidated:
|
|
35
|
+
onValidated: _vueuse_core0.EventHookOn<[V]>;
|
|
36
|
+
onUpdateValue: _vueuse_core0.EventHookOn<[V]>;
|
|
36
37
|
}) => any;
|
|
37
38
|
} & {
|
|
38
39
|
default?: (props: {
|
|
39
40
|
formInst: FormInst | null;
|
|
40
41
|
formValues: V;
|
|
41
|
-
formRules: Partial<Record<keyof V, FormRules |
|
|
42
|
+
formRules: Partial<Record<keyof V, FormRules | naive_ui0.FormItemRule | naive_ui0.FormItemRule[]>>;
|
|
42
43
|
formProps: {
|
|
43
|
-
model:
|
|
44
|
-
rules:
|
|
44
|
+
model: vue.Reactive<V>;
|
|
45
|
+
rules: vue.Reactive<Partial<Record<keyof V, FormRules | naive_ui0.FormItemRule | naive_ui0.FormItemRule[]>>>;
|
|
45
46
|
};
|
|
46
47
|
setValue: (value: Partial<V>) => void;
|
|
47
48
|
validate: () => Promise<{
|
|
@@ -51,16 +52,17 @@ declare const __VLS_export: <V extends DataObject>(__VLS_props: NonNullable<Awai
|
|
|
51
52
|
resetForm: () => void;
|
|
52
53
|
reset: () => void;
|
|
53
54
|
clear: () => void;
|
|
54
|
-
onValidated:
|
|
55
|
+
onValidated: _vueuse_core0.EventHookOn<[V]>;
|
|
56
|
+
onUpdateValue: _vueuse_core0.EventHookOn<[V]>;
|
|
55
57
|
}) => any;
|
|
56
58
|
} & {
|
|
57
59
|
footer?: (props: {
|
|
58
60
|
formInst: FormInst | null;
|
|
59
61
|
formValues: V;
|
|
60
|
-
formRules: Partial<Record<keyof V, FormRules |
|
|
62
|
+
formRules: Partial<Record<keyof V, FormRules | naive_ui0.FormItemRule | naive_ui0.FormItemRule[]>>;
|
|
61
63
|
formProps: {
|
|
62
|
-
model:
|
|
63
|
-
rules:
|
|
64
|
+
model: vue.Reactive<V>;
|
|
65
|
+
rules: vue.Reactive<Partial<Record<keyof V, FormRules | naive_ui0.FormItemRule | naive_ui0.FormItemRule[]>>>;
|
|
64
66
|
};
|
|
65
67
|
setValue: (value: Partial<V>) => void;
|
|
66
68
|
validate: () => Promise<{
|
|
@@ -70,11 +72,12 @@ declare const __VLS_export: <V extends DataObject>(__VLS_props: NonNullable<Awai
|
|
|
70
72
|
resetForm: () => void;
|
|
71
73
|
reset: () => void;
|
|
72
74
|
clear: () => void;
|
|
73
|
-
onValidated:
|
|
75
|
+
onValidated: _vueuse_core0.EventHookOn<[V]>;
|
|
76
|
+
onUpdateValue: _vueuse_core0.EventHookOn<[V]>;
|
|
74
77
|
}) => any;
|
|
75
78
|
};
|
|
76
79
|
emit: (e: "validated", val: V) => void;
|
|
77
|
-
}>) =>
|
|
80
|
+
}>) => vue.VNode & {
|
|
78
81
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
79
82
|
};
|
|
80
83
|
declare const _default: typeof __VLS_export;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _sfc_main$1 from "../search-input/SearchInput.js";
|
|
2
2
|
import { createBlock, defineComponent, h, openBlock, resolveDynamicComponent } from "vue";
|
|
3
3
|
import { NButton, NCheckbox, NCheckboxGroup, NColorPicker, NDatePicker, NDivider, NDynamicTags, NInput, NInputNumber, NRadio, NRadioGroup, NRate, NSelect, NSlider, NSwitch, NTimePicker } from "naive-ui";
|
|
4
|
-
|
|
5
4
|
//#region src/components/preset-input/PresetInput.vue
|
|
6
5
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
7
6
|
__name: "PresetInput",
|
|
@@ -21,7 +20,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
21
20
|
"dynamic-tags": NDynamicTags,
|
|
22
21
|
"input": NInput,
|
|
23
22
|
"input-number": NInputNumber,
|
|
24
|
-
"search":
|
|
23
|
+
"search": _sfc_main$1,
|
|
25
24
|
"radio": NRadioGroup,
|
|
26
25
|
"rate": NRate,
|
|
27
26
|
"select": NSelect,
|
|
@@ -81,7 +80,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
81
80
|
};
|
|
82
81
|
}
|
|
83
82
|
});
|
|
84
|
-
var PresetInput_default = _sfc_main;
|
|
85
|
-
|
|
86
83
|
//#endregion
|
|
87
|
-
export {
|
|
84
|
+
export { _sfc_main as default };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { PresetInputProps } from "./index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as vue from "vue";
|
|
3
3
|
|
|
4
4
|
//#region src/components/preset-input/PresetInput.vue.d.ts
|
|
5
5
|
declare const __VLS_export: <V>(__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<{
|
|
6
|
-
props:
|
|
6
|
+
props: vue.PublicProps & __VLS_PrettifyLocal<PresetInputProps<V> & {
|
|
7
7
|
"onUpdate:value"?: ((val?: V | undefined) => any) | undefined;
|
|
8
8
|
}> & (typeof globalThis extends {
|
|
9
9
|
__VLS_PROPS_FALLBACK: infer P;
|
|
@@ -12,7 +12,7 @@ declare const __VLS_export: <V>(__VLS_props: NonNullable<Awaited<typeof __VLS_se
|
|
|
12
12
|
attrs: any;
|
|
13
13
|
slots: {};
|
|
14
14
|
emit: (e: "update:value", val?: V) => void;
|
|
15
|
-
}>) =>
|
|
15
|
+
}>) => vue.VNode & {
|
|
16
16
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
17
17
|
};
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
@@ -2,7 +2,6 @@ import MageMultiplyCircleFill_default from "../icons/MageMultiplyCircleFill.js";
|
|
|
2
2
|
import { computed, createBlock, createCommentVNode, createElementVNode, createVNode, defineComponent, mergeProps, openBlock, reactive, ref, renderSlot, toDisplayString, toRaw, toValue, unref, watch, withCtx, withModifiers } from "vue";
|
|
3
3
|
import { NBadge, NButton, NButtonGroup, NModal, NTooltip } from "naive-ui";
|
|
4
4
|
import { cloneDeep } from "es-toolkit/object";
|
|
5
|
-
|
|
6
5
|
//#region src/components/preset-picker/PresetPicker.vue
|
|
7
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
7
|
__name: "PresetPicker",
|
|
@@ -204,7 +203,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
204
203
|
};
|
|
205
204
|
}
|
|
206
205
|
});
|
|
207
|
-
var PresetPicker_default = _sfc_main;
|
|
208
|
-
|
|
209
206
|
//#endregion
|
|
210
|
-
export {
|
|
207
|
+
export { _sfc_main as default };
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { DataObject } from "../../composables/use-data-request.js";
|
|
2
2
|
import { PresetPickerEmits, PresetPickerExpose, PresetPickerProps, PresetPickerValue } from "./index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as vue from "vue";
|
|
4
4
|
import { DataTableColumns } from "naive-ui";
|
|
5
5
|
|
|
6
6
|
//#region src/components/preset-picker/PresetPicker.vue.d.ts
|
|
7
7
|
declare const __VLS_export: <V extends PresetPickerValue, R extends DataObject>(__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<{
|
|
8
|
-
props:
|
|
8
|
+
props: vue.PublicProps & __VLS_PrettifyLocal<PresetPickerProps<V, R> & {
|
|
9
9
|
"onUpdate:value"?: ((val: V | null, raw: R | R[] | null) => any) | undefined;
|
|
10
10
|
onNegativeClick?: (() => any) | undefined;
|
|
11
11
|
onPositiveClick?: (() => any) | undefined;
|
|
12
12
|
}> & (typeof globalThis extends {
|
|
13
13
|
__VLS_PROPS_FALLBACK: infer P;
|
|
14
14
|
} ? P : {});
|
|
15
|
-
expose: (exposed:
|
|
15
|
+
expose: (exposed: vue.ShallowUnwrapRef<PresetPickerExpose<R>>) => void;
|
|
16
16
|
attrs: any;
|
|
17
17
|
slots: {
|
|
18
18
|
'button-icon'?: (props: {}) => any;
|
|
@@ -49,7 +49,7 @@ declare const __VLS_export: <V extends PresetPickerValue, R extends DataObject>(
|
|
|
49
49
|
'modal-close'?: (props: {}) => any;
|
|
50
50
|
};
|
|
51
51
|
emit: PresetPickerEmits<V, R>;
|
|
52
|
-
}>) =>
|
|
52
|
+
}>) => vue.VNode & {
|
|
53
53
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
54
54
|
};
|
|
55
55
|
declare const _default: typeof __VLS_export;
|
|
@@ -2,7 +2,6 @@ import { useDataRequest } from "../../composables/use-data-request.js";
|
|
|
2
2
|
import { useDebounceFn } from "@vueuse/core";
|
|
3
3
|
import { computed, createBlock, createCommentVNode, createVNode, defineComponent, guardReactiveProps, mergeProps, normalizeProps, openBlock, reactive, ref, renderSlot, toRaw, unref, useTemplateRef, withCtx } from "vue";
|
|
4
4
|
import { NFlex, NPagination, NSelect } from "naive-ui";
|
|
5
|
-
|
|
6
5
|
//#region src/components/preset-select/PresetSelect.vue
|
|
7
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
7
|
__name: "PresetSelect",
|
|
@@ -232,7 +231,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
232
231
|
};
|
|
233
232
|
}
|
|
234
233
|
});
|
|
235
|
-
var PresetSelect_default = _sfc_main;
|
|
236
|
-
|
|
237
234
|
//#endregion
|
|
238
|
-
export {
|
|
235
|
+
export { _sfc_main as default };
|