@aplus-frontend/ui 0.0.12 → 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.
Files changed (65) hide show
  1. package/es/index.mjs +166 -158
  2. package/es/src/ap-action/item/index.vue2.mjs +5 -5
  3. package/es/src/ap-form/ap-form.vue2.mjs +22 -22
  4. package/es/src/ap-table/ap-table.vue.d.ts +5 -1
  5. package/es/src/business/index.d.ts +126 -0
  6. package/es/src/business/index.mjs +8 -0
  7. package/es/src/business/title/ApTitle.vue.d.ts +45 -0
  8. package/es/src/business/title/ApTitle.vue.mjs +50 -0
  9. package/es/src/business/title/ApTitle.vue2.mjs +4 -0
  10. package/es/src/business/title/interface.d.ts +21 -0
  11. package/es/src/business/title/style.css +39 -0
  12. package/es/src/components.d.ts +1 -0
  13. package/es/src/editable-table/form-item.vue.d.ts +304 -0
  14. package/es/src/editable-table/form-item.vue.mjs +189 -0
  15. package/es/src/editable-table/form-item.vue2.mjs +4 -0
  16. package/es/src/editable-table/hooks/use-get-columns.d.ts +5 -0
  17. package/es/src/editable-table/hooks/use-get-columns.mjs +76 -0
  18. package/es/src/editable-table/index.d.ts +5 -0
  19. package/es/src/editable-table/index.mjs +3 -0
  20. package/es/src/editable-table/index.vue.d.ts +196 -0
  21. package/es/src/editable-table/index.vue.mjs +209 -0
  22. package/es/src/editable-table/index.vue2.mjs +4 -0
  23. package/es/src/editable-table/interface.d.ts +71 -6
  24. package/es/src/editable-table/interface.mjs +1 -0
  25. package/es/src/editable-table/style/index.css +35 -0
  26. package/es/src/editable-table/utils.mjs +10 -0
  27. package/es/src/index.d.ts +2 -0
  28. package/es/src/index.mjs +229 -220
  29. package/es/src/theme/antd-global-overwrite/admin/index.css +8 -0
  30. package/es/src/theme/antd-global-overwrite/admin/table.css +8 -0
  31. package/es/src/theme/ap-title/ap-title.css +39 -0
  32. package/es/src/theme/editable-table/index.css +35 -0
  33. package/lib/index.js +1 -1
  34. package/lib/src/ap-action/item/index.vue2.js +1 -1
  35. package/lib/src/ap-form/ap-form.vue2.js +1 -1
  36. package/lib/src/ap-table/ap-table.vue.d.ts +5 -1
  37. package/lib/src/business/index.d.ts +126 -0
  38. package/lib/src/business/index.js +1 -0
  39. package/lib/src/business/title/ApTitle.vue.d.ts +45 -0
  40. package/lib/src/business/title/ApTitle.vue.js +1 -0
  41. package/lib/src/business/title/ApTitle.vue2.js +1 -0
  42. package/lib/src/business/title/interface.d.ts +21 -0
  43. package/lib/src/business/title/style.css +39 -0
  44. package/lib/src/components.d.ts +1 -0
  45. package/lib/src/editable-table/form-item.vue.d.ts +304 -0
  46. package/lib/src/editable-table/form-item.vue.js +1 -0
  47. package/lib/src/editable-table/form-item.vue2.js +1 -0
  48. package/lib/src/editable-table/hooks/use-get-columns.d.ts +5 -0
  49. package/lib/src/editable-table/hooks/use-get-columns.js +1 -0
  50. package/lib/src/editable-table/index.d.ts +5 -0
  51. package/lib/src/editable-table/index.js +1 -0
  52. package/lib/src/editable-table/index.vue.d.ts +196 -0
  53. package/lib/src/editable-table/index.vue.js +1 -0
  54. package/lib/src/editable-table/index.vue2.js +1 -0
  55. package/lib/src/editable-table/interface.d.ts +71 -6
  56. package/lib/src/editable-table/interface.js +1 -0
  57. package/lib/src/editable-table/style/index.css +35 -0
  58. package/lib/src/editable-table/utils.js +1 -0
  59. package/lib/src/index.d.ts +2 -0
  60. package/lib/src/index.js +1 -1
  61. package/lib/src/theme/antd-global-overwrite/admin/index.css +8 -0
  62. package/lib/src/theme/antd-global-overwrite/admin/table.css +8 -0
  63. package/lib/src/theme/ap-title/ap-title.css +39 -0
  64. package/lib/src/theme/editable-table/index.css +35 -0
  65. package/package.json +1 -1
