@aplus-frontend/ui 0.0.39 → 0.0.40

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 (57) hide show
  1. package/es/index.mjs +149 -148
  2. package/es/src/ap-field/interface.d.ts +1 -1
  3. package/es/src/ap-field/text-area/index.vue.mjs +9 -10
  4. package/es/src/ap-form/style/ap-form-item.css +6 -6
  5. package/es/src/ap-table/ap-table.vue.d.ts +6 -0
  6. package/es/src/ap-table/ap-table.vue.mjs +90 -89
  7. package/es/src/ap-table/constants.d.ts +0 -6
  8. package/es/src/business/ap-export-group/ApExportGroup.vue.d.ts +14 -0
  9. package/es/src/business/ap-export-group/ApExportGroup.vue.mjs +4 -0
  10. package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +117 -0
  11. package/es/src/business/ap-export-group/interface.d.ts +37 -0
  12. package/es/src/business/ap-export-group/interface.mjs +4 -0
  13. package/es/src/business/index.d.ts +105 -0
  14. package/es/src/business/index.mjs +12 -9
  15. package/es/src/config-provider/config-provider.mjs +22 -17
  16. package/es/src/editable-table/form-item.vue.d.ts +4 -0
  17. package/es/src/editable-table/form-item.vue.mjs +83 -75
  18. package/es/src/editable-table/index.vue.d.ts +4 -0
  19. package/es/src/editable-table/index.vue.mjs +80 -72
  20. package/es/src/editable-table/interface.d.ts +8 -0
  21. package/es/src/editable-table/utils.d.ts +8 -0
  22. package/es/src/editable-table/utils.mjs +29 -18
  23. package/es/src/index.mjs +175 -174
  24. package/es/src/locale/lang/en.mjs +6 -0
  25. package/es/src/locale/lang/zh-cn.mjs +6 -0
  26. package/es/src/theme/ap-form/ap-form-item.css +6 -6
  27. package/es/src/theme/css-var/index.d.ts +7 -0
  28. package/es/src/theme/css-var/index.mjs +45 -0
  29. package/lib/index.js +1 -1
  30. package/lib/src/ap-field/interface.d.ts +1 -1
  31. package/lib/src/ap-field/text-area/index.vue.js +1 -1
  32. package/lib/src/ap-form/style/ap-form-item.css +6 -6
  33. package/lib/src/ap-table/ap-table.vue.d.ts +6 -0
  34. package/lib/src/ap-table/ap-table.vue.js +1 -1
  35. package/lib/src/ap-table/constants.d.ts +0 -6
  36. package/lib/src/business/ap-export-group/ApExportGroup.vue.d.ts +14 -0
  37. package/lib/src/business/ap-export-group/ApExportGroup.vue.js +1 -0
  38. package/lib/src/business/ap-export-group/ApExportGroup.vue2.js +1 -0
  39. package/lib/src/business/ap-export-group/interface.d.ts +37 -0
  40. package/lib/src/business/ap-export-group/interface.js +1 -0
  41. package/lib/src/business/index.d.ts +105 -0
  42. package/lib/src/business/index.js +1 -1
  43. package/lib/src/config-provider/config-provider.js +1 -1
  44. package/lib/src/editable-table/form-item.vue.d.ts +4 -0
  45. package/lib/src/editable-table/form-item.vue.js +1 -1
  46. package/lib/src/editable-table/index.vue.d.ts +4 -0
  47. package/lib/src/editable-table/index.vue.js +1 -1
  48. package/lib/src/editable-table/interface.d.ts +8 -0
  49. package/lib/src/editable-table/utils.d.ts +8 -0
  50. package/lib/src/editable-table/utils.js +1 -1
  51. package/lib/src/index.js +1 -1
  52. package/lib/src/locale/lang/en.js +1 -1
  53. package/lib/src/locale/lang/zh-cn.js +1 -1
  54. package/lib/src/theme/ap-form/ap-form-item.css +6 -6
  55. package/lib/src/theme/css-var/index.d.ts +7 -0
  56. package/lib/src/theme/css-var/index.js +1 -0
  57. package/package.json +6 -5
package/es/index.mjs CHANGED
@@ -1,74 +1,74 @@
1
- import * as o from "./src/index.mjs";
1
+ import * as e from "./src/index.mjs";
2
2
  import "./src/hooks/index.mjs";
3
3
  import { Icon as l, SvgIcon as s } from "./src/icon/index.mjs";
4
4
  import { configProviderProps as x } from "./src/config-provider/config-provider-props.mjs";
5
- import { configProviderContextKey as n, tableDefaultConfig as u } from "./src/config-provider/constants.mjs";
5
+ import { configProviderContextKey as u, tableDefaultConfig as n } from "./src/config-provider/constants.mjs";
6
6
  import { keysOf as c, provideGlobalConfig as F, useGlobalConfig as T } from "./src/config-provider/hooks/use-global-config.mjs";
