@aplus-frontend/ui 0.1.29 → 0.1.31
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 +154 -149
- package/es/src/ap-button/ap-button.vue.d.ts +48 -0
- package/es/src/ap-button/ap-button.vue.mjs +116 -0
- package/es/src/ap-button/ap-button.vue2.mjs +4 -0
- package/es/src/ap-button/index.css +6 -0
- package/es/src/ap-button/index.d.ts +3 -0
- package/es/src/ap-button/index.mjs +2 -0
- package/es/src/ap-button/interface.d.ts +7 -0
- package/es/src/ap-button/interface.mjs +1 -0
- package/es/src/ap-form/ap-form.vue.d.ts +1 -1
- package/es/src/ap-form/dependency/index.vue.d.ts +28 -0
- package/es/src/ap-form/dependency/index.vue.mjs +37 -0
- package/es/src/ap-form/dependency/index.vue2.mjs +4 -0
- package/es/src/ap-form/index.d.ts +3 -1
- package/es/src/ap-form/index.mjs +10 -6
- package/es/src/ap-form/interface.d.ts +3 -0
- package/es/src/ap-form/modal-form/index.vue.d.ts +2 -2
- package/es/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/es/src/ap-table/ap-table.vue.mjs +1 -1
- package/es/src/ap-table/components/setting/sorter/index.vue2.mjs +84 -89
- package/es/src/ap-table/utils.mjs +42 -42
- package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +52 -50
- package/es/src/business/hooks/useTableRefresh.d.ts +1 -1
- package/es/src/business/hooks/useTableRefresh.mjs +1 -1
- package/es/src/editable-table/form-item.vue.d.ts +1 -1
- package/es/src/editable-table/form-item.vue.mjs +41 -41
- package/es/src/editable-table/index.vue.d.ts +1 -1
- package/es/src/editable-table/index.vue.mjs +29 -29
- package/es/src/index.d.ts +1 -0
- package/es/src/index.mjs +256 -250
- package/es/src/theme/ap-button/ap-button.css +6 -0
- package/es/src/work-order-modal/index.mjs +4 -3
- package/es/src/work-order-modal/interfaces.d.ts +3 -0
- package/es/src/work-order-modal/interfaces.mjs +6 -1
- package/es/src/work-order-modal/work-order-modal.vue.mjs +28 -28
- package/lib/index.js +1 -1
- package/lib/src/ap-button/ap-button.vue.d.ts +48 -0
- package/lib/src/ap-button/ap-button.vue.js +1 -0
- package/lib/src/ap-button/ap-button.vue2.js +1 -0
- package/lib/src/ap-button/index.css +6 -0
- package/lib/src/ap-button/index.d.ts +3 -0
- package/lib/src/ap-button/index.js +1 -0
- package/lib/src/ap-button/interface.d.ts +7 -0
- package/lib/src/ap-button/interface.js +1 -0
- package/lib/src/ap-form/ap-form.vue.d.ts +1 -1
- package/lib/src/ap-form/dependency/index.vue.d.ts +28 -0
- package/lib/src/ap-form/dependency/index.vue.js +1 -0
- package/lib/src/ap-form/dependency/index.vue2.js +1 -0
- package/lib/src/ap-form/index.d.ts +3 -1
- package/lib/src/ap-form/index.js +1 -1
- package/lib/src/ap-form/interface.d.ts +3 -0
- package/lib/src/ap-form/modal-form/index.vue.d.ts +2 -2
- package/lib/src/ap-form/search-form/index.vue.d.ts +2 -2
- package/lib/src/ap-table/ap-table.vue.js +1 -1
- package/lib/src/ap-table/components/setting/sorter/index.vue2.js +1 -1
- package/lib/src/ap-table/utils.js +1 -1
- package/lib/src/business/ap-export-group/ApExportGroup.vue2.js +1 -1
- package/lib/src/business/hooks/useTableRefresh.d.ts +1 -1
- package/lib/src/business/hooks/useTableRefresh.js +1 -1
- package/lib/src/editable-table/form-item.vue.d.ts +1 -1
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/editable-table/index.vue.d.ts +1 -1
- package/lib/src/editable-table/index.vue.js +1 -1
- package/lib/src/index.d.ts +1 -0
- package/lib/src/index.js +1 -1
- package/lib/src/theme/ap-button/ap-button.css +6 -0
- package/lib/src/work-order-modal/index.js +1 -1
- package/lib/src/work-order-modal/interfaces.d.ts +3 -0
- package/lib/src/work-order-modal/interfaces.js +1 -1
- package/lib/src/work-order-modal/work-order-modal.vue.js +1 -1
- package/package.json +1 -1
package/es/src/index.mjs
CHANGED
|
@@ -1,287 +1,293 @@
|
|
|
1
|
-
import { Icon as
|
|
2
|
-
import { APConfigProvider as
|
|
3
|
-
import { Scrollbar as
|
|
4
|
-
import { CollapseContainer as
|
|
1
|
+
import { Icon as A, SvgIcon as c } from "./icon/index.mjs";
|
|
2
|
+
import { APConfigProvider as F } from "./config-provider/index.mjs";
|
|
3
|
+
import { Scrollbar as b } from "./scroll-bar/index.mjs";
|
|
4
|
+
import { CollapseContainer as I, ScrollContainer as g } 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
|
|
9
|
-
import { Description as
|
|
10
|
-
import { Field as
|
|
11
|
-
import { BaseButton as
|
|
12
|
-
import { StrengthMeter as
|
|
13
|
-
import { BaseModal as
|
|
14
|
-
import { CropperAvatar as
|
|
15
|
-
import { CountdownButton as
|
|
16
|
-
import { createPrompt as
|
|
17
|
-
import { Dropdown as
|
|
7
|
+
import { BasicArrow as M, BasicHelp as R, BasicTitle as B } from "./basic/index.mjs";
|
|
8
|
+
import { ExpandTransition as v, ExpandXTransition as L, FadeTransition as w, ScaleRotateTransition as k, ScaleTransition as y, ScrollXReverseTransition as N, ScrollXTransition as E, ScrollYReverseTransition as K, ScrollYTransition as X, SlideXReverseTransition as Y, SlideXTransition as H, SlideYReverseTransition as O, SlideYTransition as W } from "./transition/index.mjs";
|
|
9
|
+
import { Description as U } from "./description/index.mjs";
|
|
10
|
+
import { Field as q } from "./pro-form/index.mjs";
|
|
11
|
+
import { BaseButton as Q } from "./base-button/index.mjs";
|
|
12
|
+
import { StrengthMeter as Z } from "./strength-meter/index.mjs";
|
|
13
|
+
import { BaseModal as $ } from "./modal/index.mjs";
|
|
14
|
+
import { CropperAvatar as eo, CropperImage as ro } from "./cropper/index.mjs";
|
|
15
|
+
import { CountdownButton as ao, CountdownInput as po } from "./count-down/index.mjs";
|
|
16
|
+
import { createPrompt as mo } from "./prompt/index.mjs";
|
|
17
|
+
import { Dropdown as so } from "./dropdown/index.mjs";
|
|
18
18
|
import "./pro-table/index.mjs";
|
|
19
|
-
import { ApForm as
|
|
20
|
-
import { ApField as
|
|
21
|
-
import { adminToken as
|
|
22
|
-
import { ApActionItem as
|
|
19
|
+
import { ApForm as io } from "./ap-form/index.mjs";
|
|
20
|
+
import { ApField as no } from "./ap-field/index.mjs";
|
|
21
|
+
import { adminToken as co, aplusToken as To } from "./design-token/index.mjs";
|
|
22
|
+
import { ApActionItem as Co } 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";
|
|
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
|
|
30
|
-
import { ApModal as
|
|
29
|
+
import { CheckCard as So } from "./check-card/index.mjs";
|
|
30
|
+
import { ApModal as go } from "./ap-modal/index.mjs";
|
|
31
31
|
import "./ap-list/index.mjs";
|
|
32
|
-
import
|
|
32
|
+
import "./ap-button/index.mjs";
|
|
33
|
+
import { ApAttachment as Po, ApBatchAction as ho, ApBatchActionGroup as Mo, ApExpandAlert as Ro, ApExportGroup as Bo, ApImage as Go, ApInputRadio as vo, ApLabel as Lo, ApLabelGroup as wo, ApLadder as ko, ApSelectLayout as yo, ApStatus as No, ApStatusGroup as Eo, ApTitle as Ko } from "./business/index.mjs";
|
|
33
34
|
import "./ap-table/index.mjs";
|
|
34
35
|
import "./editable-table/index.mjs";
|
|
35
36
|
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
|
|
37
|
+
import { configProviderProps as Yo } from "./config-provider/config-provider-props.mjs";
|
|
38
|
+
import { configProviderContextKey as Oo, tableDefaultConfig as Wo } from "./config-provider/constants.mjs";
|
|
39
|
+
import { keysOf as Uo, provideGlobalConfig as jo, useGlobalConfig as qo } from "./config-provider/hooks/use-global-config.mjs";
|
|
40
|
+
import { buildLocaleContext as Qo, buildTranslator as Vo, localeContextKey as Zo, translate as _o, useLocale as $o } from "./config-provider/hooks/use-locale.mjs";
|
|
41
|
+
import { defaultNamespace as ee, namespaceContextKey as re, useGetDerivedNamespace as te, useNamespace as ae } from "./config-provider/hooks/use-namespace.mjs";
|
|
42
|
+
import { ConfigProvider as fe, globalConfigCached as me } from "./config-provider/config-provider.mjs";
|
|
43
|
+
import { default as de } from "./locale/lang/zh-cn.mjs";
|
|
44
|
+
import { default as xe } from "./locale/lang/en.mjs";
|
|
45
|
+
import { default as ue } from "./transition/collapse-transition.vue.mjs";
|
|
46
|
+
import { useDescription as Ae } from "./description/use-description.mjs";
|
|
47
|
+
import { useComponentRegister as Te } from "./pro-form/hooks/use-component-register.mjs";
|
|
48
|
+
import { useForm as Ce } from "./pro-form/hooks/use-form.mjs";
|
|
49
|
+
import { isComponentFormSchema as Se, isSlotFormSchema as Ie } from "./pro-form/types/form.mjs";
|
|
50
|
+
import { default as De } from "./pro-form/components/api-cascader.vue.mjs";
|
|
50
51
|
import { default as he } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
51
52
|
import { default as Re } from "./pro-form/components/api-select.vue.mjs";
|
|
52
53
|
import { default as Ge } from "./pro-form/components/api-transfer.vue.mjs";
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
54
|
+
import { default as Le } from "./pro-form/components/api-tree.vue.mjs";
|
|
55
|
+
import { default as ke } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
55
56
|
import { default as Ne } from "./pro-form/pro-form.vue.mjs";
|
|
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
|
|
57
|
+
import { default as Ke } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
58
|
+
import { default as Ye } from "./pro-form/table-form.vue.mjs";
|
|
59
|
+
import { default as Oe } from "./pro-form/table-form-inner.vue.mjs";
|
|
60
|
+
import { default as ze } from "./base-button/modal-button.vue.mjs";
|
|
61
|
+
import { default as je } from "./base-button/pop-confirm-button.vue.mjs";
|
|
62
|
+
import { useModalContext as Je } from "./modal/hooks/use-modal-context.mjs";
|
|
63
|
+
import { useModal as Ve, useModalInner as Ze } from "./modal/hooks/use-modal.mjs";
|
|
64
|
+
import { default as $e } from "./pro-table/pro-table.vue.mjs";
|
|
65
|
+
import { default as er } from "./pro-table/components/table-action.vue.mjs";
|
|
66
|
+
import { default as tr } from "./pro-table/components/edit-table-header-icon.vue.mjs";
|
|
67
|
+
import { default as pr } from "./pro-table/components/table-image.vue.mjs";
|
|
68
|
+
import { useTable as mr } from "./pro-table/hooks/use-table.mjs";
|
|
69
|
+
import { ApFormItemText as dr } from "./ap-form/items/text/index.mjs";
|
|
70
|
+
import { default as xr } from "./ap-form/items/text-area/index.vue.mjs";
|
|
71
|
+
import { default as ur } from "./ap-form/items/number/index.vue.mjs";
|
|
72
|
+
import { default as Ar } from "./ap-form/items/date/index.vue.mjs";
|
|
73
|
+
import { default as Tr } from "./ap-form/items/date-range/index.vue.mjs";
|
|
74
|
+
import { default as Cr } from "./ap-form/items/radio/index.vue.mjs";
|
|
75
|
+
import { default as Sr } from "./ap-form/items/select/index.vue.mjs";
|
|
76
|
+
import { default as gr } from "./ap-form/items/switch/index.vue.mjs";
|
|
76
77
|
import { default as Pr } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
78
|
+
import { default as Mr } from "./ap-form/items/text/password.vue.mjs";
|
|
79
|
+
import { default as Br } from "./ap-form/ap-form-item.vue.mjs";
|
|
79
80
|
import { default as vr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
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 {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import { default as Pt } from "./ap-custom-column/column
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import { default as
|
|
115
|
-
import { default as
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import { default as
|
|
126
|
-
import { default as
|
|
81
|
+
import { default as wr } from "./ap-form/ap-form-list.vue.mjs";
|
|
82
|
+
import { default as yr } from "./ap-form/search-form/index.vue.mjs";
|
|
83
|
+
import { default as Er } from "./ap-form/modal-form/index.vue.mjs";
|
|
84
|
+
import { default as Xr } from "./ap-form/dependency/index.vue.mjs";
|
|
85
|
+
import { ApFieldText as Hr } from "./ap-field/text/index.mjs";
|
|
86
|
+
import { default as Wr } from "./ap-field/checkbox/index.vue.mjs";
|
|
87
|
+
import { default as Ur } from "./ap-field/date/index.vue.mjs";
|
|
88
|
+
import { default as qr } from "./ap-field/number/index.vue.mjs";
|
|
89
|
+
import { default as Qr } from "./ap-field/radio/index.vue.mjs";
|
|
90
|
+
import { default as Zr } from "./ap-field/switch/index.vue.mjs";
|
|
91
|
+
import { default as $r } from "./ap-field/text-area/index.vue.mjs";
|
|
92
|
+
import { default as et } from "./ap-field/date-range/index.vue.mjs";
|
|
93
|
+
import { default as tt } from "./ap-field/select/index.vue.mjs";
|
|
94
|
+
import { default as pt } from "./ap-field/text/password.vue.mjs";
|
|
95
|
+
import { default as mt } from "./ap-field/slider/index.vue.mjs";
|
|
96
|
+
import { default as dt } from "./ap-field/segmented/index.vue.mjs";
|
|
97
|
+
import { default as xt } from "./ap-field/rate/index.vue.mjs";
|
|
98
|
+
import { default as ut } from "./ap-action/item-modal/index.vue.mjs";
|
|
99
|
+
import { default as At } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
100
|
+
import { default as Tt } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
101
|
+
import { default as Ct } from "./ap-action/group/index.vue.mjs";
|
|
102
|
+
import { generateTableList as St } from "./ap-custom-column/utils.mjs";
|
|
103
|
+
import { useCacheColumnSetting as gt } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
104
|
+
import { default as Pt } from "./ap-custom-column/custom-column.vue.mjs";
|
|
105
|
+
import { default as Mt } from "./ap-custom-column/column-select.vue.mjs";
|
|
106
|
+
import { DictCode as Bt, langMap as Gt } from "./work-order-modal/interfaces.mjs";
|
|
107
|
+
import { createWorkOrderModal as Lt } from "./work-order-modal/createWorkOrder.mjs";
|
|
108
|
+
import { default as kt } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
109
|
+
import { default as Nt } from "./ap-tag/ap-tag.vue.mjs";
|
|
110
|
+
import { default as Kt } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
111
|
+
import { default as Yt } from "./ap-layout/ApInfoLayout.vue.mjs";
|
|
112
|
+
import { NeedNameKeyDefault as Ot } from "./ap-upload/apUploadTypes.mjs";
|
|
113
|
+
import { default as zt } from "./ap-upload/apUpload.vue.mjs";
|
|
114
|
+
import { ApDownLoadNeedNameKeyDefault as jt } from "./ap-download/interface.mjs";
|
|
115
|
+
import { default as Jt } from "./ap-download/ap-download.vue.mjs";
|
|
116
|
+
import { default as Vt } from "./check-card/group.vue.mjs";
|
|
117
|
+
import { default as _t } from "./ap-list/index.vue.mjs";
|
|
118
|
+
import { default as oa } from "./ap-button/ap-button.vue.mjs";
|
|
119
|
+
import { usePageListApTable as ra } from "./business/hooks/usePageListApTable.mjs";
|
|
120
|
+
import { useTableRefresh as aa } from "./business/hooks/useTableRefresh.mjs";
|
|
121
|
+
import { default as fa } from "./business/ap-table-modal/index.mjs";
|
|
122
|
+
import { useTableModal as la } from "./business/ap-table-modal/hooks/use-table-modal.mjs";
|
|
123
|
+
import { useTableSelectModal as sa } from "./business/ap-table-modal/hooks/use-table-select-modal.mjs";
|
|
124
|
+
import { ApTransformDataHelper as ia } from "./utils/ap-trans-data/index.mjs";
|
|
125
|
+
import { useTablePaging as na } from "./ap-table/hooks/use-table-paging.mjs";
|
|
126
|
+
import { default as ca } from "./ap-table/ap-table.vue.mjs";
|
|
127
|
+
import { default as Fa } from "./editable-table/index.vue.mjs";
|
|
128
|
+
import { default as ba } from "./editable-table/form-item.vue.mjs";
|
|
129
|
+
import { default as Ia } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
127
130
|
export {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
131
|
+
F as APConfigProvider,
|
|
132
|
+
Ct as ApActionGroup,
|
|
133
|
+
Co as ApActionItem,
|
|
134
|
+
Tt as ApActionItemDropdown,
|
|
135
|
+
ut as ApActionItemModal,
|
|
136
|
+
At as ApActionItemPopconfirm,
|
|
134
137
|
Po as ApAttachment,
|
|
135
138
|
ho as ApBatchAction,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
Pt as
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
139
|
+
Mo as ApBatchActionGroup,
|
|
140
|
+
oa as ApButton,
|
|
141
|
+
Pt as ApCustomColumn,
|
|
142
|
+
Mt as ApCustomSelect,
|
|
143
|
+
Ia as ApDescriptions,
|
|
144
|
+
jt as ApDownLoadNeedNameKeyDefault,
|
|
145
|
+
Jt as ApDownload,
|
|
142
146
|
Ro as ApExpandAlert,
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
147
|
+
Bo as ApExportGroup,
|
|
148
|
+
no as ApField,
|
|
149
|
+
Wr as ApFieldCheckbox,
|
|
150
|
+
Ur as ApFieldDate,
|
|
151
|
+
et as ApFieldDateRange,
|
|
152
|
+
qr as ApFieldNumber,
|
|
153
|
+
pt as ApFieldPassword,
|
|
154
|
+
Qr as ApFieldRadio,
|
|
155
|
+
xt as ApFieldRate,
|
|
156
|
+
dt as ApFieldSegmented,
|
|
157
|
+
tt as ApFieldSelect,
|
|
158
|
+
mt as ApFieldSlider,
|
|
159
|
+
Zr as ApFieldSwitch,
|
|
160
|
+
Hr as ApFieldText,
|
|
161
|
+
$r as ApFieldTextArea,
|
|
162
|
+
io as ApForm,
|
|
163
|
+
Xr as ApFormDependency,
|
|
164
|
+
Br as ApFormItem,
|
|
160
165
|
Pr as ApFormItemCheckbox,
|
|
161
|
-
|
|
162
|
-
|
|
166
|
+
Ar as ApFormItemDate,
|
|
167
|
+
Tr as ApFormItemDateRange,
|
|
163
168
|
vr as ApFormItemGroup,
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
169
|
+
ur as ApFormItemNumber,
|
|
170
|
+
Cr as ApFormItemRadio,
|
|
171
|
+
Sr as ApFormItemSelect,
|
|
172
|
+
gr as ApFormItemSwitch,
|
|
173
|
+
dr as ApFormItemText,
|
|
174
|
+
xr as ApFormItemTextArea,
|
|
175
|
+
Mr as ApFormItemTextPassword,
|
|
176
|
+
wr as ApFormList,
|
|
177
|
+
Er as ApFormModalForm,
|
|
178
|
+
yr as ApFormSearchForm,
|
|
174
179
|
Go as ApImage,
|
|
175
|
-
|
|
180
|
+
Yt as ApInfoLayout,
|
|
176
181
|
vo as ApInputRadio,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
182
|
+
Lo as ApLabel,
|
|
183
|
+
wo as ApLabelGroup,
|
|
184
|
+
ko as ApLadder,
|
|
185
|
+
_t as ApList,
|
|
186
|
+
go as ApModal,
|
|
187
|
+
yo as ApSelectLayout,
|
|
183
188
|
No as ApStatus,
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
189
|
+
Eo as ApStatusGroup,
|
|
190
|
+
ca as ApTable,
|
|
191
|
+
fa as ApTableModal,
|
|
192
|
+
Nt as ApTag,
|
|
193
|
+
Kt as ApTagGroup,
|
|
194
|
+
Ko as ApTitle,
|
|
195
|
+
ia as ApTransformDataHelper,
|
|
196
|
+
zt as ApUpload,
|
|
197
|
+
De as ApiCascader,
|
|
193
198
|
he as ApiRadioGroup,
|
|
194
199
|
Re as ApiSelect,
|
|
195
200
|
Ge as ApiTransfer,
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
+
Le as ApiTree,
|
|
202
|
+
Ke as ApiTreeSelect,
|
|
203
|
+
Q as BaseButton,
|
|
204
|
+
$ as BaseModal,
|
|
205
|
+
M as BasicArrow,
|
|
201
206
|
R as BasicHelp,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
207
|
+
B as BasicTitle,
|
|
208
|
+
So as CheckCard,
|
|
209
|
+
Vt as CheckCardGroup,
|
|
210
|
+
I as CollapseContainer,
|
|
211
|
+
ue as CollapseTransition,
|
|
212
|
+
fe as ConfigProvider,
|
|
213
|
+
ao as CountdownButton,
|
|
214
|
+
po as CountdownInput,
|
|
215
|
+
eo as CropperAvatar,
|
|
216
|
+
ro as CropperImage,
|
|
217
|
+
U as Description,
|
|
218
|
+
Bt as DictCode,
|
|
219
|
+
so as Dropdown,
|
|
220
|
+
tr as EditTableHeaderIcon,
|
|
221
|
+
Fa as EditableTable,
|
|
222
|
+
ba as EditableTableFormItem,
|
|
218
223
|
v as ExpandTransition,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
224
|
+
L as ExpandXTransition,
|
|
225
|
+
w as FadeTransition,
|
|
226
|
+
q as Field,
|
|
227
|
+
A as Icon,
|
|
223
228
|
P as IconPicker,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
229
|
+
ze as ModalButton,
|
|
230
|
+
Ot as NeedNameKeyDefault,
|
|
231
|
+
je as PopConfirmButton,
|
|
227
232
|
Ne as ProForm,
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
233
|
+
$e as ProTable,
|
|
234
|
+
Ye as ProTableForm,
|
|
235
|
+
Oe as ProTableFormInner,
|
|
236
|
+
ke as RadioButtonGroup,
|
|
237
|
+
k as ScaleRotateTransition,
|
|
238
|
+
y as ScaleTransition,
|
|
239
|
+
g as ScrollContainer,
|
|
235
240
|
N as ScrollXReverseTransition,
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
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
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
la as
|
|
284
|
-
|
|
285
|
-
aa as
|
|
286
|
-
|
|
241
|
+
E as ScrollXTransition,
|
|
242
|
+
K as ScrollYReverseTransition,
|
|
243
|
+
X as ScrollYTransition,
|
|
244
|
+
b as Scrollbar,
|
|
245
|
+
Y as SlideXReverseTransition,
|
|
246
|
+
H as SlideXTransition,
|
|
247
|
+
O as SlideYReverseTransition,
|
|
248
|
+
W as SlideYTransition,
|
|
249
|
+
Z as StrengthMeter,
|
|
250
|
+
c as SvgIcon,
|
|
251
|
+
er as TableAction,
|
|
252
|
+
pr as TableImg,
|
|
253
|
+
kt as WorkOrderModal,
|
|
254
|
+
co as adminToken,
|
|
255
|
+
To as aplusToken,
|
|
256
|
+
Qo as buildLocaleContext,
|
|
257
|
+
Vo as buildTranslator,
|
|
258
|
+
Oo as configProviderContextKey,
|
|
259
|
+
Yo as configProviderProps,
|
|
260
|
+
mo as createPrompt,
|
|
261
|
+
Lt as createWorkOrderModal,
|
|
262
|
+
ee as defaultNamespace,
|
|
263
|
+
xe as en,
|
|
264
|
+
St as generateTableList,
|
|
265
|
+
me as globalConfigCached,
|
|
266
|
+
Se as isComponentFormSchema,
|
|
267
|
+
Ie as isSlotFormSchema,
|
|
268
|
+
Uo as keysOf,
|
|
269
|
+
Gt as langMap,
|
|
270
|
+
Zo as localeContextKey,
|
|
271
|
+
re as namespaceContextKey,
|
|
272
|
+
jo as provideGlobalConfig,
|
|
273
|
+
Wo as tableDefaultConfig,
|
|
274
|
+
_o as translate,
|
|
275
|
+
gt as useCacheColumnSetting,
|
|
276
|
+
Te as useComponentRegister,
|
|
277
|
+
Ae as useDescription,
|
|
278
|
+
Ce as useForm,
|
|
279
|
+
te as useGetDerivedNamespace,
|
|
280
|
+
qo as useGlobalConfig,
|
|
281
|
+
$o as useLocale,
|
|
282
|
+
Ve as useModal,
|
|
283
|
+
Je as useModalContext,
|
|
284
|
+
Ze as useModalInner,
|
|
285
|
+
ae as useNamespace,
|
|
286
|
+
ra as usePageListApTable,
|
|
287
|
+
mr as useTable,
|
|
288
|
+
la as useTableModal,
|
|
289
|
+
na as useTablePaging,
|
|
290
|
+
aa as useTableRefresh,
|
|
291
|
+
sa as useTableSelectModal,
|
|
292
|
+
de as zhCn
|
|
287
293
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
.aplus-ap-action-button-border-link:not(:disabled):hover,
|
|
2
|
+
.aplus-ap-action-button-border-link:not(:disabled):active,
|
|
3
|
+
.aplus-ap-action-button-border-link:not(:disabled):focus {
|
|
4
|
+
border-color: var(--button-border-color);
|
|
5
|
+
color: var(--button-border-color) !important;
|
|
6
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import "./work-order-modal.vue2.mjs";
|
|
2
|
-
import { DictCode as t } from "./interfaces.mjs";
|
|
3
|
-
import { createWorkOrderModal as
|
|
2
|
+
import { DictCode as t, langMap as a } from "./interfaces.mjs";
|
|
3
|
+
import { createWorkOrderModal as d } from "./createWorkOrder.mjs";
|
|
4
4
|
export {
|
|
5
5
|
t as DictCode,
|
|
6
|
-
|
|
6
|
+
d as createWorkOrderModal,
|
|
7
|
+
a as langMap
|
|
7
8
|
};
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
var e = /* @__PURE__ */ ((t) => (t.TicketsStatus = "aplus_tickets_status", t.TicketsType = "tickets_type", t.TicketsLevel = "tickets_level", t))(e || {});
|
|
2
|
+
const s = {
|
|
3
|
+
"zh-cn": "zh_CN",
|
|
4
|
+
en: "en_US"
|
|
5
|
+
};
|
|
2
6
|
export {
|
|
3
|
-
e as DictCode
|
|
7
|
+
e as DictCode,
|
|
8
|
+
s as langMap
|
|
4
9
|
};
|