@aplus-frontend/ui 0.1.15 → 0.1.17
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 +99 -95
- package/es/src/ap-form/ap-form-item-group/index.vue.mjs +26 -24
- package/es/src/ap-modal/index.d.ts +2 -2
- package/es/src/ap-modal/index.mjs +1 -1
- package/es/src/ap-modal/{type.d.ts → interface.d.ts} +3 -3
- package/es/src/ap-modal/utils/createModal.d.ts +1 -1
- package/es/src/ap-table/ap-table.vue.mjs +132 -129
- package/es/src/ap-table/interface.d.ts +19 -13
- package/es/src/ap-table/utils.d.ts +8340 -1
- package/es/src/ap-table/utils.mjs +134 -78
- package/es/src/business/ap-batch-action/index.css +2 -0
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +13 -0
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue.mjs +4 -0
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.mjs +110 -0
- package/es/src/business/ap-batch-action-group/MenuItemGroup.vue.d.ts +17 -0
- package/es/src/business/ap-batch-action-group/MenuItemGroup.vue.mjs +4 -0
- package/es/src/business/ap-batch-action-group/MenuItemGroup.vue2.mjs +50 -0
- package/es/src/business/ap-batch-action-group/interface.d.ts +41 -0
- package/es/src/business/ap-batch-action-group/interface.mjs +1 -0
- package/es/src/business/ap-image/ApImage.vue.d.ts +65 -0
- package/es/src/business/ap-image/ApImage.vue.mjs +4 -0
- package/es/src/business/ap-image/ApImage.vue2.mjs +56 -0
- package/es/src/business/ap-image/hooks/useOss.d.ts +11 -0
- package/es/src/business/ap-image/hooks/useOss.mjs +37 -0
- package/es/src/business/ap-image/imgs/admin-fallback.jpg.mjs +4 -0
- package/es/src/business/ap-image/imgs/aplus-fallback.jpg.mjs +4 -0
- package/es/src/business/index.d.ts +662 -1
- package/es/src/business/index.mjs +25 -16
- package/es/src/config-provider/config-provider-props.d.ts +5 -1
- package/es/src/config-provider/config-provider-props.mjs +4 -0
- package/es/src/config-provider/config-provider.d.ts +10 -1
- package/es/src/config-provider/config-provider.mjs +18 -17
- package/es/src/config-provider/constants.d.ts +6 -2
- package/es/src/config-provider/hooks/use-global-config.d.ts +5 -1
- package/es/src/config-provider/index.d.ts +20 -1
- package/es/src/editable-table/form-item.vue.mjs +85 -71
- package/es/src/editable-table/hooks/use-get-columns.d.ts +3 -2
- package/es/src/editable-table/hooks/use-get-columns.mjs +32 -32
- package/es/src/editable-table/index.vue.mjs +106 -92
- package/es/src/editable-table/interface.d.ts +7 -13
- package/es/src/editable-table/utils.d.ts +14 -2
- package/es/src/editable-table/utils.mjs +67 -57
- package/es/src/index.mjs +211 -207
- package/es/src/locale/lang/en.mjs +10 -7
- package/es/src/locale/lang/zh-cn.mjs +3 -0
- package/es/src/pro-form/hooks/use-label-width.d.ts +1 -1
- package/es/src/theme/antd-global-overwrite/admin/form.css +10 -5
- package/es/src/theme/antd-global-overwrite/admin/index.css +117 -38
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
- package/es/src/theme/antd-global-overwrite/admin/table.css +53 -17
- package/es/src/theme/antd-global-overwrite/aplus/form.css +28 -14
- package/es/src/theme/antd-global-overwrite/aplus/index.css +159 -67
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
- package/es/src/theme/antd-global-overwrite/aplus/table.css +65 -33
- package/es/src/theme/ap-batch-action/ap-batch-action.css +2 -0
- package/es/src/utils/ap-trans-data/index.d.ts +9 -10
- package/es/src/utils/ap-trans-data/index.mjs +20 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-form/ap-form-item-group/index.vue.js +1 -1
- package/lib/src/ap-modal/index.d.ts +2 -2
- package/lib/src/ap-modal/index.js +1 -1
- package/lib/src/ap-modal/{type.d.ts → interface.d.ts} +3 -3
- package/lib/src/ap-modal/utils/createModal.d.ts +1 -1
- package/lib/src/ap-table/ap-table.vue.js +1 -1
- package/lib/src/ap-table/interface.d.ts +19 -13
- package/lib/src/ap-table/utils.d.ts +8340 -1
- package/lib/src/ap-table/utils.js +1 -1
- package/lib/src/business/ap-batch-action/index.css +2 -0
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +13 -0
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue.js +1 -0
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.js +1 -0
- package/lib/src/business/ap-batch-action-group/MenuItemGroup.vue.d.ts +17 -0
- package/lib/src/business/ap-batch-action-group/MenuItemGroup.vue.js +1 -0
- package/lib/src/business/ap-batch-action-group/MenuItemGroup.vue2.js +1 -0
- package/lib/src/business/ap-batch-action-group/interface.d.ts +41 -0
- package/lib/src/business/ap-batch-action-group/interface.js +1 -0
- package/lib/src/business/ap-image/ApImage.vue.d.ts +65 -0
- package/lib/src/business/ap-image/ApImage.vue.js +1 -0
- package/lib/src/business/ap-image/ApImage.vue2.js +1 -0
- package/lib/src/business/ap-image/hooks/useOss.d.ts +11 -0
- package/lib/src/business/ap-image/hooks/useOss.js +1 -0
- package/lib/src/business/ap-image/imgs/admin-fallback.jpg.js +1 -0
- package/lib/src/business/ap-image/imgs/aplus-fallback.jpg.js +1 -0
- package/lib/src/business/index.d.ts +662 -1
- package/lib/src/business/index.js +1 -1
- package/lib/src/config-provider/config-provider-props.d.ts +5 -1
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/config-provider.d.ts +10 -1
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/constants.d.ts +6 -2
- package/lib/src/config-provider/hooks/use-global-config.d.ts +5 -1
- package/lib/src/config-provider/index.d.ts +20 -1
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/editable-table/hooks/use-get-columns.d.ts +3 -2
- package/lib/src/editable-table/hooks/use-get-columns.js +1 -1
- package/lib/src/editable-table/index.vue.js +1 -1
- package/lib/src/editable-table/interface.d.ts +7 -13
- package/lib/src/editable-table/utils.d.ts +14 -2
- package/lib/src/editable-table/utils.js +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/lib/src/pro-form/hooks/use-label-width.d.ts +1 -1
- package/lib/src/theme/antd-global-overwrite/admin/form.css +10 -5
- package/lib/src/theme/antd-global-overwrite/admin/index.css +117 -38
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
- package/lib/src/theme/antd-global-overwrite/admin/table.css +53 -17
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +28 -14
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +159 -67
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +65 -33
- package/lib/src/theme/ap-batch-action/ap-batch-action.css +2 -0
- package/lib/src/utils/ap-trans-data/index.d.ts +9 -10
- package/lib/src/utils/ap-trans-data/index.js +1 -0
- package/package.json +2 -2
- /package/es/src/ap-modal/{type.mjs → interface.mjs} +0 -0
- /package/lib/src/ap-modal/{type.js → interface.js} +0 -0
package/es/src/index.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Icon as n, SvgIcon as A } from "./icon/index.mjs";
|
|
2
|
-
import { APConfigProvider as
|
|
2
|
+
import { APConfigProvider as T } from "./config-provider/index.mjs";
|
|
3
3
|
import { Scrollbar as C } from "./scroll-bar/index.mjs";
|
|
4
4
|
import { CollapseContainer as I, ScrollContainer as b } from "./container/index.mjs";
|
|
5
|
-
import { IconPicker as
|
|
5
|
+
import { IconPicker as D } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
|
-
import { BasicArrow as h, BasicHelp as R, BasicTitle as
|
|
8
|
-
import { ExpandTransition as
|
|
7
|
+
import { BasicArrow as h, BasicHelp as R, BasicTitle as G } from "./basic/index.mjs";
|
|
8
|
+
import { ExpandTransition as B, ExpandXTransition as w, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as H, SlideYTransition as O } 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";
|
|
11
11
|
import { BaseButton as J } from "./base-button/index.mjs";
|
|
@@ -19,7 +19,7 @@ import "./pro-table/index.mjs";
|
|
|
19
19
|
import { ApForm as io } from "./ap-form/index.mjs";
|
|
20
20
|
import { ApField as uo } from "./ap-field/index.mjs";
|
|
21
21
|
import { adminToken as Ao, aplusToken as co } from "./design-token/index.mjs";
|
|
22
|
-
import { ApActionItem as
|
|
22
|
+
import { ApActionItem as Fo } from "./ap-action/index.mjs";
|
|
23
23
|
import "./ap-custom-column/index.mjs";
|
|
24
24
|
import "./work-order-modal/index.mjs";
|
|
25
25
|
import "./ap-tag/index.mjs";
|
|
@@ -29,194 +29,198 @@ 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 { ApBatchAction as Po, ApExpandAlert as
|
|
32
|
+
import { ApBatchAction as Do, ApBatchActionGroup as Po, ApExpandAlert as ho, ApExportGroup as Ro, ApImage as Go, ApInputRadio as vo, ApLabel as Bo, ApLabelGroup as wo, ApSelectLayout as Mo, ApStatus as ko, ApStatusGroup as Lo, ApTitle as No } 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
|
|
37
|
-
import { configProviderContextKey as
|
|
38
|
-
import { keysOf as
|
|
39
|
-
import { buildLocaleContext as
|
|
40
|
-
import { defaultNamespace as
|
|
41
|
-
import { ConfigProvider as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { useDescription as
|
|
46
|
-
import { useComponentRegister as
|
|
47
|
-
import { useForm as
|
|
48
|
-
import { isComponentFormSchema as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { useModalContext as
|
|
62
|
-
import { useModal as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { useTable as
|
|
68
|
-
import { ApFormItemText as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { ApFieldText as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { generateTableList as
|
|
101
|
-
import { useCacheColumnSetting as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { DictCode as
|
|
105
|
-
import { createWorkOrderModal as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { NeedNameKeyDefault as
|
|
111
|
-
import { default as
|
|
112
|
-
import { ApDownLoadNeedNameKeyDefault as
|
|
113
|
-
import { default as
|
|
114
|
-
import { default as
|
|
115
|
-
import { default as
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import { default as
|
|
119
|
-
import { default as
|
|
120
|
-
import { default as
|
|
36
|
+
import { configProviderProps as Eo } from "./config-provider/config-provider-props.mjs";
|
|
37
|
+
import { configProviderContextKey as Xo, tableDefaultConfig as Yo } from "./config-provider/constants.mjs";
|
|
38
|
+
import { keysOf as Oo, provideGlobalConfig as Wo, useGlobalConfig as zo } from "./config-provider/hooks/use-global-config.mjs";
|
|
39
|
+
import { buildLocaleContext as jo, buildTranslator as qo, localeContextKey as Jo, translate as Qo, useLocale as Vo } from "./config-provider/hooks/use-locale.mjs";
|
|
40
|
+
import { defaultNamespace as _o, namespaceContextKey as $o, useGetDerivedNamespace as oe, useNamespace as ee } from "./config-provider/hooks/use-namespace.mjs";
|
|
41
|
+
import { ConfigProvider as te, globalConfigCached as ae } from "./config-provider/config-provider.mjs";
|
|
42
|
+
import { default as fe } from "./locale/lang/zh-cn.mjs";
|
|
43
|
+
import { default as le } from "./locale/lang/en.mjs";
|
|
44
|
+
import { default as se } from "./transition/collapse-transition.vue.mjs";
|
|
45
|
+
import { useDescription as xe } from "./description/use-description.mjs";
|
|
46
|
+
import { useComponentRegister as ne } from "./pro-form/hooks/use-component-register.mjs";
|
|
47
|
+
import { useForm as ce } from "./pro-form/hooks/use-form.mjs";
|
|
48
|
+
import { isComponentFormSchema as Fe, isSlotFormSchema as Ce } from "./pro-form/types/form.mjs";
|
|
49
|
+
import { default as Ie } from "./pro-form/components/api-cascader.vue.mjs";
|
|
50
|
+
import { default as ge } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
51
|
+
import { default as Pe } from "./pro-form/components/api-select.vue.mjs";
|
|
52
|
+
import { default as Re } from "./pro-form/components/api-transfer.vue.mjs";
|
|
53
|
+
import { default as ve } from "./pro-form/components/api-tree.vue.mjs";
|
|
54
|
+
import { default as we } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
55
|
+
import { default as ke } from "./pro-form/pro-form.vue.mjs";
|
|
56
|
+
import { default as Ne } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
57
|
+
import { default as Ee } from "./pro-form/table-form.vue.mjs";
|
|
58
|
+
import { default as Xe } from "./pro-form/table-form-inner.vue.mjs";
|
|
59
|
+
import { default as He } from "./base-button/modal-button.vue.mjs";
|
|
60
|
+
import { default as We } from "./base-button/pop-confirm-button.vue.mjs";
|
|
61
|
+
import { useModalContext as Ue } from "./modal/hooks/use-modal-context.mjs";
|
|
62
|
+
import { useModal as qe, useModalInner as Je } from "./modal/hooks/use-modal.mjs";
|
|
63
|
+
import { default as Ve } from "./pro-table/pro-table.vue.mjs";
|
|
64
|
+
import { default as _e } from "./pro-table/components/table-action.vue.mjs";
|
|
65
|
+
import { default as or } from "./pro-table/components/edit-table-header-icon.vue.mjs";
|
|
66
|
+
import { default as rr } from "./pro-table/components/table-image.vue.mjs";
|
|
67
|
+
import { useTable as ar } from "./pro-table/hooks/use-table.mjs";
|
|
68
|
+
import { ApFormItemText as fr } from "./ap-form/items/text/index.mjs";
|
|
69
|
+
import { default as lr } from "./ap-form/items/text-area/index.vue.mjs";
|
|
70
|
+
import { default as sr } from "./ap-form/items/number/index.vue.mjs";
|
|
71
|
+
import { default as xr } from "./ap-form/items/date/index.vue.mjs";
|
|
72
|
+
import { default as nr } from "./ap-form/items/date-range/index.vue.mjs";
|
|
73
|
+
import { default as cr } from "./ap-form/items/radio/index.vue.mjs";
|
|
74
|
+
import { default as Fr } from "./ap-form/items/select/index.vue.mjs";
|
|
75
|
+
import { default as Sr } from "./ap-form/items/switch/index.vue.mjs";
|
|
76
|
+
import { default as br } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
77
|
+
import { default as Dr } from "./ap-form/items/text/password.vue.mjs";
|
|
78
|
+
import { default as hr } 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 Br } from "./ap-form/ap-form-list.vue.mjs";
|
|
81
|
+
import { default as Mr } from "./ap-form/search-form/index.vue.mjs";
|
|
82
|
+
import { default as Lr } from "./ap-form/modal-form/index.vue.mjs";
|
|
83
|
+
import { ApFieldText as yr } from "./ap-field/text/index.mjs";
|
|
84
|
+
import { default as Kr } from "./ap-field/checkbox/index.vue.mjs";
|
|
85
|
+
import { default as Yr } from "./ap-field/date/index.vue.mjs";
|
|
86
|
+
import { default as Or } from "./ap-field/number/index.vue.mjs";
|
|
87
|
+
import { default as zr } from "./ap-field/radio/index.vue.mjs";
|
|
88
|
+
import { default as jr } from "./ap-field/switch/index.vue.mjs";
|
|
89
|
+
import { default as Jr } from "./ap-field/text-area/index.vue.mjs";
|
|
90
|
+
import { default as Vr } from "./ap-field/date-range/index.vue.mjs";
|
|
91
|
+
import { default as _r } from "./ap-field/select/index.vue.mjs";
|
|
92
|
+
import { default as ot } from "./ap-field/text/password.vue.mjs";
|
|
93
|
+
import { default as rt } from "./ap-field/slider/index.vue.mjs";
|
|
94
|
+
import { default as at } from "./ap-field/segmented/index.vue.mjs";
|
|
95
|
+
import { default as ft } from "./ap-field/rate/index.vue.mjs";
|
|
96
|
+
import { default as lt } from "./ap-action/item-modal/index.vue.mjs";
|
|
97
|
+
import { default as st } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
98
|
+
import { default as xt } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
99
|
+
import { default as nt } from "./ap-action/group/index.vue.mjs";
|
|
100
|
+
import { generateTableList as ct } from "./ap-custom-column/utils.mjs";
|
|
101
|
+
import { useCacheColumnSetting as Ft } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
102
|
+
import { default as St } from "./ap-custom-column/custom-column.vue.mjs";
|
|
103
|
+
import { default as bt } from "./ap-custom-column/column-select.vue.mjs";
|
|
104
|
+
import { DictCode as Dt } from "./work-order-modal/interfaces.mjs";
|
|
105
|
+
import { createWorkOrderModal as ht } from "./work-order-modal/createWorkOrder.mjs";
|
|
106
|
+
import { default as Gt } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
107
|
+
import { default as Bt } from "./ap-tag/ap-tag.vue.mjs";
|
|
108
|
+
import { default as Mt } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
109
|
+
import { default as Lt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
|
|
110
|
+
import { NeedNameKeyDefault as yt } from "./ap-upload/apUploadTypes.mjs";
|
|
111
|
+
import { default as Kt } from "./ap-upload/apUpload.vue.mjs";
|
|
112
|
+
import { ApDownLoadNeedNameKeyDefault as Yt } from "./ap-download/interface.mjs";
|
|
113
|
+
import { default as Ot } from "./ap-download/ap-download.vue.mjs";
|
|
114
|
+
import { default as zt } from "./check-card/group.vue.mjs";
|
|
115
|
+
import { default as jt } from "./ap-list/index.vue.mjs";
|
|
116
|
+
import { ApTransformDataHelper as Jt } from "./utils/ap-trans-data/index.mjs";
|
|
117
|
+
import { useTablePaging as Vt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
118
|
+
import { default as _t } from "./ap-table/ap-table.vue.mjs";
|
|
119
|
+
import { default as oa } from "./editable-table/index.vue.mjs";
|
|
120
|
+
import { default as ra } from "./editable-table/form-item.vue.mjs";
|
|
121
|
+
import { default as aa } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
121
122
|
export {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
St as
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
Yt as
|
|
134
|
-
|
|
135
|
-
ho as
|
|
123
|
+
T as APConfigProvider,
|
|
124
|
+
nt as ApActionGroup,
|
|
125
|
+
Fo as ApActionItem,
|
|
126
|
+
xt as ApActionItemDropdown,
|
|
127
|
+
lt as ApActionItemModal,
|
|
128
|
+
st as ApActionItemPopconfirm,
|
|
129
|
+
Do as ApBatchAction,
|
|
130
|
+
Po as ApBatchActionGroup,
|
|
131
|
+
St as ApCustomColumn,
|
|
132
|
+
bt as ApCustomSelect,
|
|
133
|
+
aa as ApDescriptions,
|
|
134
|
+
Yt as ApDownLoadNeedNameKeyDefault,
|
|
135
|
+
Ot as ApDownload,
|
|
136
|
+
ho as ApExpandAlert,
|
|
137
|
+
Ro as ApExportGroup,
|
|
136
138
|
uo as ApField,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
139
|
+
Kr as ApFieldCheckbox,
|
|
140
|
+
Yr as ApFieldDate,
|
|
141
|
+
Vr as ApFieldDateRange,
|
|
142
|
+
Or as ApFieldNumber,
|
|
143
|
+
ot as ApFieldPassword,
|
|
144
|
+
zr as ApFieldRadio,
|
|
145
|
+
ft as ApFieldRate,
|
|
146
|
+
at as ApFieldSegmented,
|
|
147
|
+
_r as ApFieldSelect,
|
|
148
|
+
rt as ApFieldSlider,
|
|
149
|
+
jr as ApFieldSwitch,
|
|
150
|
+
yr as ApFieldText,
|
|
151
|
+
Jr as ApFieldTextArea,
|
|
150
152
|
io as ApForm,
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
vo as
|
|
169
|
-
|
|
170
|
-
|
|
153
|
+
hr as ApFormItem,
|
|
154
|
+
br as ApFormItemCheckbox,
|
|
155
|
+
xr as ApFormItemDate,
|
|
156
|
+
nr as ApFormItemDateRange,
|
|
157
|
+
Gr as ApFormItemGroup,
|
|
158
|
+
sr as ApFormItemNumber,
|
|
159
|
+
cr as ApFormItemRadio,
|
|
160
|
+
Fr as ApFormItemSelect,
|
|
161
|
+
Sr as ApFormItemSwitch,
|
|
162
|
+
fr as ApFormItemText,
|
|
163
|
+
lr as ApFormItemTextArea,
|
|
164
|
+
Dr as ApFormItemTextPassword,
|
|
165
|
+
Br as ApFormList,
|
|
166
|
+
Lr as ApFormModalForm,
|
|
167
|
+
Mr as ApFormSearchForm,
|
|
168
|
+
Go as ApImage,
|
|
169
|
+
Lt as ApInfoLayout,
|
|
170
|
+
vo as ApInputRadio,
|
|
171
|
+
Bo as ApLabel,
|
|
172
|
+
wo as ApLabelGroup,
|
|
173
|
+
jt as ApList,
|
|
171
174
|
bo as ApModal,
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
Ie as
|
|
182
|
-
ge as
|
|
183
|
-
|
|
184
|
-
Re as
|
|
185
|
-
|
|
175
|
+
Mo as ApSelectLayout,
|
|
176
|
+
ko as ApStatus,
|
|
177
|
+
Lo as ApStatusGroup,
|
|
178
|
+
_t as ApTable,
|
|
179
|
+
Bt as ApTag,
|
|
180
|
+
Mt as ApTagGroup,
|
|
181
|
+
No as ApTitle,
|
|
182
|
+
Jt as ApTransformDataHelper,
|
|
183
|
+
Kt as ApUpload,
|
|
184
|
+
Ie as ApiCascader,
|
|
185
|
+
ge as ApiRadioGroup,
|
|
186
|
+
Pe as ApiSelect,
|
|
187
|
+
Re as ApiTransfer,
|
|
188
|
+
ve as ApiTree,
|
|
189
|
+
Ne as ApiTreeSelect,
|
|
186
190
|
J as BaseButton,
|
|
187
191
|
_ as BaseModal,
|
|
188
192
|
h as BasicArrow,
|
|
189
193
|
R as BasicHelp,
|
|
190
|
-
|
|
194
|
+
G as BasicTitle,
|
|
191
195
|
So as CheckCard,
|
|
192
|
-
|
|
196
|
+
zt as CheckCardGroup,
|
|
193
197
|
I as CollapseContainer,
|
|
194
|
-
|
|
195
|
-
|
|
198
|
+
se as CollapseTransition,
|
|
199
|
+
te as ConfigProvider,
|
|
196
200
|
to as CountdownButton,
|
|
197
201
|
ao as CountdownInput,
|
|
198
202
|
oo as CropperAvatar,
|
|
199
203
|
eo as CropperImage,
|
|
200
204
|
z as Description,
|
|
201
|
-
|
|
205
|
+
Dt as DictCode,
|
|
202
206
|
lo as Dropdown,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
207
|
+
or as EditTableHeaderIcon,
|
|
208
|
+
oa as EditableTable,
|
|
209
|
+
ra as EditableTableFormItem,
|
|
210
|
+
B as ExpandTransition,
|
|
211
|
+
w as ExpandXTransition,
|
|
208
212
|
M as FadeTransition,
|
|
209
213
|
j as Field,
|
|
210
214
|
n as Icon,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
215
|
+
D as IconPicker,
|
|
216
|
+
He as ModalButton,
|
|
217
|
+
yt as NeedNameKeyDefault,
|
|
218
|
+
We as PopConfirmButton,
|
|
219
|
+
ke as ProForm,
|
|
220
|
+
Ve as ProTable,
|
|
221
|
+
Ee as ProTableForm,
|
|
222
|
+
Xe as ProTableFormInner,
|
|
223
|
+
we as RadioButtonGroup,
|
|
220
224
|
k as ScaleRotateTransition,
|
|
221
225
|
L as ScaleTransition,
|
|
222
226
|
b as ScrollContainer,
|
|
@@ -227,45 +231,45 @@ export {
|
|
|
227
231
|
C as Scrollbar,
|
|
228
232
|
X as SlideXReverseTransition,
|
|
229
233
|
Y as SlideXTransition,
|
|
230
|
-
|
|
231
|
-
|
|
234
|
+
H as SlideYReverseTransition,
|
|
235
|
+
O as SlideYTransition,
|
|
232
236
|
V as StrengthMeter,
|
|
233
237
|
A as SvgIcon,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
238
|
+
_e as TableAction,
|
|
239
|
+
rr as TableImg,
|
|
240
|
+
Gt as WorkOrderModal,
|
|
237
241
|
Ao as adminToken,
|
|
238
242
|
co as aplusToken,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
+
jo as buildLocaleContext,
|
|
244
|
+
qo as buildTranslator,
|
|
245
|
+
Xo as configProviderContextKey,
|
|
246
|
+
Eo as configProviderProps,
|
|
243
247
|
fo as createPrompt,
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
248
|
+
ht as createWorkOrderModal,
|
|
249
|
+
_o as defaultNamespace,
|
|
250
|
+
le as en,
|
|
251
|
+
ct as generateTableList,
|
|
252
|
+
ae as globalConfigCached,
|
|
253
|
+
Fe as isComponentFormSchema,
|
|
254
|
+
Ce as isSlotFormSchema,
|
|
255
|
+
Oo as keysOf,
|
|
256
|
+
Jo as localeContextKey,
|
|
257
|
+
$o as namespaceContextKey,
|
|
258
|
+
Wo as provideGlobalConfig,
|
|
259
|
+
Yo as tableDefaultConfig,
|
|
260
|
+
Qo as translate,
|
|
261
|
+
Ft as useCacheColumnSetting,
|
|
262
|
+
ne as useComponentRegister,
|
|
263
|
+
xe as useDescription,
|
|
264
|
+
ce as useForm,
|
|
265
|
+
oe as useGetDerivedNamespace,
|
|
266
|
+
zo as useGlobalConfig,
|
|
267
|
+
Vo as useLocale,
|
|
268
|
+
qe as useModal,
|
|
269
|
+
Ue as useModalContext,
|
|
270
|
+
Je as useModalInner,
|
|
271
|
+
ee as useNamespace,
|
|
272
|
+
ar as useTable,
|
|
273
|
+
Vt as useTablePaging,
|
|
274
|
+
fe as zhCn
|
|
271
275
|
};
|
|
@@ -110,15 +110,18 @@ const e = {
|
|
|
110
110
|
foldersNotSupported: "Do not support uploading folders"
|
|
111
111
|
},
|
|
112
112
|
apExportGroup: {
|
|
113
|
-
exportError: "
|
|
114
|
-
exportSelected: "
|
|
115
|
-
exportAll: "
|
|
116
|
-
export: "
|
|
113
|
+
exportError: "Export error",
|
|
114
|
+
exportSelected: "Export selected",
|
|
115
|
+
exportAll: "Export all",
|
|
116
|
+
export: "Export"
|
|
117
117
|
},
|
|
118
118
|
apBatchAction: {
|
|
119
|
-
selected: "
|
|
120
|
-
piecesOfData: "
|
|
121
|
-
empty: "
|
|
119
|
+
selected: "Selected",
|
|
120
|
+
piecesOfData: "Pieces of data",
|
|
121
|
+
empty: "Empty"
|
|
122
|
+
},
|
|
123
|
+
apApBatchActionGroup: {
|
|
124
|
+
batchOperation: "Batch operation"
|
|
122
125
|
}
|
|
123
126
|
}
|
|
124
127
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Ref, ComputedRef, ExtractPropTypes, PropType, HTMLAttributes } from 'vue';
|
|
2
2
|
import { ProFormProps, FormSchemaInner as FormSchema } from '../types/form';
|
|
3
|
-
import { ColSize } from 'ant-design-vue/lib/grid
|
|
3
|
+
import { ColSize } from 'ant-design-vue/lib/grid';
|
|
4
4
|
export declare function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsRef: Ref<ProFormProps>): ComputedRef<{
|
|
5
5
|
labelCol: Partial< ExtractPropTypes<{
|
|
6
6
|
span: (StringConstructor | NumberConstructor)[];
|
|
@@ -37,22 +37,27 @@
|
|
|
37
37
|
input.ant-input[disabled] {
|
|
38
38
|
color: #666666;
|
|
39
39
|
}
|
|
40
|
-
div[class
|
|
40
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'],
|
|
41
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] {
|
|
41
42
|
padding: 16px;
|
|
42
43
|
}
|
|
43
|
-
div[class
|
|
44
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content,
|
|
45
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
44
46
|
display: flex;
|
|
45
47
|
align-items: center;
|
|
46
48
|
justify-content: flex-end;
|
|
47
49
|
}
|
|
48
|
-
div[class
|
|
50
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary,
|
|
51
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
49
52
|
order: 1;
|
|
50
53
|
}
|
|
51
|
-
div[class
|
|
54
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default,
|
|
55
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
52
56
|
order: 2;
|
|
53
57
|
margin-right: 0;
|
|
54
58
|
}
|
|
55
|
-
div[class
|
|
59
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link,
|
|
60
|
+
div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
56
61
|
order: 3;
|
|
57
62
|
margin-left: 0.5rem;
|
|
58
63
|
}
|