@aplus-frontend/ui 0.0.11 → 0.0.13
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 +166 -158
- package/es/src/ap-action/item/index.vue2.mjs +21 -20
- package/es/src/ap-action/style/item.css +20 -5
- package/es/src/ap-form/ap-form.vue2.mjs +42 -42
- package/es/src/ap-form/modal-form/index.vue.mjs +104 -104
- package/es/src/ap-form/style/modal-form.css +5 -1
- package/es/src/ap-table/ap-table.vue.d.ts +5 -1
- package/es/src/business/index.d.ts +126 -0
- package/es/src/business/index.mjs +8 -0
- package/es/src/business/title/ApTitle.vue.d.ts +45 -0
- package/es/src/business/title/ApTitle.vue.mjs +50 -0
- package/es/src/business/title/ApTitle.vue2.mjs +4 -0
- package/es/src/business/title/interface.d.ts +21 -0
- package/es/src/business/title/style.css +39 -0
- package/es/src/components.d.ts +1 -0
- package/es/src/editable-table/form-item.vue.d.ts +304 -0
- package/es/src/editable-table/form-item.vue.mjs +189 -0
- package/es/src/editable-table/form-item.vue2.mjs +4 -0
- package/es/src/editable-table/hooks/use-get-columns.d.ts +5 -0
- package/es/src/editable-table/hooks/use-get-columns.mjs +76 -0
- package/es/src/editable-table/index.d.ts +5 -0
- package/es/src/editable-table/index.mjs +3 -0
- package/es/src/editable-table/index.vue.d.ts +196 -0
- package/es/src/editable-table/index.vue.mjs +209 -0
- package/es/src/editable-table/index.vue2.mjs +4 -0
- package/es/src/editable-table/interface.d.ts +72 -5
- package/es/src/editable-table/interface.mjs +1 -0
- package/es/src/editable-table/style/index.css +40 -1
- package/es/src/editable-table/utils.mjs +10 -0
- package/es/src/index.d.ts +2 -0
- package/es/src/index.mjs +229 -220
- package/es/src/pro-form/components/form-action.vue2.mjs +8 -8
- package/es/src/theme/antd-global-overwrite/admin/index.css +8 -0
- package/es/src/theme/antd-global-overwrite/admin/table.css +8 -0
- package/es/src/theme/ap-action/item.css +20 -5
- package/es/src/theme/ap-form/modal-form.css +5 -1
- package/es/src/theme/ap-title/ap-title.css +39 -0
- package/es/src/theme/editable-table/index.css +40 -1
- package/lib/index.js +1 -1
- package/lib/src/ap-action/item/index.vue2.js +1 -1
- package/lib/src/ap-action/style/item.css +20 -5
- package/lib/src/ap-form/ap-form.vue2.js +1 -1
- package/lib/src/ap-form/modal-form/index.vue.js +1 -1
- package/lib/src/ap-form/style/modal-form.css +5 -1
- package/lib/src/ap-table/ap-table.vue.d.ts +5 -1
- package/lib/src/business/index.d.ts +126 -0
- package/lib/src/business/index.js +1 -0
- package/lib/src/business/title/ApTitle.vue.d.ts +45 -0
- package/lib/src/business/title/ApTitle.vue.js +1 -0
- package/lib/src/business/title/ApTitle.vue2.js +1 -0
- package/lib/src/business/title/interface.d.ts +21 -0
- package/lib/src/business/title/style.css +39 -0
- package/lib/src/components.d.ts +1 -0
- package/lib/src/editable-table/form-item.vue.d.ts +304 -0
- package/lib/src/editable-table/form-item.vue.js +1 -0
- package/lib/src/editable-table/form-item.vue2.js +1 -0
- package/lib/src/editable-table/hooks/use-get-columns.d.ts +5 -0
- package/lib/src/editable-table/hooks/use-get-columns.js +1 -0
- package/lib/src/editable-table/index.d.ts +5 -0
- package/lib/src/editable-table/index.js +1 -0
- package/lib/src/editable-table/index.vue.d.ts +196 -0
- package/lib/src/editable-table/index.vue.js +1 -0
- package/lib/src/editable-table/index.vue2.js +1 -0
- package/lib/src/editable-table/interface.d.ts +72 -5
- package/lib/src/editable-table/interface.js +1 -0
- package/lib/src/editable-table/style/index.css +40 -1
- package/lib/src/editable-table/utils.js +1 -0
- package/lib/src/index.d.ts +2 -0
- package/lib/src/index.js +1 -1
- package/lib/src/pro-form/components/form-action.vue2.js +1 -1
- package/lib/src/theme/antd-global-overwrite/admin/index.css +8 -0
- package/lib/src/theme/antd-global-overwrite/admin/table.css +8 -0
- package/lib/src/theme/ap-action/item.css +20 -5
- package/lib/src/theme/ap-form/modal-form.css +5 -1
- package/lib/src/theme/ap-title/ap-title.css +39 -0
- package/lib/src/theme/editable-table/index.css +40 -1
- package/package.json +1 -1
package/es/src/index.mjs
CHANGED
|
@@ -1,240 +1,249 @@
|
|
|
1
|
-
import { Icon as
|
|
2
|
-
import { APConfigProvider as
|
|
3
|
-
import { Scrollbar as
|
|
4
|
-
import { CollapseContainer as
|
|
5
|
-
import { IconPicker as
|
|
1
|
+
import { Icon as x, SvgIcon as n } from "./icon/index.mjs";
|
|
2
|
+
import { APConfigProvider as A } from "./config-provider/index.mjs";
|
|
3
|
+
import { Scrollbar as T } from "./scroll-bar/index.mjs";
|
|
4
|
+
import { CollapseContainer as C, ScrollContainer as S } from "./container/index.mjs";
|
|
5
|
+
import { IconPicker as b } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
|
-
import { BasicArrow as
|
|
8
|
-
import { ExpandTransition as
|
|
9
|
-
import { Description as
|
|
10
|
-
import { Field as
|
|
11
|
-
import { BaseButton as
|
|
7
|
+
import { BasicArrow as P, BasicHelp as D, BasicTitle as R } from "./basic/index.mjs";
|
|
8
|
+
import { ExpandTransition as h, ExpandXTransition as w, FadeTransition as B, ScaleRotateTransition as M, ScaleTransition as k, ScrollXReverseTransition as G, ScrollXTransition as N, ScrollYReverseTransition as y, ScrollYTransition as E, SlideXReverseTransition as L, SlideXTransition as X, SlideYReverseTransition as K, SlideYTransition as Y } from "./transition/index.mjs";
|
|
9
|
+
import { Description as H } from "./description/index.mjs";
|
|
10
|
+
import { Field as z } from "./pro-form/index.mjs";
|
|
11
|
+
import { BaseButton as _ } from "./base-button/index.mjs";
|
|
12
12
|
import { StrengthMeter as q } from "./strength-meter/index.mjs";
|
|
13
13
|
import { BaseModal as Q } from "./modal/index.mjs";
|
|
14
|
-
import { CropperAvatar as Z, CropperImage as
|
|
15
|
-
import { CountdownButton as
|
|
16
|
-
import { createPrompt as
|
|
17
|
-
import { Dropdown as
|
|
14
|
+
import { CropperAvatar as Z, CropperImage as $ } from "./cropper/index.mjs";
|
|
15
|
+
import { CountdownButton as eo, CountdownInput as ro } from "./count-down/index.mjs";
|
|
16
|
+
import { createPrompt as ao } from "./prompt/index.mjs";
|
|
17
|
+
import { Dropdown as fo } 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 lo } from "./ap-form/index.mjs";
|
|
20
|
+
import { ApField as io } from "./ap-field/index.mjs";
|
|
21
|
+
import { adminToken as no, aplusToken as uo } 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 { _ApTitle as Fo } from "./business/index.mjs";
|
|
29
30
|
import "./ap-table/index.mjs";
|
|
30
|
-
import
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default 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 ge } from "./base-button/
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as qe } from "./ap-form/items/date
|
|
67
|
-
import { default as Qe } from "./ap-form/items/
|
|
68
|
-
import { default as Ze } from "./ap-form/items/
|
|
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 {
|
|
78
|
-
import {
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as Xr } from "./ap-field/
|
|
89
|
-
import { default as Yr } from "./ap-field/
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as qr } from "./ap-action/
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import { default as
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import { default as
|
|
107
|
-
import {
|
|
108
|
-
import { default as
|
|
31
|
+
import "./editable-table/index.mjs";
|
|
32
|
+
import { configProviderProps as So } from "./config-provider/config-provider-props.mjs";
|
|
33
|
+
import { configProviderContextKey as bo, tableDefaultConfig as go } from "./config-provider/constants.mjs";
|
|
34
|
+
import { keysOf as Do, provideGlobalConfig as Ro, useGlobalConfig as vo } from "./config-provider/hooks/use-global-config.mjs";
|
|
35
|
+
import { buildLocaleContext as wo, buildTranslator as Bo, localeContextKey as Mo, translate as ko, useLocale as Go } from "./config-provider/hooks/use-locale.mjs";
|
|
36
|
+
import { defaultNamespace as yo, namespaceContextKey as Eo, useGetDerivedNamespace as Lo, useNamespace as Xo } from "./config-provider/hooks/use-namespace.mjs";
|
|
37
|
+
import { ConfigProvider as Yo } from "./config-provider/config-provider.mjs";
|
|
38
|
+
import { default as Ho } from "./locale/lang/zh-cn.mjs";
|
|
39
|
+
import { default as zo } from "./locale/lang/en.mjs";
|
|
40
|
+
import { default as _o } from "./transition/collapse-transition.vue.mjs";
|
|
41
|
+
import { useDescription as qo } from "./description/use-description.mjs";
|
|
42
|
+
import { useComponentRegister as Qo } from "./pro-form/hooks/use-component-register.mjs";
|
|
43
|
+
import { useForm as Zo } from "./pro-form/hooks/use-form.mjs";
|
|
44
|
+
import { isComponentFormSchema as oe, isSlotFormSchema as ee } from "./pro-form/types/form.mjs";
|
|
45
|
+
import { default as te } from "./pro-form/components/api-cascader.vue.mjs";
|
|
46
|
+
import { default as pe } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
47
|
+
import { default as me } from "./pro-form/components/api-select.vue.mjs";
|
|
48
|
+
import { default as de } from "./pro-form/components/api-transfer.vue.mjs";
|
|
49
|
+
import { default as ie } from "./pro-form/components/api-tree.vue.mjs";
|
|
50
|
+
import { default as ne } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
51
|
+
import { default as Ae } from "./pro-form/pro-form.vue.mjs";
|
|
52
|
+
import { default as Te } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
53
|
+
import { default as Ce } from "./pro-form/table-form.vue.mjs";
|
|
54
|
+
import { default as Ie } from "./pro-form/table-form-inner.vue.mjs";
|
|
55
|
+
import { default as ge } from "./base-button/modal-button.vue.mjs";
|
|
56
|
+
import { default as De } from "./base-button/pop-confirm-button.vue.mjs";
|
|
57
|
+
import { useModalContext as ve } from "./modal/hooks/use-modal-context.mjs";
|
|
58
|
+
import { useModal as we, useModalInner as Be } from "./modal/hooks/use-modal.mjs";
|
|
59
|
+
import { default as ke } from "./pro-table/pro-table.vue.mjs";
|
|
60
|
+
import { default as Ne } from "./pro-table/components/table-action.vue.mjs";
|
|
61
|
+
import { default as Ee } from "./pro-table/components/edit-table-header-icon.vue.mjs";
|
|
62
|
+
import { default as Xe } from "./pro-table/components/table-image.vue.mjs";
|
|
63
|
+
import { useTable as Ye } from "./pro-table/hooks/use-table.mjs";
|
|
64
|
+
import { ApFormItemText as He } from "./ap-form/items/text/index.mjs";
|
|
65
|
+
import { default as ze } from "./ap-form/items/text-area/index.vue.mjs";
|
|
66
|
+
import { default as _e } from "./ap-form/items/number/index.vue.mjs";
|
|
67
|
+
import { default as qe } from "./ap-form/items/date/index.vue.mjs";
|
|
68
|
+
import { default as Qe } from "./ap-form/items/date-range/index.vue.mjs";
|
|
69
|
+
import { default as Ze } from "./ap-form/items/radio/index.vue.mjs";
|
|
70
|
+
import { default as or } from "./ap-form/items/select/index.vue.mjs";
|
|
71
|
+
import { default as rr } from "./ap-form/items/switch/index.vue.mjs";
|
|
72
|
+
import { default as ar } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
73
|
+
import { default as fr } from "./ap-form/items/text/password.vue.mjs";
|
|
74
|
+
import { default as lr } from "./ap-form/ap-form-item.vue.mjs";
|
|
75
|
+
import { default as sr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
76
|
+
import { default as xr } from "./ap-form/ap-form-list.vue.mjs";
|
|
77
|
+
import { default as ur } from "./ap-form/search-form/index.vue.mjs";
|
|
78
|
+
import { default as cr } from "./ap-form/modal-form/index.vue.mjs";
|
|
79
|
+
import { ApFieldText as Fr } from "./ap-field/text/index.mjs";
|
|
80
|
+
import { default as Sr } from "./ap-field/checkbox/index.vue.mjs";
|
|
81
|
+
import { default as br } from "./ap-field/date/index.vue.mjs";
|
|
82
|
+
import { default as Pr } from "./ap-field/number/index.vue.mjs";
|
|
83
|
+
import { default as Rr } from "./ap-field/radio/index.vue.mjs";
|
|
84
|
+
import { default as hr } from "./ap-field/switch/index.vue.mjs";
|
|
85
|
+
import { default as Br } from "./ap-field/text-area/index.vue.mjs";
|
|
86
|
+
import { default as kr } from "./ap-field/date-range/index.vue.mjs";
|
|
87
|
+
import { default as Nr } from "./ap-field/select/index.vue.mjs";
|
|
88
|
+
import { default as Er } from "./ap-field/text/password.vue.mjs";
|
|
89
|
+
import { default as Xr } from "./ap-field/slider/index.vue.mjs";
|
|
90
|
+
import { default as Yr } from "./ap-field/segmented/index.vue.mjs";
|
|
91
|
+
import { default as Hr } from "./ap-field/rate/index.vue.mjs";
|
|
92
|
+
import { default as zr } from "./ap-action/item-modal/index.vue.mjs";
|
|
93
|
+
import { default as _r } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
94
|
+
import { default as qr } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
95
|
+
import { default as Qr } from "./ap-action/group/index.vue.mjs";
|
|
96
|
+
import { generateTableList as Zr } from "./ap-custom-column/utils.mjs";
|
|
97
|
+
import { useCacheColumnSetting as ot } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
98
|
+
import { default as rt } from "./ap-custom-column/custom-column.vue.mjs";
|
|
99
|
+
import { default as at } from "./ap-custom-column/column-select.vue.mjs";
|
|
100
|
+
import { DictCode as ft } from "./work-order-modal/interfaces.mjs";
|
|
101
|
+
import { createWorkOrderModal as lt } from "./work-order-modal/createWorkOrder.mjs";
|
|
102
|
+
import { default as st } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
103
|
+
import { default as xt } from "./ap-tag/ap-tag.vue.mjs";
|
|
104
|
+
import { default as ut } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
105
|
+
import { default as ct } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
|
|
106
|
+
import { NeedNameKeyDefault as Ft } from "./ap-upload/apUploadTypes.mjs";
|
|
107
|
+
import { default as St } from "./ap-upload/apUpload.vue.mjs";
|
|
108
|
+
import { default as bt } from "./ap-download/ap-download.vue.mjs";
|
|
109
|
+
import { default as Pt } from "./business/title/ApTitle.vue.mjs";
|
|
110
|
+
import { useTablePaging as Rt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
111
|
+
import { default as ht } from "./ap-table/ap-table.vue.mjs";
|
|
112
|
+
import { default as Bt } from "./editable-table/index.vue.mjs";
|
|
113
|
+
import { default as kt } from "./editable-table/form-item.vue.mjs";
|
|
109
114
|
export {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
115
|
+
A as APConfigProvider,
|
|
116
|
+
Qr as ApActionGroup,
|
|
117
|
+
co as ApActionItem,
|
|
118
|
+
qr as ApActionItemDropdown,
|
|
119
|
+
zr as ApActionItemModal,
|
|
120
|
+
_r as ApActionItemPopconfirm,
|
|
121
|
+
rt as ApCustomColumn,
|
|
122
|
+
at as ApCustomSelect,
|
|
123
|
+
bt as ApDownload,
|
|
124
|
+
io as ApField,
|
|
125
|
+
Sr as ApFieldCheckbox,
|
|
126
|
+
br as ApFieldDate,
|
|
127
|
+
kr as ApFieldDateRange,
|
|
128
|
+
Pr as ApFieldNumber,
|
|
129
|
+
Er as ApFieldPassword,
|
|
130
|
+
Rr as ApFieldRadio,
|
|
131
|
+
Hr as ApFieldRate,
|
|
132
|
+
Yr as ApFieldSegmented,
|
|
133
|
+
Nr as ApFieldSelect,
|
|
134
|
+
Xr as ApFieldSlider,
|
|
135
|
+
hr as ApFieldSwitch,
|
|
136
|
+
Fr as ApFieldText,
|
|
137
|
+
Br as ApFieldTextArea,
|
|
138
|
+
lo as ApForm,
|
|
139
|
+
lr as ApFormItem,
|
|
140
|
+
ar as ApFormItemCheckbox,
|
|
141
|
+
qe as ApFormItemDate,
|
|
142
|
+
Qe as ApFormItemDateRange,
|
|
143
|
+
sr as ApFormItemGroup,
|
|
144
|
+
_e as ApFormItemNumber,
|
|
145
|
+
Ze as ApFormItemRadio,
|
|
146
|
+
or as ApFormItemSelect,
|
|
147
|
+
rr as ApFormItemSwitch,
|
|
148
|
+
He as ApFormItemText,
|
|
149
|
+
ze as ApFormItemTextArea,
|
|
150
|
+
fr as ApFormItemTextPassword,
|
|
151
|
+
xr as ApFormList,
|
|
152
|
+
cr as ApFormModalForm,
|
|
153
|
+
ur as ApFormSearchForm,
|
|
154
|
+
ct as ApInfoLayout,
|
|
155
|
+
ht as ApTable,
|
|
156
|
+
xt as ApTag,
|
|
157
|
+
ut as ApTagGroup,
|
|
158
|
+
Pt as ApTitle,
|
|
159
|
+
St as ApUpload,
|
|
160
|
+
te as ApiCascader,
|
|
161
|
+
pe as ApiRadioGroup,
|
|
162
|
+
me as ApiSelect,
|
|
163
|
+
de as ApiTransfer,
|
|
164
|
+
ie as ApiTree,
|
|
165
|
+
Te as ApiTreeSelect,
|
|
166
|
+
_ as BaseButton,
|
|
161
167
|
Q as BaseModal,
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
168
|
+
P as BasicArrow,
|
|
169
|
+
D as BasicHelp,
|
|
170
|
+
R as BasicTitle,
|
|
171
|
+
C as CollapseContainer,
|
|
172
|
+
_o as CollapseTransition,
|
|
173
|
+
Yo as ConfigProvider,
|
|
174
|
+
eo as CountdownButton,
|
|
175
|
+
ro as CountdownInput,
|
|
170
176
|
Z as CropperAvatar,
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
ge as
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
k as
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
177
|
+
$ as CropperImage,
|
|
178
|
+
H as Description,
|
|
179
|
+
ft as DictCode,
|
|
180
|
+
fo as Dropdown,
|
|
181
|
+
Ee as EditTableHeaderIcon,
|
|
182
|
+
Bt as EditableTable,
|
|
183
|
+
kt as EditableTableFormItem,
|
|
184
|
+
h as ExpandTransition,
|
|
185
|
+
w as ExpandXTransition,
|
|
186
|
+
B as FadeTransition,
|
|
187
|
+
z as Field,
|
|
188
|
+
x as Icon,
|
|
189
|
+
b as IconPicker,
|
|
190
|
+
ge as ModalButton,
|
|
191
|
+
Ft as NeedNameKeyDefault,
|
|
192
|
+
De as PopConfirmButton,
|
|
193
|
+
Ae as ProForm,
|
|
194
|
+
ke as ProTable,
|
|
195
|
+
Ce as ProTableForm,
|
|
196
|
+
Ie as ProTableFormInner,
|
|
197
|
+
ne as RadioButtonGroup,
|
|
198
|
+
M as ScaleRotateTransition,
|
|
199
|
+
k as ScaleTransition,
|
|
200
|
+
S as ScrollContainer,
|
|
201
|
+
G as ScrollXReverseTransition,
|
|
202
|
+
N as ScrollXTransition,
|
|
203
|
+
y as ScrollYReverseTransition,
|
|
204
|
+
E as ScrollYTransition,
|
|
205
|
+
T as Scrollbar,
|
|
198
206
|
L as SlideXReverseTransition,
|
|
199
207
|
X as SlideXTransition,
|
|
200
208
|
K as SlideYReverseTransition,
|
|
201
209
|
Y as SlideYTransition,
|
|
202
210
|
q as StrengthMeter,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
no as
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
ve as
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
211
|
+
n as SvgIcon,
|
|
212
|
+
Ne as TableAction,
|
|
213
|
+
Xe as TableImg,
|
|
214
|
+
st as WorkOrderModal,
|
|
215
|
+
Fo as _ApTitle,
|
|
216
|
+
no as adminToken,
|
|
217
|
+
uo as aplusToken,
|
|
218
|
+
wo as buildLocaleContext,
|
|
219
|
+
Bo as buildTranslator,
|
|
220
|
+
bo as configProviderContextKey,
|
|
221
|
+
So as configProviderProps,
|
|
222
|
+
ao as createPrompt,
|
|
223
|
+
lt as createWorkOrderModal,
|
|
224
|
+
yo as defaultNamespace,
|
|
225
|
+
zo as en,
|
|
226
|
+
Zr as generateTableList,
|
|
227
|
+
oe as isComponentFormSchema,
|
|
228
|
+
ee as isSlotFormSchema,
|
|
229
|
+
Do as keysOf,
|
|
230
|
+
Mo as localeContextKey,
|
|
231
|
+
Eo as namespaceContextKey,
|
|
232
|
+
Ro as provideGlobalConfig,
|
|
233
|
+
go as tableDefaultConfig,
|
|
234
|
+
ko as translate,
|
|
235
|
+
ot as useCacheColumnSetting,
|
|
236
|
+
Qo as useComponentRegister,
|
|
237
|
+
qo as useDescription,
|
|
238
|
+
Zo as useForm,
|
|
239
|
+
Lo as useGetDerivedNamespace,
|
|
240
|
+
vo as useGlobalConfig,
|
|
241
|
+
Go as useLocale,
|
|
242
|
+
we as useModal,
|
|
243
|
+
ve as useModalContext,
|
|
244
|
+
Be as useModalInner,
|
|
245
|
+
Xo as useNamespace,
|
|
246
|
+
Ye as useTable,
|
|
247
|
+
Rt as useTablePaging,
|
|
248
|
+
Ho as zhCn
|
|
240
249
|
};
|
|
@@ -55,24 +55,24 @@ const X = /* @__PURE__ */ T({
|
|
|
55
55
|
g(e(G).Item, null, {
|
|
56
56
|
default: o(() => [
|
|
57
57
|
i(t.$slots, "resetBefore"),
|
|
58
|
-
t.
|
|
58
|
+
t.showSubmitButton ? (a(), l(e(f), m({
|
|
59
59
|
key: 0,
|
|
60
|
-
type: "
|
|
60
|
+
type: "primary",
|
|
61
61
|
class: e(c)("button", "space")
|
|
62
|
-
},
|
|
62
|
+
}, v.value, { onClick: e(x) }), {
|
|
63
63
|
default: o(() => [
|
|
64
|
-
p(d(
|
|
64
|
+
p(d(v.value.text), 1)
|
|
65
65
|
]),
|
|
66
66
|
_: 1
|
|
67
67
|
}, 16, ["class", "onClick"])) : r("", !0),
|
|
68
68
|
i(t.$slots, "submitBefore"),
|
|
69
|
-
t.
|
|
69
|
+
t.showResetButton ? (a(), l(e(f), m({
|
|
70
70
|
key: 1,
|
|
71
|
-
type: "
|
|
71
|
+
type: "default",
|
|
72
72
|
class: e(c)("button", "space")
|
|
73
|
-
},
|
|
73
|
+
}, y.value, { onClick: e(w) }), {
|
|
74
74
|
default: o(() => [
|
|
75
|
-
p(d(
|
|
75
|
+
p(d(y.value.text), 1)
|
|
76
76
|
]),
|
|
77
77
|
_: 1
|
|
78
78
|
}, 16, ["class", "onClick"])) : r("", !0),
|
|
@@ -529,6 +529,14 @@ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] di
|
|
|
529
529
|
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header {
|
|
530
530
|
border-radius: 0;
|
|
531
531
|
}
|
|
532
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
533
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td {
|
|
534
|
+
background-color: #f3fbf7;
|
|
535
|
+
}
|
|
536
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td,
|
|
537
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td {
|
|
538
|
+
background-color: #e6f6ef;
|
|
539
|
+
}
|
|
532
540
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td,
|
|
533
541
|
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td {
|
|
534
542
|
padding: 13.5px 16px;
|
|
@@ -42,6 +42,14 @@
|
|
|
42
42
|
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header {
|
|
43
43
|
border-radius: 0;
|
|
44
44
|
}
|
|
45
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
46
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected > td {
|
|
47
|
+
background-color: #f3fbf7;
|
|
48
|
+
}
|
|
49
|
+
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td,
|
|
50
|
+
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr.ant-table-row-selected:hover > td {
|
|
51
|
+
background-color: #e6f6ef;
|
|
52
|
+
}
|
|
45
53
|
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td,
|
|
46
54
|
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td {
|
|
47
55
|
padding: 13.5px 16px;
|
|
@@ -4,21 +4,36 @@
|
|
|
4
4
|
line-height: 22px;
|
|
5
5
|
cursor: pointer;
|
|
6
6
|
}
|
|
7
|
-
.aplus-action-item--primary {
|
|
7
|
+
.aplus-action-item-aplus--primary {
|
|
8
8
|
color: #0070ff;
|
|
9
9
|
}
|
|
10
|
-
.aplus-action-item--primary:not(.aplus-action-item--disabled):hover {
|
|
10
|
+
.aplus-action-item-aplus--primary:not(.aplus-action-item--disabled):hover {
|
|
11
11
|
color: #66a9ff;
|
|
12
12
|
}
|
|
13
|
-
.aplus-action-item--
|
|
13
|
+
.aplus-action-item-admin--primary {
|
|
14
|
+
color: #1890FF;
|
|
15
|
+
}
|
|
16
|
+
.aplus-action-item-admin--primary:not(.aplus-action-item--disabled):hover {
|
|
17
|
+
color: #5EB1FF;
|
|
18
|
+
}
|
|
19
|
+
.aplus-action-item-aplus--success {
|
|
14
20
|
color: #2ed1a3;
|
|
15
21
|
}
|
|
16
|
-
.aplus-action-item--error {
|
|
22
|
+
.aplus-action-item-aplus--error {
|
|
17
23
|
color: #FF4D4F;
|
|
18
24
|
}
|
|
19
|
-
.aplus-action-item--warn {
|
|
25
|
+
.aplus-action-item-aplus--warn {
|
|
20
26
|
color: #FFA940;
|
|
21
27
|
}
|
|
28
|
+
.aplus-action-item-admin--success {
|
|
29
|
+
color: #52C41A;
|
|
30
|
+
}
|
|
31
|
+
.aplus-action-item-admin--error {
|
|
32
|
+
color: #FF4D4F;
|
|
33
|
+
}
|
|
34
|
+
.aplus-action-item-admin--warn {
|
|
35
|
+
color: #FAAD14;
|
|
36
|
+
}
|
|
22
37
|
.aplus-action-item--loading {
|
|
23
38
|
opacity: 0.35;
|
|
24
39
|
transition: opacity 0.2s;
|
|
@@ -6,12 +6,16 @@
|
|
|
6
6
|
border-bottom: 1px solid #E9EDF3;
|
|
7
7
|
margin-bottom: 0;
|
|
8
8
|
}
|
|
9
|
-
.aplus-ap-form-modal-
|
|
9
|
+
.aplus-ap-form-modal-form__content-admin {
|
|
10
10
|
padding: 20px;
|
|
11
11
|
}
|
|
12
12
|
.aplus-ap-form-modal-form__footer {
|
|
13
13
|
padding-top: 20px;
|
|
14
14
|
}
|
|
15
|
+
.aplus-ap-form-modal-form__footer-admin {
|
|
16
|
+
border-top: 1px solid #E9EDF3;
|
|
17
|
+
padding: 12px 20px;
|
|
18
|
+
}
|
|
15
19
|
.aplus-ap-form-modal-form .ant-modal-close {
|
|
16
20
|
top: 16px;
|
|
17
21
|
}
|