@aplus-frontend/ui 0.1.15 → 0.1.17

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 (117) hide show
  1. package/es/index.mjs +99 -95
  2. package/es/src/ap-form/ap-form-item-group/index.vue.mjs +26 -24
  3. package/es/src/ap-modal/index.d.ts +2 -2
  4. package/es/src/ap-modal/index.mjs +1 -1
  5. package/es/src/ap-modal/{type.d.ts → interface.d.ts} +3 -3
  6. package/es/src/ap-modal/utils/createModal.d.ts +1 -1
  7. package/es/src/ap-table/ap-table.vue.mjs +132 -129
  8. package/es/src/ap-table/interface.d.ts +19 -13
  9. package/es/src/ap-table/utils.d.ts +8340 -1
  10. package/es/src/ap-table/utils.mjs +134 -78
  11. package/es/src/business/ap-batch-action/index.css +2 -0
  12. package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +13 -0
  13. package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue.mjs +4 -0
  14. package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.mjs +110 -0
  15. package/es/src/business/ap-batch-action-group/MenuItemGroup.vue.d.ts +17 -0
  16. package/es/src/business/ap-batch-action-group/MenuItemGroup.vue.mjs +4 -0
  17. package/es/src/business/ap-batch-action-group/MenuItemGroup.vue2.mjs +50 -0
  18. package/es/src/business/ap-batch-action-group/interface.d.ts +41 -0
  19. package/es/src/business/ap-batch-action-group/interface.mjs +1 -0
  20. package/es/src/business/ap-image/ApImage.vue.d.ts +65 -0
  21. package/es/src/business/ap-image/ApImage.vue.mjs +4 -0
  22. package/es/src/business/ap-image/ApImage.vue2.mjs +56 -0
  23. package/es/src/business/ap-image/hooks/useOss.d.ts +11 -0
  24. package/es/src/business/ap-image/hooks/useOss.mjs +37 -0
  25. package/es/src/business/ap-image/imgs/admin-fallback.jpg.mjs +4 -0
  26. package/es/src/business/ap-image/imgs/aplus-fallback.jpg.mjs +4 -0
  27. package/es/src/business/index.d.ts +662 -1
  28. package/es/src/business/index.mjs +25 -16
  29. package/es/src/config-provider/config-provider-props.d.ts +5 -1
  30. package/es/src/config-provider/config-provider-props.mjs +4 -0
  31. package/es/src/config-provider/config-provider.d.ts +10 -1
  32. package/es/src/config-provider/config-provider.mjs +18 -17
  33. package/es/src/config-provider/constants.d.ts +6 -2
  34. package/es/src/config-provider/hooks/use-global-config.d.ts +5 -1
  35. package/es/src/config-provider/index.d.ts +20 -1
  36. package/es/src/editable-table/form-item.vue.mjs +85 -71
  37. package/es/src/editable-table/hooks/use-get-columns.d.ts +3 -2
  38. package/es/src/editable-table/hooks/use-get-columns.mjs +32 -32
  39. package/es/src/editable-table/index.vue.mjs +106 -92
  40. package/es/src/editable-table/interface.d.ts +7 -13
  41. package/es/src/editable-table/utils.d.ts +14 -2
  42. package/es/src/editable-table/utils.mjs +67 -57
  43. package/es/src/index.mjs +211 -207
  44. package/es/src/locale/lang/en.mjs +10 -7
  45. package/es/src/locale/lang/zh-cn.mjs +3 -0
  46. package/es/src/pro-form/hooks/use-label-width.d.ts +1 -1
  47. package/es/src/theme/antd-global-overwrite/admin/form.css +10 -5
  48. package/es/src/theme/antd-global-overwrite/admin/index.css +117 -38
  49. package/es/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
  50. package/es/src/theme/antd-global-overwrite/admin/table.css +53 -17
  51. package/es/src/theme/antd-global-overwrite/aplus/form.css +28 -14
  52. package/es/src/theme/antd-global-overwrite/aplus/index.css +159 -67
  53. package/es/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
  54. package/es/src/theme/antd-global-overwrite/aplus/table.css +65 -33
  55. package/es/src/theme/ap-batch-action/ap-batch-action.css +2 -0
  56. package/es/src/utils/ap-trans-data/index.d.ts +9 -10
  57. package/es/src/utils/ap-trans-data/index.mjs +20 -0
  58. package/lib/index.js +1 -1
  59. package/lib/src/ap-form/ap-form-item-group/index.vue.js +1 -1
  60. package/lib/src/ap-modal/index.d.ts +2 -2
  61. package/lib/src/ap-modal/index.js +1 -1
  62. package/lib/src/ap-modal/{type.d.ts → interface.d.ts} +3 -3
  63. package/lib/src/ap-modal/utils/createModal.d.ts +1 -1
  64. package/lib/src/ap-table/ap-table.vue.js +1 -1
  65. package/lib/src/ap-table/interface.d.ts +19 -13
  66. package/lib/src/ap-table/utils.d.ts +8340 -1
  67. package/lib/src/ap-table/utils.js +1 -1
  68. package/lib/src/business/ap-batch-action/index.css +2 -0
  69. package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +13 -0
  70. package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue.js +1 -0
  71. package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.js +1 -0
  72. package/lib/src/business/ap-batch-action-group/MenuItemGroup.vue.d.ts +17 -0
  73. package/lib/src/business/ap-batch-action-group/MenuItemGroup.vue.js +1 -0
  74. package/lib/src/business/ap-batch-action-group/MenuItemGroup.vue2.js +1 -0
  75. package/lib/src/business/ap-batch-action-group/interface.d.ts +41 -0
  76. package/lib/src/business/ap-batch-action-group/interface.js +1 -0
  77. package/lib/src/business/ap-image/ApImage.vue.d.ts +65 -0
  78. package/lib/src/business/ap-image/ApImage.vue.js +1 -0
  79. package/lib/src/business/ap-image/ApImage.vue2.js +1 -0
  80. package/lib/src/business/ap-image/hooks/useOss.d.ts +11 -0
  81. package/lib/src/business/ap-image/hooks/useOss.js +1 -0
  82. package/lib/src/business/ap-image/imgs/admin-fallback.jpg.js +1 -0
  83. package/lib/src/business/ap-image/imgs/aplus-fallback.jpg.js +1 -0
  84. package/lib/src/business/index.d.ts +662 -1
  85. package/lib/src/business/index.js +1 -1
  86. package/lib/src/config-provider/config-provider-props.d.ts +5 -1
  87. package/lib/src/config-provider/config-provider-props.js +1 -1
  88. package/lib/src/config-provider/config-provider.d.ts +10 -1
  89. package/lib/src/config-provider/config-provider.js +1 -1
  90. package/lib/src/config-provider/constants.d.ts +6 -2
  91. package/lib/src/config-provider/hooks/use-global-config.d.ts +5 -1
  92. package/lib/src/config-provider/index.d.ts +20 -1
  93. package/lib/src/editable-table/form-item.vue.js +1 -1
  94. package/lib/src/editable-table/hooks/use-get-columns.d.ts +3 -2
  95. package/lib/src/editable-table/hooks/use-get-columns.js +1 -1
  96. package/lib/src/editable-table/index.vue.js +1 -1
  97. package/lib/src/editable-table/interface.d.ts +7 -13
  98. package/lib/src/editable-table/utils.d.ts +14 -2
  99. package/lib/src/editable-table/utils.js +1 -1
  100. package/lib/src/index.js +1 -1
  101. package/lib/src/locale/lang/en.js +1 -1
  102. package/lib/src/locale/lang/zh-cn.js +1 -1
  103. package/lib/src/pro-form/hooks/use-label-width.d.ts +1 -1
  104. package/lib/src/theme/antd-global-overwrite/admin/form.css +10 -5
  105. package/lib/src/theme/antd-global-overwrite/admin/index.css +117 -38
  106. package/lib/src/theme/antd-global-overwrite/admin/pagination.css +54 -16
  107. package/lib/src/theme/antd-global-overwrite/admin/table.css +53 -17
  108. package/lib/src/theme/antd-global-overwrite/aplus/form.css +28 -14
  109. package/lib/src/theme/antd-global-overwrite/aplus/index.css +159 -67
  110. package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +66 -20
  111. package/lib/src/theme/antd-global-overwrite/aplus/table.css +65 -33
  112. package/lib/src/theme/ap-batch-action/ap-batch-action.css +2 -0
  113. package/lib/src/utils/ap-trans-data/index.d.ts +9 -10
  114. package/lib/src/utils/ap-trans-data/index.js +1 -0
  115. package/package.json +2 -2
  116. /package/es/src/ap-modal/{type.mjs → interface.mjs} +0 -0
  117. /package/lib/src/ap-modal/{type.js → interface.js} +0 -0
