@aplus-frontend/ui 0.6.0-beta.16 → 0.6.0-beta.18

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 (234) hide show
  1. package/es/index.mjs +118 -109
  2. package/es/src/ap-field/date-range/index.vue.mjs +8 -7
  3. package/es/src/ap-field/number/index.vue.d.ts +2 -4
  4. package/es/src/ap-field/radio/index.vue.d.ts +2 -4
  5. package/es/src/ap-field/rate/index.vue.d.ts +2 -4
  6. package/es/src/ap-field/select/index.vue.d.ts +3 -6
  7. package/es/src/ap-field/slider/index.vue.d.ts +2 -4
  8. package/es/src/ap-field/text/index.vue2.mjs +42 -44
  9. package/es/src/ap-field/text/password.vue.mjs +15 -17
  10. package/es/src/ap-field/text-area/index.vue.d.ts +2 -2
  11. package/es/src/ap-field/tree-select/index.vue.mjs +31 -30
  12. package/es/src/ap-form/ap-form.vue2.mjs +18 -17
  13. package/es/src/ap-form/dependency/index.vue.mjs +24 -23
  14. package/es/src/ap-form/drawer-form/index.vue.d.ts +9 -7
  15. package/es/src/ap-form/drawer-form/index.vue.mjs +58 -49
  16. package/es/src/ap-form/interface.d.ts +2 -2
  17. package/es/src/ap-form/item/index.vue.d.ts +5 -10
  18. package/es/src/ap-form/items/select/index.vue.mjs +12 -14
  19. package/es/src/ap-form/items/text/password.vue.mjs +9 -9
  20. package/es/src/ap-form/items/text-area/index.vue.d.ts +5 -5
  21. package/es/src/ap-form/items/tree-select/index.vue.mjs +12 -14
  22. package/es/src/ap-form/modal-form/index.vue.d.ts +9 -7
  23. package/es/src/ap-form/modal-form/index.vue.mjs +64 -55
  24. package/es/src/ap-form/provider/index.vue.mjs +6 -5
  25. package/es/src/ap-form/search-form/index.vue.d.ts +4 -8
  26. package/es/src/ap-form/search-form/index.vue.mjs +50 -50
  27. package/es/src/ap-form/set/index.vue.mjs +7 -6
  28. package/es/src/ap-grid/editable/form-item.vue.mjs +1 -1
  29. package/es/src/ap-grid/hooks/use-editable-columns.mjs +17 -17
  30. package/es/src/ap-grid/index.vue.mjs +79 -75
  31. package/es/src/ap-grid/interface.d.ts +13 -0
  32. package/es/src/ap-list/index.vue.d.ts +2 -9
  33. package/es/src/ap-list/index.vue.mjs +116 -106
  34. package/es/src/ap-list/interface.d.ts +20 -0
  35. package/es/src/ap-table/ap-table.vue.d.ts +10 -2
  36. package/es/src/ap-table/ap-table.vue2.mjs +87 -83
  37. package/es/src/ap-table/components/setting/modal/index.vue2.mjs +12 -11
  38. package/es/src/ap-table/constants.d.ts +4 -4
  39. package/es/src/ap-table/hooks/use-table-paging-ng.d.ts +9 -2
  40. package/es/src/ap-table/hooks/use-table-paging-ng.mjs +113 -105
  41. package/es/src/ap-table/interface.d.ts +14 -1
  42. package/es/src/ap-table/utils.d.ts +3 -3
  43. package/es/src/business/ap-card/ApCard.vue2.mjs +1 -1
  44. package/es/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
  45. package/es/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
  46. package/es/src/business/ap-keep-alive/cacher/lru-cacher.mjs +43 -0
  47. package/es/src/business/ap-keep-alive/hook.d.ts +10 -0
  48. package/es/src/business/ap-keep-alive/hook.mjs +31 -0
  49. package/es/src/business/ap-keep-alive/index.d.ts +101 -0
  50. package/es/src/business/ap-keep-alive/index.mjs +13 -0
  51. package/es/src/business/ap-keep-alive/interface.d.ts +35 -0
  52. package/es/src/business/ap-keep-alive/interface.mjs +54 -0
  53. package/es/src/business/ap-keep-alive/keep-alive.d.ts +51 -0
  54. package/es/src/business/ap-keep-alive/keep-alive.mjs +154 -0
  55. package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
  56. package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.mjs +21 -0
  57. package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
  58. package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.mjs +27 -0
  59. package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
  60. package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.mjs +18 -0
  61. package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
  62. package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.mjs +17 -0
  63. package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
  64. package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.mjs +18 -0
  65. package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
  66. package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.mjs +18 -0
  67. package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
  68. package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.mjs +12 -0
  69. package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
  70. package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.mjs +18 -0
  71. package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
  72. package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.mjs +18 -0
  73. package/es/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
  74. package/es/src/business/ap-keep-alive/keeper/index.mjs +27 -0
  75. package/es/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
  76. package/es/src/business/ap-keep-alive/keeper/step-keeper.mjs +17 -0
  77. package/es/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
  78. package/es/src/business/ap-keep-alive/keeper/tab-keeper.mjs +17 -0
  79. package/es/src/business/ap-keep-alive/utils.d.ts +22 -0
  80. package/es/src/business/ap-keep-alive/utils.mjs +41 -0
  81. package/es/src/business/ap-radio-group/ap-radio-group.vue2.mjs +23 -23
  82. package/es/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
  83. package/es/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
  84. package/es/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
  85. package/es/src/business/ap-table-modal/index.d.ts +32 -5
  86. package/es/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
  87. package/es/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
  88. package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
  89. package/es/src/business/batch-input-group/form-item.vue.mjs +14 -13
  90. package/es/src/business/batch-input-group/index.vue.mjs +10 -9
  91. package/es/src/business/hooks/usePageListApTable.d.ts +4 -1
  92. package/es/src/business/index.d.ts +1 -0
  93. package/es/src/business/index.mjs +18 -16
  94. package/es/src/editable-table/form-item.vue.mjs +23 -23
  95. package/es/src/full-screen/interface.d.ts +5 -6
  96. package/es/src/index.mjs +199 -190
  97. package/es/src/mask/index.vue.mjs +21 -20
  98. package/es/src/resize-observer/interface.d.ts +2 -3
  99. package/es/src/scroll-bar/interface.d.ts +7 -7
  100. package/es/src/scroll-view/interface.d.ts +2 -3
  101. package/es/src/splitter/SplitBar.vue2.mjs +1 -0
  102. package/es/src/splitter/Splitter.vue2.mjs +1 -0
  103. package/es/src/text/group.vue.mjs +7 -6
  104. package/es/src/text/index.vue.mjs +20 -19
  105. package/es/src/version.d.ts +1 -1
  106. package/es/src/version.mjs +1 -1
  107. package/es/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
  108. package/lib/index.js +1 -1
  109. package/lib/src/ap-field/date-range/index.vue.js +1 -1
  110. package/lib/src/ap-field/number/index.vue.d.ts +2 -4
  111. package/lib/src/ap-field/radio/index.vue.d.ts +2 -4
  112. package/lib/src/ap-field/rate/index.vue.d.ts +2 -4
  113. package/lib/src/ap-field/select/index.vue.d.ts +3 -6
  114. package/lib/src/ap-field/slider/index.vue.d.ts +2 -4
  115. package/lib/src/ap-field/text/index.vue2.js +1 -1
  116. package/lib/src/ap-field/text/password.vue.js +1 -1
  117. package/lib/src/ap-field/text-area/index.vue.d.ts +2 -2
  118. package/lib/src/ap-field/tree-select/index.vue.js +1 -1
  119. package/lib/src/ap-form/ap-form.vue2.js +1 -1
  120. package/lib/src/ap-form/dependency/index.vue.js +1 -1
  121. package/lib/src/ap-form/drawer-form/index.vue.d.ts +9 -7
  122. package/lib/src/ap-form/drawer-form/index.vue.js +1 -1
  123. package/lib/src/ap-form/interface.d.ts +2 -2
  124. package/lib/src/ap-form/item/index.vue.d.ts +5 -10
  125. package/lib/src/ap-form/items/select/index.vue.js +1 -1
  126. package/lib/src/ap-form/items/text/password.vue.js +1 -1
  127. package/lib/src/ap-form/items/text-area/index.vue.d.ts +5 -5
  128. package/lib/src/ap-form/items/tree-select/index.vue.js +1 -1
  129. package/lib/src/ap-form/modal-form/index.vue.d.ts +9 -7
  130. package/lib/src/ap-form/modal-form/index.vue.js +1 -1
  131. package/lib/src/ap-form/provider/index.vue.js +1 -1
  132. package/lib/src/ap-form/search-form/index.vue.d.ts +4 -8
  133. package/lib/src/ap-form/search-form/index.vue.js +1 -1
  134. package/lib/src/ap-form/set/index.vue.js +1 -1
  135. package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
  136. package/lib/src/ap-grid/hooks/use-editable-columns.js +1 -1
  137. package/lib/src/ap-grid/index.vue.js +1 -1
  138. package/lib/src/ap-grid/interface.d.ts +13 -0
  139. package/lib/src/ap-list/index.vue.d.ts +2 -9
  140. package/lib/src/ap-list/index.vue.js +1 -1
  141. package/lib/src/ap-list/interface.d.ts +20 -0
  142. package/lib/src/ap-table/ap-table.vue.d.ts +10 -2
  143. package/lib/src/ap-table/ap-table.vue2.js +1 -1
  144. package/lib/src/ap-table/components/setting/modal/index.vue2.js +1 -1
  145. package/lib/src/ap-table/constants.d.ts +4 -4
  146. package/lib/src/ap-table/hooks/use-table-paging-ng.d.ts +9 -2
  147. package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
  148. package/lib/src/ap-table/interface.d.ts +14 -1
  149. package/lib/src/ap-table/utils.d.ts +3 -3
  150. package/lib/src/business/ap-card/ApCard.vue2.js +1 -1
  151. package/lib/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
  152. package/lib/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
  153. package/lib/src/business/ap-keep-alive/cacher/lru-cacher.js +1 -0
  154. package/lib/src/business/ap-keep-alive/hook.d.ts +10 -0
  155. package/lib/src/business/ap-keep-alive/hook.js +1 -0
  156. package/lib/src/business/ap-keep-alive/index.d.ts +101 -0
  157. package/lib/src/business/ap-keep-alive/index.js +1 -0
  158. package/lib/src/business/ap-keep-alive/interface.d.ts +35 -0
  159. package/lib/src/business/ap-keep-alive/interface.js +1 -0
  160. package/lib/src/business/ap-keep-alive/keep-alive.d.ts +51 -0
  161. package/lib/src/business/ap-keep-alive/keep-alive.js +1 -0
  162. package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
  163. package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.js +1 -0
  164. package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
  165. package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.js +1 -0
  166. package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
  167. package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.js +1 -0
  168. package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
  169. package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.js +1 -0
  170. package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
  171. package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.js +1 -0
  172. package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
  173. package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.js +1 -0
  174. package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
  175. package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.js +1 -0
  176. package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
  177. package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.js +1 -0
  178. package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
  179. package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.js +1 -0
  180. package/lib/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
  181. package/lib/src/business/ap-keep-alive/keeper/index.js +1 -0
  182. package/lib/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
  183. package/lib/src/business/ap-keep-alive/keeper/step-keeper.js +1 -0
  184. package/lib/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
  185. package/lib/src/business/ap-keep-alive/keeper/tab-keeper.js +1 -0
  186. package/lib/src/business/ap-keep-alive/utils.d.ts +22 -0
  187. package/lib/src/business/ap-keep-alive/utils.js +1 -0
  188. package/lib/src/business/ap-radio-group/ap-radio-group.vue2.js +1 -1
  189. package/lib/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
  190. package/lib/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
  191. package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
  192. package/lib/src/business/ap-table-modal/index.d.ts +32 -5
  193. package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
  194. package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
  195. package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
  196. package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
  197. package/lib/src/business/batch-input-group/index.vue.js +2 -2
  198. package/lib/src/business/hooks/usePageListApTable.d.ts +4 -1
  199. package/lib/src/business/index.d.ts +1 -0
  200. package/lib/src/business/index.js +1 -1
  201. package/lib/src/editable-table/form-item.vue.js +1 -1
  202. package/lib/src/full-screen/interface.d.ts +5 -6
  203. package/lib/src/index.js +1 -1
  204. package/lib/src/mask/index.vue.js +1 -1
  205. package/lib/src/resize-observer/interface.d.ts +2 -3
  206. package/lib/src/scroll-bar/interface.d.ts +7 -7
  207. package/lib/src/scroll-view/interface.d.ts +2 -3
  208. package/lib/src/splitter/SplitBar.vue2.js +1 -1
  209. package/lib/src/splitter/Splitter.vue2.js +1 -1
  210. package/lib/src/text/group.vue.js +1 -1
  211. package/lib/src/text/index.vue.js +1 -1
  212. package/lib/src/version.d.ts +1 -1
  213. package/lib/src/version.js +1 -1
  214. package/lib/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
  215. package/package.json +7 -6
  216. package/theme/antd-global-overwrite/admin/field.css +12 -0
  217. package/theme/antd-global-overwrite/admin/field.less +16 -0
  218. package/theme/antd-global-overwrite/admin/index.css +12 -0
  219. package/theme/antd-global-overwrite/aplus/field.css +12 -0
  220. package/theme/antd-global-overwrite/aplus/field.less +16 -0
  221. package/theme/antd-global-overwrite/aplus/index.css +12 -0
  222. package/theme/ap-action/item.css +1 -1
  223. package/theme/ap-action/item.less +1 -1
  224. package/theme/ap-card/ap-card.css +1 -1
  225. package/theme/ap-card/ap-card.less +1 -1
  226. package/theme/ap-grid/index.css +6 -1
  227. package/theme/ap-grid/index.less +5 -0
  228. package/theme/ap-table/ap-table.css +6 -1
  229. package/theme/ap-table/ap-table.less +5 -0
  230. package/theme/ap-table-modal/index.css +6 -1
  231. package/theme/editable-table/index.css +1 -1
  232. package/theme/index.css +14 -2
  233. package/theme/ui-mode.css +2 -0
  234. package/theme/ui-mode.less +4 -0
