@aplus-frontend/ui 0.2.19 → 0.2.20
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/index.mjs +193 -189
- package/es/src/ap-form/index.d.ts +5 -1
- package/es/src/ap-form/index.mjs +17 -9
- package/es/src/ap-form/interface.d.ts +9 -0
- package/es/src/ap-form/items/number/index.vue.d.ts +10 -10
- package/es/src/ap-form/items/text/index.vue.d.ts +10 -10
- package/es/src/ap-form/items/text/password.vue.d.ts +10 -10
- package/es/src/ap-form/items/text-area/index.vue.d.ts +9 -9
- package/es/src/ap-form/render/control.vue.d.ts +29 -0
- package/es/src/ap-form/render/control.vue.mjs +23 -0
- package/es/src/ap-form/render/control.vue2.mjs +4 -0
- package/es/src/ap-form/render/item.vue.d.ts +62 -0
- package/es/src/ap-form/render/item.vue.mjs +64 -0
- package/es/src/ap-form/render/item.vue2.mjs +4 -0
- package/es/src/ap-table/constants.d.ts +60 -60
- package/es/src/business/ap-group-search/index.d.ts +36 -36
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +1 -1
- package/es/src/business/ap-ladder/index.d.ts +7 -7
- package/es/src/config-provider/config-provider.d.ts +5 -0
- package/es/src/config-provider/css-var.d.ts +5 -0
- package/es/src/config-provider/css-var.mjs +20 -10
- package/es/src/config-provider/index.d.ts +30 -0
- package/es/src/index.mjs +154 -150
- package/lib/index.js +1 -1
- package/lib/src/ap-form/index.d.ts +5 -1
- package/lib/src/ap-form/index.js +1 -1
- package/lib/src/ap-form/interface.d.ts +9 -0
- package/lib/src/ap-form/items/number/index.vue.d.ts +10 -10
- package/lib/src/ap-form/items/text/index.vue.d.ts +10 -10
- package/lib/src/ap-form/items/text/password.vue.d.ts +10 -10
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +9 -9
- package/lib/src/ap-form/render/control.vue.d.ts +29 -0
- package/lib/src/ap-form/render/control.vue.js +1 -0
- package/lib/src/ap-form/render/control.vue2.js +1 -0
- package/lib/src/ap-form/render/item.vue.d.ts +62 -0
- package/lib/src/ap-form/render/item.vue.js +1 -0
- package/lib/src/ap-form/render/item.vue2.js +1 -0
- package/lib/src/ap-table/constants.d.ts +60 -60
- package/lib/src/business/ap-group-search/index.d.ts +36 -36
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +1 -1
- package/lib/src/business/ap-ladder/index.d.ts +7 -7
- package/lib/src/config-provider/config-provider.d.ts +5 -0
- package/lib/src/config-provider/css-var.d.ts +5 -0
- package/lib/src/config-provider/css-var.js +1 -1
- package/lib/src/config-provider/index.d.ts +30 -0
- package/lib/src/index.js +1 -1
- package/package.json +4 -4
|
@@ -60,13 +60,13 @@ declare function __VLS_template(): {
|
|
|
60
60
|
readonly prefix?: any;
|
|
61
61
|
readonly loading?: boolean | undefined;
|
|
62
62
|
readonly autofocus?: boolean | undefined;
|
|
63
|
+
'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
63
64
|
readonly focused?: boolean | undefined;
|
|
64
65
|
readonly defaultValue?: string | number | undefined;
|
|
65
66
|
readonly maxlength?: number | undefined;
|
|
66
67
|
readonly showCount?: boolean | ShowCountProps | undefined;
|
|
67
68
|
readonly htmlSize?: number | undefined;
|
|
68
69
|
readonly onPressEnter?: KeyboardEventHandler | undefined;
|
|
69
|
-
'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
70
70
|
readonly valueModifiers?: Record<string, any> | undefined;
|
|
71
71
|
readonly inputElement?: any;
|
|
72
72
|
readonly triggerFocus?: (() => void) | undefined;
|
|
@@ -158,6 +158,9 @@ declare function __VLS_template(): {
|
|
|
158
158
|
autofocus: {
|
|
159
159
|
type: PropType<boolean>;
|
|
160
160
|
};
|
|
161
|
+
'onUpdate:value': {
|
|
162
|
+
type: PropType<(val: string) => void>;
|
|
163
|
+
};
|
|
161
164
|
focused: {
|
|
162
165
|
type: PropType<boolean>;
|
|
163
166
|
};
|
|
@@ -180,9 +183,6 @@ declare function __VLS_template(): {
|
|
|
180
183
|
onPressEnter: {
|
|
181
184
|
type: PropType<KeyboardEventHandler>;
|
|
182
185
|
};
|
|
183
|
-
'onUpdate:value': {
|
|
184
|
-
type: PropType<(val: string) => void>;
|
|
185
|
-
};
|
|
186
186
|
valueModifiers: {
|
|
187
187
|
type: PropType<Record<string, any>>;
|
|
188
188
|
};
|
|
@@ -316,6 +316,9 @@ declare function __VLS_template(): {
|
|
|
316
316
|
autofocus: {
|
|
317
317
|
type: PropType<boolean>;
|
|
318
318
|
};
|
|
319
|
+
'onUpdate:value': {
|
|
320
|
+
type: PropType<(val: string) => void>;
|
|
321
|
+
};
|
|
319
322
|
focused: {
|
|
320
323
|
type: PropType<boolean>;
|
|
321
324
|
};
|
|
@@ -338,9 +341,6 @@ declare function __VLS_template(): {
|
|
|
338
341
|
onPressEnter: {
|
|
339
342
|
type: PropType<KeyboardEventHandler>;
|
|
340
343
|
};
|
|
341
|
-
'onUpdate:value': {
|
|
342
|
-
type: PropType<(val: string) => void>;
|
|
343
|
-
};
|
|
344
344
|
valueModifiers: {
|
|
345
345
|
type: PropType<Record<string, any>>;
|
|
346
346
|
};
|
|
@@ -495,6 +495,9 @@ declare function __VLS_template(): {
|
|
|
495
495
|
autofocus: {
|
|
496
496
|
type: PropType<boolean>;
|
|
497
497
|
};
|
|
498
|
+
'onUpdate:value': {
|
|
499
|
+
type: PropType<(val: string) => void>;
|
|
500
|
+
};
|
|
498
501
|
focused: {
|
|
499
502
|
type: PropType<boolean>;
|
|
500
503
|
};
|
|
@@ -517,9 +520,6 @@ declare function __VLS_template(): {
|
|
|
517
520
|
onPressEnter: {
|
|
518
521
|
type: PropType<KeyboardEventHandler>;
|
|
519
522
|
};
|
|
520
|
-
'onUpdate:value': {
|
|
521
|
-
type: PropType<(val: string) => void>;
|
|
522
|
-
};
|
|
523
523
|
valueModifiers: {
|
|
524
524
|
type: PropType<Record<string, any>>;
|
|
525
525
|
};
|
|
@@ -68,13 +68,13 @@ declare function __VLS_template(): {
|
|
|
68
68
|
readonly prefix?: any;
|
|
69
69
|
readonly loading?: boolean | undefined;
|
|
70
70
|
readonly autofocus?: boolean | undefined;
|
|
71
|
+
'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
71
72
|
readonly focused?: boolean | undefined;
|
|
72
73
|
readonly defaultValue?: string | number | undefined;
|
|
73
74
|
readonly maxlength?: number | undefined;
|
|
74
75
|
readonly showCount?: boolean | ShowCountProps | undefined;
|
|
75
76
|
readonly htmlSize?: number | undefined;
|
|
76
77
|
readonly onPressEnter?: KeyboardEventHandler | undefined;
|
|
77
|
-
'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
78
78
|
readonly valueModifiers?: Record<string, any> | undefined;
|
|
79
79
|
readonly inputElement?: any;
|
|
80
80
|
readonly triggerFocus?: (() => void) | undefined;
|
|
@@ -174,6 +174,9 @@ declare function __VLS_template(): {
|
|
|
174
174
|
autofocus: {
|
|
175
175
|
type: PropType<boolean>;
|
|
176
176
|
};
|
|
177
|
+
'onUpdate:value': {
|
|
178
|
+
type: PropType<(val: string) => void>;
|
|
179
|
+
};
|
|
177
180
|
focused: {
|
|
178
181
|
type: PropType<boolean>;
|
|
179
182
|
};
|
|
@@ -196,9 +199,6 @@ declare function __VLS_template(): {
|
|
|
196
199
|
onPressEnter: {
|
|
197
200
|
type: PropType<KeyboardEventHandler>;
|
|
198
201
|
};
|
|
199
|
-
'onUpdate:value': {
|
|
200
|
-
type: PropType<(val: string) => void>;
|
|
201
|
-
};
|
|
202
202
|
valueModifiers: {
|
|
203
203
|
type: PropType<Record<string, any>>;
|
|
204
204
|
};
|
|
@@ -351,6 +351,9 @@ declare function __VLS_template(): {
|
|
|
351
351
|
autofocus: {
|
|
352
352
|
type: PropType<boolean>;
|
|
353
353
|
};
|
|
354
|
+
'onUpdate:value': {
|
|
355
|
+
type: PropType<(val: string) => void>;
|
|
356
|
+
};
|
|
354
357
|
focused: {
|
|
355
358
|
type: PropType<boolean>;
|
|
356
359
|
};
|
|
@@ -373,9 +376,6 @@ declare function __VLS_template(): {
|
|
|
373
376
|
onPressEnter: {
|
|
374
377
|
type: PropType<KeyboardEventHandler>;
|
|
375
378
|
};
|
|
376
|
-
'onUpdate:value': {
|
|
377
|
-
type: PropType<(val: string) => void>;
|
|
378
|
-
};
|
|
379
379
|
valueModifiers: {
|
|
380
380
|
type: PropType<Record<string, any>>;
|
|
381
381
|
};
|
|
@@ -550,6 +550,9 @@ declare function __VLS_template(): {
|
|
|
550
550
|
autofocus: {
|
|
551
551
|
type: PropType<boolean>;
|
|
552
552
|
};
|
|
553
|
+
'onUpdate:value': {
|
|
554
|
+
type: PropType<(val: string) => void>;
|
|
555
|
+
};
|
|
553
556
|
focused: {
|
|
554
557
|
type: PropType<boolean>;
|
|
555
558
|
};
|
|
@@ -572,9 +575,6 @@ declare function __VLS_template(): {
|
|
|
572
575
|
onPressEnter: {
|
|
573
576
|
type: PropType<KeyboardEventHandler>;
|
|
574
577
|
};
|
|
575
|
-
'onUpdate:value': {
|
|
576
|
-
type: PropType<(val: string) => void>;
|
|
577
|
-
};
|
|
578
578
|
valueModifiers: {
|
|
579
579
|
type: PropType<Record<string, any>>;
|
|
580
580
|
};
|
|
@@ -95,6 +95,9 @@ declare function __VLS_template(): {
|
|
|
95
95
|
autofocus: {
|
|
96
96
|
type: PropType<boolean>;
|
|
97
97
|
};
|
|
98
|
+
'onUpdate:value': {
|
|
99
|
+
type: PropType<(val: string) => void>;
|
|
100
|
+
};
|
|
98
101
|
focused: {
|
|
99
102
|
type: PropType<boolean>;
|
|
100
103
|
};
|
|
@@ -117,9 +120,6 @@ declare function __VLS_template(): {
|
|
|
117
120
|
onPressEnter: {
|
|
118
121
|
type: PropType<KeyboardEventHandler>;
|
|
119
122
|
};
|
|
120
|
-
'onUpdate:value': {
|
|
121
|
-
type: PropType<(val: string) => void>;
|
|
122
|
-
};
|
|
123
123
|
valueModifiers: {
|
|
124
124
|
type: PropType<Record<string, any>>;
|
|
125
125
|
};
|
|
@@ -245,6 +245,9 @@ declare function __VLS_template(): {
|
|
|
245
245
|
autofocus: {
|
|
246
246
|
type: PropType<boolean>;
|
|
247
247
|
};
|
|
248
|
+
'onUpdate:value': {
|
|
249
|
+
type: PropType<(val: string) => void>;
|
|
250
|
+
};
|
|
248
251
|
focused: {
|
|
249
252
|
type: PropType<boolean>;
|
|
250
253
|
};
|
|
@@ -267,9 +270,6 @@ declare function __VLS_template(): {
|
|
|
267
270
|
onPressEnter: {
|
|
268
271
|
type: PropType<KeyboardEventHandler>;
|
|
269
272
|
};
|
|
270
|
-
'onUpdate:value': {
|
|
271
|
-
type: PropType<(val: string) => void>;
|
|
272
|
-
};
|
|
273
273
|
valueModifiers: {
|
|
274
274
|
type: PropType<Record<string, any>>;
|
|
275
275
|
};
|
|
@@ -403,6 +403,9 @@ declare function __VLS_template(): {
|
|
|
403
403
|
autofocus: {
|
|
404
404
|
type: PropType<boolean>;
|
|
405
405
|
};
|
|
406
|
+
'onUpdate:value': {
|
|
407
|
+
type: PropType<(val: string) => void>;
|
|
408
|
+
};
|
|
406
409
|
focused: {
|
|
407
410
|
type: PropType<boolean>;
|
|
408
411
|
};
|
|
@@ -425,9 +428,6 @@ declare function __VLS_template(): {
|
|
|
425
428
|
onPressEnter: {
|
|
426
429
|
type: PropType<KeyboardEventHandler>;
|
|
427
430
|
};
|
|
428
|
-
'onUpdate:value': {
|
|
429
|
-
type: PropType<(val: string) => void>;
|
|
430
|
-
};
|
|
431
431
|
valueModifiers: {
|
|
432
432
|
type: PropType<Record<string, any>>;
|
|
433
433
|
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { FormItemStatusContextProps } from '@aplus-frontend/antdv/es/form/FormItemContext';
|
|
2
|
+
import { ApFormControlRenderProps } from '../interface';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
|
+
type SlotsType = {
|
|
5
|
+
default: (props: FormItemStatusContextProps & NonNullable<ApFormControlRenderProps>) => any;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
slots: Readonly<SlotsType> & SlotsType;
|
|
9
|
+
refs: {};
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: DefineComponent<__VLS_TypePropsToOption<ApFormControlRenderProps>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<ApFormControlRenderProps>>>, {}, {}>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
+
type __VLS_TypePropsToOption<T> = {
|
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
|
+
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
|
+
} : {
|
|
21
|
+
type: PropType<T[K]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { defineComponent as p, computed as u, renderSlot as s, normalizeProps as c, guardReactiveProps as a } from "vue";
|
|
2
|
+
import { FormItemInputContext as l } from "@aplus-frontend/antdv/es/form/FormItemContext";
|
|
3
|
+
const f = /* @__PURE__ */ p({
|
|
4
|
+
name: "ApFormControlRender",
|
|
5
|
+
__name: "control",
|
|
6
|
+
props: {
|
|
7
|
+
value: {},
|
|
8
|
+
"onUpdate:value": { type: Function },
|
|
9
|
+
bordered: { type: Boolean },
|
|
10
|
+
onFocus: { type: Function },
|
|
11
|
+
onBlur: { type: Function }
|
|
12
|
+
},
|
|
13
|
+
setup(o) {
|
|
14
|
+
const t = o, n = l.useInject(), e = u(() => ({
|
|
15
|
+
...n,
|
|
16
|
+
...t
|
|
17
|
+
}));
|
|
18
|
+
return console.log("getMergedProps", e.value), (r, m) => s(r.$slots, "default", c(a(e.value)));
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
export {
|
|
22
|
+
f as default
|
|
23
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { FormItemStatusContextProps } from '@aplus-frontend/antdv/es/form/FormItemContext';
|
|
2
|
+
import { ApFormControlRenderProps } from '../interface';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
|
+
import { ApFormItemProps } from '..';
|
|
5
|
+
type SlotsType = {
|
|
6
|
+
default: (props: FormItemStatusContextProps & NonNullable<ApFormControlRenderProps>) => any;
|
|
7
|
+
};
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
slots: Readonly<SlotsType> & SlotsType;
|
|
10
|
+
refs: {};
|
|
11
|
+
attrs: Partial<{}>;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption< ApFormItemProps>, {
|
|
15
|
+
hasFeedback: boolean;
|
|
16
|
+
colon: undefined;
|
|
17
|
+
autoLink: boolean;
|
|
18
|
+
required: undefined;
|
|
19
|
+
validateFirst: undefined;
|
|
20
|
+
bordered: boolean;
|
|
21
|
+
valuePropName: string;
|
|
22
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption< ApFormItemProps>, {
|
|
23
|
+
hasFeedback: boolean;
|
|
24
|
+
colon: undefined;
|
|
25
|
+
autoLink: boolean;
|
|
26
|
+
required: undefined;
|
|
27
|
+
validateFirst: undefined;
|
|
28
|
+
bordered: boolean;
|
|
29
|
+
valuePropName: string;
|
|
30
|
+
}>>>, {
|
|
31
|
+
bordered: boolean;
|
|
32
|
+
colon: boolean;
|
|
33
|
+
required: boolean;
|
|
34
|
+
hasFeedback: boolean;
|
|
35
|
+
autoLink: boolean;
|
|
36
|
+
validateFirst: boolean;
|
|
37
|
+
valuePropName: string;
|
|
38
|
+
}, {}>;
|
|
39
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithDefaults<P, D> = {
|
|
42
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
43
|
+
default: D[K];
|
|
44
|
+
}> : P[K];
|
|
45
|
+
};
|
|
46
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
47
|
+
type __VLS_TypePropsToOption<T> = {
|
|
48
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
49
|
+
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
50
|
+
} : {
|
|
51
|
+
type: PropType<T[K]>;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
56
|
+
new (): {
|
|
57
|
+
$slots: S;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
type __VLS_PrettifyLocal<T> = {
|
|
61
|
+
[K in keyof T]: T[K];
|
|
62
|
+
} & {};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { defineComponent as s, openBlock as i, createBlock as u, unref as o, normalizeProps as l, guardReactiveProps as a, withCtx as t, createVNode as f, renderSlot as m } from "vue";
|
|
2
|
+
import { ApForm as r } from "../index.mjs";
|
|
3
|
+
const x = /* @__PURE__ */ s({
|
|
4
|
+
name: "ApFormItemRender",
|
|
5
|
+
__name: "item",
|
|
6
|
+
props: {
|
|
7
|
+
htmlFor: {},
|
|
8
|
+
prefixCls: {},
|
|
9
|
+
label: {},
|
|
10
|
+
help: {},
|
|
11
|
+
extra: {},
|
|
12
|
+
labelCol: {},
|
|
13
|
+
wrapperCol: {},
|
|
14
|
+
hasFeedback: { type: Boolean, default: !1 },
|
|
15
|
+
colon: { type: Boolean, default: void 0 },
|
|
16
|
+
labelAlign: {},
|
|
17
|
+
prop: {},
|
|
18
|
+
name: {},
|
|
19
|
+
rules: {},
|
|
20
|
+
autoLink: { type: Boolean, default: !0 },
|
|
21
|
+
required: { type: Boolean, default: void 0 },
|
|
22
|
+
validateFirst: { type: Boolean, default: void 0 },
|
|
23
|
+
validateStatus: {},
|
|
24
|
+
validateTrigger: {},
|
|
25
|
+
messageVariables: {},
|
|
26
|
+
hidden: { type: Boolean },
|
|
27
|
+
noStyle: { type: Boolean },
|
|
28
|
+
tooltip: {},
|
|
29
|
+
span: {},
|
|
30
|
+
order: {},
|
|
31
|
+
offset: {},
|
|
32
|
+
push: {},
|
|
33
|
+
pull: {},
|
|
34
|
+
xs: {},
|
|
35
|
+
sm: {},
|
|
36
|
+
md: {},
|
|
37
|
+
lg: {},
|
|
38
|
+
xl: {},
|
|
39
|
+
xxl: {},
|
|
40
|
+
flex: {},
|
|
41
|
+
bordered: { type: Boolean, default: !1 },
|
|
42
|
+
valuePropName: { default: "value" },
|
|
43
|
+
initialValue: {},
|
|
44
|
+
_signal: {},
|
|
45
|
+
transform: {}
|
|
46
|
+
},
|
|
47
|
+
setup(n) {
|
|
48
|
+
const e = n;
|
|
49
|
+
return console.log("props", e), (p, c) => (i(), u(o(r).FormItem, l(a(e)), {
|
|
50
|
+
default: t(() => [
|
|
51
|
+
f(o(r).ControlRender, null, {
|
|
52
|
+
default: t((d) => [
|
|
53
|
+
m(p.$slots, "default", l(a(d)))
|
|
54
|
+
]),
|
|
55
|
+
_: 3
|
|
56
|
+
})
|
|
57
|
+
]),
|
|
58
|
+
_: 3
|
|
59
|
+
}, 16));
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
export {
|
|
63
|
+
x as default
|
|
64
|
+
};
|