7
7
  import { buildLocaleContext as S, buildTranslator as b, localeContextKey as I, translate as g, useLocale as P } from "./src/config-provider/hooks/use-locale.mjs";
8
8
  import { defaultNamespace as h, namespaceContextKey as R, useGetDerivedNamespace as v, useNamespace as M } from "./src/config-provider/hooks/use-namespace.mjs";
9
- import { ConfigProvider as w, globalConfigCached as B } from "./src/config-provider/config-provider.mjs";
9
+ import { ConfigProvider as k, globalConfigCached as w } from "./src/config-provider/config-provider.mjs";
10
10
  import { APConfigProvider as L } from "./src/config-provider/index.mjs";
11
- import { Scrollbar as N } from "./src/scroll-bar/index.mjs";
11
+ import { Scrollbar as E } from "./src/scroll-bar/index.mjs";
12
12
  import { CollapseContainer as X, ScrollContainer as K } from "./src/container/index.mjs";
13
13
  import { IconPicker as O } from "./src/icon-picker/index.mjs";
14
14
  import { default as W } from "./src/locale/lang/zh-cn.mjs";
15
15
  import { default as U } from "./src/locale/lang/en.mjs";
16
16
  import { BasicArrow as $, BasicHelp as j, BasicTitle as q } from "./src/basic/index.mjs";
17
17
  import { default as Q } from "./src/transition/collapse-transition.vue.mjs";