package/es/index.mjs CHANGED
@@ -1,19 +1,19 @@
1
1
  import * as o from "./src/index.mjs";
2
- import { default as u } from "./src/path-map.mjs";
2
+ import { default as s } from "./src/path-map.mjs";
3
3
  import p from "./src/version.mjs";
4
4
  import "./src/hooks/index.mjs";
5
5
  import { configProviderProps as A } from "./src/config-provider/config-provider-props.mjs";
6
6
  import { DEFAULT_NAMESPACE as n, DEFAULT_UIMODE as c, configProviderContextKey as F } from "./src/config-provider/constants.mjs";
7
7
  import { keysOf as T, provideGlobalConfig as S, useGlobalConfig as b } from "./src/config-provider/hooks/use-global-config.mjs";
8
- import { buildLocaleContext as g, buildTranslator as D, localeContextKey as G, translate as h, useLocale as E } from "./src/config-provider/hooks/use-locale.mjs";
9
- import { defaultNamespace as R, namespaceContextKey as L, useGetDerivedNamespace as M, useNamespace as N } from "./src/config-provider/hooks/use-namespace.mjs";
10
- import { ConfigProvider as v, globalConfigCached as w } from "./src/config-provider/config-provider.mjs";
8
+ import { buildLocaleContext as g, buildTranslator as D, localeContextKey as G, translate as h, useLocale as P } from "./src/config-provider/hooks/use-locale.mjs";
9
+ import { defaultNamespace as R, namespaceContextKey as L, useGetDerivedNamespace as v, useNamespace as M } from "./src/config-provider/hooks/use-namespace.mjs";
10
+ import { ConfigProvider as y, globalConfigCached as w } from "./src/config-provider/config-provider.mjs";
11
11
  import { APConfigProvider as B } from "./src/config-provider/index.mjs";