package/es/src/index.mjs CHANGED
@@ -1,11 +1,11 @@
1
1
  import { Icon as n, SvgIcon as A } from "./icon/index.mjs";
2
- import { APConfigProvider as F } from "./config-provider/index.mjs";
2
+ import { APConfigProvider as T } from "./config-provider/index.mjs";
3
3
  import { Scrollbar as C } from "./scroll-bar/index.mjs";
4
4
  import { CollapseContainer as I, ScrollContainer as b } from "./container/index.mjs";
5
- import { IconPicker as P } from "./icon-picker/index.mjs";
5
+ import { IconPicker as D } from "./icon-picker/index.mjs";
6
6
  import "./locale/index.mjs";
7
- import { BasicArrow as h, BasicHelp as R, BasicTitle as v } from "./basic/index.mjs";
8
- import { ExpandTransition as w, ExpandXTransition as B, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as O, SlideYTransition as H } from "./transition/index.mjs";
7
+ import { BasicArrow as h, BasicHelp as R, BasicTitle as G } from "./basic/index.mjs";
8
+ import { ExpandTransition as B, ExpandXTransition as w, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as H, SlideYTransition as O } from "./transition/index.mjs";
9
9
  import { Description as z } from "./description/index.mjs";
10
10
  import { Field as j } from "./pro-form/index.mjs";
