bm-admin-ui 1.0.1-alpha → 1.0.2-alpha

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 (35) hide show
  1. package/es/components/float-table/index.d.ts +68 -3
  2. package/es/components/float-table/index.js +166 -193
  3. package/es/components/float-table/src/float-table.vue.d.ts +45 -476
  4. package/es/components/multi-cascader-compose/index.d.ts +2 -2
  5. package/es/components/multi-cascader-compose/index.js +4 -4
  6. package/es/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +2 -2
  7. package/es/components/search-filter/index.js +4 -4
  8. package/es/components/shops-filter/index.js +4 -4
  9. package/es/components/staffs-selector/index.js +4 -4
  10. package/es/components/upload/index.js +4 -4
  11. package/es/utils/vxe-table.d.ts +6 -0
  12. package/es/utils/vxe-table.js +28 -0
  13. package/index.esm.js +4872 -39973
  14. package/index.js +4870 -39971
  15. package/lib/components/float-table/index.d.ts +68 -3
  16. package/lib/components/float-table/index.js +165 -198
  17. package/lib/components/float-table/src/float-table.vue.d.ts +45 -476
  18. package/lib/components/multi-cascader-compose/index.d.ts +2 -2
  19. package/lib/components/multi-cascader-compose/index.js +4 -4
  20. package/lib/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +2 -2
  21. package/lib/components/search-filter/index.js +4 -4
  22. package/lib/components/shops-filter/index.js +4 -4
  23. package/lib/components/staffs-selector/index.js +4 -4
  24. package/lib/components/upload/index.js +4 -4
  25. package/lib/utils/vxe-table.d.ts +6 -0
  26. package/lib/utils/vxe-table.js +33 -0
  27. package/package.json +4 -3
  28. package/pnpm-global/5/node_modules/.pnpm/lock.yaml +3 -0
  29. package/pnpm-global/5/pnpm-lock.yaml +4 -0
  30. package/types/components/float-table/index.d.ts +68 -3
  31. package/types/components/float-table/src/float-table.vue.d.ts +45 -476
  32. package/types/components/multi-cascader-compose/index.d.ts +2 -2
  33. package/types/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +2 -2
  34. package/types/utils/vxe-table.d.ts +6 -0
  35. package/.pnpm-debug.log +0 -16
@@ -1,5 +1,70 @@
1
- declare const BmFloatTable: {
2
- install(app: any): void;
3
- };
1
+ declare const BmFloatTable: import("bm-admin-ui/es/utils/with-install").SFCWithInstall<{
2
+ name: string;
3
+ props: {
4
+ config: {
5
+ type: ObjectConstructor;
6
+ required: boolean;
7
+ default: () => {};
8
+ };
9
+ pagerProps: {
10
+ type: ObjectConstructor;
11
+ default: () => {};
12
+ };
13
+ events: {
14
+ type: ObjectConstructor;
15
+ default: () => {};
16
+ };
17
+ isNeedFloatHandle: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ size: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ };
26
+ emits: string[];
27
+ setup(props: any, { emit }: {
28
+ emit: any;
29
+ }): {
30
+ setItemRef(el: any, column: any, rowid: any): void;
31
+ leaveFloatTable(): void;
32
+ scrollTo(config?: {}): void;
33
+ pageNoChange(val: any): Promise<void>;
34
+ pageSizeChange(val: any, size: any): Promise<void>;
35
+ floatMouseLeave(): void;
36
+ floatOverMouse(): void;
37
+ goAnimationEndFn(): void;
38
+ scrollNotShowFloat(): void;
39
+ classes: import("vue").ComputedRef<(string | {
40
+ floatHandleTable: any;
41
+ })[]>;
42
+ gridOptions: import("vue").ComputedRef<any>;
43
+ gridEvents: import("vue").ComputedRef<any>;
44
+ pager: import("vue").ComputedRef<any>;
45
+ simpleImage: import("vue").Ref<JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
46
+ [key: string]: any;
47
+ }> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
48
+ [key: string]: any;
49
+ }> | null | undefined)[]>;
50
+ floatRefsId: import("vue").Ref<{}>;
51
+ floatId: import("vue").Ref<string>;
52
+ isShowFloatHandle: import("vue").Ref<boolean>;
53
+ atVisible: import("vue").Ref<boolean>;
54
+ goAnimationEnd: import("vue").Ref<boolean>;
55
+ floatPosition: import("vue").Ref<{
56
+ top: string;
57
+ height: string;
58
+ }>;
59
+ trNodes: import("vue").Ref<any>;
60
+ isInScroll: import("vue").Ref<boolean>;
61
+ inMaxScorllX: import("vue").Ref<boolean>;
62
+ floatRow: import("vue").Ref<{}>;
63
+ floatRowIndex: import("vue").Ref<undefined>;
64
+ floatHandleDomCol: import("vue").Ref<any>;
65
+ floatTable: import("vue").Ref<any>;
66
+ xGrid: import("vue").Ref<any>;
67
+ };
68
+ }>;
4
69
  export { BmFloatTable };