12
- import { ApFormItemText as K } from "./src/ap-form/items/text/index.mjs";
12
+ import { ApFormItemText as O } from "./src/ap-form/items/text/index.mjs";
13
13
  import { default as V } from "./src/ap-form/items/text-area/index.vue.mjs";
14
14
  import { default as z } from "./src/ap-form/items/number/index.vue.mjs";
15
15
  import { default as $ } from "./src/ap-form/items/date/index.vue.mjs";
16
- import { default as j } from "./src/ap-form/items/date-range/index.vue.mjs";
16
+ import { default as H } from "./src/ap-form/items/date-range/index.vue.mjs";
17
17
  import { default as J } from "./src/ap-form/items/radio/index.vue.mjs";
18
18
  import { default as X } from "./src/ap-form/items/select/index.vue.mjs";
19
19
  import { default as Z } from "./src/ap-form/items/switch/index.vue.mjs";
@@ -22,7 +22,7 @@ import { default as te } from "./src/ap-form/items/text/password.vue.mjs";
22
22
  import { default as ae } from "./src/ap-form/items/tree-select/index.vue.mjs";
23
23
  import { ApForm as me } from "./src/ap-form/index.mjs";
24
24
  import { default as xe } from "./src/ap-form/item/index.vue.mjs";
25
- import { default as ue } from "./src/ap-form/item-group/index.vue.mjs";
25
+ import { default as se } from "./src/ap-form/item-group/index.vue.mjs";
26
26
  import { default as Ae } from "./src/ap-form/list/index.vue.mjs";
27
27
  import { default as ne } from "./src/ap-form/search-form/index.vue.mjs";
28
28
  import { default as Fe } from "./src/ap-form/modal-form/index.vue.mjs";
@@ -30,17 +30,17 @@ import { default as Te } from "./src/ap-form/dependency/index.vue.mjs";
30
30
  import { default as be } from "./src/ap-form/set/index.vue.mjs";
31
31
  import { default as ge } from "./src/ap-form/drawer-form/index.vue.mjs";
32
32
  import { default as Ge } from "./src/ap-form/render/control.vue.mjs";
33
- import { default as Ee } from "./src/ap-form/render/item.vue.mjs";
33
+ import { default as Pe } from "./src/ap-form/render/item.vue.mjs";
34
34
  import { default as Re } from "./src/ap-form/provider/index.vue.mjs";
35
- import { ApField as Me } from "./src/ap-field/index.mjs";
36
- import { ApFieldText as ye } from "./src/ap-field/text/index.mjs";
35
+ import { ApField as ve } from "./src/ap-field/index.mjs";
36
+ import { ApFieldText as Ne } from "./src/ap-field/text/index.mjs";
37
37
  import { default as we } from "./src/ap-field/checkbox/index.vue.mjs";
38
38
  import { default as Be } from "./src/ap-field/date/index.vue.mjs";
