@aplus-frontend/ui 0.5.24 → 0.5.26

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 (44) hide show
  1. package/es/src/ap-form/search-form/index.vue.mjs +1 -1
  2. package/es/src/ap-grid/editable/form-item.vue.mjs +14 -14
  3. package/es/src/ap-grid/editable/index.vue.mjs +10 -10
  4. package/es/src/business/ap-ladder/ApLadder.vue.d.ts +1 -83
  5. package/es/src/business/ap-ladder/ApLadder.vue2.mjs +34 -59
  6. package/es/src/business/ap-ladder/components/SimpleMode.vue.d.ts +3 -65
  7. package/es/src/business/ap-ladder/components/SimpleMode.vue2.mjs +34 -99
  8. package/es/src/business/ap-ladder/components/ValueGroupMode.vue.d.ts +3 -75
  9. package/es/src/business/ap-ladder/components/ValueGroupMode.vue2.mjs +68 -195
  10. package/es/src/business/ap-ladder/index.d.ts +1 -235
  11. package/es/src/business/ap-ladder/interface.d.ts +4 -114
  12. package/es/src/business/ap-ladder/utils.d.ts +5 -0
  13. package/es/src/business/ap-ladder/utils.mjs +38 -3
  14. package/es/src/business/ap-product-info/ApProductInfo.d.ts +46 -0
  15. package/es/src/business/ap-product-info/constans.d.ts +23 -0
  16. package/es/src/business/ap-product-info/index.d.ts +1 -0
  17. package/es/src/business/ap-product-info/interface.d.ts +11 -0
  18. package/es/src/editable-table/form-item.vue.mjs +83 -83
  19. package/es/src/editable-table/index.vue.mjs +84 -79
  20. package/lib/src/ap-form/search-form/index.vue.js +1 -1
  21. package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
  22. package/lib/src/ap-grid/editable/index.vue.js +1 -1
  23. package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +1 -83
  24. package/lib/src/business/ap-ladder/ApLadder.vue2.js +1 -1
  25. package/lib/src/business/ap-ladder/components/SimpleMode.vue.d.ts +3 -65
  26. package/lib/src/business/ap-ladder/components/SimpleMode.vue2.js +1 -1
  27. package/lib/src/business/ap-ladder/components/ValueGroupMode.vue.d.ts +3 -75
  28. package/lib/src/business/ap-ladder/components/ValueGroupMode.vue2.js +1 -1
  29. package/lib/src/business/ap-ladder/index.d.ts +1 -235
  30. package/lib/src/business/ap-ladder/interface.d.ts +4 -114
  31. package/lib/src/business/ap-ladder/utils.d.ts +5 -0
  32. package/lib/src/business/ap-ladder/utils.js +1 -1
  33. package/lib/src/business/ap-product-info/ApProductInfo.d.ts +46 -0
  34. package/lib/src/business/ap-product-info/constans.d.ts +23 -0
  35. package/lib/src/business/ap-product-info/index.d.ts +1 -0
  36. package/lib/src/business/ap-product-info/interface.d.ts +11 -0
  37. package/lib/src/editable-table/form-item.vue.js +1 -1
  38. package/lib/src/editable-table/index.vue.js +1 -1
  39. package/package.json +5 -5
  40. package/theme/ap-grid/index.css +4 -0
  41. package/theme/ap-grid/index.less +4 -0
  42. package/theme/ap-ladder/ap-ladder.css +14 -5
  43. package/theme/ap-ladder/ap-ladder.less +16 -7
  44. package/theme/index.css +18 -5
@@ -1,5 +1,5 @@
1
1
  import { TooltipProps } from '@aplus-frontend/antdv/es/tooltip/Tooltip';
2
- import { CSSProperties, VNode, VNodeChild } from 'vue';
2
+ import { VNode } from 'vue';
3
3
  /**
4
4
  * Tooltip 需要的属性
5
5
  */