18
- import { ExpandTransition as _, ExpandXTransition as ee, FadeTransition as oe, ScaleRotateTransition as re, ScaleTransition as te, ScrollXReverseTransition as ae, ScrollXTransition as pe, ScrollYReverseTransition as fe, ScrollYTransition as me, SlideXReverseTransition as le, SlideXTransition as se, SlideYReverseTransition as de, SlideYTransition as xe } from "./src/transition/index.mjs";
19
- import { useDescription as ne } from "./src/description/use-description.mjs";
20
- import { Description as Ae } from "./src/description/index.mjs";
21
- import { useComponentRegister as Fe } from "./src/pro-form/hooks/use-component-register.mjs";
22
- import { useForm as Ce } from "./src/pro-form/hooks/use-form.mjs";
23
- import { isComponentFormSchema as be, isSlotFormSchema as Ie } from "./src/pro-form/types/form.mjs";
24
- import { Field as Pe } from "./src/pro-form/index.mjs";
25
- import { default as he } from "./src/pro-form/components/api-cascader.vue.mjs";
26
- import { default as ve } from "./src/pro-form/components/api-radio-group.vue.mjs";
27
- import { default as ke } from "./src/pro-form/components/api-select.vue.mjs";
28
- import { default as Be } from "./src/pro-form/components/api-transfer.vue.mjs";
29
- import { default as Le } from "./src/pro-form/components/api-tree.vue.mjs";
30
- import { default as Ne } from "./src/pro-form/components/radio-button-group.vue.mjs";
31
- import { default as Xe } from "./src/pro-form/pro-form.vue.mjs";
32
- import { default as Ye } from "./src/pro-form/components/api-tree-select.vue.mjs";
33
- import { default as He } from "./src/pro-form/table-form.vue.mjs";
34
- import { default as ze } from "./src/pro-form/table-form-inner.vue.mjs";
35
- import { default as Ve } from "./src/base-button/modal-button.vue.mjs";
36
- import { default as je } from "./src/base-button/pop-confirm-button.vue.mjs";
37
- import { BaseButton as Je } from "./src/base-button/index.mjs";
38
- import { StrengthMeter as Ze } from "./src/strength-meter/index.mjs";
39
- import { useModalContext as eo } from "./src/modal/hooks/use-modal-context.mjs";
40
- import { useModal as ro, useModalInner as to } from "./src/modal/hooks/use-modal.mjs";
41
- import { BaseModal as po } from "./src/modal/index.mjs";
42
- import { CropperAvatar as mo, CropperImage as lo } from "./src/cropper/index.mjs";
43
- import { CountdownButton as xo, CountdownInput as io } from "./src/count-down/index.mjs";
44
- import { createPrompt as uo } from "./src/prompt/index.mjs";
45
- import { Dropdown as co } from "./src/dropdown/index.mjs";
46
- import { default as To } from "./src/pro-table/pro-table.vue.mjs";
47
- import { default as So } from "./src/pro-table/components/table-action.vue.mjs";
48
- import { default as Io } from "./src/pro-table/components/edit-table-header-icon.vue.mjs";
49
- import { default as Po } from "./src/pro-table/components/table-image.vue.mjs";
50
- import { useTable as ho } from "./src/pro-table/hooks/use-table.mjs";
51
- import { ApFormItemText as vo } from "./src/ap-form/items/text/index.mjs";
52
- import { default as ko } from "./src/ap-form/items/text-area/index.vue.mjs";
53
- import { default as Bo } from "./src/ap-form/items/number/index.vue.mjs";
54
- import { default as Lo } from "./src/ap-form/items/date/index.vue.mjs";
55
- import { default as No } from "./src/ap-form/items/date-range/index.vue.mjs";
56
- import { default as Xo } from "./src/ap-form/items/radio/index.vue.mjs";
57
- import { default as Yo } from "./src/ap-form/items/select/index.vue.mjs";
58
- import { default as Ho } from "./src/ap-form/items/switch/index.vue.mjs";
59
- import { default as zo } from "./src/ap-form/items/checkbox/index.vue.mjs";
60
- import { default as Vo } from "./src/ap-form/items/text/password.vue.mjs";
61
- import { ApForm as jo } from "./src/ap-form/index.mjs";
62
- import { default as Jo } from "./src/ap-form/ap-form-item.vue.mjs";
63
- import { default as Zo } from "./src/ap-form/ap-form-item-group/index.vue.mjs";
64
- import { default as er } from "./src/ap-form/ap-form-list.vue.mjs";
18
+ import { ExpandTransition as _, ExpandXTransition as oo, FadeTransition as eo, ScaleRotateTransition as ro, ScaleTransition as to, ScrollXReverseTransition as ao, ScrollXTransition as po, ScrollYReverseTransition as fo, ScrollYTransition as mo, SlideXReverseTransition as lo, SlideXTransition as so, SlideYReverseTransition as xo, SlideYTransition as io } from "./src/transition/index.mjs";
19
+ import { useDescription as no } from "./src/description/use-description.mjs";
20
+ import { Description as co } from "./src/description/index.mjs";
21
+ import { useComponentRegister as To } from "./src/pro-form/hooks/use-component-register.mjs";
22
+ import { useForm as So } from "./src/pro-form/hooks/use-form.mjs";
23
+ import { isComponentFormSchema as Io, isSlotFormSchema as go } from "./src/pro-form/types/form.mjs";
24
+ import { Field as Do } from "./src/pro-form/index.mjs";
25
+ import { default as Ro } from "./src/pro-form/components/api-cascader.vue.mjs";
26
+ import { default as Mo } from "./src/pro-form/components/api-radio-group.vue.mjs";
27
+ import { default as ko } from "./src/pro-form/components/api-select.vue.mjs";
28
+ import { default as Bo } from "./src/pro-form/components/api-transfer.vue.mjs";
29
+ import { default as yo } from "./src/pro-form/components/api-tree.vue.mjs";
30
+ import { default as No } from "./src/pro-form/components/radio-button-group.vue.mjs";
31
+ import { default as Ko } from "./src/pro-form/pro-form.vue.mjs";
32
+ import { default as Oo } from "./src/pro-form/components/api-tree-select.vue.mjs";
33
+ import { default as Wo } from "./src/pro-form/table-form.vue.mjs";
34
+ import { default as Uo } from "./src/pro-form/table-form-inner.vue.mjs";
35
+ import { default as $o } from "./src/base-button/modal-button.vue.mjs";
36
+ import { default as qo } from "./src/base-button/pop-confirm-button.vue.mjs";
37
+ import { BaseButton as Qo } from "./src/base-button/index.mjs";
38
+ import { StrengthMeter as _o } from "./src/strength-meter/index.mjs";
39
+ import { useModalContext as ee } from "./src/modal/hooks/use-modal-context.mjs";
40
+ import { useModal as te, useModalInner as ae } from "./src/modal/hooks/use-modal.mjs";
41
+ import { BaseModal as fe } from "./src/modal/index.mjs";
42
+ import { CropperAvatar as le, CropperImage as se } from "./src/cropper/index.mjs";
43
+ import { CountdownButton as xe, CountdownInput as ie } from "./src/count-down/index.mjs";
44
+ import { createPrompt as ne } from "./src/prompt/index.mjs";
45
+ import { Dropdown as ce } from "./src/dropdown/index.mjs";
46
+ import { default as Te } from "./src/pro-table/pro-table.vue.mjs";
47
+ import { default as Se } from "./src/pro-table/components/table-action.vue.mjs";
48
+ import { default as Ie } from "./src/pro-table/components/edit-table-header-icon.vue.mjs";
49
+ import { default as Pe } from "./src/pro-table/components/table-image.vue.mjs";
50
+ import { useTable as he } from "./src/pro-table/hooks/use-table.mjs";
51
+ import { ApFormItemText as ve } from "./src/ap-form/items/text/index.mjs";
52
+ import { default as Ge } from "./src/ap-form/items/text-area/index.vue.mjs";
53
+ import { default as we } from "./src/ap-form/items/number/index.vue.mjs";
54
+ import { default as Le } from "./src/ap-form/items/date/index.vue.mjs";
55
+ import { default as Ee } from "./src/ap-form/items/date-range/index.vue.mjs";
56
+ import { default as Xe } from "./src/ap-form/items/radio/index.vue.mjs";
57
+ import { default as Ye } from "./src/ap-form/items/select/index.vue.mjs";
58
+ import { default as He } from "./src/ap-form/items/switch/index.vue.mjs";
59
+ import { default as ze } from "./src/ap-form/items/checkbox/index.vue.mjs";
60
+ import { default as Ve } from "./src/ap-form/items/text/password.vue.mjs";
61
+ import { ApForm as je } from "./src/ap-form/index.mjs";
62
+ import { default as Je } from "./src/ap-form/ap-form-item.vue.mjs";
63
+ import { default as Ze } from "./src/ap-form/ap-form-item-group/index.vue.mjs";
64
+ import { default as or } from "./src/ap-form/ap-form-list.vue.mjs";
65
65
  import { default as rr } from "./src/ap-form/search-form/index.vue.mjs";
