@funcho/ui 1.1.32 → 1.1.34

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.
Files changed (24) hide show
  1. package/dist/cjs/business/DataTable/DataTable.vue.js +14 -2
  2. package/dist/cjs/business/TreeCheckFilter/TreeCheckFilter.vue.js +13 -6
  3. package/dist/cjs/components/Text/Text.vue.js +2 -20
  4. package/dist/cjs/packages/ui/package.json.js +1 -1
  5. package/dist/esm/business/DataTable/DataTable.vue.mjs +15 -3
  6. package/dist/esm/business/TreeCheckFilter/TreeCheckFilter.vue.mjs +13 -6
  7. package/dist/esm/components/Text/Text.vue.mjs +3 -21
  8. package/dist/esm/packages/ui/package.json.mjs +1 -1
  9. package/dist/types/business/DataTable/DataTable.types.d.ts +1 -0
  10. package/dist/types/business/DataTable/DataTable.vue.d.ts +1 -0
  11. package/dist/types/business/DataTable/index.d.ts +3 -0
  12. package/dist/types/business/DataTableDialog/DataTableDialog.vue.d.ts +4 -1
  13. package/dist/types/business/DataTableDialog/index.d.ts +4 -1
  14. package/dist/types/business/TreeCheckFilter/TreeCheckFilter.vue.d.ts +22 -19
  15. package/dist/types/business/TreeCheckFilter/index.d.ts +6 -0
  16. package/dist/types/business/TreeTransfer/TreeTransfer.vue.d.ts +8 -0
  17. package/dist/types/business/TreeTransfer/index.d.ts +8 -0
  18. package/dist/types/business/TreeTransferDialog/TreeTransferDialog.vue.d.ts +8 -0
  19. package/dist/types/business/TreeTransferDialog/index.d.ts +8 -0
  20. package/dist/types/business/VerticalLayout/VerticalLayout.vue.d.ts +3 -3
  21. package/dist/types/business/VerticalLayout/index.d.ts +48 -0
  22. package/dist/types/components/Text/Text.vue.d.ts +1 -1
  23. package/dist/types/components/Text/index.d.ts +3 -3
  24. package/package.json +1 -1
@@ -98,6 +98,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
98
98
  columns: { default: () => [] },
99
99
  isPagination: { type: Boolean, default: true },
100
100
  fields: { default: () => [] },
101
+ data: { default: void 0 },
101
102
  request: { type: Function, default: () => Promise.resolve({ data: { list: [], total: 0 } }) },
102
103
  actions: { default: () => [] },
103
104
  actionsWidth: { default: 0 },