11
11
  import { BaseButton as J } from "./base-button/index.mjs";
@@ -19,7 +19,7 @@ import "./pro-table/index.mjs";
19
19
  import { ApForm as io } from "./ap-form/index.mjs";
20
20
  import { ApField as uo } from "./ap-field/index.mjs";
21
21
  import { adminToken as Ao, aplusToken as co } from "./design-token/index.mjs";
22
- import { ApActionItem as To } from "./ap-action/index.mjs";
22
+ import { ApActionItem as Fo } 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";
@@ -29,194 +29,198 @@ import "./ap-download/index.mjs";
29
29
  import { CheckCard as So } from "./check-card/index.mjs";
30
30
  import { ApModal as bo } from "./ap-modal/index.mjs";
31
31
  import "./ap-list/index.mjs";
32
- import { ApBatchAction as Po, ApExpandAlert as Do, ApExportGroup as ho, ApInputRadio as Ro, ApLabel as vo, ApLabelGroup as Go, ApSelectLayout as wo, ApStatus as Bo, ApStatusGroup as Mo, ApTitle as ko } from "./business/index.mjs";
32
+ import { ApBatchAction as Do, ApBatchActionGroup as Po, ApExpandAlert as ho, ApExportGroup as Ro, ApImage as Go, ApInputRadio as vo, ApLabel as Bo, ApLabelGroup as wo, ApSelectLayout as Mo, ApStatus as ko, ApStatusGroup as Lo, ApTitle as No } from "./business/index.mjs";
33
33
  import "./ap-table/index.mjs";
34
34
  import "./editable-table/index.mjs";
35
35
  import "./ap-descriptions/index.mjs";