package/es/src/index.mjs CHANGED
@@ -1,240 +1,249 @@
1
- import { Icon as i, SvgIcon as x } from "./icon/index.mjs";
2
- import { APConfigProvider as u } from "./config-provider/index.mjs";
3
- import { Scrollbar as c } from "./scroll-bar/index.mjs";
4
- import { CollapseContainer as T, ScrollContainer as C } from "./container/index.mjs";
5
- import { IconPicker as I } from "./icon-picker/index.mjs";
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 b, BasicHelp as P, BasicTitle as D } from "./basic/index.mjs";
8
- import { ExpandTransition as v, ExpandXTransition as h, FadeTransition as w, ScaleRotateTransition as B, ScaleTransition as M, ScrollXReverseTransition as k, ScrollXTransition as G, ScrollYReverseTransition as N, ScrollYTransition as y, SlideXReverseTransition as L, SlideXTransition as X, SlideYReverseTransition as K, SlideYTransition as Y } from "./transition/index.mjs";
9
- import { Description as O } from "./description/index.mjs";
10
- import { Field as W } from "./pro-form/index.mjs";
11
- import { BaseButton as U } from "./base-button/index.mjs";
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 _ } from "./cropper/index.mjs";
15
- import { CountdownButton as oo, CountdownInput as eo } from "./count-down/index.mjs";
16
- import { createPrompt as to } from "./prompt/index.mjs";
17
- import { Dropdown as po } from "./dropdown/index.mjs";
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 mo } from "./ap-form/index.mjs";
20
- import { ApField as so } from "./ap-field/index.mjs";
21
- import { adminToken as xo, aplusToken as no } from "./design-token/index.mjs";
22
- import { ApActionItem as Ao } from "./ap-action/index.mjs";
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 { configProviderProps as Fo } from "./config-provider/config-provider-props.mjs";
31
- import { configProviderContextKey as Co, tableDefaultConfig as So } from "./config-provider/constants.mjs";
32
- import { keysOf as go, provideGlobalConfig as bo, useGlobalConfig as Po } from "./config-provider/hooks/use-global-config.mjs";
33
- import { buildLocaleContext as Ro, buildTranslator as vo, localeContextKey as ho, translate as wo, useLocale as Bo } from "./config-provider/hooks/use-locale.mjs";
34
- import { defaultNamespace as ko, namespaceContextKey as Go, useGetDerivedNamespace as No, useNamespace as yo } from "./config-provider/hooks/use-namespace.mjs";
35
- import { ConfigProvider as Xo } from "./config-provider/config-provider.mjs";
36
- import { default as Yo } from "./locale/lang/zh-cn.mjs";
37
- import { default as Oo } from "./locale/lang/en.mjs";
38
- import { default as Wo } from "./transition/collapse-transition.vue.mjs";
39
- import { useDescription as Uo } from "./description/use-description.mjs";
40
- import { useComponentRegister as qo } from "./pro-form/hooks/use-component-register.mjs";
41
- import { useForm as Qo } from "./pro-form/hooks/use-form.mjs";
42
- import { isComponentFormSchema as Zo, isSlotFormSchema as _o } from "./pro-form/types/form.mjs";
43
- import { default as oe } from "./pro-form/components/api-cascader.vue.mjs";
44
- import { default as re } from "./pro-form/components/api-radio-group.vue.mjs";
45
- import { default as ae } from "./pro-form/components/api-select.vue.mjs";
46
- import { default as fe } from "./pro-form/components/api-transfer.vue.mjs";
47
- import { default as le } from "./pro-form/components/api-tree.vue.mjs";
48
- import { default as se } from "./pro-form/components/radio-button-group.vue.mjs";
49
- import { default as xe } from "./pro-form/pro-form.vue.mjs";
50
- import { default as ue } from "./pro-form/components/api-tree-select.vue.mjs";
51
- import { default as ce } from "./pro-form/table-form.vue.mjs";
52
- import { default as Te } from "./pro-form/table-form-inner.vue.mjs";
53
- import { default as Se } from "./base-button/modal-button.vue.mjs";
54
- import { default as ge } from "./base-button/pop-confirm-button.vue.mjs";
55
- import { useModalContext as Pe } from "./modal/hooks/use-modal-context.mjs";
56
- import { useModal as Re, useModalInner as ve } from "./modal/hooks/use-modal.mjs";
57
- import { default as we } from "./pro-table/pro-table.vue.mjs";
58
- import { default as Me } from "./pro-table/components/table-action.vue.mjs";
59
- import { default as Ge } from "./pro-table/components/edit-table-header-icon.vue.mjs";
60
- import { default as ye } from "./pro-table/components/table-image.vue.mjs";
61
- import { useTable as Xe } from "./pro-table/hooks/use-table.mjs";
62
- import { ApFormItemText as Ye } from "./ap-form/items/text/index.mjs";
63
- import { default as Oe } from "./ap-form/items/text-area/index.vue.mjs";
64
- import { default as We } from "./ap-form/items/number/index.vue.mjs";
65
- import { default as Ue } from "./ap-form/items/date/index.vue.mjs";
66
- import { default as qe } from "./ap-form/items/date-range/index.vue.mjs";
67
- import { default as Qe } from "./ap-form/items/radio/index.vue.mjs";
68
- import { default as Ze } from "./ap-form/items/select/index.vue.mjs";
69
- import { default as $e } from "./ap-form/items/switch/index.vue.mjs";
70
- import { default as er } from "./ap-form/items/checkbox/index.vue.mjs";
71
- import { default as tr } from "./ap-form/items/text/password.vue.mjs";
72
- import { default as pr } from "./ap-form/ap-form-item.vue.mjs";
73
- import { default as mr } from "./ap-form/ap-form-item-group/index.vue.mjs";
74
- import { default as dr } from "./ap-form/ap-form-list.vue.mjs";
75
- import { default as ir } from "./ap-form/search-form/index.vue.mjs";
76
- import { default as nr } from "./ap-form/modal-form/index.vue.mjs";
77
- import { ApFieldText as Ar } from "./ap-field/text/index.mjs";
78
- import { default as Fr } from "./ap-field/checkbox/index.vue.mjs";
79
- import { default as Cr } from "./ap-field/date/index.vue.mjs";
80
- import { default as Ir } from "./ap-field/number/index.vue.mjs";
81
- import { default as br } from "./ap-field/radio/index.vue.mjs";
82
- import { default as Dr } from "./ap-field/switch/index.vue.mjs";
83
- import { default as vr } from "./ap-field/text-area/index.vue.mjs";
84
- import { default as wr } from "./ap-field/date-range/index.vue.mjs";
85
- import { default as Mr } from "./ap-field/select/index.vue.mjs";
86
- import { default as Gr } from "./ap-field/text/password.vue.mjs";
87
- import { default as yr } from "./ap-field/slider/index.vue.mjs";
88
- import { default as Xr } from "./ap-field/segmented/index.vue.mjs";
89
- import { default as Yr } from "./ap-field/rate/index.vue.mjs";
90
- import { default as Or } from "./ap-action/item-modal/index.vue.mjs";
91
- import { default as Wr } from "./ap-action/item-popconfirm/index.vue.mjs";
92
- import { default as Ur } from "./ap-action/item-dropdown/index.vue.mjs";
93
- import { default as qr } from "./ap-action/group/index.vue.mjs";
94
- import { generateTableList as Qr } from "./ap-custom-column/utils.mjs";
95
- import { useCacheColumnSetting as Zr } from "./ap-custom-column/useCacheColumnSetting.mjs";
96
- import { default as $r } from "./ap-custom-column/custom-column.vue.mjs";
97
- import { default as et } from "./ap-custom-column/column-select.vue.mjs";
98
- import { DictCode as tt } from "./work-order-modal/interfaces.mjs";
99
- import { createWorkOrderModal as pt } from "./work-order-modal/createWorkOrder.mjs";
100
- import { default as mt } from "./work-order-modal/work-order-modal.vue.mjs";
101
- import { default as dt } from "./ap-tag/ap-tag.vue.mjs";
102
- import { default as it } from "./ap-tag/ap-tag-group.vue.mjs";
103
- import { default as nt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
104
- import { NeedNameKeyDefault as At } from "./ap-upload/apUploadTypes.mjs";
105
- import { default as Ft } from "./ap-upload/apUpload.vue.mjs";
106
- import { default as Ct } from "./ap-download/ap-download.vue.mjs";
107
- import { useTablePaging as It } from "./ap-table/hooks/use-table-paging.mjs";
108
- import { default as bt } from "./ap-table/ap-table.vue.mjs";
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
- u as APConfigProvider,
111
- qr as ApActionGroup,
112
- Ao as ApActionItem,
113
- Ur as ApActionItemDropdown,
114
- Or as ApActionItemModal,
115
- Wr as ApActionItemPopconfirm,
116
- $r as ApCustomColumn,
117
- et as ApCustomSelect,
118
- Ct as ApDownload,
119
- so as ApField,
120
- Fr as ApFieldCheckbox,
121
- Cr as ApFieldDate,
122
- wr as ApFieldDateRange,
123
- Ir as ApFieldNumber,
124
- Gr as ApFieldPassword,
125
- br as ApFieldRadio,
126
- Yr as ApFieldRate,
127
- Xr as ApFieldSegmented,
128
- Mr as ApFieldSelect,
129
- yr as ApFieldSlider,
130
- Dr as ApFieldSwitch,
131
- Ar as ApFieldText,
132
- vr as ApFieldTextArea,
133
- mo as ApForm,
134
- pr as ApFormItem,
135
- er as ApFormItemCheckbox,
136
- Ue as ApFormItemDate,
137
- qe as ApFormItemDateRange,
138
- mr as ApFormItemGroup,
139
- We as ApFormItemNumber,
140
- Qe as ApFormItemRadio,
141
- Ze as ApFormItemSelect,
142
- $e as ApFormItemSwitch,
143
- Ye as ApFormItemText,
144
- Oe as ApFormItemTextArea,
145
- tr as ApFormItemTextPassword,
146
- dr as ApFormList,
147
- nr as ApFormModalForm,
148
- ir as ApFormSearchForm,
149
- nt as ApInfoLayout,
150
- bt as ApTable,
151
- dt as ApTag,
152
- it as ApTagGroup,
153
- Ft as ApUpload,
154
- oe as ApiCascader,
155
- re as ApiRadioGroup,
156
- ae as ApiSelect,
157
- fe as ApiTransfer,
158
- le as ApiTree,
159
- ue as ApiTreeSelect,
160
- U as BaseButton,
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
- b as BasicArrow,
163
- P as BasicHelp,
164
- D as BasicTitle,
165
- T as CollapseContainer,
166
- Wo as CollapseTransition,
167
- Xo as ConfigProvider,
168
- oo as CountdownButton,
169
- eo as CountdownInput,
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
- _ as CropperImage,
172
- O as Description,
173
- tt as DictCode,
174
- po as Dropdown,
175
- Ge as EditTableHeaderIcon,
176
- v as ExpandTransition,
177
- h as ExpandXTransition,
178
- w as FadeTransition,
179
- W as Field,
180
- i as Icon,
181
- I as IconPicker,
182
- Se as ModalButton,
183
- At as NeedNameKeyDefault,
184
- ge as PopConfirmButton,
185
- xe as ProForm,
186
- we as ProTable,
187
- ce as ProTableForm,
188
- Te as ProTableFormInner,
189
- se as RadioButtonGroup,
190
- B as ScaleRotateTransition,
191
- M as ScaleTransition,
192
- C as ScrollContainer,
193
- k as ScrollXReverseTransition,
194
- G as ScrollXTransition,
195
- N as ScrollYReverseTransition,
196
- y as ScrollYTransition,
197
- c as Scrollbar,
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
- x as SvgIcon,
204
- Me as TableAction,
205
- ye as TableImg,
206
- mt as WorkOrderModal,
207
- xo as adminToken,
208
- no as aplusToken,
209
- Ro as buildLocaleContext,
210
- vo as buildTranslator,
211
- Co as configProviderContextKey,
212
- Fo as configProviderProps,
213
- to as createPrompt,
214
- pt as createWorkOrderModal,
215
- ko as defaultNamespace,
216
- Oo as en,
217
- Qr as generateTableList,
218
- Zo as isComponentFormSchema,
219
- _o as isSlotFormSchema,
220
- go as keysOf,
221
- ho as localeContextKey,
222
- Go as namespaceContextKey,
223
- bo as provideGlobalConfig,
224
- So as tableDefaultConfig,
225
- wo as translate,
226
- Zr as useCacheColumnSetting,
227
- qo as useComponentRegister,
228
- Uo as useDescription,
229
- Qo as useForm,
230
- No as useGetDerivedNamespace,
231
- Po as useGlobalConfig,
232
- Bo as useLocale,
233
- Re as useModal,
234
- Pe as useModalContext,
235
- ve as useModalInner,
236
- yo as useNamespace,
237
- Xe as useTable,
238
- It as useTablePaging,
239
- Yo as zhCn
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
  };