5
70
  export default BmFloatTable;
@@ -4,17 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var withInstall = require('bm-admin-ui/lib/utils/with-install');
6
6
  var vue = require('vue');
7
- var Pagination = require('ant-design-vue/lib/pagination');
8
7
  var antDesignVue = require('ant-design-vue');
9
- var XEUtils = require('xe-utils');
10
- var vxeTable = require('vxe-table');
11
- var zhCN = require('vxe-table/es/locale/lang/zh-CN');
12
-
13
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
14
-
15
- var Pagination__default = /*#__PURE__*/_interopDefaultLegacy(Pagination);
16
- var XEUtils__default = /*#__PURE__*/_interopDefaultLegacy(XEUtils);
17
- var zhCN__default = /*#__PURE__*/_interopDefaultLegacy(zhCN);
18
8
 
19
9
  var _export_sfc = (sfc, props) => {
20
10
  const target = sfc.__vccOpts || sfc;
@@ -24,11 +14,8 @@ var _export_sfc = (sfc, props) => {
24
14
  return target;
25
15
  };
26
16
 
27
- const _hoisted_1 = {
28
- key: 0,
29
- class: "floatPager"
30
- };
31
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
17
+ const _sfc_main = {
18
+ name: "BmFloatTable",
32
19
  props: {
33
20
  config: {
34
21
  type: Object,
@@ -65,13 +52,15 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
65
52
  "pageChange",
66
53
  "pageSizeChange"
67
54
  ],
68
- setup(__props, { expose, emit: emits }) {
69
- const props = __props;
70
- const AEmpty = antDesignVue.Empty;
55
+ setup(props, { emit }) {
71
56
  const floatTable = vue.ref();
72
57
  const xGrid = vue.ref();
58
+ vue.onBeforeUnmount(function() {
59
+ inObserverDom && inObserverDom.disconnect();
60
+ scrollNotShowFloatTime && clearTimeout(scrollNotShowFloatTime);
61
+ });
73
62
  const state = vue.reactive({
74
- emptyImg: AEmpty.PRESENTED_IMAGE_SIMPLE,
63
+ simpleImage: antDesignVue.Empty.PRESENTED_IMAGE_SIMPLE,
75
64
  floatRefsId: {},
76
65
  floatId: "",
77
66
  isShowFloatHandle: true,
@@ -104,13 +93,13 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
104
93
  },
105
94
  gridEvents: {
106
95
  radioChange(val) {
107
- emits("radioChange", val);
96
+ emit("radioChange", val);
108
97
  },
109
98
  checkboxChange(val) {
110
- emits("checkboxChange", val);
99
+ emit("checkboxChange", val);
111
100
  },
112
101
  checkboxAll(val) {
113
- emits("checkboxChangeAll", val);
102
+ emit("checkboxChangeAll", val);
114
103
  }
115
104
  },
116
105
  atVisible: false,
@@ -198,7 +187,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
198
187
  extraFn.scroll = (e) => {
199
188
  let propsscroll = props.events.scroll;
200
189
  if (e.isY && props.isNeedFloatHandle) {
201
- scrollNotShowFloat();
190
+ methods.scrollNotShowFloat();
202
191
  }
203
192
  if (e.isX && props.isNeedFloatHandle && state.floatHandleDomCol && gridOptions.value.data && gridOptions.value.data.length > 0) {
204
193
  if (e.scrollLeft + e.$event.target.clientWidth >= e.$event.target.scrollWidth - state.floatHandleDomCol.clientWidth) {
@@ -213,7 +202,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
213
202
  };
214
203
  extraFn.cellMouseleave = (e) => {
215
204
  let propsCellMouseLeave = props.events.cellMouseleave;
216
- floatMouseLeave();
205
+ methods.floatMouseLeave();
217
206
  propsCellMouseLeave && propsCellMouseLeave(e);
218
207
  };
219
208
  }
@@ -240,81 +229,82 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
240
229
  ...props.pagerProps
241
230
  };
242
231
  });
243
- const setItemRef = (el, column, rowid) => {
244
- if (!props.isNeedFloatHandle)
245
- return;
246
- state.floatRefsId[rowid] = el;
247
- if (state.floatHandleDomCol)
248
- return;
249
- let id = column.id;
250
- state.floatHandleDomCol = floatTable.value.querySelector(`.vxe-table--header-wrapper .vxe-header--row .${id}`);
251
- };
252
- const leaveFloatTable = () => {
253
- let timer = setTimeout(() => {
232
+ let scrollNotShowFloatTime;
233
+ const methods = {
234
+ setItemRef(el, column, rowid) {
235
+ if (!props.isNeedFloatHandle)
236
+ return;
237
+ state.floatRefsId[rowid] = el;
238
+ if (state.floatHandleDomCol)
239
+ return;
240
+ let id = column.id;
241
+ state.floatHandleDomCol = floatTable.value.querySelector(`.vxe-table--header-wrapper .vxe-header--row .${id}`);
242
+ },
243
+ leaveFloatTable() {
244
+ let timer = setTimeout(() => {
245
+ state.isShowFloatHandle = false;
246
+ state.floatId = "";
247
+ clearTimeout(timer);
248
+ }, 210);
249
+ },
250
+ scrollTo(config = {}) {
251
+ config = {
252
+ top: 0,
253
+ ...config
254
+ };
255
+ floatTable.value?.querySelectorAll(".vxe-table--body-wrapper")?.forEach((table) => table?.scrollTo?.(config));
256
+ },
257
+ async pageNoChange(val) {
258
+ await emit("pageChange", val);
259
+ methods.scrollTo();
260
+ },
261
+ async pageSizeChange(val, size) {
262
+ await emit("pageSizeChange", size);
263
+ methods.scrollTo();
264
+ },
265
+ floatMouseLeave() {
266
+ if (!state.trNodes || state.trNodes?.length === 0)
267
+ return;
268
+ state.trNodes.forEach((item) => {
269
+ if (item && item.className.includes("floatHoverTr")) {
270
+ item.className = `${item.className.replace(/floatHoverTr/g, "")}`;
271
+ }
272
+ });
273
+ },
274
+ floatOverMouse() {
275
+ if (!state.trNodes || state.trNodes?.length === 0)
276
+ return;
277
+ state.trNodes.forEach((item) => {
278
+ if (item && !item.className.includes("floatHoverTr")) {
279
+ item.className = `${item.className} floatHoverTr`;
280
+ }
281
+ });
282
+ },
283
+ goAnimationEndFn() {
284
+ state.goAnimationEnd = true;
285
+ },
286
+ scrollNotShowFloat() {
287
+ state.isInScroll = true;
254
288
  state.isShowFloatHandle = false;
255
- state.floatId = "";
256
- clearTimeout(timer);
257
- }, 210);
258
- };
259
- const scrollTo = (config = {}) => {
260
- config = {
261
- top: 0,
262
- ...config
263
- };
264
- floatTable.value?.querySelectorAll(".vxe-table--body-wrapper")?.forEach((table) => table?.scrollTo?.(config));
265
- };
266
- expose({ scrollTo });
267
- const pageNoChange = async (val) => {
268
- await emits("pageChange", val);
269
- scrollTo();
270
- };
271
- const pageSizeChange = async (val, size) => {
272
- await emits("pageSizeChange", size);
273
- scrollTo();
274
- };
275
- const floatMouseLeave = () => {
276
- if (!state.trNodes || state.trNodes?.length === 0)
277
- return;
278
- state.trNodes.forEach((item) => {
279
- if (item && item.className.includes("floatHoverTr")) {
280
- item.className = `${item.className.replace(/floatHoverTr/g, "")}`;
289
+ clearTimeout(scrollNotShowFloatTime);
290
+ if (!state.atVisible) {
291
+ scrollNotShowFloatTime = setTimeout(function() {
292
+ state.isInScroll = false;
293
+ }, 300);
281
294
  }
282
- });
283
- };
284
- const floatOverMouse = () => {
285
- if (!state.trNodes || state.trNodes?.length === 0)
286
- return;
287
- state.trNodes.forEach((item) => {
288
- if (item && !item.className.includes("floatHoverTr")) {
289
- item.className = `${item.className} floatHoverTr`;
290
- }
291
- });
292
- };
293
- const goAnimationEndFn = () => {
294
- state.goAnimationEnd = true;
295
- };
296
- let scrollNotShowFloatTime;
297
- const scrollNotShowFloat = () => {
298
- state.isInScroll = true;
299
- state.isShowFloatHandle = false;
300
- clearTimeout(scrollNotShowFloatTime);
301
- if (!state.atVisible) {
302
- scrollNotShowFloatTime = setTimeout(function() {
303
- state.isInScroll = false;
304
- }, 300);
305
295
  }
306
296
  };
307
297
  let inObserverDom;
308
298
  let isHasOver;
309
299
  let closeSetRow;
310
- let headerWarpper;
300
+ let headerWrapper;
311
301
  if (props.isNeedFloatHandle) {
312
302
  inObserverDom = new IntersectionObserver((entries) => {
313
303
  entries.forEach((item) => {
314
304
  if (item.intersectionRatio > 0.1) {
315
305
  closeSetRow = closeSetRow || item.target.closest(".vxe-header--row");
316
- headerWarpper = headerWarpper || item.target.closest(".vxe-table--header-wrapper");
317
- if (closeSetRow.clientWidth <= headerWarpper.clientWidth && !isHasOver) {
306
+ headerWrapper = headerWrapper || item.target.closest(".vxe-table--header-wrapper");
307
+ if (closeSetRow.clientWidth <= headerWrapper.clientWidth && !isHasOver) {
318
308
  inObserverDom.disconnect();
319
309
  } else {
320
310
  isHasOver = true;
@@ -340,120 +330,97 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
340
330
  immediate: true
341
331
  });
342
332
  }
343
- vue.onBeforeUnmount(function() {
344
- inObserverDom && inObserverDom.disconnect();
345
- scrollNotShowFloatTime && clearTimeout(scrollNotShowFloatTime);
346
- });
347
- return (_ctx, _cache) => {
348
- const _component_vxe_grid = vue.resolveComponent("vxe-grid");
349
- return vue.openBlock(), vue.createElementBlock("div", {
350
- ref_key: "floatTable",
351
- ref: floatTable,
352
- class: vue.normalizeClass(vue.unref(classes)),
353
- onMouseleave: leaveFloatTable
354
- }, [
355
- vue.createVNode(_component_vxe_grid, vue.mergeProps({
356
- ref_key: "xGrid",
357
- ref: xGrid
358
- }, vue.unref(gridOptions), vue.toHandlers(vue.unref(gridEvents))), vue.createSlots({
359
- pager: vue.withCtx(() => [
360
- vue.unref(pager).total && !vue.unref(pager).hideOnSinglePage ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
361
- vue.createVNode(vue.unref(Pagination__default["default"]), vue.mergeProps(vue.unref(pager), {
362
- onChange: pageNoChange,
363
- onShowSizeChange: pageSizeChange
364
- }), null, 16)
365
- ])) : vue.createCommentVNode("v-if", true)
366
- ]),
367
- empty: vue.withCtx(() => [
368
- vue.createElementVNode("div", null, [
369
- vue.createVNode(vue.unref(AEmpty), {
370
- image: vue.unref(state).emptyImg
371
- }, null, 8, ["image"])
372
- ])
373
- ]),
374
- _: 2
375
- }, [
376
- vue.renderList(_ctx.$slots, (slot, key) => {
377
- return {
378
- name: key,
379
- fn: vue.withCtx((data) => [
380
- key !== "floatHandle" ? vue.renderSlot(_ctx.$slots, key, {
381
- key: 0,
382
- rowIndex: data.rowIndex,
383
- row: data.row,
384
- column: data.column
385
- }) : (vue.openBlock(), vue.createElementBlock("div", {
386
- key: 1,
387
- ref: (el) => setItemRef(el, data.column, data.rowid)
388
- }, [
389
- vue.renderSlot(_ctx.$slots, "floatHandle", {
390
- row: data.row,
391
- rowIndex: data.rowIndex,
392
- column: data.column
393
- })
394
- ], 512))
395
- ])
396
- };
397
- })
398
- ]), 1040),
399
- vue.withDirectives(vue.createElementVNode("div", {
400
- ref: "floatHandle",
401
- class: vue.normalizeClass(["floatHandle", {
402
- floatRightIn: vue.unref(state).isShowFloatHandle && !vue.unref(state).goAnimationEnd
403
- }]),
404
- style: vue.normalizeStyle({
405
- top: vue.unref(state).floatPosition?.top,
406
- height: vue.unref(state).floatPosition?.height
407
- }),
408
- onAnimationend: goAnimationEndFn,
409
- onMouseenter: floatOverMouse,
410
- onMouseleave: floatMouseLeave
411
- }, [
412
- vue.createElementVNode("div", null, [
413
- vue.renderSlot(_ctx.$slots, "floatHandle", {
414
- row: vue.unref(state).floatRow,
415
- rowIndex: vue.unref(state).floatRowIndex
416
- })
417
- ])
418
- ], 38), [
419
- [
420
- vue.vShow,
421
- vue.unref(state).floatPosition?.top && __props.isNeedFloatHandle && vue.unref(state).isShowFloatHandle
422
- ]
423
- ])
424
- ], 34);
333
+ return {
334
+ floatTable,
335
+ xGrid,
336
+ ...vue.toRefs(state),
337
+ classes,
338
+ gridOptions,
339
+ gridEvents,
340
+ pager,
341
+ ...methods
425
342
  };
426
343
  }
427
- });
428
- var FloatTable = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "float-table.vue"]]);
429
-
430
- vxeTable.VXETable.setup({
431
- i18n: (key, args) => XEUtils__default["default"].toFormatString(XEUtils__default["default"].get(zhCN__default["default"], key), args),
432
- });
433
- const BmTable = withInstall.withInstall(FloatTable);
434
- const BmFloatTable = {
435
- install(app) {
436
- app.component('BmTable', BmTable);
437
- app
438
- .use(vxeTable.Header)
439
- .use(vxeTable.Footer)
440
- .use(vxeTable.Column)
441
- .use(vxeTable.Table)
442
- .use(vxeTable.Grid)
443
- .use(vxeTable.Pager)
444
- .use(vxeTable.Checkbox)
445
- .use(vxeTable.CheckboxGroup)
446
- .use(vxeTable.Radio)
447
- .use(vxeTable.RadioGroup)
448
- .use(vxeTable.Select)
449
- .use(vxeTable.Input)
450
- .use(vxeTable.Tooltip)
451
- .use(vxeTable.Keyboard)
452
- .use(vxeTable.Toolbar)
453
- .use(vxeTable.Button)
454
- .use(vxeTable.Icon);
455
- },
456
344
  };
345
+ const _hoisted_1 = {
346
+ key: 0,
347
+ class: "floatPager"
348
+ };
349
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
350
+ const _component_a_pagination = vue.resolveComponent("a-pagination");
351
+ const _component_a_empty = vue.resolveComponent("a-empty");
352
+ const _component_vxe_grid = vue.resolveComponent("vxe-grid");
353
+ return vue.openBlock(), vue.createElementBlock("div", {
354
+ ref: "floatTable",
355
+ class: vue.normalizeClass($setup.classes),
356
+ onMouseleave: _cache[3] || (_cache[3] = (...args) => _ctx.leaveFloatTable && _ctx.leaveFloatTable(...args))
357
+ }, [
358
+ vue.createVNode(_component_vxe_grid, vue.mergeProps({ ref: "xGrid" }, $setup.gridOptions, vue.toHandlers($setup.gridEvents)), vue.createSlots({
359
+ pager: vue.withCtx(() => [
360
+ $setup.pager.total && !$setup.pager.hideOnSinglePage ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
361
+ vue.createVNode(_component_a_pagination, vue.mergeProps($setup.pager, {
362
+ onChange: _ctx.pageNoChange,
363
+ onShowSizeChange: _ctx.pageSizeChange
364
+ }), null, 16, ["onChange", "onShowSizeChange"])
365
+ ])) : vue.createCommentVNode("v-if", true)
366
+ ]),
367
+ empty: vue.withCtx(() => [
368
+ vue.createElementVNode("div", null, [
369
+ vue.createVNode(_component_a_empty, { image: _ctx.simpleImage }, null, 8, ["image"])
370
+ ])
371
+ ]),
372
+ _: 2
373
+ }, [
374
+ vue.renderList(_ctx.$slots, (slot, key) => {
375
+ return {
376
+ name: key,
377
+ fn: vue.withCtx((data) => [
378
+ key !== "floatHandle" ? vue.renderSlot(_ctx.$slots, key, {
379
+ key: 0,
380
+ rowIndex: data.rowIndex,
381
+ row: data.row,
382
+ column: data.column
383
+ }) : (vue.openBlock(), vue.createElementBlock("div", {
384
+ key: 1,
385
+ ref: (el) => _ctx.setItemRef(el, data.column, data.rowid)
386
+ }, [
387
+ vue.renderSlot(_ctx.$slots, "floatHandle", {
388
+ row: data.row,
389
+ rowIndex: data.rowIndex,
390
+ column: data.column
391
+ })
392
+ ], 512))
393
+ ])
394
+ };
395
+ })
396
+ ]), 1040),
397
+ vue.withDirectives(vue.createElementVNode("div", {
398
+ ref: "floatHandle",
399
+ class: vue.normalizeClass(["floatHandle", {
400
+ floatRightIn: _ctx.isShowFloatHandle && !_ctx.goAnimationEnd
401
+ }]),
402
+ style: vue.normalizeStyle({
403
+ top: _ctx.floatPosition?.top,
404
+ height: _ctx.floatPosition?.height
405
+ }),
406
+ onAnimationend: _cache[0] || (_cache[0] = (...args) => _ctx.goAnimationEndFn && _ctx.goAnimationEndFn(...args)),
407
+ onMouseenter: _cache[1] || (_cache[1] = (...args) => _ctx.floatOverMouse && _ctx.floatOverMouse(...args)),
408
+ onMouseleave: _cache[2] || (_cache[2] = (...args) => _ctx.floatMouseLeave && _ctx.floatMouseLeave(...args))
409
+ }, [
410
+ vue.createElementVNode("div", null, [
411
+ vue.renderSlot(_ctx.$slots, "floatHandle", {
412
+ row: _ctx.floatRow,
413
+ rowIndex: _ctx.floatRowIndex
414
+ })
415
+ ])
416
+ ], 38), [
417
+ [vue.vShow, _ctx.floatPosition?.top && $props.isNeedFloatHandle && _ctx.isShowFloatHandle]
418
+ ])
419
+ ], 34);
420
+ }
421
+ var FloatTable = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "float-table.vue"]]);
422
+
423
+ const BmFloatTable = withInstall.withInstall(FloatTable);
457
424
 
458
425
  exports.BmFloatTable = BmFloatTable;
459
426
  exports["default"] = BmFloatTable;