@aplus-frontend/ui 0.1.2 → 0.1.3

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 (31) hide show
  1. package/es/index.mjs +42 -41
  2. package/es/src/business/ap-input-radio/ApInputRadio.vue.d.ts +37 -0
  3. package/es/src/business/ap-input-radio/ApInputRadio.vue.mjs +4 -0
  4. package/es/src/business/ap-input-radio/ApInputRadio.vue2.mjs +59 -0
  5. package/es/src/business/ap-input-radio/index.d.ts +3 -0
  6. package/es/src/business/ap-input-radio/interface.d.ts +14 -0
  7. package/es/src/business/ap-input-radio/style.css +7 -0
  8. package/es/src/business/index.d.ts +152 -1
  9. package/es/src/business/index.mjs +15 -12
  10. package/es/src/editable-table/hooks/use-get-columns.mjs +46 -64
  11. package/es/src/editable-table/interface.d.ts +2 -3
  12. package/es/src/editable-table/utils.d.ts +1 -0
  13. package/es/src/editable-table/utils.mjs +75 -35
  14. package/es/src/index.mjs +188 -187
  15. package/es/src/theme/ap-input-radio/ap-input-radio.css +7 -0
  16. package/lib/index.js +1 -1
  17. package/lib/src/business/ap-input-radio/ApInputRadio.vue.d.ts +37 -0
  18. package/lib/src/business/ap-input-radio/ApInputRadio.vue.js +1 -0
  19. package/lib/src/business/ap-input-radio/ApInputRadio.vue2.js +1 -0
  20. package/lib/src/business/ap-input-radio/index.d.ts +3 -0
  21. package/lib/src/business/ap-input-radio/interface.d.ts +14 -0
  22. package/lib/src/business/ap-input-radio/style.css +7 -0
  23. package/lib/src/business/index.d.ts +152 -1
  24. package/lib/src/business/index.js +1 -1
  25. package/lib/src/editable-table/hooks/use-get-columns.js +1 -1
  26. package/lib/src/editable-table/interface.d.ts +2 -3
  27. package/lib/src/editable-table/utils.d.ts +1 -0
  28. package/lib/src/editable-table/utils.js +1 -1
  29. package/lib/src/index.js +1 -1
  30. package/lib/src/theme/ap-input-radio/ap-input-radio.css +7 -0
  31. package/package.json +3 -3
@@ -29,10 +29,9 @@ export type EditableColumnType<RecordType = any, ValueType extends ApTableValueT
29
29
  */
30
30
  valueEnum?: ValueEnum;
31
31
  /**
32
- * 自定义表单
33
- * @deprecated 未实现,请使用`customRender`
32
+ * 自定义表单,适用于内置`valueType`不满足的情况下使用
34
33
  */
35
- customRenderFormItem?: (config: EditableColumnType<RecordType, ValueType>) => any;
34
+ customRenderFormItem?: (config: EditableColumnType<RecordType, ValueType>, fieldProps: Record<string, any>, editable: boolean) => any;
36
35
  /**
37
36
  * 指定值类型(将会用于普通列和可编辑表格的渲染)
38
37
  */