@@ -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;
@@ -0,0 +1,39 @@
1
+ .aplus-ap-title {
2
+ position: relative;
3
+ width: 100%;
4
+ height: 32px;
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: space-between;
8
+ padding-left: 11px;
9
+ font-size: 14px;
10
+ }
11
+ .aplus-ap-title::before {
12
+ position: absolute;
13
+ content: '';
14
+ left: 0;
15
+ top: 6px;
16
+ width: 3px;
17
+ height: 20px;
18
+ background: #0070ff;
19
+ border-radius: 0px 4px 4px 0px;
20
+ }
21
+ .aplus-ap-title--aplus::before {
22
+ background: #0070ff;
23
+ }
24
+ .aplus-ap-title--admin::before {
25
+ background: #34b77c;
26
+ }
27
+ .aplus-ap-title__prefix {
28
+ font-weight: bold;
29
+ color: #182948;
30
+ display: flex;
31
+ align-items: center;
32
+ }
33
+ .aplus-ap-title__prefix .anticon-question-circle {
34
+ margin-left: 5px;
35
+ color: #8896b0;
36
+ }
37
+ .aplus-ap-title__suffix {
38
+ color: #526a90;
39
+ }
@@ -5,7 +5,42 @@
5
5
  .aplus-editable-table .ant-form-item {
6
6
  margin-bottom: 20px;
7
7
  }