66
66
  import { default as ar } from "./src/ap-form/modal-form/index.vue.mjs";
67
67
  import { ApField as fr } from "./src/ap-field/index.mjs";
68
68
  import { ApFieldText as lr } from "./src/ap-field/text/index.mjs";
69
69
  import { default as dr } from "./src/ap-field/checkbox/index.vue.mjs";
70
70
  import { default as ir } from "./src/ap-field/date/index.vue.mjs";
71
- import { default as ur } from "./src/ap-field/number/index.vue.mjs";
71
+ import { default as nr } from "./src/ap-field/number/index.vue.mjs";
72
72
  import { default as cr } from "./src/ap-field/radio/index.vue.mjs";
73
73
  import { default as Tr } from "./src/ap-field/switch/index.vue.mjs";
74
74
  import { default as Sr } from "./src/ap-field/text-area/index.vue.mjs";
@@ -76,10 +76,10 @@ import { default as Ir } from "./src/ap-field/date-range/index.vue.mjs";
76
76
  import { default as Pr } from "./src/ap-field/select/index.vue.mjs";
77
77
  import { default as hr } from "./src/ap-field/text/password.vue.mjs";
78
78
  import { default as vr } from "./src/ap-field/slider/index.vue.mjs";
79
- import { default as kr } from "./src/ap-field/segmented/index.vue.mjs";
80
- import { default as Br } from "./src/ap-field/rate/index.vue.mjs";
79
+ import { default as Gr } from "./src/ap-field/segmented/index.vue.mjs";
80
+ import { default as wr } from "./src/ap-field/rate/index.vue.mjs";
81
81
  import { adminToken as Lr, aplusToken as yr } from "./src/design-token/index.mjs";
82
- import { ApActionItem as Er } from "./src/ap-action/index.mjs";
82
+ import { ApActionItem as Nr } from "./src/ap-action/index.mjs";
83
83
  import { default as Kr } from "./src/ap-action/item-modal/index.vue.mjs";
84
84
  import { default as Or } from "./src/ap-action/item-popconfirm/index.vue.mjs";
85
85
  import { default as Wr } from "./src/ap-action/item-dropdown/index.vue.mjs";
@@ -88,82 +88,83 @@ import { generateTableList as $r } from "./src/ap-custom-column/utils.mjs";
88
88
  import { useCacheColumnSetting as qr } from "./src/ap-custom-column/useCacheColumnSetting.mjs";
89
89
  import { default as Qr } from "./src/ap-custom-column/custom-column.vue.mjs";
90
90
  import { default as _r } from "./src/ap-custom-column/column-select.vue.mjs";
91
- import { DictCode as ot } from "./src/work-order-modal/interfaces.mjs";
91
+ import { DictCode as et } from "./src/work-order-modal/interfaces.mjs";
92
92
  import { createWorkOrderModal as tt } from "./src/work-order-modal/createWorkOrder.mjs";
93
93
  import { default as pt } from "./src/work-order-modal/work-order-modal.vue.mjs";
94
94
  import { default as mt } from "./src/ap-tag/ap-tag.vue.mjs";
95
95
  import { default as st } from "./src/ap-tag/ap-tag-group.vue.mjs";
96
96
  import { default as xt } from "./src/ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
97
- import { NeedNameKeyDefault as nt } from "./src/ap-upload/apUploadTypes.mjs";
97
+ import { NeedNameKeyDefault as ut } from "./src/ap-upload/apUploadTypes.mjs";
98
98
  import { default as At } from "./src/ap-upload/apUpload.vue.mjs";
99
99
  import { default as Ft } from "./src/ap-download/ap-download.vue.mjs";
100
100
  import { CheckCard as Ct } from "./src/check-card/index.mjs";
101
101
  import { default as bt } from "./src/check-card/group.vue.mjs";
102
102
  import { ApModal as gt } from "./src/ap-modal/index.mjs";
103
103
  import { default as Dt } from "./src/ap-list/index.vue.mjs";