39
- import { default as Ke } from "./src/ap-field/number/index.vue.mjs";
39
+ import { default as Oe } from "./src/ap-field/number/index.vue.mjs";
40
40
  import { default as Ve } from "./src/ap-field/radio/index.vue.mjs";
41
41
  import { default as ze } from "./src/ap-field/switch/index.vue.mjs";
42
42
  import { default as $e } from "./src/ap-field/text-area/index.vue.mjs";
43
- import { default as je } from "./src/ap-field/date-range/index.vue.mjs";
43
+ import { default as He } from "./src/ap-field/date-range/index.vue.mjs";
44
44
  import { default as Je } from "./src/ap-field/select/index.vue.mjs";
45
45
  import { default as Xe } from "./src/ap-field/text/password.vue.mjs";
46
46
  import { default as Ze } from "./src/ap-field/slider/index.vue.mjs";
@@ -48,7 +48,7 @@ import { default as oo } from "./src/ap-field/segmented/index.vue.mjs";
48
48
  import { default as to } from "./src/ap-field/rate/index.vue.mjs";
49
49
  import { default as ao } from "./src/ap-field/tree-select/index.vue.mjs";
50
50
  import { adminToken as mo, aplusToken as lo } from "./src/design-token/index.mjs";
51
- import { ApActionItem as uo } from "./src/ap-action/index.mjs";
51
+ import { ApActionItem as so } from "./src/ap-action/index.mjs";
52
52
  import { default as Ao } from "./src/ap-action/item-modal/index.vue.mjs";
53
53
  import { default as no } from "./src/ap-action/item-popconfirm/index.vue.mjs";
54
54
  import { default as Fo } from "./src/ap-action/item-dropdown/index.vue.mjs";
@@ -56,16 +56,16 @@ import { default as To } from "./src/ap-action/group/index.vue.mjs";
56
56
  import { DictCode as bo, langMap as Co } from "./src/work-order-modal/interfaces.mjs";
57
57
  import { createWorkOrderModal as Do } from "./src/work-order-modal/createWorkOrder.mjs";
58
58
  import { default as ho } from "./src/work-order-modal/work-order-modal.vue.mjs";
59
- import { default as Po } from "./src/ap-tag/ap-tag.vue.mjs";
59
+ import { default as Eo } from "./src/ap-tag/ap-tag.vue.mjs";
60
60
  import { default as Lo } from "./src/ap-tag/ap-tag-group.vue.mjs";
61
- import { default as No } from "./src/ap-info-layout/ApInfoLayout.vue.mjs";
62
- import { NeedNameKeyDefault as vo } from "./src/ap-upload/apUploadTypes.mjs";
61
+ import { default as Mo } from "./src/ap-info-layout/ApInfoLayout.vue.mjs";
62
+ import { NeedNameKeyDefault as yo } from "./src/ap-upload/apUploadTypes.mjs";
63
63
  import { default as ko } from "./src/ap-upload/apUpload.vue.mjs";
64
- import { ApDownLoadNeedNameKeyDefault as Oo } from "./src/ap-download/interface.mjs";
64
+ import { ApDownLoadNeedNameKeyDefault as Ko } from "./src/ap-download/interface.mjs";
65
65
  import { default as Uo } from "./src/ap-download/ap-download.vue.mjs";
66
66
  import { CheckCard as _o } from "./src/check-card/index.mjs";
67
67
  import { default as Wo } from "./src/check-card/group.vue.mjs";
68
- import { ApModal as Ho } from "./src/ap-modal/index.mjs";
68
+ import { ApModal as jo } from "./src/ap-modal/index.mjs";
69
69
  import { default as qo } from "./src/ap-list/index.vue.mjs";
70
70
  import { default as Qo } from "./src/ap-button/ap-button.vue.mjs";
71
71
  import { default as Yo } from "./src/ap-button/ap-action-button.vue.mjs";
@@ -75,7 +75,7 @@ import { ApTransformDataHelper as pr } from "./src/utils/ap-trans-data/index.mjs
75
75
  import { default as fr } from "./src/business/ap-table-modal/index.mjs";
76
76
  import { useTableModal as lr } from "./src/business/ap-table-modal/hooks/use-table-modal.mjs";
77
77
  import { useTableSelectModal as dr } from "./src/business/ap-table-modal/hooks/use-table-select-modal.mjs";
78
- import { ApAttachment as sr } from "./src/business/ap-attachment/index.mjs";
78
+ import { ApAttachment as ur } from "./src/business/ap-attachment/index.mjs";
79
79
  import { ApBatchAction as ir } from "./src/business/ap-batch-action/index.mjs";
80
80
  import { ApBatchActionGroup as cr } from "./src/business/ap-batch-action-group/index.mjs";
81
81
  import { ApButtonGroup as Ir } from "./src/business/ap-button-group/index.mjs";
@@ -83,15 +83,15 @@ import { ApCard as Sr } from "./src/business/ap-card/index.mjs";
83
83
  import { ApExpandAlert as Cr } from "./src/business/ap-expand-alert/index.mjs";
84
84
  import { ApExportGroupActionType as Dr } from "./src/business/ap-export-group/interface.mjs";
85
85
  import { ApExportGroup as hr } from "./src/business/ap-export-group/index.mjs";
86
- import { handleExportDownload as Pr } from "./src/business/ap-export-group/handleExportDownload.mjs";
86
+ import { handleExportDownload as Er } from "./src/business/ap-export-group/handleExportDownload.mjs";
87
87
  import { convertExportField as Lr } from "./src/business/ap-export-group/convertExportField.mjs";
88
- import { ApImage as Nr } from "./src/business/ap-image/index.mjs";
89
- import { ApInputRadio as vr } from "./src/business/ap-input-radio/index.mjs";
88
+ import { ApImage as Mr } from "./src/business/ap-image/index.mjs";
89
+ import { ApInputRadio as yr } from "./src/business/ap-input-radio/index.mjs";
90
90
  import { ApLabel as kr, ApLabelGroup as Br } from "./src/business/ap-label/index.mjs";
91
- import { locales as Kr } from "./src/business/ap-ladder/interface.mjs";
91
+ import { locales as Or } from "./src/business/ap-ladder/interface.mjs";
92
92
  import { ApLadder as Vr } from "./src/business/ap-ladder/index.mjs";
93
93
  import { ApSelectLayout as zr } from "./src/business/ap-select-layout/index.mjs";
