@fmdevui/fm-dev 1.0.58 → 1.0.59
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/es/core/hook/useVxeTableOptionsHook.d.ts +1 -0
- package/es/packages/core/hook/useVxeTableOptionsHook.mjs +1 -0
- package/index.js +2 -1
- package/index.min.js +2 -2
- package/index.min.mjs +2 -2
- package/index.mjs +2 -1
- package/lib/core/hook/useVxeTableOptionsHook.d.ts +1 -0
- package/lib/packages/core/hook/useVxeTableOptionsHook.js +1 -0
- package/package.json +1 -1
- /package/es/{defaults.css → component.css} +0 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fm-dev v1.0.
|
|
1
|
+
/*! fm-dev v1.0.59 */
|
|
2
2
|
import { defineComponent, reactive, computed, watch, resolveComponent, createBlock, openBlock, withCtx, createVNode, createElementVNode, createTextVNode, toDisplayString as toDisplayString$1, withDirectives, createElementBlock, Fragment, renderList, vShow, ref, onMounted, nextTick, normalizeStyle, createCommentVNode, normalizeClass, withModifiers, mergeModels, useModel, effectScope, getCurrentInstance, shallowRef, isRef as isRef$1, inject, onUnmounted, h, Text, resolveDynamicComponent, markRaw, toRaw as toRaw$1, hasInjectionContext, unref, isReactive as isReactive$1, toRef, getCurrentScope, onScopeDispose, toRefs, resolveDirective } from 'vue';
|
|
3
3
|
import crypto from 'crypto';
|
|
4
4
|
import require$$0 from 'url';
|
|
@@ -52812,6 +52812,7 @@ const useVxeTable = (opt, extras) => {
|
|
|
52812
52812
|
align: "center",
|
|
52813
52813
|
// 自动监听父元素的变化去重新计算表格(对于父元素可能存在动态变化、显示隐藏的容器中、列宽异常等场景中的可能会用到)
|
|
52814
52814
|
// data: [] as Array<T>,
|
|
52815
|
+
spanMethod: opt.spanMethod,
|
|
52815
52816
|
columns: opt.columns,
|
|
52816
52817
|
showFooter: opt.showFooter,
|
|
52817
52818
|
footerData: opt.footerData,
|
|
@@ -12,6 +12,7 @@ import { VNode } from 'vue';
|
|
|
12
12
|
interface iVxeOption {
|
|
13
13
|
id?: string;
|
|
14
14
|
name?: string;
|
|
15
|
+
spanMethod: VxeTablePropTypes.SpanMethod<any>;
|
|
15
16
|
columns: VxeGridPropTypes.Columns<any>;
|
|
16
17
|
data?: VxeTablePropTypes.Data<any>;
|
|
17
18
|
sortConfig?: VxeTablePropTypes.SortConfig<any>;
|
|
@@ -19,6 +19,7 @@ const useVxeTable = (opt, extras) => {
|
|
|
19
19
|
align: "center",
|
|
20
20
|
// 自动监听父元素的变化去重新计算表格(对于父元素可能存在动态变化、显示隐藏的容器中、列宽异常等场景中的可能会用到)
|
|
21
21
|
// data: [] as Array<T>,
|
|
22
|
+
spanMethod: opt.spanMethod,
|
|
22
23
|
columns: opt.columns,
|
|
23
24
|
showFooter: opt.showFooter,
|
|
24
25
|
footerData: opt.footerData,
|
package/package.json
CHANGED
|
File without changes
|