@@ -27,3 +27,4 @@ export declare function mergeClass(current: string, classNames?: string | string
27
27
  * @param options
28
28
  */
29
29
  export declare function scrollToRowIndex(index: number, container?: HTMLElement, options?: StandardBehaviorOptions): void;
30
+ export declare function getFinalNode(column: EditableColumnType, editable: boolean, innerProps: Record<string, any>, value: any): any;
@@ -1,50 +1,90 @@
1
- import { isFunction as i, isArray as n } from "lodash-unified";
2
- import { apTableFormItemMap as s } from "../ap-table/constants.mjs";
3
- import { isDef as f } from "../utils/index.mjs";
4
- import { getValueStr as l } from "../ap-field/number/helper.mjs";
5
- import d from "scroll-into-view-if-needed";
6
- function m(r) {
7
- const e = s[r];
8
- return e || console.warn(
9
- `${r} can not render because of no default renderer, use customRender instead.`
10
- ), e;
11
- }
12
- function b(r) {
13
- if (!r.fieldProps)
1
+ import { isVNode as f, createVNode as s, mergeProps as d } from "vue";
2
+ import { isFunction as n, isArray as p, isBoolean as a, omit as u } from "lodash-unified";
3
+ import { apTableFormItemMap as c, noRenderAsFormItemValueList as y, apTableRenderItemMap as m } from "../ap-table/constants.mjs";
4
+ import { isDef as b } from "../utils/index.mjs";
5
+ import { getValueStr as g } from "../ap-field/number/helper.mjs";
6
+ import T from "scroll-into-view-if-needed";
7
+ import { Typography as C } from "ant-design-vue";
8
+ import "../ap-form/index.mjs";
9
+ import I from "../ap-form/ap-form-item.vue.mjs";
10
+ function P(e) {
11
+ return typeof e == "function" || Object.prototype.toString.call(e) === "[object Object]" && !f(e);
12
+ }
13
+ function R(e) {
14
+ return c[e];
15
+ }
16
+ function _(e) {
17
+ if (!e.fieldProps)
14
18
  return !1;
15
- const e = i(r.fieldProps) ? r.fieldProps({}) : r.fieldProps;
16
- return f(e.required) ? e.required : (n(e.rules) ? e.rules : e.rules ? [e.rules] : []).some((t) => t.required);
17
- }
18
- function g(r, e) {
19
- if (r.valueType === "text" || r.valueType === "textArea")
20
- return e || "--";
21
- if (r.valueType === "number") {
22
- const o = r.fieldProps ? i(r.fieldProps) ? r.fieldProps({}) : r.fieldProps : {};
23
- return l(e, o) || "--";
19
+ const r = n(e.fieldProps) ? e.fieldProps({}) : e.fieldProps;
20
+ return b(r.required) ? r.required : (p(r.rules) ? r.rules : r.rules ? [r.rules] : []).some((t) => t.required);
21
+ }
22
+ function F(e, r) {
23
+ if (e.valueType === "text" || e.valueType === "textArea")
24
+ return r || "--";
25
+ if (e.valueType === "number") {
26
+ const o = e.fieldProps ? n(e.fieldProps) ? e.fieldProps({}) : e.fieldProps : {};
27
+ return g(r, o) || "--";
24
28
  }
25
- return e;
29
+ return r;
26
30
  }
27
- function w(r, e) {
28
- const o = [r];
29
- if (e) {
30
- const t = n(e) ? e : [e];
31
+ function D(e, r) {
32
+ const o = [e];
33
+ if (r) {
34
+ const t = p(r) ? r : [r];
31
35
  o.unshift(...t);
32
36
  }
33
37
  return o.join(" ");
34
38
  }
35
- function y(r, e = document.body, o = {}) {
36
- const t = e.querySelectorAll("tr.ant-table-row")[r];
37
- console.log(t), t && d(t, {
39
+ function N(e, r = document.body, o = {}) {
40
+ const t = r.querySelectorAll("tr.ant-table-row")[e];
41
+ console.log(t), t && T(t, {
38
42
  scrollMode: "if-needed",
39
43
  block: "nearest",
40
44
  behavior: "smooth",
41
45
  ...o
42
46
  });
43
47
  }
48
+ function V(e, r, o) {
49
+ return y.includes(e.valueType) ? o : e.copyable || e.ellipsis ? s(C.Paragraph, {
50
+ copyable: e.copyable ? {
51
+ text: r,
52
+ tooltip: !1
53
+ } : !1,
54
+ ellipsis: e.ellipsis ? a(e.ellipsis) ? {
55
+ tooltip: r
56
+ } : {
57
+ ...e.ellipsis,
58
+ tooltip: r
59
+ } : !1,
60
+ content: e.ellipsis ? F(e, r) : o
61
+ }, null) : o;
62
+ }
63
+ function O(e, r, o, t) {
64
+ let l;
65
+ if (e.valueType)
66
+ if (r) {
67
+ const i = R(e.valueType);
68
+ l = s(i, o, null);
69
+ } else {
70
+ const i = m[e.valueType];
71
+ l = V(e, t, s(i, d(o.field, {
72
+ mode: "read"
73
+ }), null));
74
+ }
75
+ if (e.customRenderFormItem) {
76
+ const i = e.customRenderFormItem(e, o.field, r);
77
+ l = s(I, u(o, ["field"]), P(i) ? i : {
78
+ default: () => [i]
79
+ });
80
+ }
81
+ return l;
82
+ }
44
83
  export {
45
- b as getColumnIsRequired,
46
- m as getEditableComponent,
47
- g as getRawDisplayValue,
48
- w as mergeClass,
49
- y as scrollToRowIndex
84
+ _ as getColumnIsRequired,
85
+ R as getEditableComponent,
86
+ O as getFinalNode,
87
+ F as getRawDisplayValue,
88
+ D as mergeClass,
89
+ N as scrollToRowIndex
50
90
  };
package/es/src/index.mjs CHANGED
@@ -4,7 +4,7 @@ import { Scrollbar as C } from "./scroll-bar/index.mjs";
4
4
  import { CollapseContainer as I, ScrollContainer as b } from "./container/index.mjs";
5
5
  import { IconPicker as P } from "./icon-picker/index.mjs";
6
6
  import "./locale/index.mjs";
7
- import { BasicArrow as h, BasicHelp as R, BasicTitle as v } from "./basic/index.mjs";
7
+ import { BasicArrow as R, BasicHelp as h, BasicTitle as v } from "./basic/index.mjs";
8
8
  import { ExpandTransition as M, ExpandXTransition as k, FadeTransition as w, ScaleRotateTransition as B, ScaleTransition as L, ScrollXReverseTransition as y, ScrollXTransition as E, ScrollYReverseTransition as N, ScrollYTransition as X, SlideXReverseTransition as K, SlideXTransition as Y, SlideYReverseTransition as O, SlideYTransition as H } from "./transition/index.mjs";
9
9
  import { Description as z } from "./description/index.mjs";
10
10
  import { Field as j } from "./pro-form/index.mjs";
@@ -29,188 +29,189 @@ import "./ap-download/index.mjs";
29
29
  import { CheckCard as So } from "./check-card/index.mjs";
30
30
  import { ApModal as bo } from "./ap-modal/index.mjs";
31
31
  import "./ap-list/index.mjs";
32
- import { ApExpandAlert as Po, ApExportGroup as Do, ApLabel as ho, ApSelectLayout as Ro, ApStatus as vo, ApStatusGroup as Go, ApTitle as Mo } from "./business/index.mjs";
32
+ import { ApExpandAlert as Po, ApExportGroup as Do, ApInputRadio as Ro, ApLabel as ho, ApSelectLayout as vo, ApStatus as Go, ApStatusGroup as Mo, ApTitle as ko } from "./business/index.mjs";
33
33
  import "./ap-table/index.mjs";
34
34
  import "./editable-table/index.mjs";
35
35
  import "./ap-descriptions/index.mjs";
36
- import { configProviderProps as wo } from "./config-provider/config-provider-props.mjs";
37
- import { configProviderContextKey as Lo, tableDefaultConfig as yo } from "./config-provider/constants.mjs";
38
- import { keysOf as No, provideGlobalConfig as Xo, useGlobalConfig as Ko } from "./config-provider/hooks/use-global-config.mjs";
39
- import { buildLocaleContext as Oo, buildTranslator as Ho, localeContextKey as Wo, translate as zo, useLocale as Uo } from "./config-provider/hooks/use-locale.mjs";
40
- import { defaultNamespace as qo, namespaceContextKey as Jo, useGetDerivedNamespace as Qo, useNamespace as Vo } from "./config-provider/hooks/use-namespace.mjs";
41
- import { ConfigProvider as _o, globalConfigCached as $o } from "./config-provider/config-provider.mjs";
42
- import { default as ee } from "./locale/lang/zh-cn.mjs";
43
- import { default as te } from "./locale/lang/en.mjs";
44
- import { default as pe } from "./transition/collapse-transition.vue.mjs";
45
- import { useDescription as me } from "./description/use-description.mjs";
46
- import { useComponentRegister as de } from "./pro-form/hooks/use-component-register.mjs";
47
- import { useForm as ie } from "./pro-form/hooks/use-form.mjs";
48
- import { isComponentFormSchema as ue, isSlotFormSchema as ne } from "./pro-form/types/form.mjs";
49
- import { default as ce } from "./pro-form/components/api-cascader.vue.mjs";
50
- import { default as Te } from "./pro-form/components/api-radio-group.vue.mjs";
51
- import { default as Se } from "./pro-form/components/api-select.vue.mjs";
52
- import { default as be } from "./pro-form/components/api-transfer.vue.mjs";
53
- import { default as Pe } from "./pro-form/components/api-tree.vue.mjs";
36
+ import { configProviderProps as Bo } from "./config-provider/config-provider-props.mjs";
37
+ import { configProviderContextKey as yo, tableDefaultConfig as Eo } from "./config-provider/constants.mjs";
38
+ import { keysOf as Xo, provideGlobalConfig as Ko, useGlobalConfig as Yo } from "./config-provider/hooks/use-global-config.mjs";
39
+ import { buildLocaleContext as Ho, buildTranslator as Wo, localeContextKey as zo, translate as Uo, useLocale as jo } from "./config-provider/hooks/use-locale.mjs";
40
+ import { defaultNamespace as Jo, namespaceContextKey as Qo, useGetDerivedNamespace as Vo, useNamespace as Zo } from "./config-provider/hooks/use-namespace.mjs";
41
+ import { ConfigProvider as $o, globalConfigCached as oe } from "./config-provider/config-provider.mjs";
42
+ import { default as re } from "./locale/lang/zh-cn.mjs";
43
+ import { default as ae } from "./locale/lang/en.mjs";
44
+ import { default as fe } from "./transition/collapse-transition.vue.mjs";
45
+ import { useDescription as le } from "./description/use-description.mjs";
46
+ import { useComponentRegister as se } from "./pro-form/hooks/use-component-register.mjs";
47
+ import { useForm as xe } from "./pro-form/hooks/use-form.mjs";
48
+ import { isComponentFormSchema as ne, isSlotFormSchema as Ae } from "./pro-form/types/form.mjs";
49
+ import { default as Fe } from "./pro-form/components/api-cascader.vue.mjs";
50
+ import { default as Ce } from "./pro-form/components/api-radio-group.vue.mjs";
51
+ import { default as Ie } from "./pro-form/components/api-select.vue.mjs";
52
+ import { default as ge } from "./pro-form/components/api-transfer.vue.mjs";
53
+ import { default as De } from "./pro-form/components/api-tree.vue.mjs";
54
54
  import { default as he } from "./pro-form/components/radio-button-group.vue.mjs";
55
- import { default as ve } from "./pro-form/pro-form.vue.mjs";
56
- import { default as Me } from "./pro-form/components/api-tree-select.vue.mjs";
57
- import { default as we } from "./pro-form/table-form.vue.mjs";
58
- import { default as Le } from "./pro-form/table-form-inner.vue.mjs";
59
- import { default as Ee } from "./base-button/modal-button.vue.mjs";
60
- import { default as Xe } from "./base-button/pop-confirm-button.vue.mjs";
61
- import { useModalContext as Ye } from "./modal/hooks/use-modal-context.mjs";
62
- import { useModal as He, useModalInner as We } from "./modal/hooks/use-modal.mjs";
63
- import { default as Ue } from "./pro-table/pro-table.vue.mjs";
64
- import { default as qe } from "./pro-table/components/table-action.vue.mjs";
65
- import { default as Qe } from "./pro-table/components/edit-table-header-icon.vue.mjs";
66
- import { default as Ze } from "./pro-table/components/table-image.vue.mjs";
67
- import { useTable as $e } from "./pro-table/hooks/use-table.mjs";
68
- import { ApFormItemText as er } from "./ap-form/items/text/index.mjs";
69
- import { default as tr } from "./ap-form/items/text-area/index.vue.mjs";
70
- import { default as pr } from "./ap-form/items/number/index.vue.mjs";
71
- import { default as mr } from "./ap-form/items/date/index.vue.mjs";
72
- import { default as dr } from "./ap-form/items/date-range/index.vue.mjs";
73
- import { default as ir } from "./ap-form/items/radio/index.vue.mjs";
74
- import { default as ur } from "./ap-form/items/select/index.vue.mjs";
75
- import { default as Ar } from "./ap-form/items/switch/index.vue.mjs";
76
- import { default as Fr } from "./ap-form/items/checkbox/index.vue.mjs";
77
- import { default as Cr } from "./ap-form/items/text/password.vue.mjs";
78
- import { default as Ir } from "./ap-form/ap-form-item.vue.mjs";
79
- import { default as gr } from "./ap-form/ap-form-item-group/index.vue.mjs";
80
- import { default as Dr } from "./ap-form/ap-form-list.vue.mjs";
81
- import { default as Rr } from "./ap-form/search-form/index.vue.mjs";
82
- import { default as Gr } from "./ap-form/modal-form/index.vue.mjs";
83
- import { ApFieldText as kr } from "./ap-field/text/index.mjs";
84
- import { default as Br } from "./ap-field/checkbox/index.vue.mjs";
85
- import { default as yr } from "./ap-field/date/index.vue.mjs";
86
- import { default as Nr } from "./ap-field/number/index.vue.mjs";
87
- import { default as Kr } from "./ap-field/radio/index.vue.mjs";
88
- import { default as Or } from "./ap-field/switch/index.vue.mjs";
89
- import { default as Wr } from "./ap-field/text-area/index.vue.mjs";
90
- import { default as Ur } from "./ap-field/date-range/index.vue.mjs";
91
- import { default as qr } from "./ap-field/select/index.vue.mjs";
92
- import { default as Qr } from "./ap-field/text/password.vue.mjs";
93
- import { default as Zr } from "./ap-field/slider/index.vue.mjs";
94
- import { default as $r } from "./ap-field/segmented/index.vue.mjs";
95
- import { default as et } from "./ap-field/rate/index.vue.mjs";
96
- import { default as tt } from "./ap-action/item-modal/index.vue.mjs";
97
- import { default as pt } from "./ap-action/item-popconfirm/index.vue.mjs";
98
- import { default as mt } from "./ap-action/item-dropdown/index.vue.mjs";
99
- import { default as dt } from "./ap-action/group/index.vue.mjs";
100
- import { generateTableList as it } from "./ap-custom-column/utils.mjs";
101
- import { useCacheColumnSetting as ut } from "./ap-custom-column/useCacheColumnSetting.mjs";
102
- import { default as At } from "./ap-custom-column/custom-column.vue.mjs";
103
- import { default as Ft } from "./ap-custom-column/column-select.vue.mjs";
104
- import { DictCode as Ct } from "./work-order-modal/interfaces.mjs";
105
- import { createWorkOrderModal as It } from "./work-order-modal/createWorkOrder.mjs";
106
- import { default as gt } from "./work-order-modal/work-order-modal.vue.mjs";
107
- import { default as Dt } from "./ap-tag/ap-tag.vue.mjs";
108
- import { default as Rt } from "./ap-tag/ap-tag-group.vue.mjs";
109
- import { default as Gt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
110
- import { NeedNameKeyDefault as kt } from "./ap-upload/apUploadTypes.mjs";
111
- import { default as Bt } from "./ap-upload/apUpload.vue.mjs";
112
- import { default as yt } from "./ap-download/ap-download.vue.mjs";
113
- import { default as Nt } from "./check-card/group.vue.mjs";
114
- import { default as Kt } from "./ap-list/index.vue.mjs";
115
- import { useTablePaging as Ot } from "./ap-table/hooks/use-table-paging.mjs";
116
- import { default as Wt } from "./ap-table/ap-table.vue.mjs";
117
- import { default as Ut } from "./editable-table/index.vue.mjs";
118
- import { default as qt } from "./editable-table/form-item.vue.mjs";
119
- import { default as Qt } from "./ap-descriptions/ap-descriptions.vue.mjs";
55
+ import { default as Ge } from "./pro-form/pro-form.vue.mjs";
56
+ import { default as ke } from "./pro-form/components/api-tree-select.vue.mjs";
57
+ import { default as Be } from "./pro-form/table-form.vue.mjs";
58
+ import { default as ye } from "./pro-form/table-form-inner.vue.mjs";
59
+ import { default as Ne } from "./base-button/modal-button.vue.mjs";
60
+ import { default as Ke } from "./base-button/pop-confirm-button.vue.mjs";
61
+ import { useModalContext as Oe } from "./modal/hooks/use-modal-context.mjs";
62
+ import { useModal as We, useModalInner as ze } from "./modal/hooks/use-modal.mjs";
63
+ import { default as je } from "./pro-table/pro-table.vue.mjs";
64
+ import { default as Je } from "./pro-table/components/table-action.vue.mjs";
65
+ import { default as Ve } from "./pro-table/components/edit-table-header-icon.vue.mjs";
66
+ import { default as _e } from "./pro-table/components/table-image.vue.mjs";
67
+ import { useTable as or } from "./pro-table/hooks/use-table.mjs";
68
+ import { ApFormItemText as rr } from "./ap-form/items/text/index.mjs";
69
+ import { default as ar } from "./ap-form/items/text-area/index.vue.mjs";
70
+ import { default as fr } from "./ap-form/items/number/index.vue.mjs";
71
+ import { default as lr } from "./ap-form/items/date/index.vue.mjs";
72
+ import { default as sr } from "./ap-form/items/date-range/index.vue.mjs";
73
+ import { default as xr } from "./ap-form/items/radio/index.vue.mjs";
74
+ import { default as nr } from "./ap-form/items/select/index.vue.mjs";
75
+ import { default as cr } from "./ap-form/items/switch/index.vue.mjs";
76
+ import { default as Tr } from "./ap-form/items/checkbox/index.vue.mjs";
77
+ import { default as Sr } from "./ap-form/items/text/password.vue.mjs";
78
+ import { default as br } from "./ap-form/ap-form-item.vue.mjs";
79
+ import { default as Pr } from "./ap-form/ap-form-item-group/index.vue.mjs";
80
+ import { default as Rr } from "./ap-form/ap-form-list.vue.mjs";
81
+ import { default as vr } from "./ap-form/search-form/index.vue.mjs";
82
+ import { default as Mr } from "./ap-form/modal-form/index.vue.mjs";
83
+ import { ApFieldText as wr } from "./ap-field/text/index.mjs";
84
+ import { default as Lr } from "./ap-field/checkbox/index.vue.mjs";
85
+ import { default as Er } from "./ap-field/date/index.vue.mjs";
86
+ import { default as Xr } from "./ap-field/number/index.vue.mjs";
87
+ import { default as Yr } from "./ap-field/radio/index.vue.mjs";
88
+ import { default as Hr } from "./ap-field/switch/index.vue.mjs";
89
+ import { default as zr } from "./ap-field/text-area/index.vue.mjs";
90
+ import { default as jr } from "./ap-field/date-range/index.vue.mjs";
91
+ import { default as Jr } from "./ap-field/select/index.vue.mjs";
92
+ import { default as Vr } from "./ap-field/text/password.vue.mjs";
93
+ import { default as _r } from "./ap-field/slider/index.vue.mjs";
94
+ import { default as ot } from "./ap-field/segmented/index.vue.mjs";
95
+ import { default as rt } from "./ap-field/rate/index.vue.mjs";
96
+ import { default as at } from "./ap-action/item-modal/index.vue.mjs";
97
+ import { default as ft } from "./ap-action/item-popconfirm/index.vue.mjs";
98
+ import { default as lt } from "./ap-action/item-dropdown/index.vue.mjs";
99
+ import { default as st } from "./ap-action/group/index.vue.mjs";
100
+ import { generateTableList as xt } from "./ap-custom-column/utils.mjs";
101
+ import { useCacheColumnSetting as nt } from "./ap-custom-column/useCacheColumnSetting.mjs";
102
+ import { default as ct } from "./ap-custom-column/custom-column.vue.mjs";
103
+ import { default as Tt } from "./ap-custom-column/column-select.vue.mjs";
104
+ import { DictCode as St } from "./work-order-modal/interfaces.mjs";
105
+ import { createWorkOrderModal as bt } from "./work-order-modal/createWorkOrder.mjs";
106
+ import { default as Pt } from "./work-order-modal/work-order-modal.vue.mjs";
107
+ import { default as Rt } from "./ap-tag/ap-tag.vue.mjs";
108
+ import { default as vt } from "./ap-tag/ap-tag-group.vue.mjs";
109
+ import { default as Mt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
110
+ import { NeedNameKeyDefault as wt } from "./ap-upload/apUploadTypes.mjs";
111
+ import { default as Lt } from "./ap-upload/apUpload.vue.mjs";
112
+ import { default as Et } from "./ap-download/ap-download.vue.mjs";
113
+ import { default as Xt } from "./check-card/group.vue.mjs";
114
+ import { default as Yt } from "./ap-list/index.vue.mjs";
115
+ import { useTablePaging as Ht } from "./ap-table/hooks/use-table-paging.mjs";
116
+ import { default as zt } from "./ap-table/ap-table.vue.mjs";
117
+ import { default as jt } from "./editable-table/index.vue.mjs";
118
+ import { default as Jt } from "./editable-table/form-item.vue.mjs";
119
+ import { default as Vt } from "./ap-descriptions/ap-descriptions.vue.mjs";
120
120
  export {
121
121
  F as APConfigProvider,
122
- dt as ApActionGroup,
122
+ st as ApActionGroup,
123
123
  To as ApActionItem,
124
- mt as ApActionItemDropdown,
125
- tt as ApActionItemModal,
126
- pt as ApActionItemPopconfirm,
127
- At as ApCustomColumn,
128
- Ft as ApCustomSelect,
129
- Qt as ApDescriptions,
130
- yt as ApDownload,
124
+ lt as ApActionItemDropdown,
125
+ at as ApActionItemModal,
126
+ ft as ApActionItemPopconfirm,
127
+ ct as ApCustomColumn,
128
+ Tt as ApCustomSelect,
129
+ Vt as ApDescriptions,
130
+ Et as ApDownload,
131
131
  Po as ApExpandAlert,
132
132
  Do as ApExportGroup,
133
133
  uo as ApField,
134
- Br as ApFieldCheckbox,
135
- yr as ApFieldDate,
136
- Ur as ApFieldDateRange,
137
- Nr as ApFieldNumber,
138
- Qr as ApFieldPassword,
139
- Kr as ApFieldRadio,
140
- et as ApFieldRate,
141
- $r as ApFieldSegmented,
142
- qr as ApFieldSelect,
143
- Zr as ApFieldSlider,
144
- Or as ApFieldSwitch,
145
- kr as ApFieldText,
146
- Wr as ApFieldTextArea,
134
+ Lr as ApFieldCheckbox,
135
+ Er as ApFieldDate,
136
+ jr as ApFieldDateRange,
137
+ Xr as ApFieldNumber,
138
+ Vr as ApFieldPassword,
139
+ Yr as ApFieldRadio,
140
+ rt as ApFieldRate,
141
+ ot as ApFieldSegmented,
142
+ Jr as ApFieldSelect,
143
+ _r as ApFieldSlider,
144
+ Hr as ApFieldSwitch,
145
+ wr as ApFieldText,
146
+ zr as ApFieldTextArea,
147
147
  io as ApForm,
148
- Ir as ApFormItem,
149
- Fr as ApFormItemCheckbox,
150
- mr as ApFormItemDate,
151
- dr as ApFormItemDateRange,
152
- gr as ApFormItemGroup,
153
- pr as ApFormItemNumber,
154
- ir as ApFormItemRadio,
155
- ur as ApFormItemSelect,
156
- Ar as ApFormItemSwitch,
157
- er as ApFormItemText,
158
- tr as ApFormItemTextArea,
159
- Cr as ApFormItemTextPassword,
160
- Dr as ApFormList,
161
- Gr as ApFormModalForm,
162
- Rr as ApFormSearchForm,
163
- Gt as ApInfoLayout,
148
+ br as ApFormItem,
149
+ Tr as ApFormItemCheckbox,
150
+ lr as ApFormItemDate,
151
+ sr as ApFormItemDateRange,
152
+ Pr as ApFormItemGroup,
153
+ fr as ApFormItemNumber,
154
+ xr as ApFormItemRadio,
155
+ nr as ApFormItemSelect,
156
+ cr as ApFormItemSwitch,
157
+ rr as ApFormItemText,
158
+ ar as ApFormItemTextArea,
159
+ Sr as ApFormItemTextPassword,
160
+ Rr as ApFormList,
161
+ Mr as ApFormModalForm,
162
+ vr as ApFormSearchForm,
163
+ Mt as ApInfoLayout,
164
+ Ro as ApInputRadio,
164
165
  ho as ApLabel,
165
- Kt as ApList,
166
+ Yt as ApList,
166
167
  bo as ApModal,
167
- Ro as ApSelectLayout,
168
- vo as ApStatus,
169
- Go as ApStatusGroup,
170
- Wt as ApTable,
171
- Dt as ApTag,
172
- Rt as ApTagGroup,
173
- Mo as ApTitle,
174
- Bt as ApUpload,
175
- ce as ApiCascader,
176
- Te as ApiRadioGroup,
177
- Se as ApiSelect,
178
- be as ApiTransfer,
179
- Pe as ApiTree,
180
- Me as ApiTreeSelect,
168
+ vo as ApSelectLayout,
169
+ Go as ApStatus,
170
+ Mo as ApStatusGroup,
171
+ zt as ApTable,
172
+ Rt as ApTag,
173
+ vt as ApTagGroup,
174
+ ko as ApTitle,
175
+ Lt as ApUpload,
176
+ Fe as ApiCascader,
177
+ Ce as ApiRadioGroup,
178
+ Ie as ApiSelect,
179
+ ge as ApiTransfer,
180
+ De as ApiTree,
181
+ ke as ApiTreeSelect,
181
182
  J as BaseButton,
182
183
  _ as BaseModal,
183
- h as BasicArrow,
184
- R as BasicHelp,
184
+ R as BasicArrow,
185
+ h as BasicHelp,
185
186
  v as BasicTitle,
186
187
  So as CheckCard,
187
- Nt as CheckCardGroup,
188
+ Xt as CheckCardGroup,
188
189
  I as CollapseContainer,
189
- pe as CollapseTransition,
190
- _o as ConfigProvider,
190
+ fe as CollapseTransition,
191
+ $o as ConfigProvider,
191
192
  to as CountdownButton,
192
193
  ao as CountdownInput,
193
194
  oo as CropperAvatar,
194
195
  eo as CropperImage,
195
196
  z as Description,
196
- Ct as DictCode,
197
+ St as DictCode,
197
198
  lo as Dropdown,
198
- Qe as EditTableHeaderIcon,
199
- Ut as EditableTable,
200
- qt as EditableTableFormItem,
199
+ Ve as EditTableHeaderIcon,
200
+ jt as EditableTable,
201
+ Jt as EditableTableFormItem,
201
202
  M as ExpandTransition,
202
203
  k as ExpandXTransition,
203
204
  w as FadeTransition,
204
205
  j as Field,
205
206
  n as Icon,
206
207
  P as IconPicker,
207
- Ee as ModalButton,
208
- kt as NeedNameKeyDefault,
209
- Xe as PopConfirmButton,
210
- ve as ProForm,
211
- Ue as ProTable,
212
- we as ProTableForm,
213
- Le as ProTableFormInner,
208
+ Ne as ModalButton,
209
+ wt as NeedNameKeyDefault,
210
+ Ke as PopConfirmButton,
211
+ Ge as ProForm,
212
+ je as ProTable,
213
+ Be as ProTableForm,
214
+ ye as ProTableFormInner,
214
215
  he as RadioButtonGroup,
215
216
  B as ScaleRotateTransition,
216
217
  L as ScaleTransition,
@@ -226,41 +227,41 @@ export {
226
227
  H as SlideYTransition,
227
228
  V as StrengthMeter,
228
229
  A as SvgIcon,
229
- qe as TableAction,
230
- Ze as TableImg,
231
- gt as WorkOrderModal,
230
+ Je as TableAction,
231
+ _e as TableImg,
232
+ Pt as WorkOrderModal,
232
233
  Ao as adminToken,
233
234
  co as aplusToken,
234
- Oo as buildLocaleContext,
235
- Ho as buildTranslator,
236
- Lo as configProviderContextKey,
237
- wo as configProviderProps,
235
+ Ho as buildLocaleContext,
236
+ Wo as buildTranslator,
237
+ yo as configProviderContextKey,
238
+ Bo as configProviderProps,
238
239
  fo as createPrompt,
239
- It as createWorkOrderModal,
240
- qo as defaultNamespace,
241
- te as en,
242
- it as generateTableList,
243
- $o as globalConfigCached,
244
- ue as isComponentFormSchema,
245
- ne as isSlotFormSchema,
246
- No as keysOf,
247
- Wo as localeContextKey,
248
- Jo as namespaceContextKey,
249
- Xo as provideGlobalConfig,
250
- yo as tableDefaultConfig,
251
- zo as translate,
252
- ut as useCacheColumnSetting,
253
- de as useComponentRegister,
254
- me as useDescription,
255
- ie as useForm,
256
- Qo as useGetDerivedNamespace,
257
- Ko as useGlobalConfig,
258
- Uo as useLocale,
259
- He as useModal,
260
- Ye as useModalContext,
261
- We as useModalInner,
262
- Vo as useNamespace,
263
- $e as useTable,
264
- Ot as useTablePaging,
265
- ee as zhCn
240
+ bt as createWorkOrderModal,
241
+ Jo as defaultNamespace,
242
+ ae as en,
243
+ xt as generateTableList,
244
+ oe as globalConfigCached,
245
+ ne as isComponentFormSchema,
246
+ Ae as isSlotFormSchema,
247
+ Xo as keysOf,
248
+ zo as localeContextKey,
249
+ Qo as namespaceContextKey,
250
+ Ko as provideGlobalConfig,
251
+ Eo as tableDefaultConfig,
252
+ Uo as translate,
253
+ nt as useCacheColumnSetting,
254
+ se as useComponentRegister,
255
+ le as useDescription,
256
+ xe as useForm,
257
+ Vo as useGetDerivedNamespace,
258
+ Yo as useGlobalConfig,
259
+ jo as useLocale,
260
+ We as useModal,
261
+ Oe as useModalContext,
262
+ ze as useModalInner,
263
+ Zo as useNamespace,
264
+ or as useTable,
265
+ Ht as useTablePaging,
266
+ re as zhCn
266
267
  };
@@ -0,0 +1,7 @@
1
+ .aplus-ap-input-radio {
2
+ display: flex;
3
+ align-items: center;
4
+ }
5
+ .aplus-ap-input-radio__input-number {
6
+ margin-right: 16px;
7
+ }