94
- import { ApStatus as $r, ApStatusGroup as Hr } from "./src/business/ap-status/index.mjs";
94
+ import { ApStatus as $r, ApStatusGroup as jr } from "./src/business/ap-status/index.mjs";
95
95
  import { ApTitle as qr } from "./src/business/ap-title/index.mjs";
96
96
  import { usePageListApTable as Qr } from "./src/business/hooks/usePageListApTable.mjs";
97
97
  import { useTableRefresh as Yr } from "./src/business/hooks/useTableRefresh.mjs";
@@ -99,43 +99,47 @@ import { usePageListApGrid as et } from "./src/business/hooks/usePageListApGrid.
99
99
  import { useGridRefresh as rt } from "./src/business/hooks/useGridRefresh.mjs";
100
100
  import { computedRecords as pt, flattenColumns as at, formatDataIndex as ft, formatNumber as mt } from "./src/business/ap-summary/utils.mjs";
101
101
  import { ApSummary as xt } from "./src/business/ap-summary/index.mjs";
102
- import { ApNeedNameKeyDefault as ut } from "./src/business/ap-appendix/interface.mjs";
102
+ import { ApNeedNameKeyDefault as st } from "./src/business/ap-appendix/interface.mjs";
103
103
  import { ApAppendix as At } from "./src/business/ap-appendix/index.mjs";
104
104
  import { ApExtensionSelect as nt, ApGroupSearch as ct, ApPopoverSelect as Ft } from "./src/business/ap-group-search/index.mjs";
105
105
  import { default as Tt } from "./src/business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
106
106
  import { default as bt } from "./src/business/batch-input-group/index.vue.mjs";
107
107
  import { default as gt } from "./src/business/batch-input-group/form-item.vue.mjs";
108
108
  import { ApSizeInput as Gt } from "./src/business/ap-size-input/index.mjs";
109
- import { ApProductInfo as Et } from "./src/business/ap-product-info/index.mjs";
109
+ import { ApProductInfo as Pt } from "./src/business/ap-product-info/index.mjs";
110
110
  import { ApCopy as Rt } from "./src/business/ap-copy/index.mjs";
111
- import { ApView as Mt } from "./src/business/ap-view/index.mjs";
112
- import { ApRadioGroup as yt } from "./src/business/ap-radio-group/index.mjs";
113
- import { useTablePaging as wt } from "./src/ap-table/hooks/use-table-paging.mjs";
114
- import { ApTable as Bt } from "./src/ap-table/index.mjs";
115
- import { default as Kt } from "./src/editable-table/index.vue.mjs";
116
- import { default as Vt } from "./src/editable-table/form-item.vue.mjs";
117
- import { default as zt } from "./src/ap-descriptions/ap-descriptions.vue.mjs";
118
- import { ensureRangeValue as $t } from "./src/scroll-bar/utils/index.mjs";
119
- import { default as jt } from "./src/scroll-bar/index.vue.mjs";
120
- import { default as Jt } from "./src/scroll-bar/internal.vue.mjs";
121
- import { default as Xt } from "./src/scroll-view/index.vue.mjs";
122
- import { default as Zt } from "./src/portal/index.vue.mjs";
123
- import { default as op } from "./src/full-screen/index.vue.mjs";
124
- import { default as tp } from "./src/resize-observer/index.vue.mjs";
125
- import { ROW_SELECTION_FIELD as ap } from "./src/ap-grid/constants.mjs";
126
- import { default as mp } from "./src/ap-grid/index.vue.mjs";
127
- import { default as xp } from "./src/ap-grid/editable/index.vue.mjs";
128
- import { default as up } from "./src/ap-grid/editable/form-item.vue.mjs";
129
- import { default as Ap } from "./src/text/index.vue.mjs";
130
- import { default as np } from "./src/text/group.vue.mjs";
131
- import { default as Fp } from "./src/mask/index.vue.mjs";
132
- import { Splitter as Tp } from "./src/splitter/index.mjs";
133
- import { useMessage as bp } from "./src/hooks/useMessage.mjs";
134
- import { useControllableValue as gp } from "./src/hooks/useControllableValue.mjs";
135
- import { useManualRef as Gp } from "./src/hooks/useManualRef.mjs";
136
- import { useThrottleRef as Ep } from "./src/hooks/useThrottleRef.mjs";
137
- import { useFullScreen as Rp } from "./src/hooks/useFullScreen.mjs";
138
- import { useResize as Mp } from "./src/hooks/useResize.mjs";
111
+ import { ApView as vt } from "./src/business/ap-view/index.mjs";
112
+ import { ApRadioGroup as Nt } from "./src/business/ap-radio-group/index.mjs";
113
+ import { ApKeepAliveProps as wt, forceStopTags as kt } from "./src/business/ap-keep-alive/interface.mjs";
114
+ import { ApKeepAlive as Kt } from "./src/business/ap-keep-alive/index.mjs";
115
+ import { LruCacher as Ut } from "./src/business/ap-keep-alive/cacher/lru-cacher.mjs";
116
+ import { useApKeepAliveInject as _t } from "./src/business/ap-keep-alive/hook.mjs";
117
+ import { useTablePaging as Wt } from "./src/ap-table/hooks/use-table-paging.mjs";
118
+ import { ApTable as jt } from "./src/ap-table/index.mjs";
119
+ import { default as qt } from "./src/editable-table/index.vue.mjs";
120
+ import { default as Qt } from "./src/editable-table/form-item.vue.mjs";
121
+ import { default as Yt } from "./src/ap-descriptions/ap-descriptions.vue.mjs";
122
+ import { ensureRangeValue as ep } from "./src/scroll-bar/utils/index.mjs";
123
+ import { default as rp } from "./src/scroll-bar/index.vue.mjs";
124
+ import { default as pp } from "./src/scroll-bar/internal.vue.mjs";
125
+ import { default as fp } from "./src/scroll-view/index.vue.mjs";
126
+ import { default as lp } from "./src/portal/index.vue.mjs";
127
+ import { default as dp } from "./src/full-screen/index.vue.mjs";
128
+ import { default as up } from "./src/resize-observer/index.vue.mjs";
129
+ import { ROW_SELECTION_FIELD as ip } from "./src/ap-grid/constants.mjs";
130
+ import { default as cp } from "./src/ap-grid/index.vue.mjs";
131
+ import { default as Ip } from "./src/ap-grid/editable/index.vue.mjs";
132
+ import { default as Sp } from "./src/ap-grid/editable/form-item.vue.mjs";
133
+ import { default as Cp } from "./src/text/index.vue.mjs";
134
+ import { default as Dp } from "./src/text/group.vue.mjs";
135
+ import { default as hp } from "./src/mask/index.vue.mjs";
136
+ import { Splitter as Ep } from "./src/splitter/index.mjs";
137
+ import { useMessage as Lp } from "./src/hooks/useMessage.mjs";
138
+ import { useControllableValue as Mp } from "./src/hooks/useControllableValue.mjs";
139
+ import { useManualRef as yp } from "./src/hooks/useManualRef.mjs";
140
+ import { useThrottleRef as kp } from "./src/hooks/useThrottleRef.mjs";
141
+ import { useFullScreen as Kp } from "./src/hooks/useFullScreen.mjs";
142
+ import { useResize as Up } from "./src/hooks/useResize.mjs";
139
143
  const a = console.log;