36
- import { configProviderProps as No } from "./config-provider/config-provider-props.mjs";
37
- import { configProviderContextKey as Eo, tableDefaultConfig as Ko } from "./config-provider/constants.mjs";
38
- import { keysOf as Yo, provideGlobalConfig as Oo, useGlobalConfig as Ho } from "./config-provider/hooks/use-global-config.mjs";
39
- import { buildLocaleContext as zo, buildTranslator as Uo, localeContextKey as jo, translate as qo, useLocale as Jo } from "./config-provider/hooks/use-locale.mjs";
40
- import { defaultNamespace as Vo, namespaceContextKey as Zo, useGetDerivedNamespace as _o, useNamespace as $o } from "./config-provider/hooks/use-namespace.mjs";
41
- import { ConfigProvider as ee, globalConfigCached as re } from "./config-provider/config-provider.mjs";
42
- import { default as ae } from "./locale/lang/zh-cn.mjs";
43
- import { default as fe } from "./locale/lang/en.mjs";
44
- import { default as le } from "./transition/collapse-transition.vue.mjs";
45
- import { useDescription as se } from "./description/use-description.mjs";
46
- import { useComponentRegister as xe } from "./pro-form/hooks/use-component-register.mjs";
47
- import { useForm as ne } from "./pro-form/hooks/use-form.mjs";
48
- import { isComponentFormSchema as ce, isSlotFormSchema as Fe } from "./pro-form/types/form.mjs";
49
- import { default as Ce } from "./pro-form/components/api-cascader.vue.mjs";
50
- import { default as Ie } from "./pro-form/components/api-radio-group.vue.mjs";
51
- import { default as ge } from "./pro-form/components/api-select.vue.mjs";
52
- import { default as De } from "./pro-form/components/api-transfer.vue.mjs";
53
- import { default as Re } from "./pro-form/components/api-tree.vue.mjs";
54
- import { default as Ge } from "./pro-form/components/radio-button-group.vue.mjs";
55
- import { default as Be } from "./pro-form/pro-form.vue.mjs";
56
- import { default as ke } from "./pro-form/components/api-tree-select.vue.mjs";
57
- import { default as Ne } from "./pro-form/table-form.vue.mjs";
58
- import { default as Ee } from "./pro-form/table-form-inner.vue.mjs";
59
- import { default as Xe } from "./base-button/modal-button.vue.mjs";
60
- import { default as Oe } from "./base-button/pop-confirm-button.vue.mjs";
61
- import { useModalContext as We } from "./modal/hooks/use-modal-context.mjs";
62
- import { useModal as Ue, useModalInner as je } from "./modal/hooks/use-modal.mjs";
63
- import { default as Je } from "./pro-table/pro-table.vue.mjs";
64
- import { default as Ve } from "./pro-table/components/table-action.vue.mjs";
65
- import { default as _e } from "./pro-table/components/edit-table-header-icon.vue.mjs";
66
- import { default as or } from "./pro-table/components/table-image.vue.mjs";
67
- import { useTable as rr } from "./pro-table/hooks/use-table.mjs";
68
- import { ApFormItemText as ar } from "./ap-form/items/text/index.mjs";
69
- import { default as fr } from "./ap-form/items/text-area/index.vue.mjs";
70
- import { default as lr } from "./ap-form/items/number/index.vue.mjs";
71
- import { default as sr } from "./ap-form/items/date/index.vue.mjs";
72
- import { default as xr } from "./ap-form/items/date-range/index.vue.mjs";
73
- import { default as nr } from "./ap-form/items/radio/index.vue.mjs";
74
- import { default as cr } from "./ap-form/items/select/index.vue.mjs";
75
- import { default as Tr } from "./ap-form/items/switch/index.vue.mjs";
76
- import { default as Sr } from "./ap-form/items/checkbox/index.vue.mjs";
77
- import { default as br } from "./ap-form/items/text/password.vue.mjs";
78
- import { default as Pr } from "./ap-form/ap-form-item.vue.mjs";
79
- import { default as hr } from "./ap-form/ap-form-item-group/index.vue.mjs";
80
- import { default as vr } from "./ap-form/ap-form-list.vue.mjs";
81
- import { default as wr } from "./ap-form/search-form/index.vue.mjs";
82
- import { default as Mr } from "./ap-form/modal-form/index.vue.mjs";
83
- import { ApFieldText as Lr } from "./ap-field/text/index.mjs";
84
- import { default as yr } from "./ap-field/checkbox/index.vue.mjs";
85
- import { default as Kr } from "./ap-field/date/index.vue.mjs";
86
- import { default as Yr } from "./ap-field/number/index.vue.mjs";
87
- import { default as Hr } from "./ap-field/radio/index.vue.mjs";
88
- import { default as zr } from "./ap-field/switch/index.vue.mjs";
89
- import { default as jr } from "./ap-field/text-area/index.vue.mjs";
90
- import { default as Jr } from "./ap-field/date-range/index.vue.mjs";
91
- import { default as Vr } from "./ap-field/select/index.vue.mjs";
92
- import { default as _r } from "./ap-field/text/password.vue.mjs";
93
- import { default as ot } from "./ap-field/slider/index.vue.mjs";
94
- import { default as rt } from "./ap-field/segmented/index.vue.mjs";
95
- import { default as at } from "./ap-field/rate/index.vue.mjs";
96
- import { default as ft } from "./ap-action/item-modal/index.vue.mjs";
97
- import { default as lt } from "./ap-action/item-popconfirm/index.vue.mjs";
98
- import { default as st } from "./ap-action/item-dropdown/index.vue.mjs";
99
- import { default as xt } from "./ap-action/group/index.vue.mjs";
100
- import { generateTableList as nt } from "./ap-custom-column/utils.mjs";
101
- import { useCacheColumnSetting as ct } from "./ap-custom-column/useCacheColumnSetting.mjs";
102
- import { default as Tt } from "./ap-custom-column/custom-column.vue.mjs";
103
- import { default as St } from "./ap-custom-column/column-select.vue.mjs";
104
- import { DictCode as bt } from "./work-order-modal/interfaces.mjs";
105
- import { createWorkOrderModal as Pt } from "./work-order-modal/createWorkOrder.mjs";
106
- import { default as ht } from "./work-order-modal/work-order-modal.vue.mjs";
107
- import { default as vt } from "./ap-tag/ap-tag.vue.mjs";
108
- import { default as wt } from "./ap-tag/ap-tag-group.vue.mjs";
109
- import { default as Mt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
110
- import { NeedNameKeyDefault as Lt } from "./ap-upload/apUploadTypes.mjs";
111
- import { default as yt } from "./ap-upload/apUpload.vue.mjs";
112
- import { ApDownLoadNeedNameKeyDefault as Kt } from "./ap-download/interface.mjs";
113
- import { default as Yt } from "./ap-download/ap-download.vue.mjs";
114
- import { default as Ht } from "./check-card/group.vue.mjs";
115
- import { default as zt } from "./ap-list/index.vue.mjs";
116
- import { useTablePaging as jt } from "./ap-table/hooks/use-table-paging.mjs";
117
- import { default as Jt } from "./ap-table/ap-table.vue.mjs";
118
- import { default as Vt } from "./editable-table/index.vue.mjs";
119
- import { default as _t } from "./editable-table/form-item.vue.mjs";
120
- import { default as oa } from "./ap-descriptions/ap-descriptions.vue.mjs";
36
+ import { configProviderProps as Eo } from "./config-provider/config-provider-props.mjs";
37
+ import { configProviderContextKey as Xo, tableDefaultConfig as Yo } from "./config-provider/constants.mjs";
38
+ import { keysOf as Oo, provideGlobalConfig as Wo, useGlobalConfig as zo } from "./config-provider/hooks/use-global-config.mjs";
39
+ import { buildLocaleContext as jo, buildTranslator as qo, localeContextKey as Jo, translate as Qo, useLocale as Vo } from "./config-provider/hooks/use-locale.mjs";
40
+ import { defaultNamespace as _o, namespaceContextKey as $o, useGetDerivedNamespace as oe, useNamespace as ee } from "./config-provider/hooks/use-namespace.mjs";
41
+ import { ConfigProvider as te, globalConfigCached as ae } from "./config-provider/config-provider.mjs";
42
+ import { default as fe } from "./locale/lang/zh-cn.mjs";
43
+ import { default as le } from "./locale/lang/en.mjs";
44
+ import { default as se } from "./transition/collapse-transition.vue.mjs";
45
+ import { useDescription as xe } from "./description/use-description.mjs";
46
+ import { useComponentRegister as ne } from "./pro-form/hooks/use-component-register.mjs";
47
+ import { useForm as ce } from "./pro-form/hooks/use-form.mjs";
48
+ import { isComponentFormSchema as Fe, isSlotFormSchema as Ce } from "./pro-form/types/form.mjs";
49
+ import { default as Ie } from "./pro-form/components/api-cascader.vue.mjs";
50
+ import { default as ge } from "./pro-form/components/api-radio-group.vue.mjs";
51
+ import { default as Pe } from "./pro-form/components/api-select.vue.mjs";
52
+ import { default as Re } from "./pro-form/components/api-transfer.vue.mjs";
53
+ import { default as ve } from "./pro-form/components/api-tree.vue.mjs";
54
+ import { default as we } from "./pro-form/components/radio-button-group.vue.mjs";
55
+ import { default as ke } from "./pro-form/pro-form.vue.mjs";
56
+ import { default as Ne } from "./pro-form/components/api-tree-select.vue.mjs";
57
+ import { default as Ee } from "./pro-form/table-form.vue.mjs";
58
+ import { default as Xe } from "./pro-form/table-form-inner.vue.mjs";
59
+ import { default as He } from "./base-button/modal-button.vue.mjs";
60
+ import { default as We } from "./base-button/pop-confirm-button.vue.mjs";
61
+ import { useModalContext as Ue } from "./modal/hooks/use-modal-context.mjs";
62
+ import { useModal as qe, useModalInner as Je } from "./modal/hooks/use-modal.mjs";
63
+ import { default as Ve } from "./pro-table/pro-table.vue.mjs";
64
+ import { default as _e } from "./pro-table/components/table-action.vue.mjs";
65
+ import { default as or } from "./pro-table/components/edit-table-header-icon.vue.mjs";
66
+ import { default as rr } from "./pro-table/components/table-image.vue.mjs";
67
+ import { useTable as ar } from "./pro-table/hooks/use-table.mjs";
68
+ import { ApFormItemText as fr } from "./ap-form/items/text/index.mjs";
69
+ import { default as lr } from "./ap-form/items/text-area/index.vue.mjs";
70
+ import { default as sr } from "./ap-form/items/number/index.vue.mjs";
71
+ import { default as xr } from "./ap-form/items/date/index.vue.mjs";
72
+ import { default as nr } from "./ap-form/items/date-range/index.vue.mjs";
73
+ import { default as cr } from "./ap-form/items/radio/index.vue.mjs";
74
+ import { default as Fr } from "./ap-form/items/select/index.vue.mjs";
75
+ import { default as Sr } from "./ap-form/items/switch/index.vue.mjs";
76
+ import { default as br } from "./ap-form/items/checkbox/index.vue.mjs";
77
+ import { default as Dr } from "./ap-form/items/text/password.vue.mjs";
78
+ import { default as hr } from "./ap-form/ap-form-item.vue.mjs";
79
+ import { default as Gr } from "./ap-form/ap-form-item-group/index.vue.mjs";
80
+ import { default as Br } from "./ap-form/ap-form-list.vue.mjs";
81
+ import { default as Mr } from "./ap-form/search-form/index.vue.mjs";
82
+ import { default as Lr } from "./ap-form/modal-form/index.vue.mjs";
83
+ import { ApFieldText as yr } from "./ap-field/text/index.mjs";
84
+ import { default as Kr } from "./ap-field/checkbox/index.vue.mjs";
85
+ import { default as Yr } from "./ap-field/date/index.vue.mjs";
86
+ import { default as Or } from "./ap-field/number/index.vue.mjs";
87
+ import { default as zr } from "./ap-field/radio/index.vue.mjs";
88
+ import { default as jr } from "./ap-field/switch/index.vue.mjs";
89
+ import { default as Jr } from "./ap-field/text-area/index.vue.mjs";
90
+ import { default as Vr } from "./ap-field/date-range/index.vue.mjs";
91
+ import { default as _r } from "./ap-field/select/index.vue.mjs";
92
+ import { default as ot } from "./ap-field/text/password.vue.mjs";
93
+ import { default as rt } from "./ap-field/slider/index.vue.mjs";
94
+ import { default as at } from "./ap-field/segmented/index.vue.mjs";
95
+ import { default as ft } from "./ap-field/rate/index.vue.mjs";
96
+ import { default as lt } from "./ap-action/item-modal/index.vue.mjs";
97
+ import { default as st } from "./ap-action/item-popconfirm/index.vue.mjs";
98
+ import { default as xt } from "./ap-action/item-dropdown/index.vue.mjs";
99
+ import { default as nt } from "./ap-action/group/index.vue.mjs";
100
+ import { generateTableList as ct } from "./ap-custom-column/utils.mjs";
101
+ import { useCacheColumnSetting as Ft } from "./ap-custom-column/useCacheColumnSetting.mjs";
102
+ import { default as St } from "./ap-custom-column/custom-column.vue.mjs";
103
+ import { default as bt } from "./ap-custom-column/column-select.vue.mjs";
104
+ import { DictCode as Dt } from "./work-order-modal/interfaces.mjs";
105
+ import { createWorkOrderModal as ht } from "./work-order-modal/createWorkOrder.mjs";
106
+ import { default as Gt } from "./work-order-modal/work-order-modal.vue.mjs";
107
+ import { default as Bt } from "./ap-tag/ap-tag.vue.mjs";
108
+ import { default as Mt } from "./ap-tag/ap-tag-group.vue.mjs";
109
+ import { default as Lt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
110
+ import { NeedNameKeyDefault as yt } from "./ap-upload/apUploadTypes.mjs";
111
+ import { default as Kt } from "./ap-upload/apUpload.vue.mjs";
112
+ import { ApDownLoadNeedNameKeyDefault as Yt } from "./ap-download/interface.mjs";
113
+ import { default as Ot } from "./ap-download/ap-download.vue.mjs";
114
+ import { default as zt } from "./check-card/group.vue.mjs";
115
+ import { default as jt } from "./ap-list/index.vue.mjs";
116
+ import { ApTransformDataHelper as Jt } from "./utils/ap-trans-data/index.mjs";
117
+ import { useTablePaging as Vt } from "./ap-table/hooks/use-table-paging.mjs";
118
+ import { default as _t } from "./ap-table/ap-table.vue.mjs";
119
+ import { default as oa } from "./editable-table/index.vue.mjs";
120
+ import { default as ra } from "./editable-table/form-item.vue.mjs";
121
+ import { default as aa } from "./ap-descriptions/ap-descriptions.vue.mjs";
121
122
  export {
122
- F as APConfigProvider,
123
- xt as ApActionGroup,
124
- To as ApActionItem,
125
- st as ApActionItemDropdown,
126
- ft as ApActionItemModal,
127
- lt as ApActionItemPopconfirm,
128
- Po as ApBatchAction,
129
- Tt as ApCustomColumn,
130
- St as ApCustomSelect,
131
- oa as ApDescriptions,
132
- Kt as ApDownLoadNeedNameKeyDefault,
133
- Yt as ApDownload,
134
- Do as ApExpandAlert,
135
- ho as ApExportGroup,
123
+ T as APConfigProvider,
124
+ nt as ApActionGroup,
125
+ Fo as ApActionItem,
126
+ xt as ApActionItemDropdown,
127
+ lt as ApActionItemModal,
128
+ st as ApActionItemPopconfirm,
129
+ Do as ApBatchAction,
130
+ Po as ApBatchActionGroup,
131
+ St as ApCustomColumn,
132
+ bt as ApCustomSelect,
133
+ aa as ApDescriptions,
134
+ Yt as ApDownLoadNeedNameKeyDefault,
135
+ Ot as ApDownload,
136
+ ho as ApExpandAlert,
137
+ Ro as ApExportGroup,
136
138
  uo as ApField,
137
- yr as ApFieldCheckbox,
138
- Kr as ApFieldDate,
139
- Jr as ApFieldDateRange,
140
- Yr as ApFieldNumber,
141
- _r as ApFieldPassword,
142
- Hr as ApFieldRadio,
143
- at as ApFieldRate,
144
- rt as ApFieldSegmented,
145
- Vr as ApFieldSelect,
146
- ot as ApFieldSlider,
147
- zr as ApFieldSwitch,
148
- Lr as ApFieldText,
149
- jr as ApFieldTextArea,
139
+ Kr as ApFieldCheckbox,
140
+ Yr as ApFieldDate,
141
+ Vr as ApFieldDateRange,
142
+ Or as ApFieldNumber,
143
+ ot as ApFieldPassword,
144
+ zr as ApFieldRadio,
145
+ ft as ApFieldRate,
146
+ at as ApFieldSegmented,
147
+ _r as ApFieldSelect,
148
+ rt as ApFieldSlider,
149
+ jr as ApFieldSwitch,
150
+ yr as ApFieldText,
151
+ Jr as ApFieldTextArea,
150
152
  io as ApForm,
151
- Pr as ApFormItem,
152
- Sr as ApFormItemCheckbox,
153
- sr as ApFormItemDate,
154
- xr as ApFormItemDateRange,
155
- hr as ApFormItemGroup,
156
- lr as ApFormItemNumber,
157
- nr as ApFormItemRadio,
158
- cr as ApFormItemSelect,
159
- Tr as ApFormItemSwitch,
160
- ar as ApFormItemText,
161
- fr as ApFormItemTextArea,
162
- br as ApFormItemTextPassword,
163
- vr as ApFormList,
164
- Mr as ApFormModalForm,
165
- wr as ApFormSearchForm,
166
- Mt as ApInfoLayout,
167
- Ro as ApInputRadio,
168
- vo as ApLabel,
169
- Go as ApLabelGroup,
170
- zt as ApList,
153
+ hr as ApFormItem,
154
+ br as ApFormItemCheckbox,
155
+ xr as ApFormItemDate,
156
+ nr as ApFormItemDateRange,
157
+ Gr as ApFormItemGroup,
158
+ sr as ApFormItemNumber,
159
+ cr as ApFormItemRadio,
160
+ Fr as ApFormItemSelect,
161
+ Sr as ApFormItemSwitch,
162
+ fr as ApFormItemText,
163
+ lr as ApFormItemTextArea,
164
+ Dr as ApFormItemTextPassword,
165
+ Br as ApFormList,
166
+ Lr as ApFormModalForm,
167
+ Mr as ApFormSearchForm,
168
+ Go as ApImage,
169
+ Lt as ApInfoLayout,
170
+ vo as ApInputRadio,
171
+ Bo as ApLabel,
172
+ wo as ApLabelGroup,
173
+ jt as ApList,
171
174
  bo as ApModal,
172
- wo as ApSelectLayout,
173
- Bo as ApStatus,
174
- Mo as ApStatusGroup,
175
- Jt as ApTable,
176
- vt as ApTag,
177
- wt as ApTagGroup,
178
- ko as ApTitle,
179
- yt as ApUpload,
180
- Ce as ApiCascader,
181
- Ie as ApiRadioGroup,
182
- ge as ApiSelect,
183
- De as ApiTransfer,
184
- Re as ApiTree,
185
- ke as ApiTreeSelect,
175
+ Mo as ApSelectLayout,
176
+ ko as ApStatus,
177
+ Lo as ApStatusGroup,
178
+ _t as ApTable,
179
+ Bt as ApTag,
180
+ Mt as ApTagGroup,
181
+ No as ApTitle,
182
+ Jt as ApTransformDataHelper,
183
+ Kt as ApUpload,
184
+ Ie as ApiCascader,
185
+ ge as ApiRadioGroup,
186
+ Pe as ApiSelect,
187
+ Re as ApiTransfer,
188
+ ve as ApiTree,
189
+ Ne as ApiTreeSelect,
186
190
  J as BaseButton,
187
191
  _ as BaseModal,
188
192
  h as BasicArrow,
189
193
  R as BasicHelp,
190
- v as BasicTitle,
194
+ G as BasicTitle,
191
195
  So as CheckCard,
192
- Ht as CheckCardGroup,
196
+ zt as CheckCardGroup,
193
197
  I as CollapseContainer,
194
- le as CollapseTransition,
195
- ee as ConfigProvider,
198
+ se as CollapseTransition,
199
+ te as ConfigProvider,
196
200
  to as CountdownButton,
197
201
  ao as CountdownInput,
198
202
  oo as CropperAvatar,
199
203
  eo as CropperImage,
200
204
  z as Description,
201
- bt as DictCode,
205
+ Dt as DictCode,
202
206
  lo as Dropdown,
203
- _e as EditTableHeaderIcon,
204
- Vt as EditableTable,
205
- _t as EditableTableFormItem,
206
- w as ExpandTransition,
207
- B as ExpandXTransition,
207
+ or as EditTableHeaderIcon,
208
+ oa as EditableTable,
209
+ ra as EditableTableFormItem,
210
+ B as ExpandTransition,
211
+ w as ExpandXTransition,
208
212
  M as FadeTransition,
209
213
  j as Field,
210
214
  n as Icon,
211
- P as IconPicker,
212
- Xe as ModalButton,
213
- Lt as NeedNameKeyDefault,
214
- Oe as PopConfirmButton,
215
- Be as ProForm,
216
- Je as ProTable,
217
- Ne as ProTableForm,
218
- Ee as ProTableFormInner,
219
- Ge as RadioButtonGroup,
215
+ D as IconPicker,
216
+ He as ModalButton,
217
+ yt as NeedNameKeyDefault,
218
+ We as PopConfirmButton,
219
+ ke as ProForm,
220
+ Ve as ProTable,
221
+ Ee as ProTableForm,
222
+ Xe as ProTableFormInner,
223
+ we as RadioButtonGroup,
220
224
  k as ScaleRotateTransition,
221
225
  L as ScaleTransition,
222
226
  b as ScrollContainer,
@@ -227,45 +231,45 @@ export {
227
231
  C as Scrollbar,
228
232
  X as SlideXReverseTransition,
229
233
  Y as SlideXTransition,
230
- O as SlideYReverseTransition,
231
- H as SlideYTransition,
234
+ H as SlideYReverseTransition,
235
+ O as SlideYTransition,
232
236
  V as StrengthMeter,
233
237
  A as SvgIcon,
234
- Ve as TableAction,
235
- or as TableImg,
236
- ht as WorkOrderModal,
238
+ _e as TableAction,
239
+ rr as TableImg,
240
+ Gt as WorkOrderModal,
237
241
  Ao as adminToken,
238
242
  co as aplusToken,
239
- zo as buildLocaleContext,
240
- Uo as buildTranslator,
241
- Eo as configProviderContextKey,
242
- No as configProviderProps,
243
+ jo as buildLocaleContext,
244
+ qo as buildTranslator,
245
+ Xo as configProviderContextKey,
246
+ Eo as configProviderProps,
243
247
  fo as createPrompt,
244
- Pt as createWorkOrderModal,
245
- Vo as defaultNamespace,
246
- fe as en,
247
- nt as generateTableList,
248
- re as globalConfigCached,
249
- ce as isComponentFormSchema,
250
- Fe as isSlotFormSchema,
251
- Yo as keysOf,
252
- jo as localeContextKey,
253
- Zo as namespaceContextKey,
254
- Oo as provideGlobalConfig,
255
- Ko as tableDefaultConfig,
256
- qo as translate,
257
- ct as useCacheColumnSetting,
258
- xe as useComponentRegister,
259
- se as useDescription,
260
- ne as useForm,
261
- _o as useGetDerivedNamespace,
262
- Ho as useGlobalConfig,
263
- Jo as useLocale,
264
- Ue as useModal,
265
- We as useModalContext,
266
- je as useModalInner,
267
- $o as useNamespace,
268
- rr as useTable,
269
- jt as useTablePaging,
270
- ae as zhCn
248
+ ht as createWorkOrderModal,
249
+ _o as defaultNamespace,
250
+ le as en,
251
+ ct as generateTableList,
252
+ ae as globalConfigCached,
253
+ Fe as isComponentFormSchema,
254
+ Ce as isSlotFormSchema,
255
+ Oo as keysOf,
256
+ Jo as localeContextKey,
257
+ $o as namespaceContextKey,
258
+ Wo as provideGlobalConfig,
259
+ Yo as tableDefaultConfig,
260
+ Qo as translate,
261
+ Ft as useCacheColumnSetting,
262
+ ne as useComponentRegister,
263
+ xe as useDescription,
264
+ ce as useForm,
265
+ oe as useGetDerivedNamespace,
266
+ zo as useGlobalConfig,
267
+ Vo as useLocale,
268
+ qe as useModal,
269
+ Ue as useModalContext,
270
+ Je as useModalInner,
271
+ ee as useNamespace,
272
+ ar as useTable,
273
+ Vt as useTablePaging,
274
+ fe as zhCn
271
275
  };
@@ -110,15 +110,18 @@ const e = {
110
110
  foldersNotSupported: "Do not support uploading folders"
111
111
  },
112
112
  apExportGroup: {
113
- exportError: "export error",
114
- exportSelected: "export selected",
115
- exportAll: "export all",
116
- export: "export"
113
+ exportError: "Export error",
114
+ exportSelected: "Export selected",
115
+ exportAll: "Export all",
116
+ export: "Export"
117
117
  },
118
118
  apBatchAction: {
119
- selected: "selected",
120
- piecesOfData: "pieces of data",
121
- empty: "empty"
119
+ selected: "Selected",
120
+ piecesOfData: "Pieces of data",
121
+ empty: "Empty"
122
+ },
123
+ apApBatchActionGroup: {
124
+ batchOperation: "Batch operation"
122
125
  }
123
126
  }
124
127
  };
@@ -119,6 +119,9 @@ const e = {
119
119
  selected: "已选",
120
120
  piecesOfData: "条数据",
121
121
  empty: "清空"
122
+ },
123
+ apApBatchActionGroup: {
124
+ batchOperation: "批量操作"
122
125
  }
123
126
  }