8
+ .aplus-editable-table .ant-form-item-explain-error {
9
+ line-height: 20px;
10
+ }
8
11
  .aplus-editable-table__header-cell--required {
9
12
  color: #FF4D4F;
10
13
  padding-right: 2px;
11
14
  }
15
+ .aplus-editable-table .ant-pagination {
16
+ margin-bottom: 0 !important;
17
+ }
18
+ .aplus-editable-table .ant-pagination .ant-pagination-total-text {
19
+ flex: 1;
20
+ }
21
+ .aplus-editable-table tr > th.ant-table-cell {
22
+ background-color: #F2F6F9;
23
+ border-bottom-color: #E9EDF3;
24
+ }
25
+ .aplus-editable-table tr > th.ant-table-cell::before {
26
+ display: none;
27
+ }
28
+ .aplus-editable-table tr > td.ant-table-cell {
29
+ border-top-color: #E9EDF3;
30
+ }
31
+ .aplus-editable-table-admin .ant-pagination {
32
+ margin-bottom: 0 !important;
33
+ }
34
+ .aplus-editable-table-admin .ant-pagination .ant-pagination-total-text {
35
+ flex: 1;
36
+ }
37
+ .aplus-editable-table-admin tr > th.ant-table-cell {
38
+ background-color: #FAFAFA;
39
+ border-bottom-color: #E9E9E9;
40
+ }
41
+ .aplus-editable-table-admin tr > th.ant-table-cell::before {
42
+ display: none;
43
+ }
44
+ .aplus-editable-table-admin tr > td.ant-table-cell {
45
+ border-top-color: #E9E9E9;
46
+ }