@@ -106,6 +107,11 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
106
107
  setup(__props, { expose: __expose }) {
107
108
  const ns = useNamespace.useNamespace("data-table");
108
109
  const props = __props;
110
+ const showPagination = vue.computed(() => {
111
+ if (!props.isPagination) return false;
112
+ if (props.data !== void 0) return false;
113
+ return true;
114
+ });
109
115
  const renderActions = (actions, row, index) => {
110
116
  return vue.h(
111
117
  "div",
@@ -147,6 +153,12 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
147
153
  return (pagination.value.currentPage - 1) * pagination.value.pageSize + i + 1;
148
154
  };
149
155
  const tableData = vue.ref([]);
156
+ const displayData = vue.computed(() => {
157
+ if (props.data !== void 0) {
158
+ return props.data || [];
159
+ }
160
+ return tableData.value;
161
+ });
150
162
  const tableLoading = vue.ref(false);
151
163
  const loadData = async () => {
152
164
  if (props.request) {
@@ -211,7 +223,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
211
223
  }, vue.createSlots({
212
224
  body: vue.withCtx(({ height: bodyHeight }) => [
213
225
  vue.withDirectives((vue.openBlock(), vue.createBlock(vue.unref(index.FcTable), vue.mergeProps(_ctx.$attrs, {
214
- data: tableData.value,
226
+ data: displayData.value,
215
227
  border: "",
216
228
  "max-height": bodyHeight,
217
229
  onSelectionChange: handleSelectionChange
@@ -292,7 +304,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
292
304
  ]),
293
305
  key: "0"
294
306
  } : void 0,
295
- __props.isPagination ? {
307
+ showPagination.value ? {
296
308
  name: "footer",
297
309
  fn: vue.withCtx(() => [
298
310
  vue.createVNode(vue.unref(index$2.FcPagination), {
@@ -96,7 +96,12 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
96
96
  data: { default: () => [] },
97
97
  nodeKey: { default: "value" },
98
98
  showCheckbox: { type: Boolean, default: true },
99
- showSearch: { type: Boolean, default: true }
99
+ showSearch: { type: Boolean, default: true },
100
+ props: { default: () => ({
101
+ children: "children",
102
+ label: "label",
103
+ disabled: "disabled"
104
+ }) }
100
105
  },
101
106
  setup(__props, { expose: __expose }) {
102
107
  const ns = useNamespace.useNamespace("pro-tree-check-filter");
@@ -104,9 +109,9 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
104
109
  const { height: treeCheckFilterHeaderHeight } = core.useElementSize(treeCheckFilterHeader, void 0, {
105
110
  box: "border-box"
106
111
  });
107
- const props = __props;
112
+ const myProps = __props;
108
113
  vue.watch(
109
- () => props.data,
114
+ () => myProps.data,
110
115
  () => {
111
116
  checkAll.value = false;
112
117
  indeterminate.value = false;
@@ -122,7 +127,8 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
122
127
  };
123
128
  const filterNode = (value, data) => {
124
129
  if (!value) return true;
125
- return data.label.toLocaleLowerCase().includes(value.toLocaleLowerCase());
130
+ const labelKey = typeof myProps.props?.label === "string" ? myProps.props.label : "label";
131
+ return String(data?.[labelKey] ?? "").toLocaleLowerCase().includes(value.toLocaleLowerCase());
126
132
  };
127
133
  const handleCheckAllChange = () => {
128
134
  if (checkAll.value) {
@@ -135,7 +141,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
135
141
  const visibleKeys = [];
136
142
  Object.values(nodesMap).forEach((node) => {
137
143
  if (node.level > 0 && node.visible && node.isLeaf && !node.disabled) {
138
- visibleKeys.push(node.data[props.nodeKey]);
144
+ visibleKeys.push(node.data[myProps.nodeKey]);
139
145
  }
140
146
  });
141
147
  const finalKeys = Array.from(/* @__PURE__ */ new Set([...currentCheckedKeys, ...visibleKeys]));
@@ -221,12 +227,13 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
221
227
  vue.createVNode(vue.unref(index$3.FcTree), vue.mergeProps(_ctx.$attrs, {
222
228
  ref_key: "treeRef",
223
229
  ref: treeRef,
230
+ props: __props.props,
224
231
  "show-checkbox": __props.showCheckbox,
225
232
  data: __props.data,
226
233
  "filter-node-method": filterNode,
227
234
  "node-key": __props.nodeKey,
228
235
  onCheck: handleTreeCheckChange
229
- }), null, 16, ["show-checkbox", "data", "node-key"])
236
+ }), null, 16, ["props", "show-checkbox", "data", "node-key"])
230
237
  ]),
231
238
  _: 1
232
239
  })
@@ -11,27 +11,9 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
11
11
  name: "FcText"
12
12
  },
13
13
  __name: "Text",
14
- setup(__props, { expose: __expose }) {
15
- const elRef = vue.ref();
16
- __expose(
17
- new Proxy(
18
- {},
19
- {
20
- get(_, key) {
21
- return elRef.value?.[key];
22
- },
23
- has(_, key) {
24
- if (!elRef.value) return false;
25
- return key in elRef.value;
26
- }
27
- }
28
- )
29
- );
14
+ setup(__props) {
30
15
  return (_ctx, _cache) => {
31
- return vue.openBlock(), vue.createBlock(vue.unref(index.ElText), vue.mergeProps(_ctx.$attrs, {
32
- ref_key: "elRef",
33
- ref: elRef
34
- }), vue.createSlots({ _: 2 }, [
16
+ return vue.openBlock(), vue.createBlock(vue.unref(index.ElText), vue.mergeProps(_ctx.$attrs, { ref: "elRef" }), vue.createSlots({ _: 2 }, [
35
17
  vue.renderList(_ctx.$slots, (_, name) => {
36
18
  return {
37
19
  name,
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const version = "1.1.32";
5
+ const version = "1.1.34";
6
6
 
7
7
  exports.version = version;
@@ -1,4 +1,4 @@
1
- import { defineComponent, ref, onMounted, resolveComponent, resolveDirective, createBlock, openBlock, normalizeClass, unref, createSlots, withCtx, withDirectives, mergeProps, createCommentVNode, createElementBlock, Fragment, renderList, resolveDynamicComponent, createVNode, renderSlot, h } from 'vue';
1
+ import { defineComponent, computed, ref, onMounted, resolveComponent, resolveDirective, createBlock, openBlock, normalizeClass, unref, createSlots, withCtx, withDirectives, mergeProps, createCommentVNode, createElementBlock, Fragment, renderList, resolveDynamicComponent, createVNode, renderSlot, h } from 'vue';
2
2
  import { useNamespace } from '../../hooks/use-namespace.mjs';
3
3
  import { FcDangerButton, FcLinkButton } from '../../components/Button/index.mjs';
4
4
  import '../../components/Dialog/index.mjs';
@@ -94,6 +94,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
94
94
  columns: { default: () => [] },
95
95
  isPagination: { type: Boolean, default: true },
96
96
  fields: { default: () => [] },
97
+ data: { default: void 0 },
97
98
  request: { type: Function, default: () => Promise.resolve({ data: { list: [], total: 0 } }) },
98
99
  actions: { default: () => [] },
99
100
  actionsWidth: { default: 0 },
@@ -102,6 +103,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
102
103
  setup(__props, { expose: __expose }) {
103
104
  const ns = useNamespace("data-table");
104
105
  const props = __props;
106
+ const showPagination = computed(() => {
107
+ if (!props.isPagination) return false;
108
+ if (props.data !== void 0) return false;
109
+ return true;
110
+ });
105
111
  const renderActions = (actions, row, index) => {
106
112
  return h(
107
113
  "div",
@@ -143,6 +149,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
143
149
  return (pagination.value.currentPage - 1) * pagination.value.pageSize + i + 1;
144
150
  };
145
151
  const tableData = ref([]);
152
+ const displayData = computed(() => {
153
+ if (props.data !== void 0) {
154
+ return props.data || [];
155
+ }
156
+ return tableData.value;
157
+ });
146
158
  const tableLoading = ref(false);
147
159
  const loadData = async () => {
148
160
  if (props.request) {
@@ -207,7 +219,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
207
219
  }, createSlots({
208
220
  body: withCtx(({ height: bodyHeight }) => [
209
221
  withDirectives((openBlock(), createBlock(unref(FcTable), mergeProps(_ctx.$attrs, {
210
- data: tableData.value,
222
+ data: displayData.value,
211
223
  border: "",
212
224
  "max-height": bodyHeight,
213
225
  onSelectionChange: handleSelectionChange
@@ -288,7 +300,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
288
300
  ]),
289
301
  key: "0"
290
302
  } : void 0,
291
- __props.isPagination ? {
303
+ showPagination.value ? {
292
304
  name: "footer",
293
305
  fn: withCtx(() => [
294
306
  createVNode(unref(FcPagination), {
@@ -92,7 +92,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
92
92
  data: { default: () => [] },
93
93
  nodeKey: { default: "value" },
94
94
  showCheckbox: { type: Boolean, default: true },
95
- showSearch: { type: Boolean, default: true }
95
+ showSearch: { type: Boolean, default: true },
96
+ props: { default: () => ({
97
+ children: "children",
98
+ label: "label",
99
+ disabled: "disabled"
100
+ }) }
96
101
  },
97
102
  setup(__props, { expose: __expose }) {
98
103
  const ns = useNamespace("pro-tree-check-filter");
@@ -100,9 +105,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
100
105
  const { height: treeCheckFilterHeaderHeight } = useElementSize(treeCheckFilterHeader, void 0, {
101
106
  box: "border-box"
102
107
  });
103
- const props = __props;
108
+ const myProps = __props;
104
109
  watch(
105
- () => props.data,
110
+ () => myProps.data,
106
111
  () => {
107
112
  checkAll.value = false;
108
113
  indeterminate.value = false;
@@ -118,7 +123,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
118
123
  };
119
124
  const filterNode = (value, data) => {
120
125
  if (!value) return true;
121
- return data.label.toLocaleLowerCase().includes(value.toLocaleLowerCase());
126
+ const labelKey = typeof myProps.props?.label === "string" ? myProps.props.label : "label";
127
+ return String(data?.[labelKey] ?? "").toLocaleLowerCase().includes(value.toLocaleLowerCase());
122
128
  };
123
129
  const handleCheckAllChange = () => {
124
130
  if (checkAll.value) {
@@ -131,7 +137,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
131
137
  const visibleKeys = [];
132
138
  Object.values(nodesMap).forEach((node) => {
133
139
  if (node.level > 0 && node.visible && node.isLeaf && !node.disabled) {
134
- visibleKeys.push(node.data[props.nodeKey]);
140
+ visibleKeys.push(node.data[myProps.nodeKey]);
135
141
  }
136
142
  });
137
143
  const finalKeys = Array.from(/* @__PURE__ */ new Set([...currentCheckedKeys, ...visibleKeys]));
@@ -217,12 +223,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
217
223
  createVNode(unref(FcTree), mergeProps(_ctx.$attrs, {
218
224
  ref_key: "treeRef",
219
225
  ref: treeRef,
226
+ props: __props.props,
220
227
  "show-checkbox": __props.showCheckbox,
221
228
  data: __props.data,
222
229
  "filter-node-method": filterNode,
223
230
  "node-key": __props.nodeKey,
224
231
  onCheck: handleTreeCheckChange
225
- }), null, 16, ["show-checkbox", "data", "node-key"])
232
+ }), null, 16, ["props", "show-checkbox", "data", "node-key"])
226
233
  ]),
227
234
  _: 1
228
235
  })
@@ -1,4 +1,4 @@
1
- import { defineComponent, ref, createBlock, openBlock, unref, mergeProps, createSlots, renderList, withCtx, renderSlot, normalizeProps, guardReactiveProps } from 'vue';
1
+ import { defineComponent, createBlock, openBlock, unref, mergeProps, createSlots, renderList, withCtx, renderSlot, normalizeProps, guardReactiveProps } from 'vue';
2
2
  import { ElText } from '../../node_modules/.pnpm/element-plus@2.13.5_patch_hash_415fe9eaeb4c26121ef1304c7dfbfaa75441fcd0d7ca1a8beb1acd12_87ac520f28bb40f5a8b03aa48269c150/node_modules/element-plus/es/components/text/index.mjs';
3
3
  import '../../_virtual/dayjs.min.mjs';
4
4
 
@@ -7,27 +7,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
7
7
  name: "FcText"
8
8
  },
9
9
  __name: "Text",
10
- setup(__props, { expose: __expose }) {
11
- const elRef = ref();
12
- __expose(
13
- new Proxy(
14
- {},
15
- {
16
- get(_, key) {
17
- return elRef.value?.[key];
18
- },
19
- has(_, key) {
20
- if (!elRef.value) return false;
21
- return key in elRef.value;
22
- }
23
- }
24
- )
25
- );
10
+ setup(__props) {
26
11
  return (_ctx, _cache) => {
27
- return openBlock(), createBlock(unref(ElText), mergeProps(_ctx.$attrs, {
28
- ref_key: "elRef",
29
- ref: elRef
30
- }), createSlots({ _: 2 }, [
12
+ return openBlock(), createBlock(unref(ElText), mergeProps(_ctx.$attrs, { ref: "elRef" }), createSlots({ _: 2 }, [
31
13
  renderList(_ctx.$slots, (_, name) => {
32
14
  return {
33
15
  name,
@@ -1,3 +1,3 @@
1
- const version = "1.1.32";
1
+ const version = "1.1.34";
2
2
 
3
3
  export { version };
@@ -32,6 +32,7 @@ export type TFcProDataTableProps = {
32
32
  }>;
33
33
  isPagination?: boolean;
34
34
  fields?: Array<TProFormField>;
35
+ data?: any[] | undefined;
35
36
  request?: (params: any) => Promise<RequestResult<any>>;
36
37
  actions?: Array<ButtonProps>;
37
38
  actionsWidth?: number;
@@ -1476,6 +1476,7 @@ declare const __VLS_component: import('vue').DefineComponent<TFcProDataTableProp
1476
1476
  resetSearch: () => void;
1477
1477
  selectedRows: import('vue').Ref<any[], any[]>;
1478
1478
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TFcProDataTableProps> & Readonly<{}>, {
1479
+ data: any[];
1479
1480
  height: number;
1480
1481
  fields: Array<import('..').TProFormField>;
1481
1482
  tools: Array<ButtonProps>;
@@ -6,6 +6,7 @@ export declare const FcProDataTable: {
6
6
  resetSearch: () => void;
7
7
  selectedRows: import('vue').Ref<any[], any[]>;
8
8
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
9
+ data: any[];
9
10
  height: number;
10
11
  fields: Array<import('..').TProFormField>;
11
12
  tools: Array<import('./DataTable.types').ButtonProps>;
@@ -1496,6 +1497,7 @@ export declare const FcProDataTable: {
1496
1497
  resetSearch: () => void;
1497
1498
  selectedRows: import('vue').Ref<any[], any[]>;
1498
1499
  }, {}, {}, {}, {
1500
+ data: any[];
1499
1501
  height: number;
1500
1502
  fields: Array<import('..').TProFormField>;
1501
1503
  tools: Array<import('./DataTable.types').ButtonProps>;
@@ -1522,6 +1524,7 @@ export declare const FcProDataTable: {
1522
1524
  resetSearch: () => void;
1523
1525
  selectedRows: import('vue').Ref<any[], any[]>;
1524
1526
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1527
+ data: any[];
1525
1528
  height: number;
1526
1529
  fields: Array<import('..').TProFormField>;
1527
1530
  tools: Array<import('./DataTable.types').ButtonProps>;
@@ -52,6 +52,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
52
52
  }> | undefined;
53
53
  readonly isPagination?: boolean | undefined;
54
54
  readonly fields?: Array<import('..').TProFormField> | undefined;
55
+ readonly data?: any[] | undefined | undefined;
55
56
  readonly request?: ((params: any) => Promise<import('..').RequestResult<any>>) | undefined;
56
57
  readonly actions?: Array<import('..').ButtonProps> | undefined;
57
58
  readonly actionsWidth?: number | undefined;
@@ -1539,6 +1540,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1539
1540
  resetSearch: () => void;
1540
1541
  selectedRows: import('vue').Ref<any[], any[]>;
1541
1542
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1543
+ data: any[];
1542
1544
  height: number;
1543
1545
  fields: Array<import('..').TProFormField>;
1544
1546
  tools: Array<import('..').ButtonProps>;
@@ -1575,6 +1577,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1575
1577
  $nextTick: typeof import('vue').nextTick;
1576
1578
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1577
1579
  } & Readonly<{
1580
+ data: any[];
1578
1581
  height: number;
1579
1582
  fields: Array<import('..').TProFormField>;
1580
1583
  tools: Array<import('..').ButtonProps>;
@@ -1590,7 +1593,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1590
1593
  request: (params: any) => Promise<import('..').RequestResult<any>>;
1591
1594
  actions: Array<import('..').ButtonProps>;
1592
1595
  actionsWidth: number;
1593
- }> & Omit<Readonly<import('..').TFcProDataTableProps> & Readonly<{}>, "loadData" | "tableData" | "reload" | "resetSearch" | "selectedRows" | ("height" | "fields" | "tools" | "columns" | "selectable" | "hasIndex" | "isPagination" | "request" | "actions" | "actionsWidth")> & import('vue').ShallowUnwrapRef<{
1596
+ }> & Omit<Readonly<import('..').TFcProDataTableProps> & Readonly<{}>, "loadData" | "tableData" | "reload" | "resetSearch" | "selectedRows" | ("data" | "height" | "fields" | "tools" | "columns" | "selectable" | "hasIndex" | "isPagination" | "request" | "actions" | "actionsWidth")> & import('vue').ShallowUnwrapRef<{
1594
1597
  loadData: () => Promise<void>;
1595
1598
  tableData: import('vue').Ref<any[], any[]>;
1596
1599
  reload: () => void;
@@ -52,6 +52,7 @@ export declare const FcProDataTableDialog: {
52
52
  }> | undefined;
53
53
  readonly isPagination?: boolean | undefined;
54
54
  readonly fields?: Array<import('..').TProFormField> | undefined;
55
+ readonly data?: any[] | undefined | undefined;
55
56
  readonly request?: ((params: any) => Promise<import('..').RequestResult<any>>) | undefined;
56
57
  readonly actions?: Array<import('..').ButtonProps> | undefined;
57
58
  readonly actionsWidth?: number | undefined;
@@ -1539,6 +1540,7 @@ export declare const FcProDataTableDialog: {
1539
1540
  resetSearch: () => void;
1540
1541
  selectedRows: import('vue').Ref<any[], any[]>;
1541
1542
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1543
+ data: any[];
1542
1544
  height: number;
1543
1545
  fields: Array<import('..').TProFormField>;
1544
1546
  tools: Array<import('..').ButtonProps>;
@@ -1575,6 +1577,7 @@ export declare const FcProDataTableDialog: {
1575
1577
  $nextTick: typeof import('vue').nextTick;
1576
1578
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1577
1579
  } & Readonly<{
1580
+ data: any[];
1578
1581
  height: number;
1579
1582
  fields: Array<import('..').TProFormField>;
1580
1583
  tools: Array<import('..').ButtonProps>;
@@ -1590,7 +1593,7 @@ export declare const FcProDataTableDialog: {
1590
1593
  request: (params: any) => Promise<import('..').RequestResult<any>>;
1591
1594
  actions: Array<import('..').ButtonProps>;
1592
1595
  actionsWidth: number;
1593
- }> & Omit<Readonly<import('..').TFcProDataTableProps> & Readonly<{}>, "loadData" | "tableData" | "reload" | "resetSearch" | "selectedRows" | ("height" | "fields" | "tools" | "columns" | "selectable" | "hasIndex" | "isPagination" | "request" | "actions" | "actionsWidth")> & import('vue').ShallowUnwrapRef<{
1596
+ }> & Omit<Readonly<import('..').TFcProDataTableProps> & Readonly<{}>, "loadData" | "tableData" | "reload" | "resetSearch" | "selectedRows" | ("data" | "height" | "fields" | "tools" | "columns" | "selectable" | "hasIndex" | "isPagination" | "request" | "actions" | "actionsWidth")> & import('vue').ShallowUnwrapRef<{
1594
1597
  loadData: () => Promise<void>;
1595
1598
  tableData: import('vue').Ref<any[], any[]>;
1596
1599
  reload: () => void;
@@ -1,3 +1,4 @@
1
+ import { TreeOptionProps } from 'element-plus';
1
2
  type __VLS_Props = {
2
3
  border?: boolean;
3
4
  label?: string;
@@ -5,12 +6,13 @@ type __VLS_Props = {
5
6
  nodeKey?: string;
6
7
  showCheckbox?: boolean;
7
8
  showSearch?: boolean;
9
+ props?: TreeOptionProps;
8
10
  };
9
11
  declare const _default: import('vue').DefineComponent<__VLS_Props, {
10
12
  $: import('vue').ComponentInternalInstance;
11
13
  $data: {};
12
14
  $props: Partial<{
13
- readonly props: import('element-plus').TreeOptionProps;
15
+ readonly props: TreeOptionProps;
14
16
  readonly data: import('element-plus').TreeData;
15
17
  readonly checkStrictly: boolean;
16
18
  readonly lazy: boolean;
@@ -27,7 +29,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
27
29
  readonly checkDescendants: boolean;
28
30
  readonly highlightCurrent: boolean;
29
31
  }> & Omit<{
30
- readonly props: import('element-plus').TreeOptionProps;
32
+ readonly props: TreeOptionProps;
31
33
  readonly data: import('element-plus').TreeData;
32
34
  readonly draggable: boolean;
33
35
  readonly renderAfterExpand: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
@@ -137,7 +139,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
137
139
  readonly validator: ((val: unknown) => boolean) | undefined;
138
140
  __epPropKey: true;
139
141
  };
140
- readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps) | ((new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps))[], unknown, unknown, () => {
142
+ readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps) | ((new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps))[], unknown, unknown, () => {
141
143
  children: string;
142
144
  label: string;
143
145
  disabled: string;
@@ -572,7 +574,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
572
574
  'node-drag-enter': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
573
575
  'node-drag-over': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
574
576
  }, string, {
575
- readonly props: import('element-plus').TreeOptionProps;
577
+ readonly props: TreeOptionProps;
576
578
  readonly data: import('element-plus').TreeData;
577
579
  readonly checkStrictly: boolean;
578
580
  readonly lazy: boolean;
@@ -608,7 +610,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
608
610
  $forceUpdate: () => void;
609
611
  $nextTick: typeof import('vue').nextTick;
610
612
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
611
- props: import('element-plus').TreeOptionProps;
613
+ props: TreeOptionProps;
612
614
  data: import('element-plus').TreeData;
613
615
  checkStrictly: boolean;
614
616
  lazy: boolean;
@@ -1029,6 +1031,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1029
1031
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
1030
1032
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
1031
1033
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
1034
+ props: TreeOptionProps;
1032
1035
  data: any[];
1033
1036
  label: string;
1034
1037
  nodeKey: string;
@@ -1102,7 +1105,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1102
1105
  readonly validator: ((val: unknown) => boolean) | undefined;
1103
1106
  __epPropKey: true;
1104
1107
  };
1105
- readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps) | ((new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps))[], unknown, unknown, () => {
1108
+ readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps) | ((new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps))[], unknown, unknown, () => {
1106
1109
  children: string;
1107
1110
  label: string;
1108
1111
  disabled: string;
@@ -1537,7 +1540,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1537
1540
  'node-drag-enter': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
1538
1541
  'node-drag-over': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
1539
1542
  }, import('vue').PublicProps, {
1540
- readonly props: import('element-plus').TreeOptionProps;
1543
+ readonly props: TreeOptionProps;
1541
1544
  readonly data: import('element-plus').TreeData;
1542
1545
  readonly checkStrictly: boolean;
1543
1546
  readonly lazy: boolean;
@@ -1615,7 +1618,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1615
1618
  readonly validator: ((val: unknown) => boolean) | undefined;
1616
1619
  __epPropKey: true;
1617
1620
  };
1618
- readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps) | ((new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps))[], unknown, unknown, () => {
1621
+ readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps) | ((new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps))[], unknown, unknown, () => {
1619
1622
  children: string;
1620
1623
  label: string;
1621
1624
  disabled: string;
@@ -2036,7 +2039,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
2036
2039
  handleNodeExpand: (nodeData: import('element-plus').TreeNodeData, node: import('element-plus/es/components/tree/src/model/node.mjs').Node, instance: import('vue').ComponentInternalInstance) => void;
2037
2040
  updateKeyChildren: (key: import('element-plus').TreeKey, data: import('element-plus').TreeData) => void;
2038
2041
  }, {}, {}, {}, {
2039
- readonly props: import('element-plus').TreeOptionProps;
2042
+ readonly props: TreeOptionProps;
2040
2043
  readonly data: import('element-plus').TreeData;
2041
2044
  readonly checkStrictly: boolean;
2042
2045
  readonly lazy: boolean;
@@ -2066,7 +2069,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
2066
2069
  $: import('vue').ComponentInternalInstance;
2067
2070
  $data: {};
2068
2071
  $props: Partial<{
2069
- readonly props: import('element-plus').TreeOptionProps;
2072
+ readonly props: TreeOptionProps;
2070
2073
  readonly data: import('element-plus').TreeData;
2071
2074
  readonly checkStrictly: boolean;
2072
2075
  readonly lazy: boolean;
@@ -2083,7 +2086,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
2083
2086
  readonly checkDescendants: boolean;
2084
2087
  readonly highlightCurrent: boolean;
2085
2088
  }> & Omit<{
2086
- readonly props: import('element-plus').TreeOptionProps;
2089
+ readonly props: TreeOptionProps;
2087
2090
  readonly data: import('element-plus').TreeData;
2088
2091
  readonly draggable: boolean;
2089
2092
  readonly renderAfterExpand: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
@@ -2193,7 +2196,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
2193
2196
  readonly validator: ((val: unknown) => boolean) | undefined;
2194
2197
  __epPropKey: true;
2195
2198
  };
2196
- readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps) | ((new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps))[], unknown, unknown, () => {
2199
+ readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps) | ((new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps))[], unknown, unknown, () => {
2197
2200
  children: string;
2198
2201
  label: string;
2199
2202
  disabled: string;
@@ -2628,7 +2631,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
2628
2631
  'node-drag-enter': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
2629
2632
  'node-drag-over': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
2630
2633
  }, string, {
2631
- readonly props: import('element-plus').TreeOptionProps;
2634
+ readonly props: TreeOptionProps;
2632
2635
  readonly data: import('element-plus').TreeData;
2633
2636
  readonly checkStrictly: boolean;
2634
2637
  readonly lazy: boolean;
@@ -2664,7 +2667,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
2664
2667
  $forceUpdate: () => void;
2665
2668
  $nextTick: typeof import('vue').nextTick;
2666
2669
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
2667
- props: import('element-plus').TreeOptionProps;
2670
+ props: TreeOptionProps;
2668
2671
  data: import('element-plus').TreeData;
2669
2672
  checkStrictly: boolean;
2670
2673
  lazy: boolean;
@@ -3108,7 +3111,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
3108
3111
  $: import('vue').ComponentInternalInstance;
3109
3112
  $data: {};
3110
3113
  $props: Partial<{
3111
- readonly props: import('element-plus').TreeOptionProps;
3114
+ readonly props: TreeOptionProps;
3112
3115
  readonly data: import('element-plus').TreeData;
3113
3116
  readonly checkStrictly: boolean;
3114
3117
  readonly lazy: boolean;
@@ -3125,7 +3128,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
3125
3128
  readonly checkDescendants: boolean;
3126
3129
  readonly highlightCurrent: boolean;
3127
3130
  }> & Omit<{
3128
- readonly props: import('element-plus').TreeOptionProps;
3131
+ readonly props: TreeOptionProps;
3129
3132
  readonly data: import('element-plus').TreeData;
3130
3133
  readonly draggable: boolean;
3131
3134
  readonly renderAfterExpand: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
@@ -3235,7 +3238,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
3235
3238
  readonly validator: ((val: unknown) => boolean) | undefined;
3236
3239
  __epPropKey: true;
3237
3240
  };
3238
- readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps) | ((new (...args: any[]) => import('element-plus').TreeOptionProps) | (() => import('element-plus').TreeOptionProps))[], unknown, unknown, () => {
3241
+ readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps) | ((new (...args: any[]) => TreeOptionProps) | (() => TreeOptionProps))[], unknown, unknown, () => {
3239
3242
  children: string;
3240
3243
  label: string;
3241
3244
  disabled: string;
@@ -3670,7 +3673,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
3670
3673
  'node-drag-enter': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
3671
3674
  'node-drag-over': (draggingNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, dropNode: import('element-plus/es/components/tree/src/model/node.mjs').Node, evt: DragEvent) => DragEvent;
3672
3675
  }, string, {
3673
- readonly props: import('element-plus').TreeOptionProps;
3676
+ readonly props: TreeOptionProps;
3674
3677
  readonly data: import('element-plus').TreeData;
3675
3678
  readonly checkStrictly: boolean;
3676
3679
  readonly lazy: boolean;
@@ -3706,7 +3709,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
3706
3709
  $forceUpdate: () => void;
3707
3710
  $nextTick: typeof import('vue').nextTick;
3708
3711
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
3709
- props: import('element-plus').TreeOptionProps;
3712
+ props: TreeOptionProps;
3710
3713
  data: import('element-plus').TreeData;
3711
3714
  checkStrictly: boolean;
3712
3715
  lazy: boolean;
@@ -6,6 +6,7 @@ export declare const FcProTreeCheckFilter: {
6
6
  nodeKey?: string;
7
7
  showCheckbox?: boolean;
8
8
  showSearch?: boolean;
9
+ props?: import('element-plus').TreeOptionProps;
9
10
  }> & Readonly<{}>, {
10
11
  $: import('vue').ComponentInternalInstance;
11
12
  $data: {};
@@ -1029,6 +1030,7 @@ export declare const FcProTreeCheckFilter: {
1029
1030
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
1030
1031
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
1031
1032
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1033
+ props: import('element-plus').TreeOptionProps;
1032
1034
  data: any[];
1033
1035
  label: string;
1034
1036
  nodeKey: string;
@@ -4143,6 +4145,7 @@ export declare const FcProTreeCheckFilter: {
4143
4145
  nodeKey?: string;
4144
4146
  showCheckbox?: boolean;
4145
4147
  showSearch?: boolean;
4148
+ props?: import('element-plus').TreeOptionProps;
4146
4149
  }> & Readonly<{}>, {
4147
4150
  $: import('vue').ComponentInternalInstance;
4148
4151
  $data: {};
@@ -5166,6 +5169,7 @@ export declare const FcProTreeCheckFilter: {
5166
5169
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
5167
5170
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
5168
5171
  }, {}, {}, {}, {
5172
+ props: import('element-plus').TreeOptionProps;
5169
5173
  data: any[];
5170
5174
  label: string;
5171
5175
  nodeKey: string;
@@ -5183,6 +5187,7 @@ export declare const FcProTreeCheckFilter: {
5183
5187
  nodeKey?: string;
5184
5188
  showCheckbox?: boolean;
5185
5189
  showSearch?: boolean;
5190
+ props?: import('element-plus').TreeOptionProps;
5186
5191
  }> & Readonly<{}>, {
5187
5192
  $: import('vue').ComponentInternalInstance;
5188
5193
  $data: {};
@@ -6206,6 +6211,7 @@ export declare const FcProTreeCheckFilter: {
6206
6211
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
6207
6212
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
6208
6213
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
6214
+ props: import('element-plus').TreeOptionProps;
6209
6215
  data: any[];
6210
6216
  label: string;
6211
6217
  nodeKey: string;
@@ -24,6 +24,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
24
24
  nodeKey?: string;
25
25
  showCheckbox?: boolean;
26
26
  showSearch?: boolean;
27
+ props?: import('element-plus').TreeOptionProps;
27
28
  }> & Readonly<{}>, {
28
29
  $: import('vue').ComponentInternalInstance;
29
30
  $data: {};
@@ -1047,6 +1048,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1047
1048
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
1048
1049
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
1049
1050
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1051
+ props: import('element-plus').TreeOptionProps;
1050
1052
  data: any[];
1051
1053
  label: string;
1052
1054
  nodeKey: string;
@@ -4161,6 +4163,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
4161
4163
  nodeKey?: string;
4162
4164
  showCheckbox?: boolean;
4163
4165
  showSearch?: boolean;
4166
+ props?: import('element-plus').TreeOptionProps;
4164
4167
  }> & Readonly<{}>, {
4165
4168
  $: import('vue').ComponentInternalInstance;
4166
4169
  $data: {};
@@ -5184,6 +5187,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
5184
5187
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
5185
5188
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
5186
5189
  }, {}, {}, {}, {
5190
+ props: import('element-plus').TreeOptionProps;
5187
5191
  data: any[];
5188
5192
  label: string;
5189
5193
  nodeKey: string;
@@ -5198,6 +5202,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
5198
5202
  nodeKey?: string;
5199
5203
  showCheckbox?: boolean;
5200
5204
  showSearch?: boolean;
5205
+ props?: import('element-plus').TreeOptionProps;
5201
5206
  }> & Readonly<{}>, {
5202
5207
  $: import('vue').ComponentInternalInstance;
5203
5208
  $data: {};
@@ -6221,6 +6226,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6221
6226
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
6222
6227
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
6223
6228
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
6229
+ props: import('element-plus').TreeOptionProps;
6224
6230
  data: any[];
6225
6231
  label: string;
6226
6232
  nodeKey: string;
@@ -9335,6 +9341,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9335
9341
  nodeKey?: string;
9336
9342
  showCheckbox?: boolean;
9337
9343
  showSearch?: boolean;
9344
+ props?: import('element-plus').TreeOptionProps;
9338
9345
  }> & Readonly<{}>, {
9339
9346
  $: import('vue').ComponentInternalInstance;
9340
9347
  $data: {};
@@ -10358,6 +10365,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
10358
10365
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
10359
10366
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
10360
10367
  }, {}, {}, {}, {
10368
+ props: import('element-plus').TreeOptionProps;
10361
10369
  data: any[];
10362
10370
  label: string;
10363
10371
  nodeKey: string;
@@ -22,6 +22,7 @@ export declare const FcProTreeTransfer: {
22
22
  nodeKey?: string;
23
23
  showCheckbox?: boolean;
24
24
  showSearch?: boolean;
25
+ props?: import('element-plus').TreeOptionProps;
25
26
  }> & Readonly<{}>, {
26
27
  $: import('vue').ComponentInternalInstance;
27
28
  $data: {};
@@ -1045,6 +1046,7 @@ export declare const FcProTreeTransfer: {
1045
1046
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
1046
1047
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
1047
1048
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1049
+ props: import('element-plus').TreeOptionProps;
1048
1050
  data: any[];
1049
1051
  label: string;
1050
1052
  nodeKey: string;
@@ -4159,6 +4161,7 @@ export declare const FcProTreeTransfer: {
4159
4161
  nodeKey?: string;
4160
4162
  showCheckbox?: boolean;
4161
4163
  showSearch?: boolean;
4164
+ props?: import('element-plus').TreeOptionProps;
4162
4165
  }> & Readonly<{}>, {
4163
4166
  $: import('vue').ComponentInternalInstance;
4164
4167
  $data: {};
@@ -5182,6 +5185,7 @@ export declare const FcProTreeTransfer: {
5182
5185
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
5183
5186
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
5184
5187
  }, {}, {}, {}, {
5188
+ props: import('element-plus').TreeOptionProps;
5185
5189
  data: any[];
5186
5190
  label: string;
5187
5191
  nodeKey: string;
@@ -5196,6 +5200,7 @@ export declare const FcProTreeTransfer: {
5196
5200
  nodeKey?: string;
5197
5201
  showCheckbox?: boolean;
5198
5202
  showSearch?: boolean;
5203
+ props?: import('element-plus').TreeOptionProps;
5199
5204
  }> & Readonly<{}>, {
5200
5205
  $: import('vue').ComponentInternalInstance;
5201
5206
  $data: {};
@@ -6219,6 +6224,7 @@ export declare const FcProTreeTransfer: {
6219
6224
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
6220
6225
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
6221
6226
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
6227
+ props: import('element-plus').TreeOptionProps;
6222
6228
  data: any[];
6223
6229
  label: string;
6224
6230
  nodeKey: string;
@@ -9333,6 +9339,7 @@ export declare const FcProTreeTransfer: {
9333
9339
  nodeKey?: string;
9334
9340
  showCheckbox?: boolean;
9335
9341
  showSearch?: boolean;
9342
+ props?: import('element-plus').TreeOptionProps;
9336
9343
  }> & Readonly<{}>, {
9337
9344
  $: import('vue').ComponentInternalInstance;
9338
9345
  $data: {};
@@ -10356,6 +10363,7 @@ export declare const FcProTreeTransfer: {
10356
10363
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
10357
10364
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
10358
10365
  }, {}, {}, {}, {
10366
+ props: import('element-plus').TreeOptionProps;
10359
10367
  data: any[];
10360
10368
  label: string;
10361
10369
  nodeKey: string;
@@ -55,6 +55,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
55
55
  nodeKey?: string;
56
56
  showCheckbox?: boolean;
57
57
  showSearch?: boolean;
58
+ props?: import('element-plus').TreeOptionProps;
58
59
  }> & Readonly<{}>, {
59
60
  $: import('vue').ComponentInternalInstance;
60
61
  $data: {};
@@ -1078,6 +1079,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
1078
1079
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
1079
1080
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
1080
1081
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1082
+ props: import('element-plus').TreeOptionProps;
1081
1083
  data: any[];
1082
1084
  label: string;
1083
1085
  nodeKey: string;
@@ -4192,6 +4194,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
4192
4194
  nodeKey?: string;
4193
4195
  showCheckbox?: boolean;
4194
4196
  showSearch?: boolean;
4197
+ props?: import('element-plus').TreeOptionProps;
4195
4198
  }> & Readonly<{}>, {
4196
4199
  $: import('vue').ComponentInternalInstance;
4197
4200
  $data: {};
@@ -5215,6 +5218,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
5215
5218
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
5216
5219
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
5217
5220
  }, {}, {}, {}, {
5221
+ props: import('element-plus').TreeOptionProps;
5218
5222
  data: any[];
5219
5223
  label: string;
5220
5224
  nodeKey: string;
@@ -5229,6 +5233,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
5229
5233
  nodeKey?: string;
5230
5234
  showCheckbox?: boolean;
5231
5235
  showSearch?: boolean;
5236
+ props?: import('element-plus').TreeOptionProps;
5232
5237
  }> & Readonly<{}>, {
5233
5238
  $: import('vue').ComponentInternalInstance;
5234
5239
  $data: {};
@@ -6252,6 +6257,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
6252
6257
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
6253
6258
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
6254
6259
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
6260
+ props: import('element-plus').TreeOptionProps;
6255
6261
  data: any[];
6256
6262
  label: string;
6257
6263
  nodeKey: string;
@@ -9366,6 +9372,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9366
9372
  nodeKey?: string;
9367
9373
  showCheckbox?: boolean;
9368
9374
  showSearch?: boolean;
9375
+ props?: import('element-plus').TreeOptionProps;
9369
9376
  }> & Readonly<{}>, {
9370
9377
  $: import('vue').ComponentInternalInstance;
9371
9378
  $data: {};
@@ -10389,6 +10396,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
10389
10396
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
10390
10397
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
10391
10398
  }, {}, {}, {}, {
10399
+ props: import('element-plus').TreeOptionProps;
10392
10400
  data: any[];
10393
10401
  label: string;
10394
10402
  nodeKey: string;
@@ -54,6 +54,7 @@ export declare const FcProTreeTransferDialog: {
54
54
  nodeKey?: string;
55
55
  showCheckbox?: boolean;
56
56
  showSearch?: boolean;
57
+ props?: import('element-plus').TreeOptionProps;
57
58
  }> & Readonly<{}>, {
58
59
  $: import('vue').ComponentInternalInstance;
59
60
  $data: {};
@@ -1077,6 +1078,7 @@ export declare const FcProTreeTransferDialog: {
1077
1078
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
1078
1079
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
1079
1080
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1081
+ props: import('element-plus').TreeOptionProps;
1080
1082
  data: any[];
1081
1083
  label: string;
1082
1084
  nodeKey: string;
@@ -4191,6 +4193,7 @@ export declare const FcProTreeTransferDialog: {
4191
4193
  nodeKey?: string;
4192
4194
  showCheckbox?: boolean;
4193
4195
  showSearch?: boolean;
4196
+ props?: import('element-plus').TreeOptionProps;
4194
4197
  }> & Readonly<{}>, {
4195
4198
  $: import('vue').ComponentInternalInstance;
4196
4199
  $data: {};
@@ -5214,6 +5217,7 @@ export declare const FcProTreeTransferDialog: {
5214
5217
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
5215
5218
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
5216
5219
  }, {}, {}, {}, {
5220
+ props: import('element-plus').TreeOptionProps;
5217
5221
  data: any[];
5218
5222
  label: string;
5219
5223
  nodeKey: string;
@@ -5228,6 +5232,7 @@ export declare const FcProTreeTransferDialog: {
5228
5232
  nodeKey?: string;
5229
5233
  showCheckbox?: boolean;
5230
5234
  showSearch?: boolean;
5235
+ props?: import('element-plus').TreeOptionProps;
5231
5236
  }> & Readonly<{}>, {
5232
5237
  $: import('vue').ComponentInternalInstance;
5233
5238
  $data: {};
@@ -6251,6 +6256,7 @@ export declare const FcProTreeTransferDialog: {
6251
6256
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
6252
6257
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
6253
6258
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
6259
+ props: import('element-plus').TreeOptionProps;
6254
6260
  data: any[];
6255
6261
  label: string;
6256
6262
  nodeKey: string;
@@ -9365,6 +9371,7 @@ export declare const FcProTreeTransferDialog: {
9365
9371
  nodeKey?: string;
9366
9372
  showCheckbox?: boolean;
9367
9373
  showSearch?: boolean;
9374
+ props?: import('element-plus').TreeOptionProps;
9368
9375
  }> & Readonly<{}>, {
9369
9376
  $: import('vue').ComponentInternalInstance;
9370
9377
  $data: {};
@@ -10388,6 +10395,7 @@ export declare const FcProTreeTransferDialog: {
10388
10395
  $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
10389
10396
  $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
10390
10397
  }, {}, {}, {}, {
10398
+ props: import('element-plus').TreeOptionProps;
10391
10399
  data: any[];
10392
10400
  label: string;
10393
10401
  nodeKey: string;
@@ -1,7 +1,7 @@
1
- interface Props {
1
+ type __VLS_Props = {
2
2
  gap?: number | string;
3
3
  full?: boolean;
4
- }
4
+ };
5
5
  declare function __VLS_template(): {
6
6
  attrs: Partial<{}>;
7
7
  slots: {
@@ -22,7 +22,7 @@ declare function __VLS_template(): {
22
22
  rootEl: HTMLDivElement;
23
23
  };
24
24
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
25
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
26
26
  full: boolean;
27
27
  gap: number | string;
28
28
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
@@ -0,0 +1,48 @@
1
+ export declare const FcProVerticalLayout: {
2
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
3
+ gap?: number | string;
4
+ full?: boolean;
5
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
6
+ full: boolean;
7
+ gap: number | string;
8
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
9
+ layoutRef: HTMLDivElement;
10
+ headerRef: HTMLDivElement;
11
+ bodyRef: HTMLDivElement;
12
+ footerRef: HTMLDivElement;
13
+ ghostBodyRef: HTMLDivElement;
14
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
15
+ P: {};
16
+ B: {};
17
+ D: {};
18
+ C: {};
19
+ M: {};
20
+ Defaults: {};
21
+ }, Readonly<{
22
+ gap?: number | string;
23
+ full?: boolean;
24
+ }> & Readonly<{}>, {}, {}, {}, {}, {
25
+ full: boolean;
26
+ gap: number | string;
27
+ }>;
28
+ __isFragment?: never;
29
+ __isTeleport?: never;
30
+ __isSuspense?: never;
31
+ } & import('vue').ComponentOptionsBase<Readonly<{
32
+ gap?: number | string;
33
+ full?: boolean;
34
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
35
+ full: boolean;
36
+ gap: number | string;
37
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
38
+ $slots: {
39
+ header?(_: {}): any;
40
+ body?(_: {
41
+ width: number;
42
+ height: number;
43
+ }): any;
44
+ footer?(_: {}): any;
45
+ };
46
+ }) & import('vue').Plugin;
47
+ export default FcProVerticalLayout;
48
+ export * from './VerticalLayout.types';
@@ -105,7 +105,7 @@ declare function __VLS_template(): {
105
105
  rootEl: any;
106
106
  };
107
107
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
108
- declare const __VLS_component: import('vue').DefineComponent<{}, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
108
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
109
109
  elRef: ({
110
110
  $: import('vue').ComponentInternalInstance;
111
111
  $data: {};
@@ -1,5 +1,5 @@
1
1
  export declare const FcText: {
2
- new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
2
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
3
3
  elRef: ({
4
4
  $: import('vue').ComponentInternalInstance;
5
5
  $data: {};
@@ -106,11 +106,11 @@ export declare const FcText: {
106
106
  C: {};
107
107
  M: {};
108
108
  Defaults: {};
109
- }, Readonly<{}> & Readonly<{}>, any, {}, {}, {}, {}>;
109
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
110
110
  __isFragment?: never;
111
111
  __isTeleport?: never;
112
112
  __isSuspense?: never;
113
- } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
113
+ } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
114
114
  $slots: any;
115
115
  }) & import('vue').Plugin;
116
116
  export default FcText;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@funcho/ui",
3
3
  "description": "@funcho ui library",
4
- "version": "1.1.32",
4
+ "version": "1.1.34",
5
5
  "type": "module",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.mjs",