124
127
  };
@@ -1,6 +1,6 @@
1
1
  import { Ref, ComputedRef, ExtractPropTypes, PropType, HTMLAttributes } from 'vue';
2
2
  import { ProFormProps, FormSchemaInner as FormSchema } from '../types/form';
3
- import { ColSize } from 'ant-design-vue/lib/grid/Col';
3
+ import { ColSize } from 'ant-design-vue/lib/grid';
4
4
  export declare function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsRef: Ref<ProFormProps>): ComputedRef<{
5
5
  labelCol: Partial< ExtractPropTypes<{
6
6
  span: (StringConstructor | NumberConstructor)[];
@@ -37,22 +37,27 @@
37
37
  input.ant-input[disabled] {
38
38
  color: #666666;
39
39
  }
40
- div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] {
40
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'],
41
+ div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] {
41
42
  padding: 16px;
42
43
  }
43
- div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
44
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content,
45
+ div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
44
46
  display: flex;
45
47
  align-items: center;
46
48
  justify-content: flex-end;
47
49
  }
48
- div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
50
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary,
51
+ div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
49
52
  order: 1;
50
53
  }
51
- div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
54
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default,
55
+ div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
52
56
  order: 2;
53
57
  margin-right: 0;
54
58
  }
55
- div[class*='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
59
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link,
60
+ div[class$='-basic-table-form-container ap-table--sticky'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
56
61
  order: 3;
57
62
  margin-left: 0.5rem;
58
63
  }