@aplus-frontend/ui 0.1.24 → 0.1.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.
- package/es/index.mjs +58 -55
- package/es/src/ap-form/ap-form-item.vue.mjs +26 -26
- package/es/src/ap-form/search-form/index.vue.mjs +1 -0
- package/es/src/ap-layout/ApInfoLayout.vue.d.ts +81 -0
- package/es/src/ap-layout/ApInfoLayout.vue.mjs +41 -0
- package/es/src/ap-layout/ApInfoLayout.vue2.mjs +4 -0
- package/es/src/ap-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue.d.ts +48 -0
- package/es/src/ap-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue.mjs +4 -0
- package/es/src/ap-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue2.mjs +42 -0
- package/es/src/ap-layout/{ap-info-layout → ap-info-layout-aplus}/ap-info-layout.vue.d.ts +3 -3
- package/es/src/ap-layout/ap-info-layout-aplus/ap-info-layout.vue.mjs +4 -0
- package/es/src/ap-layout/index.d.ts +2 -1
- package/es/src/ap-layout/index.mjs +2 -1
- package/es/src/ap-layout/interface.d.ts +8 -2
- package/es/src/ap-layout/interface.mjs +1 -0
- package/es/src/ap-layout/style/ap-info-layout.css +17 -0
- package/es/src/ap-upload/components/MultipleFile.vue2.mjs +91 -89
- package/es/src/ap-upload/components/Picture.vue2.mjs +114 -112
- package/es/src/ap-upload/components/SingleFile.vue2.mjs +10 -7
- package/es/src/business/ap-input-radio/ApInputRadio.vue2.mjs +37 -27
- package/es/src/business/ap-input-radio/interface.d.ts +4 -3
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +159 -0
- package/es/src/business/ap-ladder/ApLadder.vue.mjs +4 -0
- package/es/src/business/ap-ladder/ApLadder.vue2.mjs +176 -0
- package/es/src/business/ap-ladder/interface.d.ts +134 -0
- package/es/src/business/ap-ladder/interface.mjs +10 -0
- package/es/src/business/ap-ladder/style.css +56 -0
- package/es/src/business/hooks/index.d.ts +1 -0
- package/es/src/business/hooks/index.mjs +3 -1
- package/es/src/business/hooks/usePageListApTable.d.ts +25 -3
- package/es/src/business/hooks/usePageListApTable.mjs +40 -29
- package/es/src/business/hooks/useTableRefresh.d.ts +17 -0
- package/es/src/business/hooks/useTableRefresh.mjs +16 -0
- package/es/src/business/index.d.ts +719 -9
- package/es/src/business/index.mjs +25 -22
- package/es/src/components.d.ts +1 -0
- package/es/src/index.mjs +206 -203
- package/es/src/theme/antd-global-overwrite/aplus/index.css +8 -0
- package/es/src/theme/antd-global-overwrite/aplus/table.css +8 -0
- package/es/src/theme/ap-ladder/ap-ladder.css +56 -0
- package/es/src/theme/ap-layout/ap-info-layout.css +17 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-form/ap-form-item.vue.js +1 -1
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-layout/ApInfoLayout.vue.d.ts +81 -0
- package/lib/src/ap-layout/ApInfoLayout.vue.js +1 -0
- package/lib/src/ap-layout/ApInfoLayout.vue2.js +1 -0
- package/lib/src/ap-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue.d.ts +48 -0
- package/lib/src/ap-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue.js +1 -0
- package/lib/src/ap-layout/ap-info-layout-admin/ApInfoLayoutAdmin.vue2.js +1 -0
- package/lib/src/ap-layout/{ap-info-layout → ap-info-layout-aplus}/ap-info-layout.vue.d.ts +3 -3
- package/lib/src/ap-layout/{ap-info-layout/ap-info-layout.vue2.js → ap-info-layout-aplus/ap-info-layout.vue.js} +1 -1
- package/lib/src/ap-layout/index.d.ts +2 -1
- package/lib/src/ap-layout/index.js +1 -1
- package/lib/src/ap-layout/interface.d.ts +8 -2
- package/lib/src/ap-layout/interface.js +1 -0
- package/lib/src/ap-layout/style/ap-info-layout.css +17 -0
- package/lib/src/ap-upload/components/MultipleFile.vue2.js +1 -1
- package/lib/src/ap-upload/components/Picture.vue2.js +1 -1
- package/lib/src/ap-upload/components/SingleFile.vue2.js +1 -1
- package/lib/src/business/ap-input-radio/ApInputRadio.vue2.js +1 -1
- package/lib/src/business/ap-input-radio/interface.d.ts +4 -3
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +159 -0
- package/lib/src/business/ap-ladder/ApLadder.vue.js +1 -0
- package/lib/src/business/ap-ladder/ApLadder.vue2.js +1 -0
- package/lib/src/business/ap-ladder/interface.d.ts +134 -0
- package/lib/src/business/ap-ladder/interface.js +1 -0
- package/lib/src/business/ap-ladder/style.css +56 -0
- package/lib/src/business/hooks/index.d.ts +1 -0
- package/lib/src/business/hooks/index.js +1 -1
- package/lib/src/business/hooks/usePageListApTable.d.ts +25 -3
- package/lib/src/business/hooks/usePageListApTable.js +1 -1
- package/lib/src/business/hooks/useTableRefresh.d.ts +17 -0
- package/lib/src/business/hooks/useTableRefresh.js +1 -0
- package/lib/src/business/index.d.ts +719 -9
- package/lib/src/business/index.js +1 -1
- package/lib/src/components.d.ts +1 -0
- package/lib/src/index.js +1 -1
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +8 -0
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +8 -0
- package/lib/src/theme/ap-ladder/ap-ladder.css +56 -0
- package/lib/src/theme/ap-layout/ap-info-layout.css +17 -0
- package/package.json +1 -1
- package/es/src/ap-layout/ap-info-layout/ap-info-layout.vue2.mjs +0 -4
- /package/es/src/ap-layout/{ap-info-layout/ap-info-layout.vue.mjs → ap-info-layout-aplus/ap-info-layout.vue2.mjs} +0 -0
- /package/es/src/business/{expandAlert → ap-expand-alert}/ApExpandAlert.vue.d.ts +0 -0
- /package/es/src/business/{expandAlert → ap-expand-alert}/ApExpandAlert.vue.mjs +0 -0
- /package/es/src/business/{expandAlert → ap-expand-alert}/ApExpandAlert.vue2.mjs +0 -0
- /package/es/src/business/{expandAlert → ap-expand-alert}/interface.d.ts +0 -0
- /package/es/src/business/{expandAlert → ap-expand-alert}/style.css +0 -0
- /package/lib/src/ap-layout/{ap-info-layout/ap-info-layout.vue.js → ap-info-layout-aplus/ap-info-layout.vue2.js} +0 -0
- /package/lib/src/business/{expandAlert → ap-expand-alert}/ApExpandAlert.vue.d.ts +0 -0
- /package/lib/src/business/{expandAlert → ap-expand-alert}/ApExpandAlert.vue.js +0 -0
- /package/lib/src/business/{expandAlert → ap-expand-alert}/ApExpandAlert.vue2.js +0 -0
- /package/lib/src/business/{expandAlert → ap-expand-alert}/interface.d.ts +0 -0
- /package/lib/src/business/{expandAlert → ap-expand-alert}/style.css +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { withInstall as o } from "@aplus-frontend/utils";
|
|
2
2
|
import "./hooks/index.mjs";
|
|
3
3
|
import "./title/ApTitle.vue.mjs";
|
|
4
|
-
import "./
|
|
4
|
+
import "./ap-expand-alert/ApExpandAlert.vue.mjs";
|
|
5
5
|
import t from "./ap-label/ApLabel.mjs";
|
|
6
6
|
import m from "./ap-label/ApLabelGroup.mjs";
|
|
7
7
|
import "./ap-status/ApStatus.vue.mjs";
|
|
@@ -12,35 +12,38 @@ import "./ap-input-radio/ApInputRadio.vue.mjs";
|
|
|
12
12
|
import "./ap-batch-action/ApBatchAction.vue.mjs";
|
|
13
13
|
import "./ap-batch-action-group/ApBatchActionGroup.vue.mjs";
|
|
14
14
|
import "./ap-image/ApImage.vue.mjs";
|
|
15
|
+
import "./ap-ladder/ApLadder.vue.mjs";
|
|
15
16
|
import p from "./ap-attachment/ApAttachment.mjs";
|
|
16
|
-
import { ApTransformDataHelper as
|
|
17
|
+
import { ApTransformDataHelper as io } from "../utils/ap-trans-data/index.mjs";
|
|
17
18
|
import "./ap-batch-action-group/interface.mjs";
|
|
18
|
-
import { default as
|
|
19
|
+
import { default as no } from "./ap-table-modal/index.mjs";
|
|
19
20
|
import r from "./title/ApTitle.vue2.mjs";
|
|
20
|
-
import i from "./
|
|
21
|
+
import i from "./ap-expand-alert/ApExpandAlert.vue2.mjs";
|
|
21
22
|
import a from "./ap-status/ApStatus.vue2.mjs";
|
|
22
23
|
import n from "./ap-status/ApStatusGroup.vue2.mjs";
|
|
23
24
|
import c from "./ap-select-layout/select-layout.vue2.mjs";
|
|
24
25
|
import f from "./ap-export-group/ApExportGroup.vue2.mjs";
|
|
25
26
|
import s from "./ap-input-radio/ApInputRadio.vue2.mjs";
|
|
26
|
-
import
|
|
27
|
-
import
|
|
27
|
+
import _ from "./ap-batch-action/ApBatchAction.vue2.mjs";
|
|
28
|
+
import A from "./ap-batch-action-group/ApBatchActionGroup.vue2.mjs";
|
|
28
29
|
import e from "./ap-image/ApImage.vue2.mjs";
|
|
29
|
-
|
|
30
|
+
import l from "./ap-ladder/ApLadder.vue2.mjs";
|
|
31
|
+
const K = o(r), N = i, O = o(t), P = o(a), Q = o(n), U = o(c), V = o(f), W = s, X = _, Y = m, Z = A, oo = e, to = o(l), mo = p;
|
|
30
32
|
export {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
33
|
+
mo as ApAttachment,
|
|
34
|
+
X as ApBatchAction,
|
|
35
|
+
Z as ApBatchActionGroup,
|
|
36
|
+
N as ApExpandAlert,
|
|
37
|
+
V as ApExportGroup,
|
|
38
|
+
oo as ApImage,
|
|
39
|
+
W as ApInputRadio,
|
|
40
|
+
O as ApLabel,
|
|
41
|
+
Y as ApLabelGroup,
|
|
42
|
+
to as ApLadder,
|
|
43
|
+
U as ApSelectLayout,
|
|
44
|
+
P as ApStatus,
|
|
45
|
+
Q as ApStatusGroup,
|
|
46
|
+
no as ApTableModal,
|
|
47
|
+
K as ApTitle,
|
|
48
|
+
io as ApTransformDataHelper
|
|
46
49
|
};
|
package/es/src/components.d.ts
CHANGED
package/es/src/index.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Icon as n, SvgIcon as A } from "./icon/index.mjs";
|
|
2
2
|
import { APConfigProvider as T } from "./config-provider/index.mjs";
|
|
3
3
|
import { Scrollbar as C } from "./scroll-bar/index.mjs";
|
|
4
|
-
import { CollapseContainer as
|
|
4
|
+
import { CollapseContainer as S, ScrollContainer as I } 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
|
|
8
|
-
import { ExpandTransition as v, ExpandXTransition as B, FadeTransition as
|
|
7
|
+
import { BasicArrow as D, BasicHelp as R, BasicTitle as M } from "./basic/index.mjs";
|
|
8
|
+
import { ExpandTransition as v, ExpandXTransition as B, FadeTransition as L, ScaleRotateTransition as w, ScaleTransition as k, 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";
|
|
@@ -26,183 +26,185 @@ import "./ap-tag/index.mjs";
|
|
|
26
26
|
import "./ap-layout/index.mjs";
|
|
27
27
|
import "./ap-upload/index.mjs";
|
|
28
28
|
import "./ap-download/index.mjs";
|
|
29
|
-
import { CheckCard as
|
|
29
|
+
import { CheckCard as bo } from "./check-card/index.mjs";
|
|
30
30
|
import { ApModal as Io } from "./ap-modal/index.mjs";
|
|
31
31
|
import "./ap-list/index.mjs";
|
|
32
|
-
import { ApAttachment as Po, ApBatchAction as
|
|
32
|
+
import { ApAttachment as Po, ApBatchAction as ho, ApBatchActionGroup as Do, ApExpandAlert as Ro, ApExportGroup as Mo, ApImage as Go, ApInputRadio as vo, ApLabel as Bo, ApLabelGroup as Lo, ApLadder as wo, ApSelectLayout as ko, ApStatus as No, ApStatusGroup as yo, ApTitle as Eo } 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
|
|
36
|
+
import { configProviderProps as Xo } from "./config-provider/config-provider-props.mjs";
|
|
37
|
+
import { configProviderContextKey as Ho, tableDefaultConfig as Oo } from "./config-provider/constants.mjs";
|
|
38
|
+
import { keysOf as zo, provideGlobalConfig as Uo, useGlobalConfig as jo } from "./config-provider/hooks/use-global-config.mjs";
|
|
39
|
+
import { buildLocaleContext as Jo, buildTranslator as Qo, localeContextKey as Vo, translate as Zo, useLocale as _o } from "./config-provider/hooks/use-locale.mjs";
|
|
40
|
+
import { defaultNamespace as oe, namespaceContextKey as ee, useGetDerivedNamespace as re, useNamespace as te } from "./config-provider/hooks/use-namespace.mjs";
|
|
41
|
+
import { ConfigProvider as pe, globalConfigCached as fe } from "./config-provider/config-provider.mjs";
|
|
42
|
+
import { default as le } from "./locale/lang/zh-cn.mjs";
|
|
43
|
+
import { default as se } from "./locale/lang/en.mjs";
|
|
44
|
+
import { default as ie } from "./transition/collapse-transition.vue.mjs";
|
|
45
|
+
import { useDescription as ne } from "./description/use-description.mjs";
|
|
46
|
+
import { useComponentRegister as ce } from "./pro-form/hooks/use-component-register.mjs";
|
|
47
|
+
import { useForm as Fe } from "./pro-form/hooks/use-form.mjs";
|
|
48
|
+
import { isComponentFormSchema as be, isSlotFormSchema as Se } from "./pro-form/types/form.mjs";
|
|
49
|
+
import { default as ge } from "./pro-form/components/api-cascader.vue.mjs";
|
|
50
|
+
import { default as he } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
51
|
+
import { default as Re } 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 Be } from "./pro-form/components/api-tree.vue.mjs";
|
|
54
54
|
import { default as we } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
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
|
|
55
|
+
import { default as Ne } from "./pro-form/pro-form.vue.mjs";
|
|
56
|
+
import { default as Ee } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
57
|
+
import { default as Xe } from "./pro-form/table-form.vue.mjs";
|
|
58
|
+
import { default as He } from "./pro-form/table-form-inner.vue.mjs";
|
|
59
|
+
import { default as We } from "./base-button/modal-button.vue.mjs";
|
|
60
|
+
import { default as Ue } from "./base-button/pop-confirm-button.vue.mjs";
|
|
61
|
+
import { useModalContext as qe } from "./modal/hooks/use-modal-context.mjs";
|
|
62
|
+
import { useModal as Qe, useModalInner as Ve } from "./modal/hooks/use-modal.mjs";
|
|
63
|
+
import { default as _e } from "./pro-table/pro-table.vue.mjs";
|
|
64
|
+
import { default as or } from "./pro-table/components/table-action.vue.mjs";
|
|
65
|
+
import { default as rr } from "./pro-table/components/edit-table-header-icon.vue.mjs";
|
|
66
|
+
import { default as ar } from "./pro-table/components/table-image.vue.mjs";
|
|
67
|
+
import { useTable as fr } from "./pro-table/hooks/use-table.mjs";
|
|
68
|
+
import { ApFormItemText as lr } from "./ap-form/items/text/index.mjs";
|
|
69
|
+
import { default as sr } from "./ap-form/items/text-area/index.vue.mjs";
|
|
70
|
+
import { default as ir } from "./ap-form/items/number/index.vue.mjs";
|
|
71
|
+
import { default as nr } from "./ap-form/items/date/index.vue.mjs";
|
|
72
|
+
import { default as cr } from "./ap-form/items/date-range/index.vue.mjs";
|
|
73
|
+
import { default as Fr } from "./ap-form/items/radio/index.vue.mjs";
|
|
74
|
+
import { default as br } from "./ap-form/items/select/index.vue.mjs";
|
|
75
|
+
import { default as Ir } from "./ap-form/items/switch/index.vue.mjs";
|
|
76
|
+
import { default as Pr } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
77
77
|
import { default as Dr } from "./ap-form/items/text/password.vue.mjs";
|
|
78
78
|
import { default as Mr } from "./ap-form/ap-form-item.vue.mjs";
|
|
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
|
|
79
|
+
import { default as vr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
80
|
+
import { default as Lr } from "./ap-form/ap-form-list.vue.mjs";
|
|
81
|
+
import { default as kr } from "./ap-form/search-form/index.vue.mjs";
|
|
82
|
+
import { default as yr } from "./ap-form/modal-form/index.vue.mjs";
|
|
83
|
+
import { ApFieldText as Kr } from "./ap-field/text/index.mjs";
|
|
84
|
+
import { default as Yr } from "./ap-field/checkbox/index.vue.mjs";
|
|
85
|
+
import { default as Or } from "./ap-field/date/index.vue.mjs";
|
|
86
|
+
import { default as zr } from "./ap-field/number/index.vue.mjs";
|
|
87
|
+
import { default as jr } from "./ap-field/radio/index.vue.mjs";
|
|
88
|
+
import { default as Jr } from "./ap-field/switch/index.vue.mjs";
|
|
89
|
+
import { default as Vr } from "./ap-field/text-area/index.vue.mjs";
|
|
90
|
+
import { default as _r } from "./ap-field/date-range/index.vue.mjs";
|
|
91
|
+
import { default as ot } from "./ap-field/select/index.vue.mjs";
|
|
92
|
+
import { default as rt } from "./ap-field/text/password.vue.mjs";
|
|
93
|
+
import { default as at } from "./ap-field/slider/index.vue.mjs";
|
|
94
|
+
import { default as ft } from "./ap-field/segmented/index.vue.mjs";
|
|
95
|
+
import { default as lt } from "./ap-field/rate/index.vue.mjs";
|
|
96
|
+
import { default as st } from "./ap-action/item-modal/index.vue.mjs";
|
|
97
|
+
import { default as it } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
98
|
+
import { default as nt } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
99
|
+
import { default as ct } from "./ap-action/group/index.vue.mjs";
|
|
100
|
+
import { generateTableList as Ft } from "./ap-custom-column/utils.mjs";
|
|
101
|
+
import { useCacheColumnSetting as bt } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
102
|
+
import { default as It } from "./ap-custom-column/custom-column.vue.mjs";
|
|
103
|
+
import { default as Pt } from "./ap-custom-column/column-select.vue.mjs";
|
|
104
104
|
import { DictCode as Dt } from "./work-order-modal/interfaces.mjs";
|
|
105
105
|
import { createWorkOrderModal as Mt } from "./work-order-modal/createWorkOrder.mjs";
|
|
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 { usePageListApTable as
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import { default as
|
|
124
|
-
import { default as
|
|
125
|
-
import { default as
|
|
106
|
+
import { default as vt } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
107
|
+
import { default as Lt } from "./ap-tag/ap-tag.vue.mjs";
|
|
108
|
+
import { default as kt } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
109
|
+
import { default as yt } from "./ap-layout/ApInfoLayout.vue.mjs";
|
|
110
|
+
import { NeedNameKeyDefault as Kt } from "./ap-upload/apUploadTypes.mjs";
|
|
111
|
+
import { default as Yt } from "./ap-upload/apUpload.vue.mjs";
|
|
112
|
+
import { ApDownLoadNeedNameKeyDefault as Ot } from "./ap-download/interface.mjs";
|
|
113
|
+
import { default as zt } from "./ap-download/ap-download.vue.mjs";
|
|
114
|
+
import { default as jt } from "./check-card/group.vue.mjs";
|
|
115
|
+
import { default as Jt } from "./ap-list/index.vue.mjs";
|
|
116
|
+
import { usePageListApTable as Vt } from "./business/hooks/usePageListApTable.mjs";
|
|
117
|
+
import { useTableRefresh as _t } from "./business/hooks/useTableRefresh.mjs";
|
|
118
|
+
import { default as oa } from "./business/ap-table-modal/index.mjs";
|
|
119
|
+
import { useTableModal as ra } from "./business/ap-table-modal/hooks/use-table-modal.mjs";
|
|
120
|
+
import { useTableSelectModal as aa } from "./business/ap-table-modal/hooks/use-table-select-modal.mjs";
|
|
121
|
+
import { ApTransformDataHelper as fa } from "./utils/ap-trans-data/index.mjs";
|
|
122
|
+
import { useTablePaging as la } from "./ap-table/hooks/use-table-paging.mjs";
|
|
123
|
+
import { default as sa } from "./ap-table/ap-table.vue.mjs";
|
|
124
|
+
import { default as ia } from "./editable-table/index.vue.mjs";
|
|
125
|
+
import { default as na } from "./editable-table/form-item.vue.mjs";
|
|
126
|
+
import { default as ca } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
126
127
|
export {
|
|
127
128
|
T as APConfigProvider,
|
|
128
|
-
|
|
129
|
+
ct as ApActionGroup,
|
|
129
130
|
Fo as ApActionItem,
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
nt as ApActionItemDropdown,
|
|
132
|
+
st as ApActionItemModal,
|
|
133
|
+
it as ApActionItemPopconfirm,
|
|
133
134
|
Po as ApAttachment,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
135
|
+
ho as ApBatchAction,
|
|
136
|
+
Do as ApBatchActionGroup,
|
|
137
|
+
It as ApCustomColumn,
|
|
138
|
+
Pt as ApCustomSelect,
|
|
139
|
+
ca as ApDescriptions,
|
|
140
|
+
Ot as ApDownLoadNeedNameKeyDefault,
|
|
141
|
+
zt as ApDownload,
|
|
142
|
+
Ro as ApExpandAlert,
|
|
143
|
+
Mo as ApExportGroup,
|
|
143
144
|
uo as ApField,
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
145
|
+
Yr as ApFieldCheckbox,
|
|
146
|
+
Or as ApFieldDate,
|
|
147
|
+
_r as ApFieldDateRange,
|
|
148
|
+
zr as ApFieldNumber,
|
|
149
|
+
rt as ApFieldPassword,
|
|
150
|
+
jr as ApFieldRadio,
|
|
151
|
+
lt as ApFieldRate,
|
|
152
|
+
ft as ApFieldSegmented,
|
|
153
|
+
ot as ApFieldSelect,
|
|
154
|
+
at as ApFieldSlider,
|
|
155
|
+
Jr as ApFieldSwitch,
|
|
156
|
+
Kr as ApFieldText,
|
|
157
|
+
Vr as ApFieldTextArea,
|
|
157
158
|
xo as ApForm,
|
|
158
159
|
Mr as ApFormItem,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
160
|
+
Pr as ApFormItemCheckbox,
|
|
161
|
+
nr as ApFormItemDate,
|
|
162
|
+
cr as ApFormItemDateRange,
|
|
163
|
+
vr as ApFormItemGroup,
|
|
164
|
+
ir as ApFormItemNumber,
|
|
165
|
+
Fr as ApFormItemRadio,
|
|
166
|
+
br as ApFormItemSelect,
|
|
167
|
+
Ir as ApFormItemSwitch,
|
|
168
|
+
lr as ApFormItemText,
|
|
169
|
+
sr as ApFormItemTextArea,
|
|
169
170
|
Dr as ApFormItemTextPassword,
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
171
|
+
Lr as ApFormList,
|
|
172
|
+
yr as ApFormModalForm,
|
|
173
|
+
kr as ApFormSearchForm,
|
|
173
174
|
Go as ApImage,
|
|
174
|
-
|
|
175
|
+
yt as ApInfoLayout,
|
|
175
176
|
vo as ApInputRadio,
|
|
176
177
|
Bo as ApLabel,
|
|
177
|
-
|
|
178
|
-
|
|
178
|
+
Lo as ApLabelGroup,
|
|
179
|
+
wo as ApLadder,
|
|
180
|
+
Jt as ApList,
|
|
179
181
|
Io as ApModal,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
182
|
+
ko as ApSelectLayout,
|
|
183
|
+
No as ApStatus,
|
|
184
|
+
yo as ApStatusGroup,
|
|
185
|
+
sa as ApTable,
|
|
186
|
+
oa as ApTableModal,
|
|
187
|
+
Lt as ApTag,
|
|
188
|
+
kt as ApTagGroup,
|
|
189
|
+
Eo as ApTitle,
|
|
190
|
+
fa as ApTransformDataHelper,
|
|
191
|
+
Yt as ApUpload,
|
|
192
|
+
ge as ApiCascader,
|
|
193
|
+
he as ApiRadioGroup,
|
|
194
|
+
Re as ApiSelect,
|
|
195
|
+
Ge as ApiTransfer,
|
|
196
|
+
Be as ApiTree,
|
|
197
|
+
Ee as ApiTreeSelect,
|
|
196
198
|
J as BaseButton,
|
|
197
199
|
_ as BaseModal,
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
200
|
+
D as BasicArrow,
|
|
201
|
+
R as BasicHelp,
|
|
202
|
+
M as BasicTitle,
|
|
203
|
+
bo as CheckCard,
|
|
204
|
+
jt as CheckCardGroup,
|
|
205
|
+
S as CollapseContainer,
|
|
206
|
+
ie as CollapseTransition,
|
|
207
|
+
pe as ConfigProvider,
|
|
206
208
|
to as CountdownButton,
|
|
207
209
|
ao as CountdownInput,
|
|
208
210
|
oo as CropperAvatar,
|
|
@@ -210,24 +212,24 @@ export {
|
|
|
210
212
|
z as Description,
|
|
211
213
|
Dt as DictCode,
|
|
212
214
|
lo as Dropdown,
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
215
|
+
rr as EditTableHeaderIcon,
|
|
216
|
+
ia as EditableTable,
|
|
217
|
+
na as EditableTableFormItem,
|
|
216
218
|
v as ExpandTransition,
|
|
217
219
|
B as ExpandXTransition,
|
|
218
|
-
|
|
220
|
+
L as FadeTransition,
|
|
219
221
|
j as Field,
|
|
220
222
|
n as Icon,
|
|
221
223
|
P as IconPicker,
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
224
|
+
We as ModalButton,
|
|
225
|
+
Kt as NeedNameKeyDefault,
|
|
226
|
+
Ue as PopConfirmButton,
|
|
227
|
+
Ne as ProForm,
|
|
228
|
+
_e as ProTable,
|
|
229
|
+
Xe as ProTableForm,
|
|
230
|
+
He as ProTableFormInner,
|
|
229
231
|
we as RadioButtonGroup,
|
|
230
|
-
|
|
232
|
+
w as ScaleRotateTransition,
|
|
231
233
|
k as ScaleTransition,
|
|
232
234
|
I as ScrollContainer,
|
|
233
235
|
N as ScrollXReverseTransition,
|
|
@@ -241,44 +243,45 @@ export {
|
|
|
241
243
|
O as SlideYTransition,
|
|
242
244
|
V as StrengthMeter,
|
|
243
245
|
A as SvgIcon,
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
246
|
+
or as TableAction,
|
|
247
|
+
ar as TableImg,
|
|
248
|
+
vt as WorkOrderModal,
|
|
247
249
|
Ao as adminToken,
|
|
248
250
|
co as aplusToken,
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
251
|
+
Jo as buildLocaleContext,
|
|
252
|
+
Qo as buildTranslator,
|
|
253
|
+
Ho as configProviderContextKey,
|
|
254
|
+
Xo as configProviderProps,
|
|
253
255
|
fo as createPrompt,
|
|
254
256
|
Mt as createWorkOrderModal,
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
257
|
+
oe as defaultNamespace,
|
|
258
|
+
se as en,
|
|
259
|
+
Ft as generateTableList,
|
|
260
|
+
fe as globalConfigCached,
|
|
261
|
+
be as isComponentFormSchema,
|
|
260
262
|
Se as isSlotFormSchema,
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
263
|
+
zo as keysOf,
|
|
264
|
+
Vo as localeContextKey,
|
|
265
|
+
ee as namespaceContextKey,
|
|
266
|
+
Uo as provideGlobalConfig,
|
|
267
|
+
Oo as tableDefaultConfig,
|
|
268
|
+
Zo as translate,
|
|
269
|
+
bt as useCacheColumnSetting,
|
|
270
|
+
ce as useComponentRegister,
|
|
271
|
+
ne as useDescription,
|
|
272
|
+
Fe as useForm,
|
|
273
|
+
re as useGetDerivedNamespace,
|
|
274
|
+
jo as useGlobalConfig,
|
|
275
|
+
_o as useLocale,
|
|
276
|
+
Qe as useModal,
|
|
277
|
+
qe as useModalContext,
|
|
278
|
+
Ve as useModalInner,
|
|
279
|
+
te as useNamespace,
|
|
280
|
+
Vt as usePageListApTable,
|
|
281
|
+
fr as useTable,
|
|
282
|
+
ra as useTableModal,
|
|
283
|
+
la as useTablePaging,
|
|
284
|
+
_t as useTableRefresh,
|
|
285
|
+
aa as useTableSelectModal,
|
|
286
|
+
le as zhCn
|
|
284
287
|
};
|
|
@@ -700,6 +700,14 @@ div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-f
|
|
|
700
700
|
[class$='-basic-table-row__striped'] td {
|
|
701
701
|
background-color: #f6f9fa;
|
|
702
702
|
}
|
|
703
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
704
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
705
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
706
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
707
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
708
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper {
|
|
709
|
+
padding-bottom: 0;
|
|
710
|
+
}
|
|
703
711
|
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
704
712
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
705
713
|
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
@@ -123,6 +123,14 @@
|
|
|
123
123
|
[class$='-basic-table-row__striped'] td {
|
|
124
124
|
background-color: #f6f9fa;
|
|
125
125
|
}
|
|
126
|
+
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
127
|
+
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
128
|
+
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
129
|
+
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
130
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
131
|
+
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper {
|
|
132
|
+
padding-bottom: 0;
|
|
133
|
+
}
|
|
126
134
|
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
127
135
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
128
136
|
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|