@@ -15,7 +15,7 @@ export interface ApLadderLabelValue {
15
15
  /**
16
16
  * 值
17
17
  */
18
- value?: string | number | VNodeChild | VNode | null | (() => VNodeChild | VNode);
18
+ value?: string | number | VNode | (() => VNode) | null;
19
19
  /**
20
20
  * 是否采用原始值
21
21
  */
@@ -74,64 +74,9 @@ export interface ApLadderLabelValue {
74
74
  handleValueClick?: (labelValueRecord: ApLadderLabelValue[]) => void;
75
75
  /**
76
76
  * label 标签的文本对齐方式 仅支持健值对(labelValues)类型
77
- * @default `right`
78
- * @since v0.4.7 新增
77
+ * @default `left`
79
78
  */
80
79
  labelAlign?: 'left' | 'right';
81
- /**
82
- * 健值对 - label样式
83
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
84
- * @since v0.4.7 新增
85
- */
86
- labelStyles?: CSSProperties;
87
- /**
88
- * 健值对 - value样式
89
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
90
- * @since v0.4.7 新增
91
- */
92
- valueStyles?: CSSProperties;
93
- /**
94
- * 健值对 - link样式
95
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
96
- * @since v0.4.7 新增
97
- */
98
- linkStyles?: CSSProperties;
99
- /**
100
- * 健值对 - unit样式
101
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
102
- * @since v0.4.7 新增
103
- */
104
- unitStyles?: CSSProperties;
105
- /**
106
- * Tooltip - Label style
107
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
108
- * @since v0.4.7 新增
109
- */
110
- tooltipLabelStyles?: CSSProperties;
111
- /**
112
- * Tooltip - Value style
113
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
114
- * @since v0.4.7 新增
115
- */
116
- tooltipValueStyles?: CSSProperties;
117
- /**
118
- * 帮助气泡
119
- */
120
- helpMessage?: string | number | VNodeChild | VNode | null | (() => VNodeChild | VNode);
121
- /**
122
- * 帮助气泡 - 图标
123
- * @description 'question' | 'warning' 自定义
124
- * @default `question`
125
- */
126
- helpMessageIcon?: 'question' | 'warning' | VNodeChild | VNode | (() => VNodeChild | VNode);
127
- /**
128
- * 帮助气泡 - 图标 - 样式
129
- */
130
- helpMessageIconStyles?: CSSProperties;
131
- /**
132
- * 帮助气泡 - 扩展tooltip props
133
- */
134
- helpMessageTooltipProps?: TooltipProps;
135
80
  }
136
81
  /**
137
82
  * ApLadder Props 属性类型声明
@@ -153,22 +98,12 @@ export interface ApLadderProps {
153
98
  * @description 请使用`majorStyles`代替
154
99
  */
155
100
  majorColor?: string;
156
- /**
157
- * 自定义重要信息 style
158
- * @since v0.4.7 新增
159
- */
160
- majorStyles?: CSSProperties;
161
101
  /**
162
102
  * 自定义次要信息颜色
163
103
  * @deprecated 注意:v0.4.7版本之后就别用这个属性了 后面将不再支持
164
104
  * @description 请使用`minorStyles`代替
165
105
  */
166
106
  minorColor?: string;
167
- /**
168
- * 自定义次要信息 style
169
- * @since v0.4.7 新增
170
- */
171
- minorStyles?: CSSProperties;
172
107
  /**
173
108
  * 布局方式
174
109
  * - `vertical` 垂直布局
@@ -176,61 +111,16 @@ export interface ApLadderProps {
176
111
  * @default `vertical`
177
112
  */
178
113
  layout?: 'vertical' | 'horizontal';
179
- /**
180
- * 是否展示气泡
181
- * @description 默认展示
182
- */
183
- tooltip?: boolean;
184
114
  /**
185
115
  * 健值对 - 数组展示
186
116
  */
187
117
  labelValues?: Array<ApLadderLabelValue>;
188
118
  /**
189
119
  * label 标签的文本对齐方式 仅支持健值对(labelValues)类型
190
- * @default `right`
120
+ * @default `left`
191
121
  * @since v0.4.7 新增
192
122
  */
193
123
  labelAlign?: 'left' | 'right';
194
- /**
195
- * 健值对 - label样式
196
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
197
- * @since v0.4.7 新增
198
- */
199
- labelStyles?: CSSProperties;
200
- /**
201
- * 健值对 - value样式
202
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
203
- * @since v0.4.7 新增
204
- */
205
- valueStyles?: CSSProperties;
206
- /**
207
- * 健值对 - link样式
208
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
209
- * @since v0.4.7 新增
210
- */
211
- linkStyles?: CSSProperties;
212
- /**
213
- * 健值对 - unit样式
214
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
215
- * @since v0.4.7 新增
216
- */
217
- unitStyles?: CSSProperties;
218
- /**
219
- * 扩展 Tooltip
220
- */
221
- tooltipProps?: TooltipNeedProps;
222
- /**
223
- * Tooltip - Label style
224
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
225
- * @since v0.4.7 新增
226
- */
227
- tooltipLabelStyles?: CSSProperties;
228
- /**
229
- * Tooltip - Value style
230
- * @description `ApLadderLabelValue` 里面自定义样式会覆盖
231
- * @since v0.4.7 新增
232
- */
233
- tooltipValueStyles?: CSSProperties;
234
124
  }