104
- import { ApExpandAlert as Rt, ApLabel as vt, ApSelectLayout as Mt, ApStatus as kt, ApStatusGroup as wt, ApTitle as Bt } from "./src/business/index.mjs";
105
- import { useTablePaging as Lt } from "./src/ap-table/hooks/use-table-paging.mjs";
104
+ import { ApExpandAlert as Rt, ApExportGroup as vt, ApLabel as Mt, ApSelectLayout as Gt, ApStatus as kt, ApStatusGroup as wt, ApTitle as Bt } from "./src/business/index.mjs";
105
+ import { useTablePaging as yt } from "./src/ap-table/hooks/use-table-paging.mjs";
106
106
  import { default as Nt } from "./src/ap-table/ap-table.vue.mjs";
107
- import { default as Xt } from "./src/editable-table/index.vue.mjs";
108
- import { default as Yt } from "./src/editable-table/form-item.vue.mjs";
109
- import { default as Ht } from "./src/ap-descriptions/ap-descriptions.vue.mjs";
110
- import { useMessage as zt } from "./src/hooks/useMessage.mjs";
111
- import { useControllableValue as Vt } from "./src/hooks/useControllableValue.mjs";
107
+ import { default as Kt } from "./src/editable-table/index.vue.mjs";
108
+ import { default as Ot } from "./src/editable-table/form-item.vue.mjs";
109
+ import { default as Wt } from "./src/ap-descriptions/ap-descriptions.vue.mjs";
110
+ import { useMessage as Ut } from "./src/hooks/useMessage.mjs";
111
+ import { useControllableValue as $t } from "./src/hooks/useControllableValue.mjs";
112
112
  const p = {
113
113
  install: (r) => {
114
- for (const t in o) {
115
- const e = o[t];
116
- e.install && r.use(e);
114
+ for (const t in e) {
115
+ const o = e[t];
116
+ o.install && r.use(o);
117
117
  }
118
118
  }
119
119
  };
120
120
  export {
121
121
  L as APConfigProvider,
122
122
  Ur as ApActionGroup,
123
- Er as ApActionItem,
123
+ Nr as ApActionItem,
124
124
  Wr as ApActionItemDropdown,
125
125
  Kr as ApActionItemModal,
126
126
  Or as ApActionItemPopconfirm,
127
127
  Qr as ApCustomColumn,
128
128
  _r as ApCustomSelect,
129
- Ht as ApDescriptions,
129
+ Wt as ApDescriptions,
130
130
  Ft as ApDownload,
131
131
  Rt as ApExpandAlert,
132
+ vt as ApExportGroup,
132
133
  fr as ApField,
133
134
  dr as ApFieldCheckbox,
134
135
  ir as ApFieldDate,
135
136
  Ir as ApFieldDateRange,
136
- ur as ApFieldNumber,
137
+ nr as ApFieldNumber,
137
138
  hr as ApFieldPassword,
138
139
  cr as ApFieldRadio,
139
- Br as ApFieldRate,
140
- kr as ApFieldSegmented,
140
+ wr as ApFieldRate,
141
+ Gr as ApFieldSegmented,
141
142
  Pr as ApFieldSelect,
142
143
  vr as ApFieldSlider,
143
144
  Tr as ApFieldSwitch,
144
145
  lr as ApFieldText,
145
146
  Sr as ApFieldTextArea,
146
- jo as ApForm,
147
- Jo as ApFormItem,
148
- zo as ApFormItemCheckbox,
149
- Lo as ApFormItemDate,
150
- No as ApFormItemDateRange,
151
- Zo as ApFormItemGroup,
152
- Bo as ApFormItemNumber,
153
- Xo as ApFormItemRadio,
154
- Yo as ApFormItemSelect,
155
- Ho as ApFormItemSwitch,
156
- vo as ApFormItemText,
157
- ko as ApFormItemTextArea,
158
- Vo as ApFormItemTextPassword,
159
- er as ApFormList,
147
+ je as ApForm,
148
+ Je as ApFormItem,
149
+ ze as ApFormItemCheckbox,
150
+ Le as ApFormItemDate,
151
+ Ee as ApFormItemDateRange,
152
+ Ze as ApFormItemGroup,
153
+ we as ApFormItemNumber,
154
+ Xe as ApFormItemRadio,
155
+ Ye as ApFormItemSelect,
156
+ He as ApFormItemSwitch,
157
+ ve as ApFormItemText,
158
+ Ge as ApFormItemTextArea,
159
+ Ve as ApFormItemTextPassword,
160
+ or as ApFormList,
160
161
  ar as ApFormModalForm,
161
162
  rr as ApFormSearchForm,
162
163
  xt as ApInfoLayout,
163
- vt as ApLabel,
164
+ Mt as ApLabel,
164
165
  Dt as ApList,
165
166
  gt as ApModal,
166
- Mt as ApSelectLayout,
167
+ Gt as ApSelectLayout,
167
168
  kt as ApStatus,
168
169
  wt as ApStatusGroup,
169
170
  Nt as ApTable,
@@ -171,14 +172,14 @@ export {
171
172
  st as ApTagGroup,
172
173
  Bt as ApTitle,
173
174
  At as ApUpload,
174
- he as ApiCascader,
175
- ve as ApiRadioGroup,
176
- ke as ApiSelect,
177
- Be as ApiTransfer,
178
- Le as ApiTree,
179
- Ye as ApiTreeSelect,
180
- Je as BaseButton,
181
- po as BaseModal,
175
+ Ro as ApiCascader,
176
+ Mo as ApiRadioGroup,
177
+ ko as ApiSelect,
178
+ Bo as ApiTransfer,
179
+ yo as ApiTree,
180
+ Oo as ApiTreeSelect,
181
+ Qo as BaseButton,
182
+ fe as BaseModal,
182
183
  $ as BasicArrow,
183
184
  j as BasicHelp,
184
185
  q as BasicTitle,
@@ -186,83 +187,83 @@ export {
186
187
  bt as CheckCardGroup,
187
188
  X as CollapseContainer,
188
189
  Q as CollapseTransition,
189
- w as ConfigProvider,
190
- xo as CountdownButton,
191
- io as CountdownInput,
192
- mo as CropperAvatar,
193
- lo as CropperImage,
194
- Ae as Description,
195
- ot as DictCode,
196
- co as Dropdown,
197
- Io as EditTableHeaderIcon,
198
- Xt as EditableTable,
199
- Yt as EditableTableFormItem,
190
+ k as ConfigProvider,
191
+ xe as CountdownButton,
192
+ ie as CountdownInput,
193
+ le as CropperAvatar,
194
+ se as CropperImage,
195
+ co as Description,
196
+ et as DictCode,
197
+ ce as Dropdown,
198
+ Ie as EditTableHeaderIcon,
199
+ Kt as EditableTable,
200
+ Ot as EditableTableFormItem,
200
201
  _ as ExpandTransition,
201
- ee as ExpandXTransition,
202
- oe as FadeTransition,
203
- Pe as Field,
202
+ oo as ExpandXTransition,
203
+ eo as FadeTransition,
204
+ Do as Field,
204
205
  l as Icon,
205
206
  O as IconPicker,
206
- Ve as ModalButton,
207
- nt as NeedNameKeyDefault,
208
- je as PopConfirmButton,
209
- Xe as ProForm,
210
- To as ProTable,
211
- He as ProTableForm,
212
- ze as ProTableFormInner,
213
- Ne as RadioButtonGroup,
214
- re as ScaleRotateTransition,
215
- te as ScaleTransition,
207
+ $o as ModalButton,
208
+ ut as NeedNameKeyDefault,
209
+ qo as PopConfirmButton,
210
+ Ko as ProForm,
211
+ Te as ProTable,
212
+ Wo as ProTableForm,
213
+ Uo as ProTableFormInner,
214
+ No as RadioButtonGroup,
215
+ ro as ScaleRotateTransition,
216
+ to as ScaleTransition,
216
217
  K as ScrollContainer,
217
- ae as ScrollXReverseTransition,
218
- pe as ScrollXTransition,
219
- fe as ScrollYReverseTransition,
220
- me as ScrollYTransition,
221
- N as Scrollbar,
222
- le as SlideXReverseTransition,
223
- se as SlideXTransition,
224
- de as SlideYReverseTransition,
225
- xe as SlideYTransition,
226
- Ze as StrengthMeter,
218
+ ao as ScrollXReverseTransition,
219
+ po as ScrollXTransition,
220
+ fo as ScrollYReverseTransition,
221
+ mo as ScrollYTransition,
222
+ E as Scrollbar,
223
+ lo as SlideXReverseTransition,
224
+ so as SlideXTransition,
225
+ xo as SlideYReverseTransition,
226
+ io as SlideYTransition,
227
+ _o as StrengthMeter,
227
228
  s as SvgIcon,
228
- So as TableAction,
229
- Po as TableImg,
229
+ Se as TableAction,
230
+ Pe as TableImg,
230
231
  pt as WorkOrderModal,
231
232
  Lr as adminToken,
232
233
  yr as aplusToken,
233
234
  S as buildLocaleContext,
234
235
  b as buildTranslator,
235
- n as configProviderContextKey,
236
+ u as configProviderContextKey,
236
237
  x as configProviderProps,
237
- uo as createPrompt,
238
+ ne as createPrompt,
238
239
  tt as createWorkOrderModal,
239
240
  p as default,
240
241
  h as defaultNamespace,
241
242
  U as en,
242
243
  $r as generateTableList,
243
- B as globalConfigCached,
244
- be as isComponentFormSchema,
245
- Ie as isSlotFormSchema,
244
+ w as globalConfigCached,
245
+ Io as isComponentFormSchema,
246
+ go as isSlotFormSchema,
246
247
  c as keysOf,
247
248
  I as localeContextKey,
248
249
  R as namespaceContextKey,
249
250
  F as provideGlobalConfig,
250
- u as tableDefaultConfig,
251
+ n as tableDefaultConfig,
251
252
  g as translate,
252
253
  qr as useCacheColumnSetting,
253
- Fe as useComponentRegister,
254
- Vt as useControllableValue,
255
- ne as useDescription,
256
- Ce as useForm,
254
+ To as useComponentRegister,
255
+ $t as useControllableValue,
256
+ no as useDescription,
257
+ So as useForm,
257
258
  v as useGetDerivedNamespace,
258
259
  T as useGlobalConfig,
259
260
  P as useLocale,
260
- zt as useMessage,
261
- ro as useModal,
262
- eo as useModalContext,
263
- to as useModalInner,
261
+ Ut as useMessage,
262
+ te as useModal,
263
+ ee as useModalContext,
264
+ ae as useModalInner,
264
265
  M as useNamespace,
265
- ho as useTable,
266
- Lt as useTablePaging,
266
+ he as useTable,
267
+ yt as useTablePaging,
267
268
  W as zhCn
268
269
  };
@@ -74,7 +74,7 @@ export type ApFieldSwitchProps = BasicApFieldProps<Omit<SwitchProps, 'onClick'>>
74
74
  onAction?: (checked: string | boolean | number, e?: Event) => boolean | Promise<boolean>;
75
75
  confirm?: Pick<PopconfirmProps, 'title' | 'okText' | 'cancelText' | 'description' | 'showCancel' | 'icon' | 'okType' | 'onCancel'>;
76
76
  };
77
- export type ApFieldTextAreaProps = BasicApFieldProps<TextAreaProps> & {
77
+ export type ApFieldTextAreaProps = BasicApFieldProps<Omit<TextAreaProps, 'autosize'>> & {
78
78
  emptyText?: string;
79
79
  };
80
80
  export type ApFieldTextAreaExpose = {
@@ -1,5 +1,5 @@
1
- import { defineComponent as f, ref as y, computed as B, openBlock as r, createElementBlock as x, normalizeClass as v, unref as o, toDisplayString as h, createBlock as b, mergeProps as z } from "vue";
2
- import { isNil as C, omit as A } from "lodash-unified";
1
+ import { defineComponent as f, ref as y, computed as x, openBlock as n, createElementBlock as B, normalizeClass as v, unref as o, toDisplayString as h, createBlock as b, mergeProps as C } from "vue";
2
+ import { isNil as z, omit as A } from "lodash-unified";
3
3
  import "../../hooks/index.mjs";
4
4
  import "../../config-provider/index.mjs";
5
5
  import { Input as g } from "ant-design-vue";
@@ -7,7 +7,7 @@ import "./style.css";
7
7
  import { useDefaultPlaceholder as T } from "../hooks/use-default-placeholder.mjs";
8
8
  import { useControllableValue as k } from "../../hooks/useControllableValue.mjs";
9
9
  import { useNamespace as _ } from "../../config-provider/hooks/use-namespace.mjs";
10
- const S = /* @__PURE__ */ f({
10
+ const j = /* @__PURE__ */ f({
11
11
  name: "ApFieldTextArea",
12
12
  __name: "index",
13
13
  props: {
@@ -15,7 +15,6 @@ const S = /* @__PURE__ */ f({
15
15
  class: {},
16
16
  style: {},
17
17
  rows: {},
18
- autosize: { type: [Boolean, Object] },
19
18
  autoSize: { type: [Boolean, Object] },
20
19
  onResize: {},
21
20
  onCompositionstart: {},
@@ -62,21 +61,21 @@ const S = /* @__PURE__ */ f({
62
61
  const t = y(), l = u, i = s, { value: a, updateValue: d } = k(l, i), { b: m } = _("field-text-area"), c = T("TextArea", l);
63
62
  return p({
64
63
  focus: (e) => {
65
- var n;
66
- (n = t.value) == null || n.focus(e);
64
+ var r;
65
+ (r = t.value) == null || r.focus(e);
67
66
  },
68
67
  blur: () => {
69
68
  var e;
70
69
  (e = t.value) == null || e.blur();
71
70
  },
72
- resizableTextArea: B(() => {
71
+ resizableTextArea: x(() => {
73
72
  var e;
74
73
  return (e = t.value) == null ? void 0 : e.resizableTextArea;
75
74
  })
76
- }), (e, n) => e.mode === "read" ? (r(), x("span", {
75
+ }), (e, r) => e.mode === "read" ? (n(), B("span", {
77
76
  key: 0,
78
77
  class: v(o(m)())
79
- }, h(o(C)(o(a)) || o(a) === "" ? e.emptyText : o(a)), 3)) : (r(), b(o(g).TextArea, z({ key: 1 }, o(A)(l, ["onUpdate:value", "value"]), {
78
+ }, h(o(z)(o(a)) || o(a) === "" ? e.emptyText : o(a)), 3)) : (n(), b(o(g).TextArea, C({ key: 1 }, o(A)(l, ["onUpdate:value", "value"]), {
80
79
  placeholder: o(c),
81
80
  value: o(a),
82
81
  "onUpdate:value": o(d),
@@ -86,5 +85,5 @@ const S = /* @__PURE__ */ f({
86
85
  }
87
86
  });
88
87
  export {
89
- S as default
88
+ j as default
90
89
  };
@@ -1,6 +1,6 @@
1
1
  .aplus-ap-form-item--bordered {
2
2
  box-sizing: border-box;
3
- border: 1px solid #dee4ed;
3
+ border: 1px solid var(--ap-form-bordered-border-color-base);
4
4
  border-radius: 4px;
5
5
  padding-inline: 12px;
6
6
  }
@@ -38,15 +38,15 @@
38
38
  min-height: 30px;
39
39
  }
40
40
  .aplus-ap-form-item--bordered:hover {
41
- border-color: #66a9ff;
41
+ border-color: var(--ap-form-bordered-border-color-hover);
42
42
  }
43
43
  .aplus-ap-form-item--bordered:focus {
44
- border-color: #66a9ff;
45
- box-shadow: 0 0 0 2px rgba(5, 155, 255, 0.1);
44
+ border-color: var(--ap-form-bordered-border-color-active);
45
+ box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color);
46
46
  }
47
47
  .aplus-ap-form-item--focused {
48
- border-color: #66a9ff;
49
- box-shadow: 0 0 0 2px rgba(5, 155, 255, 0.1);
48
+ border-color: var(--ap-form-bordered-border-color-active);
49
+ box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color);
50
50
  }
51
51
  .aplus-ap-form-item .ant-form-show-help .ant-form-item-explain-error {
52
52
  font-size: 12px;
@@ -717,6 +717,7 @@ declare const _default: <RecordType>(__VLS_props: {
717
717
  expandIcon?: any;
718
718
  title?: ((params: Omit<RowSelectionReturnType<RecordType>, "rowSelection" | "selectedRows"> & {
719
719
  selectedRows: RecordType[];
720
+ selectedRowKeys: (string | number)[];
720
721
  }) => any) | undefined;
721
722
  footer?: any;
722
723
  summary?: any;
@@ -735,6 +736,7 @@ declare const _default: <RecordType>(__VLS_props: {
735
736
  expandIcon?: any;
736
737
  title?: ((params: Omit<RowSelectionReturnType<RecordType>, "rowSelection" | "selectedRows"> & {
737
738
  selectedRows: RecordType[];
739
+ selectedRowKeys: (string | number)[];
738
740
  }) => any) | undefined;
739
741
  footer?: any;
740
742
  summary?: any;
@@ -1481,6 +1483,7 @@ declare const _default: <RecordType>(__VLS_props: {
1481
1483
  expandIcon?: any;
1482
1484
  title?: ((params: Omit<RowSelectionReturnType<RecordType>, "rowSelection" | "selectedRows"> & {
1483
1485
  selectedRows: RecordType[];
1486
+ selectedRowKeys: (string | number)[];
1484
1487
  }) => any) | undefined;
1485
1488
  footer?: any;
1486
1489
  summary?: any;
@@ -1499,6 +1502,7 @@ declare const _default: <RecordType>(__VLS_props: {
1499
1502
  expandIcon?: any;
1500
1503
  title?: ((params: Omit<RowSelectionReturnType<RecordType>, "rowSelection" | "selectedRows"> & {
1501
1504
  selectedRows: RecordType[];
1505
+ selectedRowKeys: (string | number)[];
1502
1506
  }) => any) | undefined;
1503
1507
  footer?: any;
1504
1508
  summary?: any;
@@ -2232,6 +2236,7 @@ declare const _default: <RecordType>(__VLS_props: {
2232
2236
  expandIcon?: any;
2233
2237
  title?: ((params: Omit<RowSelectionReturnType<RecordType>, "rowSelection" | "selectedRows"> & {
2234
2238
  selectedRows: RecordType[];
2239
+ selectedRowKeys: (string | number)[];
2235
2240
  }) => any) | undefined;
2236
2241
  footer?: any;
2237
2242
  summary?: any;
@@ -2250,6 +2255,7 @@ declare const _default: <RecordType>(__VLS_props: {
2250
2255
  expandIcon?: any;
2251
2256
  title?: ((params: Omit<RowSelectionReturnType<RecordType>, "rowSelection" | "selectedRows"> & {
2252
2257
  selectedRows: RecordType[];
2258
+ selectedRowKeys: (string | number)[];
2253
2259
  }) => any) | undefined;
2254
2260
  footer?: any;
2255
2261
  summary?: any;