140
144
  a(`APlus-UI version ${p}`);
141
145
  const l = {
@@ -150,12 +154,12 @@ export {
150
154
  B as APConfigProvider,
151
155
  Yo as ApActionButton,
152
156
  To as ApActionGroup,
153
- uo as ApActionItem,
157
+ so as ApActionItem,
154
158
  Fo as ApActionItemDropdown,
155
159
  Ao as ApActionItemModal,
156
160
  no as ApActionItemPopconfirm,
157
161
  At as ApAppendix,
158
- sr as ApAttachment,
162
+ ur as ApAttachment,
159
163
  ir as ApBatchAction,
160
164
  cr as ApBatchActionGroup,
161
165
  Qo as ApButton,
@@ -163,19 +167,19 @@ export {
163
167
  Sr as ApCard,
164
168
  er as ApConfirmButton,
165
169
  Rt as ApCopy,
166
- zt as ApDescriptions,
167
- Oo as ApDownLoadNeedNameKeyDefault,
170
+ Yt as ApDescriptions,
171
+ Ko as ApDownLoadNeedNameKeyDefault,
168
172
  Uo as ApDownload,
169
173
  rr as ApDrawer,
170
174
  Cr as ApExpandAlert,
171
175
  hr as ApExportGroup,
172
176
  Dr as ApExportGroupActionType,
173
177
  nt as ApExtensionSelect,
174
- Me as ApField,
178
+ ve as ApField,
175
179
  we as ApFieldCheckbox,
176
180
  Be as ApFieldDate,
177
- je as ApFieldDateRange,
178
- Ke as ApFieldNumber,
181
+ He as ApFieldDateRange,
182
+ Oe as ApFieldNumber,
179
183
  Xe as ApFieldPassword,
180
184
  Ve as ApFieldRadio,
181
185
  to as ApFieldRate,
@@ -183,7 +187,7 @@ export {
183
187
  Je as ApFieldSelect,
184
188
  Ze as ApFieldSlider,
185
189
  ze as ApFieldSwitch,
186
- ye as ApFieldText,
190
+ Ne as ApFieldText,
187
191
  $e as ApFieldTextArea,
188
192
  ao as ApFieldTreeSelect,
189
193
  me as ApForm,
@@ -194,14 +198,14 @@ export {
194
198
  gt as ApFormItemBatchInput,
195
199
  oe as ApFormItemCheckbox,
196
200
  $ as ApFormItemDate,
197
- j as ApFormItemDateRange,
198
- ue as ApFormItemGroup,
201
+ H as ApFormItemDateRange,
202
+ se as ApFormItemGroup,
199
203
  z as ApFormItemNumber,
200
204
  J as ApFormItemRadio,
201
- Ee as ApFormItemRender,
205
+ Pe as ApFormItemRender,
202
206
  X as ApFormItemSelect,
203
207
  Z as ApFormItemSwitch,
204
- K as ApFormItemText,
208
+ O as ApFormItemText,
205
209
  V as ApFormItemTextArea,
206
210
  te as ApFormItemTextPassword,
207
211
  ae as ApFormItemTreeSelect,
@@ -210,57 +214,60 @@ export {
210
214
  Re as ApFormProvider,
211
215
  ne as ApFormSearchForm,
212
216
  be as ApFormSet,
213
- mp as ApGrid,
217
+ cp as ApGrid,
214
218
  ct as ApGroupSearch,
215
- Nr as ApImage,
216
- No as ApInfoLayout,
217
- vr as ApInputRadio,
219
+ Mr as ApImage,
220
+ Mo as ApInfoLayout,
221
+ yr as ApInputRadio,
222
+ Kt as ApKeepAlive,
223
+ wt as ApKeepAliveProps,
218
224
  kr as ApLabel,
219
225
  Br as ApLabelGroup,
220
226
  Vr as ApLadder,
221
227
  qo as ApList,
222
- Ho as ApModal,
223
- ut as ApNeedNameKeyDefault,
228
+ jo as ApModal,
229
+ st as ApNeedNameKeyDefault,
224
230
  Ft as ApPopoverSelect,
225
- Et as ApProductInfo,
226
- yt as ApRadioGroup,
231
+ Pt as ApProductInfo,
232
+ Nt as ApRadioGroup,
227
233
  zr as ApSelectLayout,
228
234
  Gt as ApSizeInput,
229
235
  $r as ApStatus,
230
- Hr as ApStatusGroup,
236
+ jr as ApStatusGroup,
231
237
  xt as ApSummary,
232
- Bt as ApTable,
238
+ jt as ApTable,
233
239
  fr as ApTableModal,
234
- Po as ApTag,
240
+ Eo as ApTag,
235
241
  Lo as ApTagGroup,
236
- Ap as ApText,
237
- np as ApTextGroup,
242
+ Cp as ApText,
243
+ Dp as ApTextGroup,
238
244
  qr as ApTitle,
239
245
  pr as ApTransformDataHelper,
240
246
  ko as ApUpload,
241
247
  Tt as ApUploadSingle,
242
- Mt as ApView,
248
+ vt as ApView,
243
249
  bt as BatchInputGroup,
244
250
  _o as CheckCard,
245
251
  Wo as CheckCardGroup,
246
- v as ConfigProvider,
252
+ y as ConfigProvider,
247
253
  n as DEFAULT_NAMESPACE,
248
254
  c as DEFAULT_UIMODE,
249
255
  bo as DictCode,
250
- xp as EditableGrid,
251
- up as EditableGridFormItem,
252
- Kt as EditableTable,
253
- Vt as EditableTableFormItem,
254
- op as FullScreen,
255
- Jt as InternalScrollBar,
256
- Fp as Mask,
257
- vo as NeedNameKeyDefault,
258
- Zt as Portal,
259
- ap as ROW_SELECTION_FIELD,
260
- tp as ResizeObserver,
261
- jt as ScrollBar,
262
- Xt as ScrollView,
263
- Tp as Splitter,
256
+ Ip as EditableGrid,
257
+ Sp as EditableGridFormItem,
258
+ qt as EditableTable,
259
+ Qt as EditableTableFormItem,
260
+ dp as FullScreen,
261
+ pp as InternalScrollBar,
262
+ Ut as LruCacher,
263
+ hp as Mask,
264
+ yo as NeedNameKeyDefault,
265
+ lp as Portal,
266
+ ip as ROW_SELECTION_FIELD,
267
+ up as ResizeObserver,
268
+ rp as ScrollBar,
269
+ fp as ScrollView,
270
+ Ep as Splitter,
264
271
  ho as WorkOrderModal,
265
272
  mo as adminToken,
266
273
  lo as aplusToken,
@@ -273,35 +280,37 @@ export {
273
280
  Do as createWorkOrderModal,
274
281
  l as default,
275
282
  R as defaultNamespace,
276
- $t as ensureRangeValue,
283
+ ep as ensureRangeValue,
277
284
  at as flattenColumns,
285
+ kt as forceStopTags,
278
286
  ft as formatDataIndex,
279
287
  mt as formatNumber,
280
288
  w as globalConfigCached,
281
- Pr as handleExportDownload,
289
+ Er as handleExportDownload,
282
290
  T as keysOf,
283
291
  Co as langMap,
284
292
  G as localeContextKey,
285
- Kr as locales,
293
+ Or as locales,
286
294
  L as namespaceContextKey,
287
- u as pathMap,
295
+ s as pathMap,
288
296
  S as provideGlobalConfig,
289
297
  h as translate,
290
- gp as useControllableValue,
291
- Rp as useFullScreen,
292
- M as useGetDerivedNamespace,
298
+ _t as useApKeepAliveInject,
299
+ Mp as useControllableValue,
300
+ Kp as useFullScreen,
301
+ v as useGetDerivedNamespace,
293
302
  b as useGlobalConfig,
294
303
  rt as useGridRefresh,
295
- E as useLocale,
296
- Gp as useManualRef,
297
- bp as useMessage,
298
- N as useNamespace,
304
+ P as useLocale,
305
+ yp as useManualRef,
306
+ Lp as useMessage,
307
+ M as useNamespace,
299
308
  et as usePageListApGrid,
300
309
  Qr as usePageListApTable,
301
- Mp as useResize,
310
+ Up as useResize,
302
311
  lr as useTableModal,
303
- wt as useTablePaging,
312
+ Wt as useTablePaging,
304
313
  Yr as useTableRefresh,
305
314
  dr as useTableSelectModal,
306
- Ep as useThrottleRef
315
+ kp as useThrottleRef
307
316
  };
@@ -1,4 +1,4 @@
1
- import { defineComponent as q, useSlots as J, computed as f, unref as t, isVNode as Q, createVNode as T, Fragment as y, createElementBlock as k, createBlock as C, openBlock as d, createTextVNode as B, toDisplayString as P, resolveDynamicComponent as X, normalizeStyle as z, withCtx as D, createCommentVNode as ee, isRef as ne, renderList as A, mergeProps as oe, createSlots as te, renderSlot as ae, normalizeProps as re, guardReactiveProps as le } from "vue";
1
+ import { defineComponent as q, useSlots as J, computed as f, unref as t, isVNode as Q, createVNode as T, Fragment as y, createElementBlock as k, createBlock as C, openBlock as d, createTextVNode as B, toDisplayString as D, resolveDynamicComponent as X, normalizeStyle as z, withCtx as P, createCommentVNode as ee, isRef as ne, renderList as A, mergeProps as oe, createSlots as te, renderSlot as ae, normalizeProps as re, guardReactiveProps as le } from "vue";
2
2
  import { ApFieldDatePresetFormats as ue, PRESET_FORMAT_MAP as R, PRESET_FORMAT_PICK_MAP as de, PRESET_FORMAT_TIME_MAP as ie } from "../date/constant.mjs";
3
3
  import "../../hooks/index.mjs";
4
4
  import { isNil as F, omit as _, isString as h, isFunction as se } from "lodash-unified";
@@ -13,6 +13,7 @@ import { useDefaultPresets as Se } from "../hooks/use-default-presets.mjs";
13
13
  import { useDateTimezone as ke } from "../hooks/use-date-timezone.mjs";
14
14
  import { useControllableValue as Ce } from "../../hooks/useControllableValue.mjs";
15
15
  const Ee = /* @__PURE__ */ q({
16
+ name: "ApFieldDateRange",
16
17
  __name: "index",
17
18
  props: {
18
19
  mode: {
@@ -226,27 +227,27 @@ const Ee = /* @__PURE__ */ q({
226
227
  key: 0
227
228
  }, [S.value ? (d(), k(y, {
228
229
  key: 0
229
- }, [B(P((r = S.value[0]) == null ? void 0 : r.format(v.value)) + " ", 1), (d(), C(X(Z.value))), B(" " + P((l = S.value[1]) == null ? void 0 : l.format(v.value)), 1)], 64)) : (d(), k(y, {
230
+ }, [B(D((r = S.value[0]) == null ? void 0 : r.format(v.value)) + " ", 1), (d(), C(X(Z.value))), B(" " + D((l = S.value[1]) == null ? void 0 : l.format(v.value)), 1)], 64)) : (d(), k(y, {
230
231
  key: 1
231
- }, [B(P(e.emptyText), 1)], 64))], 64)) : (d(), C(t(fe), {
232
+ }, [B(D(e.emptyText), 1)], 64))], 64)) : (d(), C(t(fe), {
232
233
  key: 1,
233
234
  compact: "",
234
235
  style: z({
235
236
  display: Array.isArray(n.timezone) && n.timezone.length ? "flex" : "block"
236
237
  })
237
238
  }, {
238
- default: D(() => [Array.isArray(n.timezone) && n.timezone.length ? (d(), C(t(me), {
239
+ default: P(() => [Array.isArray(n.timezone) && n.timezone.length ? (d(), C(t(me), {
239
240
  key: 0,
240
241
  value: t(u),
241
242
  "onUpdate:value": a[0] || (a[0] = (o) => ne(u) ? u.value = o : null),
242
243
  "default-active-first-option": "",
243
244
  "dropdown-match-select-width": !1
244
245
  }, {
245
- default: D(() => [(d(!0), k(y, null, A(n.timezone, (o) => (d(), C(t(pe), {
246
+ default: P(() => [(d(!0), k(y, null, A(n.timezone, (o) => (d(), C(t(pe), {
246
247
  key: o == null ? void 0 : o.value,
247
248
  value: o == null ? void 0 : o.value
248
249
  }, {
249
- default: D(() => [B(P((o == null ? void 0 : o.label) ?? (o == null ? void 0 : o.value)), 1)]),
250
+ default: P(() => [B(D((o == null ? void 0 : o.label) ?? (o == null ? void 0 : o.value)), 1)]),
250
251
  _: 2
251
252
  }, 1032, ["value"]))), 128))]),
252
253
  _: 1
@@ -262,7 +263,7 @@ const Ee = /* @__PURE__ */ q({
262
263
  _: 2
263
264
  }, [A(t(_)(e.$slots, "readModeSeparator"), (o, p) => ({
264
265
  name: p,
265
- fn: D((c) => [ae(e.$slots, p, re(le(c || {})))])
266
+ fn: P((c) => [ae(e.$slots, p, re(le(c || {})))])
266
267
  }))]), 1040, ["value", "picker", "format"])]),
267
268
  _: 3
268
269
  }, 8, ["style"]));
@@ -13,8 +13,6 @@ type ApFieldNumberSlots = {
13
13
  upIcon?: any;
14
14
  downIcon?: any;
15
15
  };
16
- declare function focus(): void;
17
- declare function blur(): void;
18
16
  declare function __VLS_template(): {
19
17
  attrs: Partial<{}>;
20
18
  slots: Readonly<ApFieldNumberSlots> & ApFieldNumberSlots;
@@ -344,8 +342,8 @@ declare function __VLS_template(): {
344
342
  };
345
343
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
346
344
  declare const __VLS_component: DefineComponent<ApFieldNumberProps, {
347
- focus: typeof focus;
348
- blur: typeof blur;
345
+ focus: () => void;
346
+ blur: () => void;
349
347
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
350
348
  "update:value": (...args: any[]) => void;
351
349
  }, string, PublicProps, Readonly<ApFieldNumberProps> & Readonly<{
@@ -6,11 +6,9 @@ import { RadioGroupChildOption } from '@aplus-frontend/antdv/es/radio/Group';
6
6
  import { RadioGroupButtonStyle, RadioGroupOptionType } from '@aplus-frontend/antdv/es/radio/interface';
7
7
  import { RadioChangeEvent } from '@aplus-frontend/antdv';
8
8
  import { VueNode } from '@aplus-frontend/antdv/es/_util/type';
9
- declare function focus(): void;
10
- declare function blur(): void;
11
9
  declare const _default: DefineComponent<ApFieldRadioProps, {
12
- focus: typeof focus;
13
- blur: typeof blur;
10
+ focus: () => void;
11
+ blur: () => void;
14
12
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15
13
  "update:value": (...args: any[]) => void;
16
14
  }, string, PublicProps, Readonly<ApFieldRadioProps> & Readonly<{
@@ -5,8 +5,6 @@ import { Direction } from '@aplus-frontend/antdv/es/config-provider';
5
5
  import { FocusEventHandler, KeyboardEventHandler } from '@aplus-frontend/antdv/es/_util/EventInterface';
6
6
  import { VueNode } from '@aplus-frontend/antdv/es/_util/type';
7
7
  import { FieldMode } from '..';
8
- declare function focus(): void;
9
- declare function blur(): void;
10
8
  declare function __VLS_template(): {
11
9
  attrs: Partial<{}>;
12
10
  slots: Readonly<{
@@ -100,8 +98,8 @@ declare function __VLS_template(): {
100
98
  };
101
99
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
102
100
  declare const __VLS_component: DefineComponent<ApFieldRateProps, {
103
- focus: typeof focus;
104
- blur: typeof blur;
101
+ focus: () => void;
102
+ blur: () => void;
105
103
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
106
104
  "update:value": (...args: any[]) => void;
107
105
  }, string, PublicProps, Readonly<ApFieldRateProps> & Readonly<{
@@ -22,9 +22,6 @@ type ApFieldSelectSlots = {
22
22
  optionLabel: any;
23
23
  default: any;
24
24
  };
25
- declare function requestIfNeeded(clear?: boolean): Promise<void>;
26
- declare function focus(): void;
27
- declare function blur(): void;
28
25
  declare function __VLS_template(): {
29
26
  attrs: Partial<{}>;
30
27
  slots: Readonly<ApFieldSelectSlots> & ApFieldSelectSlots;
@@ -437,9 +434,9 @@ declare function __VLS_template(): {
437
434
  };
438
435
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
439
436
  declare const __VLS_component: DefineComponent<ApFieldSelectProps, {
440
- focus: typeof focus;
441
- blur: typeof blur;
442
- request: typeof requestIfNeeded;
437
+ focus: () => void;
438
+ blur: () => void;
439
+ request: (clear?: boolean) => Promise<void>;
443
440
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
444
441
  "update:value": (...args: any[]) => void;
445
442
  }, string, PublicProps, Readonly<ApFieldSelectProps> & Readonly<{
@@ -11,8 +11,6 @@ type ApFieldSliderSlots = {
11
11
  label: any;
12
12
  }) => any;
13
13
  };
14
- declare function focus(): void;
15
- declare function blur(): void;
16
14
  declare function __VLS_template(): {
17
15
  attrs: Partial<{}>;
18
16
  slots: Readonly<ApFieldSliderSlots> & ApFieldSliderSlots;
@@ -277,8 +275,8 @@ declare function __VLS_template(): {
277
275
  };
278
276
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
279
277
  declare const __VLS_component: DefineComponent<ApFieldSliderProps, {
280
- focus: typeof focus;
281
- blur: typeof blur;
278
+ focus: () => void;
279
+ blur: () => void;
282
280
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
283
281
  "update:value": (...args: any[]) => void;
284
282
  }, string, PublicProps, Readonly<ApFieldSliderProps> & Readonly<{