235
125
  /**
236
126
  * ApLadder Slots 类型声明
@@ -1,2 +1,7 @@
1
+ import { ConvertValueOptions } from './interface';
2
+ import { VNode, RendererNode, RendererElement } from 'vue';
1
3
  export declare const isNull: (value: any) => boolean;
2
4
  export declare const createMemoizeKey: (value: any, options?: any) => string;
5
+ export declare const convertValue: (value: string | number | (() => VNode) | VNode | null | undefined, options?: ConvertValueOptions) => string | number | VNode< RendererNode, RendererElement, {
6
+ [key: string]: any;
7
+ }> | (() => VNode) | null | undefined;
@@ -1,5 +1,40 @@
1
- const e = (r) => r == null || typeof r == "string" && r.trim() === "", n = (r, t = {}) => typeof r == "string" || typeof r == "number" ? String(r) + JSON.stringify(t) : "complex-value";
1
+ import { locales as n } from "./interface.mjs";
2
+ const o = (r) => r == null || typeof r == "string" && r.trim() === "", u = (r, e = {}) => typeof r == "string" || typeof r == "number" ? String(r) + JSON.stringify(e) : "complex-value", y = (r, e = {
3
+ rawValue: !0,
4
+ precision: 2,
5
+ thousand: !0,
6
+ thousandSeparator: ",",
7
+ currency: "CNY",
8
+ percent: !1
9
+ }) => {
10
+ if (Object.prototype.toString.call(r) === "[object Null]" || Object.prototype.toString.call(r) === "[object Undefined]" || Object.prototype.toString.call(r) === "[object Object]" || Object.prototype.toString.call(r) === "[object Function]" || r === "")
11
+ return "--";
12
+ if (e.rawValue)
13
+ return r;
14
+ if (typeof r == "number") {
15
+ if (e.percent)
16
+ return `${r.toFixed(e.precision)}%`;
17
+ if (e.currency)
18
+ return r.toLocaleString(
19
+ n[e.currency ? e.currency : "CNY"],
20
+ {
21
+ style: "currency",
22
+ currency: e.currency ? e.currency : "CNY"
23
+ }
24
+ );
25
+ if (e.thousand) {
26
+ const [t, c] = r.toFixed(e.precision ? e.precision : 2).split(".");
27
+ return `${t.replace(
28
+ /(\d)(?=(\d{3})+(?!\d))/g,
29
+ `$1${e.thousandSeparator ? e.thousandSeparator : ","}`
30
+ )}.${c}`;
31
+ }
32
+ return r.toFixed(e.precision ? e.precision : 2);
33
+ }
34
+ return r;
35
+ };
2
36
  export {
3
- n as createMemoizeKey,
4
- e as isNull
37
+ y as convertValue,
38
+ u as createMemoizeKey,
39
+ o as isNull
5
40
  };
@@ -0,0 +1,46 @@
1
+ import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { ApProductInfoProps } from './interface';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ imgSrc: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ title: {
9
+ type: StringConstructor;
10
+ };
11
+ asku: {
12
+ type: StringConstructor;
13
+ };
14
+ asin: {
15
+ type: PropType< ApProductInfoProps["asin"]>;
16
+ };
17
+ msku: {
18
+ type: StringConstructor;
19
+ };
20
+ onTitleClick: {
21
+ type: PropType< ApProductInfoProps["onTitleClick"]>;
22
+ };
23
+ }>, void, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
24
+ imgSrc: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ title: {
29
+ type: StringConstructor;
30
+ };
31
+ asku: {
32
+ type: StringConstructor;
33
+ };
34
+ asin: {
35
+ type: PropType< ApProductInfoProps["asin"]>;
36
+ };
37
+ msku: {
38
+ type: StringConstructor;
39
+ };
40
+ onTitleClick: {
41
+ type: PropType< ApProductInfoProps["onTitleClick"]>;
42
+ };
43
+ }>> & Readonly<{}>, {
44
+ imgSrc: string;
45
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
46
+ export default _default;
@@ -0,0 +1,23 @@
1
+ import { PropType } from 'vue';
2
+ import { ApProductInfoProps as _ApProductInfoProps } from './interface';
3
+ export declare const ApAttachmentProps: () => {
4
+ imgSrc: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ title: {
9
+ type: StringConstructor;
10
+ };
11
+ asku: {
12
+ type: StringConstructor;
13
+ };
14
+ asin: {
15
+ type: PropType<_ApProductInfoProps["asin"]>;
16
+ };
17
+ msku: {
18
+ type: StringConstructor;
19
+ };
20
+ onTitleClick: {
21
+ type: PropType<_ApProductInfoProps["onTitleClick"]>;
22
+ };
23
+ };
@@ -0,0 +1 @@
1
+ export * from './interface';
@@ -0,0 +1,11 @@
1
+ export interface ApProductInfoProps {
2
+ imgSrc?: string;
3
+ title?: string;
4
+ asku?: string;
5
+ asin?: {
6
+ value: string;
7
+ href: string;
8
+ };
9
+ msku?: string;
10
+ onTitleClick?: () => void;
11
+ }
@@ -1,15 +1,15 @@
1
- import { defineComponent as K, ref as d, unref as n, useSlots as M, watch as g, createBlock as G, openBlock as H, mergeProps as b, withCtx as w, createVNode as W, createSlots as $, renderList as q, renderSlot as U, normalizeProps as J, guardReactiveProps as Q } from "vue";
2
- import { Table as X } from "@aplus-frontend/antdv";
3
- import { ApForm as C } from "../ap-form/index.mjs";
4
- import { isArray as Y, isEqual as Z, isNumber as f, cloneDeep as m, omit as y } from "lodash-unified";
1
+ import { defineComponent as O, ref as c, unref as s, useSlots as K, toRef as G, watch as H, nextTick as U, createBlock as W, openBlock as $, mergeProps as h, withCtx as x, createVNode as q, createSlots as J, renderList as Q, renderSlot as X, normalizeProps as Y, guardReactiveProps as Z } from "vue";
2
+ import { Table as I } from "@aplus-frontend/antdv";
3
+ import { ApForm as g } from "../ap-form/index.mjs";
4
+ import { isArray as M, isUndefined as ee, isNumber as m, cloneDeep as oe, omit as w } from "lodash-unified";
5
5
  import "../config-provider/index.mjs";
6
- import { useInjectForm as I } from "../ap-form/context.mjs";
7
- import { isDef as i } from "../utils/index.mjs";
8
- import ee from "./hooks/use-get-columns.mjs";
9
- import { scrollToRowIndex as oe } from "./utils.mjs";
10
- import { useNamespace as te } from "../config-provider/hooks/use-namespace.mjs";
11
- import { useGlobalConfig as ae } from "../config-provider/hooks/use-global-config.mjs";
12
- const he = /* @__PURE__ */ K({
6
+ import { useInjectForm as te } from "../ap-form/context.mjs";
7
+ import { isDef as b } from "../utils/index.mjs";
8
+ import ae from "./hooks/use-get-columns.mjs";
9
+ import { scrollToRowIndex as le } from "./utils.mjs";
10
+ import { useNamespace as ne } from "../config-provider/hooks/use-namespace.mjs";
11
+ import { useGlobalConfig as ue } from "../config-provider/hooks/use-global-config.mjs";
12
+ const we = /* @__PURE__ */ O({
13
13
  name: "EditableTableInner",
14
14
  __name: "form-item",
15
15
  props: {
@@ -109,111 +109,111 @@ const he = /* @__PURE__ */ K({
109
109
  default: () => ({})
110
110
  }
111
111
  },
112
- setup(R, {
113
- expose: B
112
+ setup(y, {
113
+ expose: C
114
114
  }) {
115
- const l = R;
116
- function D(e, o) {
117
- return Y(o) ? o.reduce((u, a) => u == null ? void 0 : u[a], e) : e == null ? void 0 : e[o];
115
+ const l = y;
116
+ function R(e, t) {
117
+ return M(t) ? t.reduce((n, o) => n == null ? void 0 : n[o], e) : e == null ? void 0 : e[t];
118
118
  }
119
119
  const {
120
- internalInstance: t,
121
- model: F
122
- } = I(), r = d(D(n(F), l.name) || []), L = M(), c = d(l.name);
123
- g(() => l.name, (e, o) => {
124
- Z(e, o) || (c.value = e);
125
- });
126
- const T = C.useWatch(c);
127
- g(() => T.value, (e) => {
128
- var o;
129
- r.value = e, (o = l.onChange) == null || o.call(l, e);
120
+ internalInstance: a,
121
+ model: B
122
+ } = te(), d = c(R(s(B), l.name) || []), F = K(), T = G(l, "name"), D = g.useWatch(T);
123
+ H(() => D.value, async (e) => {
124
+ var t;
125
+ await U(), d.value = e, (t = l.onChange) == null || t.call(l, e);
130
126
  }, {
131
127
  deep: !0
132
128
  });
133
129
  const {
134
- b: v
135
- } = te("editable-table"), p = d(), E = ae("valueTypeMap"), N = ee(l, E);
136
- function V(e, o) {
137
- var s;
138
- const u = ((s = n(r)) == null ? void 0 : s.length) || 0;
139
- if (i(l.maxLength) && u >= l.maxLength)
130
+ b: L
131
+ } = ne("editable-table"), p = c(), V = ue("valueTypeMap"), N = ae(l, V);
132
+ function S(e, t) {
133
+ var u;
134
+ const n = ((u = s(d)) == null ? void 0 : u.length) || 0;
135
+ if (b(l.maxLength) && n >= l.maxLength)
140
136
  return;
141
- const a = [...n(r) || []];
142
- i(o) ? a.splice(o, 0, {
137
+ const o = {
143
138
  ...e || {}
144
- }) : a.push({
145
- ...e || {}
146
- }), t == null || t.setFieldValue(l.name, a);
139
+ };
140
+ a == null || a.setFieldValue(l.name, o, !0, (f, r) => {
141
+ f[r] || (f[r] = [o]), ee(t) ? f[r].push(o) : f[r].splice(t, 0, o);
142
+ });
147
143
  }
148
- function S(e, o = "suffix") {
149
- var x;
150
- const u = ((x = n(r)) == null ? void 0 : x.length) || 0, a = f(e) ? e : e.length;
151
- if (i(l.maxLength) && u + a > l.maxLength)
144
+ function k(e, t = "suffix") {
145
+ var f;
146
+ const n = ((f = s(d)) == null ? void 0 : f.length) || 0, o = m(e) ? e : e.length;
147
+ if (b(l.maxLength) && n + o > l.maxLength)
152
148
  return;
153
- const s = [...n(r) || []], h = f(e) ? new Array(e).fill({}) : m(e);
154
- o === "suffix" ? s.push(...h) : s.unshift(...h), t == null || t.setFieldValue(l.name, s);
149
+ const u = m(e) ? new Array(e).fill(0).map(() => ({})) : oe(e);
150
+ a == null || a.setFieldValue(l.name, u, !0, (r, i) => {
151
+ r[i] || (r[i] = [...u]), t === "suffix" ? r[i].push(...u) : r[i].unshift(...u);
152
+ });
155
153
  }
156
- function _(e) {
157
- let o = m(n(r) || []);
158
- const u = f(e) ? [e] : e;
159
- o = o.filter((a, s) => !u.includes(s)), t == null || t.setFieldValue(l.name, o);
154
+ function v(e) {
155
+ const t = new Set(m(e) ? [e] : e);
156
+ a == null || a.setFieldValue(l.name, void 0, !0, (n, o) => {
157
+ n[o] = n[o].filter((u, f) => !t.has(f));
158
+ });
160
159
  }
161
- function k() {
162
- return n(r);
160
+ function E() {
161
+ return s(d);
163
162
  }
164
- function j(e) {
165
- var o;
166
- return (o = n(r)) == null ? void 0 : o[e];
163
+ function _(e) {
164
+ var t;
165
+ return (t = s(d)) == null ? void 0 : t[e];
167
166
  }
168
- function A(e, o, u = !0) {
169
- const a = m(n(r));
170
- a[e] && (a[e] = {
171
- ...u ? a[e] : {},
172
- ...o
173
- }, t == null || t.setFieldValue(l.name, [...a]));
167
+ function j(e, t, n = !0) {
168
+ a == null || a.setFieldValue(l.name, void 0, !0, (o, u) => {
169
+ !o[u] || !o[u][e] || (o[u][e] = {
170
+ ...n ? o[u][e] : {},
171
+ ...t
172
+ });
173
+ });
174
174
  }
175
175
  function P(e) {
176
- t == null || t.setFieldValue(l.name, e);
176
+ a == null || a.setFieldValue(l.name, e);
177
177
  }
178
- function z(e, o) {
179
- var a;
180
- const u = e === "end" ? r.value.length - 1 : e;
181
- oe(u, (a = p.value) == null ? void 0 : a.$el, o);
178
+ function z(e, t) {
179
+ var o;
180
+ const n = e === "end" ? d.value.length - 1 : e;
181
+ le(n, (o = p.value) == null ? void 0 : o.$el, t);
182
182
  }
183
- function O() {
183
+ function A() {
184
184
  var e;
185
- (e = t == null ? void 0 : t.setFieldValue) == null || e.call(t, l.name, []);
185
+ (e = a == null ? void 0 : a.setFieldValue) == null || e.call(a, l.name, []);
186
186
  }
187
- return B({
188
- add: V,
189
- remove: _,
190
- getRowData: j,
191
- getRowsData: k,
192
- setRowData: A,
193
- addMultiple: S,
187
+ return C({
188
+ add: S,
189
+ remove: v,
190
+ getRowData: _,
191
+ getRowsData: E,
192
+ setRowData: j,
193
+ addMultiple: k,
194
194
  scrollTo: z,
195
195
  setTableData: P,
196
- clear: O
197
- }), (e, o) => (H(), G(n(C).FormItem, b(e.formItem, {
196
+ clear: A
197
+ }), (e, t) => ($(), W(s(g).FormItem, h(e.formItem, {
198
198
  name: e.name,
199
199
  label: e.label
200
200
  }), {
201
- default: w(() => [W(n(X), b(n(y)(l, ["name", "maxLength", "onChange"]), {
201
+ default: x(() => [q(s(I), h(s(w)(l, ["name", "maxLength", "onChange"]), {
202
202
  ref_key: "tableRef",
203
203
  ref: p,
204
- class: n(v)(),
205
- columns: n(N),
206
- "data-source": r.value
207
- }), $({
204
+ class: s(L)(),
205
+ columns: s(N),
206
+ "data-source": d.value
207
+ }), J({
208
208
  _: 2
209
- }, [q(n(y)(L, ["headerCell"]), (u, a) => ({
210
- name: a,
211
- fn: w((s) => [U(e.$slots, a, J(Q(s || {})))])
209
+ }, [Q(s(w)(F, ["headerCell"]), (n, o) => ({
210
+ name: o,
211
+ fn: x((u) => [X(e.$slots, o, Y(Z(u || {})))])
212
212
  }))]), 1040, ["class", "columns", "data-source"])]),
213
213
  _: 3
214
214
  }, 16, ["name", "label"]));
215
215
  }
216
216
  });
217
217
  export {
218
- he as default
218
+ we as default
219
219
  };