@aplus-frontend/ui 6.16.0 → 6.17.0

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 (45) hide show
  1. package/es/index.mjs +83 -81
  2. package/es/src/business/ap-draggable-grid/ApDraggableGrid.vue.d.ts +124 -0
  3. package/es/src/business/ap-draggable-grid/ApDraggableGrid.vue.mjs +4 -0
  4. package/es/src/business/ap-draggable-grid/ApDraggableGrid.vue2.mjs +194 -0
  5. package/es/src/business/ap-draggable-grid/constans.d.ts +40 -0
  6. package/es/src/business/ap-draggable-grid/constans.mjs +41 -0
  7. package/es/src/business/ap-draggable-grid/index.d.ts +197 -0
  8. package/es/src/business/ap-draggable-grid/index.mjs +8 -0
  9. package/es/src/business/ap-draggable-grid/interface.d.ts +14 -0
  10. package/es/src/business/ap-draggable-grid/interface.mjs +1 -0
  11. package/es/src/business/ap-draggable-grid/style/css.d.ts +0 -0
  12. package/es/src/business/ap-draggable-grid/style/css.js +1 -0
  13. package/es/src/business/ap-draggable-grid/style/index.d.ts +0 -0
  14. package/es/src/business/ap-draggable-grid/style/index.js +1 -0
  15. package/es/src/business/index.d.ts +1 -0
  16. package/es/src/business/index.mjs +20 -18
  17. package/es/src/index.mjs +59 -57
  18. package/es/src/path-map.mjs +2 -1
  19. package/es/src/version.d.ts +1 -1
  20. package/es/src/version.mjs +1 -1
  21. package/lib/index.js +1 -1
  22. package/lib/src/business/ap-draggable-grid/ApDraggableGrid.vue.d.ts +124 -0
  23. package/lib/src/business/ap-draggable-grid/ApDraggableGrid.vue.js +1 -0
  24. package/lib/src/business/ap-draggable-grid/ApDraggableGrid.vue2.js +1 -0
  25. package/lib/src/business/ap-draggable-grid/constans.d.ts +40 -0
  26. package/lib/src/business/ap-draggable-grid/constans.js +1 -0
  27. package/lib/src/business/ap-draggable-grid/index.d.ts +197 -0
  28. package/lib/src/business/ap-draggable-grid/index.js +1 -0
  29. package/lib/src/business/ap-draggable-grid/interface.d.ts +14 -0
  30. package/lib/src/business/ap-draggable-grid/interface.js +1 -0
  31. package/lib/src/business/ap-draggable-grid/style/css.cjs +1 -0
  32. package/lib/src/business/ap-draggable-grid/style/css.d.ts +0 -0
  33. package/lib/src/business/ap-draggable-grid/style/index.cjs +1 -0
  34. package/lib/src/business/ap-draggable-grid/style/index.d.ts +0 -0
  35. package/lib/src/business/index.d.ts +1 -0
  36. package/lib/src/business/index.js +1 -1
  37. package/lib/src/index.js +1 -1
  38. package/lib/src/path-map.js +1 -1
  39. package/lib/src/version.d.ts +1 -1
  40. package/lib/src/version.js +1 -1
  41. package/package.json +2 -28
  42. package/theme/ap-draggable-grid/ap-draggable-grid.css +82 -0
  43. package/theme/ap-draggable-grid/ap-draggable-grid.less +38 -0
  44. package/theme/index.css +36 -0
  45. package/theme/index.less +1 -0
@@ -0,0 +1,41 @@
1
+ const e = () => ({
2
+ gridList: {
3
+ type: Array,
4
+ default: () => []
5
+ },
6
+ request: {
7
+ type: Function,
8
+ default: null
9
+ },
10
+ gridWidth: {
11
+ type: [String, Number],
12
+ default: "100%"
13
+ },
14
+ gridItemHeight: {
15
+ type: Number,
16
+ default: 300
17
+ },
18
+ gridItemShadow: {
19
+ type: String,
20
+ default: "0px 4px 6px 0px rgba(73, 107, 158, 0.1)"
21
+ },
22
+ gapWidth: {
23
+ type: Number,
24
+ default: 12
25
+ },
26
+ dragOverlayColor: {
27
+ type: String,
28
+ default: "#66a9ff"
29
+ },
30
+ dragOverlayBorderColor: {
31
+ type: String,
32
+ default: "#4d97f7"
33
+ },
34
+ disableDrag: {
35
+ type: Boolean,
36
+ default: !1
37
+ }
38
+ });
39
+ export {
40
+ e as ApDraggableGridProps
41
+ };
@@ -0,0 +1,197 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
2
+ import { ApDraggableGridItemBase } from './interface';
3
+ export * from './interface';
4
+ declare const ApDraggableGrid: {
5
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
6
+ gridList: {
7
+ type: PropType<Array< ApDraggableGridItemBase>>;
8
+ default: () => never[];
9
+ };
10
+ request: {
11
+ type: PropType<() => Promise< ApDraggableGridItemBase[]>>;
12
+ default: null;
13
+ };
14
+ gridWidth: {
15
+ type: (NumberConstructor | StringConstructor)[];
16
+ default: string;
17
+ };
18
+ gridItemHeight: {
19
+ type: NumberConstructor;
20
+ default: number;
21
+ };
22
+ gridItemShadow: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ gapWidth: {
27
+ type: NumberConstructor;
28
+ default: number;
29
+ };
30
+ dragOverlayColor: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ dragOverlayBorderColor: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ disableDrag: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ }>> & Readonly<{
43
+ onOnGridListChange?: ((args_0: ApDraggableGridItemBase[]) => any) | undefined;
44
+ }>, {
45
+ setGridItems: (items: ApDraggableGridItemBase[]) => void;
46
+ refreshGrid: () => void;
47
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
48
+ onGridListChange: (args_0: ApDraggableGridItemBase[]) => any;
49
+ }, PublicProps, {
50
+ request: () => Promise< ApDraggableGridItemBase[]>;
51
+ gridList: ApDraggableGridItemBase[];
52
+ gridWidth: string | number;
53
+ gridItemHeight: number;
54
+ gridItemShadow: string;
55
+ gapWidth: number;
56
+ dragOverlayColor: string;
57
+ dragOverlayBorderColor: string;
58
+ disableDrag: boolean;
59
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
60
+ gridContainer: HTMLDivElement;
61
+ }, any, ComponentProvideOptions, {
62
+ P: {};
63
+ B: {};
64
+ D: {};
65
+ C: {};
66
+ M: {};
67
+ Defaults: {};
68
+ }, Readonly< ExtractPropTypes<{
69
+ gridList: {
70
+ type: PropType<Array< ApDraggableGridItemBase>>;
71
+ default: () => never[];
72
+ };
73
+ request: {
74
+ type: PropType<() => Promise< ApDraggableGridItemBase[]>>;
75
+ default: null;
76
+ };
77
+ gridWidth: {
78
+ type: (NumberConstructor | StringConstructor)[];
79
+ default: string;
80
+ };
81
+ gridItemHeight: {
82
+ type: NumberConstructor;
83
+ default: number;
84
+ };
85
+ gridItemShadow: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ gapWidth: {
90
+ type: NumberConstructor;
91
+ default: number;
92
+ };
93
+ dragOverlayColor: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ dragOverlayBorderColor: {
98
+ type: StringConstructor;
99
+ default: string;
100
+ };
101
+ disableDrag: {
102
+ type: BooleanConstructor;
103
+ default: boolean;
104
+ };
105
+ }>> & Readonly<{
106
+ onOnGridListChange?: ((args_0: ApDraggableGridItemBase[]) => any) | undefined;
107
+ }>, {
108
+ setGridItems: (items: ApDraggableGridItemBase[]) => void;
109
+ refreshGrid: () => void;
110
+ }, {}, {}, {}, {
111
+ request: () => Promise< ApDraggableGridItemBase[]>;
112
+ gridList: ApDraggableGridItemBase[];
113
+ gridWidth: string | number;
114
+ gridItemHeight: number;
115
+ gridItemShadow: string;
116
+ gapWidth: number;
117
+ dragOverlayColor: string;
118
+ dragOverlayBorderColor: string;
119
+ disableDrag: boolean;
120
+ }>;
121
+ __isFragment?: never;
122
+ __isTeleport?: never;
123
+ __isSuspense?: never;
124
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
125
+ gridList: {
126
+ type: PropType<Array< ApDraggableGridItemBase>>;
127
+ default: () => never[];
128
+ };
129
+ request: {
130
+ type: PropType<() => Promise< ApDraggableGridItemBase[]>>;
131
+ default: null;
132
+ };
133
+ gridWidth: {
134
+ type: (NumberConstructor | StringConstructor)[];
135
+ default: string;
136
+ };
137
+ gridItemHeight: {
138
+ type: NumberConstructor;
139
+ default: number;
140
+ };
141
+ gridItemShadow: {
142
+ type: StringConstructor;
143
+ default: string;
144
+ };
145
+ gapWidth: {
146
+ type: NumberConstructor;
147
+ default: number;
148
+ };
149
+ dragOverlayColor: {
150
+ type: StringConstructor;
151
+ default: string;
152
+ };
153
+ dragOverlayBorderColor: {
154
+ type: StringConstructor;
155
+ default: string;
156
+ };
157
+ disableDrag: {
158
+ type: BooleanConstructor;
159
+ default: boolean;
160
+ };
161
+ }>> & Readonly<{
162
+ onOnGridListChange?: ((args_0: ApDraggableGridItemBase[]) => any) | undefined;
163
+ }>, {
164
+ setGridItems: (items: ApDraggableGridItemBase[]) => void;
165
+ refreshGrid: () => void;
166
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
167
+ onGridListChange: (args_0: ApDraggableGridItemBase[]) => any;
168
+ }, string, {
169
+ request: () => Promise< ApDraggableGridItemBase[]>;
170
+ gridList: ApDraggableGridItemBase[];
171
+ gridWidth: string | number;
172
+ gridItemHeight: number;
173
+ gridItemShadow: string;
174
+ gapWidth: number;
175
+ dragOverlayColor: string;
176
+ dragOverlayBorderColor: string;
177
+ disableDrag: boolean;
178
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
179
+ $slots: {
180
+ item?(_: {
181
+ item: {
182
+ isDragging: boolean;
183
+ isOverlay: boolean;
184
+ span: number;
185
+ row: number;
186
+ col: number;
187
+ height?: number | string | undefined;
188
+ };
189
+ index: number;
190
+ }): any;
191
+ };
192
+ }) & ( Plugin & (new (...args: any[]) => {
193
+ $props: {
194
+ onClick?: () => void;
195
+ };
196
+ }));
197
+ export { ApDraggableGrid };
@@ -0,0 +1,8 @@
1
+ import { withInstall as r } from "@aplus-frontend/utils";
2
+ import "./ApDraggableGrid.vue.mjs";
3
+ import "./interface.mjs";
4
+ import o from "./ApDraggableGrid.vue2.mjs";
5
+ const a = r(o);
6
+ export {
7
+ a as ApDraggableGrid
8
+ };
@@ -0,0 +1,14 @@
1
+ export interface ApDraggableGridItemBase {
2
+ span: number;
3
+ row: number;
4
+ col: number;
5
+ height?: number | string;
6
+ }
7
+ export interface ApDraggableGridItem extends ApDraggableGridItemBase {
8
+ isDragging: boolean;
9
+ isOverlay: boolean;
10
+ }
11
+ export type ApDraggableGridExpose = {
12
+ setGridItems: (items: ApDraggableGridItemBase[]) => void;
13
+ refreshGrid: () => void;
14
+ };
@@ -0,0 +1 @@
1
+ import '@aplus-frontend/ui/theme/ap-draggable-grid/ap-draggable-grid.css';
@@ -0,0 +1 @@
1
+ import '@aplus-frontend/ui/theme/ap-draggable-grid/ap-draggable-grid.less';
@@ -24,4 +24,5 @@ export * from './ap-copy';
24
24
  export * from './ap-view';
25
25
  export * from './ap-radio-group';
26
26
  export * from './ap-keep-alive';
27
+ export * from './ap-draggable-grid';
27
28
  export { ApTransformDataHelper } from '../utils/ap-trans-data';
@@ -5,13 +5,13 @@ import { ApBatchActionGroup as i } from "./ap-batch-action-group/index.mjs";
5
5
  import { ApButtonGroup as l } from "./ap-button-group/index.mjs";
6
6
  import { ApCard as c } from "./ap-card/index.mjs";
7
7
  import { ApExpandAlert as S } from "./ap-expand-alert/index.mjs";
8
- import { ApExportGroup as I } from "./ap-export-group/index.mjs";
9
- import { ApImage as b } from "./ap-image/index.mjs";
10
- import { ApInputRadio as y } from "./ap-input-radio/index.mjs";
11
- import { ApLabel as T, ApLabelGroup as C } from "./ap-label/index.mjs";
12
- import { ApLadder as R } from "./ap-ladder/index.mjs";
13
- import { ApSelectLayout as v } from "./ap-select-layout/index.mjs";
14
- import { ApStatus as z, ApStatusGroup as D } from "./ap-status/index.mjs";
8
+ import { ApExportGroup as s } from "./ap-export-group/index.mjs";
9
+ import { ApImage as L } from "./ap-image/index.mjs";
10
+ import { ApInputRadio as h } from "./ap-input-radio/index.mjs";
11
+ import { ApLabel as B, ApLabelGroup as T } from "./ap-label/index.mjs";
12
+ import { ApLadder as D } from "./ap-ladder/index.mjs";
13
+ import { ApSelectLayout as R } from "./ap-select-layout/index.mjs";
14
+ import { ApStatus as w, ApStatusGroup as z } from "./ap-status/index.mjs";
15
15
  import { ApTitle as K } from "./ap-title/index.mjs";
16
16
  import "./hooks/index.mjs";
17
17
  import { ApSummary as P } from "./ap-summary/index.mjs";
@@ -24,7 +24,8 @@ import { ApCopy as O } from "./ap-copy/index.mjs";
24
24
  import { ApView as U } from "./ap-view/index.mjs";
25
25
  import { ApRadioGroup as X } from "./ap-radio-group/index.mjs";
26
26
  import { ApKeepAlive as Z } from "./ap-keep-alive/index.mjs";
27
- import { ApTransformDataHelper as $ } from "../utils/ap-trans-data/index.mjs";
27
+ import { ApDraggableGrid as $ } from "./ap-draggable-grid/index.mjs";
28
+ import { ApTransformDataHelper as po } from "../utils/ap-trans-data/index.mjs";
28
29
  export {
29
30
  j as ApAppendix,
30
31
  f as ApAttachment,
@@ -33,23 +34,24 @@ export {
33
34
  l as ApButtonGroup,
34
35
  c as ApCard,
35
36
  O as ApCopy,
37
+ $ as ApDraggableGrid,
36
38
  S as ApExpandAlert,
37
- I as ApExportGroup,
38
- b as ApImage,
39
- y as ApInputRadio,
39
+ s as ApExportGroup,
40
+ L as ApImage,
41
+ h as ApInputRadio,
40
42
  Z as ApKeepAlive,
41
- T as ApLabel,
42
- C as ApLabelGroup,
43
- R as ApLadder,
43
+ B as ApLabel,
44
+ T as ApLabelGroup,
45
+ D as ApLadder,
44
46
  J as ApProductInfo,
45
47
  X as ApRadioGroup,
46
- v as ApSelectLayout,
48
+ R as ApSelectLayout,
47
49
  q as ApSizeInput,
48
- z as ApStatus,
49
- D as ApStatusGroup,
50
+ w as ApStatus,
51
+ z as ApStatusGroup,
50
52
  P as ApSummary,
51
53
  m as ApTableModal,
52
54
  K as ApTitle,
53
- $ as ApTransformDataHelper,
55
+ po as ApTransformDataHelper,
54
56
  U as ApView
55
57
  };
package/es/src/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import { APConfigProvider as T } from "./config-provider/index.mjs";
2
2
  import { ApForm as C } from "./ap-form/index.mjs";
3
- import { ApField as D } from "./ap-field/index.mjs";
3
+ import { ApField as g } from "./ap-field/index.mjs";
4
4
  import { adminToken as G, aplusToken as h } from "./design-token/index.mjs";
5
5
  import { ApActionItem as P } from "./ap-action/index.mjs";
6
6
  import "./work-order-modal/index.mjs";
@@ -32,13 +32,13 @@ import { buildLocaleContext as X, buildTranslator as Y, localeContextKey as Z, t
32
32
  import { defaultNamespace as re, namespaceContextKey as te, useGetDerivedNamespace as pe, useNamespace as ae } from "./config-provider/hooks/use-namespace.mjs";
33
33
  import { ConfigProvider as fe, globalConfigCached as le } from "./config-provider/config-provider.mjs";
34
34
  import { ApFormItemText as de } from "./ap-form/items/text/index.mjs";
35
- import { default as se } from "./ap-form/items/text-area/index.vue.mjs";
35
+ import { default as Ae } from "./ap-form/items/text-area/index.vue.mjs";
36
36
  import { default as ie } from "./ap-form/items/number/index.vue.mjs";
37
37
  import { default as ce } from "./ap-form/items/date/index.vue.mjs";
38
38
  import { default as Ie } from "./ap-form/items/date-range/index.vue.mjs";
39
39
  import { default as be } from "./ap-form/items/radio/index.vue.mjs";
40
40
  import { default as Se } from "./ap-form/items/select/index.vue.mjs";
41
- import { default as ge } from "./ap-form/items/switch/index.vue.mjs";
41
+ import { default as De } from "./ap-form/items/switch/index.vue.mjs";
42
42
  import { default as he } from "./ap-form/items/checkbox/index.vue.mjs";
43
43
  import { default as Pe } from "./ap-form/items/text/password.vue.mjs";
44
44
  import { default as Ne } from "./ap-form/items/tree-select/index.vue.mjs";
@@ -59,12 +59,12 @@ import { default as po } from "./ap-field/date/index.vue.mjs";
59
59
  import { default as mo } from "./ap-field/number/index.vue.mjs";
60
60
  import { default as lo } from "./ap-field/radio/index.vue.mjs";
61
61
  import { default as uo } from "./ap-field/switch/index.vue.mjs";
62
- import { default as Ao } from "./ap-field/text-area/index.vue.mjs";
62
+ import { default as so } from "./ap-field/text-area/index.vue.mjs";
63
63
  import { default as no } from "./ap-field/date-range/index.vue.mjs";
64
64
  import { default as Fo } from "./ap-field/select/index.vue.mjs";
65
65
  import { default as To } from "./ap-field/text/password.vue.mjs";
66
66
  import { default as Co } from "./ap-field/slider/index.vue.mjs";
67
- import { default as Do } from "./ap-field/segmented/index.vue.mjs";
67
+ import { default as go } from "./ap-field/segmented/index.vue.mjs";
68
68
  import { default as Go } from "./ap-field/rate/index.vue.mjs";
69
69
  import { default as Eo } from "./ap-field/tree-select/index.vue.mjs";
70
70
  import { default as Lo } from "./ap-action/item-modal/index.vue.mjs";
@@ -85,13 +85,13 @@ import { default as pr } from "./ap-list/index.vue.mjs";
85
85
  import { default as mr } from "./ap-button/ap-button.vue.mjs";
86
86
  import { default as lr } from "./ap-button/ap-action-button.vue.mjs";
87
87
  import { default as dr } from "./ap-button/ap-confirm-button.vue.mjs";
88
- import { ApTransformDataHelper as sr } from "./utils/ap-trans-data/index.mjs";
88
+ import { ApTransformDataHelper as Ar } from "./utils/ap-trans-data/index.mjs";
89
89
  import { default as ir } from "./business/ap-table-modal/index.mjs";
90
90
  import { useTableModal as cr } from "./business/ap-table-modal/hooks/use-table-modal.mjs";
91
91
  import { useTableSelectModal as Ir } from "./business/ap-table-modal/hooks/use-table-select-modal.mjs";
92
92
  import { ApAttachment as br } from "./business/ap-attachment/index.mjs";
93
93
  import { ApBatchAction as Sr } from "./business/ap-batch-action/index.mjs";
94
- import { ApBatchActionGroup as gr } from "./business/ap-batch-action-group/index.mjs";
94
+ import { ApBatchActionGroup as Dr } from "./business/ap-batch-action-group/index.mjs";
95
95
  import { ApButtonGroup as hr } from "./business/ap-button-group/index.mjs";
96
96
  import { ApCard as Pr } from "./business/ap-card/index.mjs";
97
97
  import { ApExpandAlert as Nr } from "./business/ap-expand-alert/index.mjs";
@@ -111,11 +111,11 @@ import { usePageListApTable as pt } from "./business/hooks/usePageListApTable.mj
111
111
  import { useTableRefresh as mt } from "./business/hooks/useTableRefresh.mjs";
112
112
  import { usePageListApGrid as lt } from "./business/hooks/usePageListApGrid.mjs";
113
113
  import { useGridRefresh as dt } from "./business/hooks/useGridRefresh.mjs";
114
- import { computedRecords as st, flattenColumns as At, formatDataIndex as it, formatNumber as nt } from "./business/ap-summary/utils.mjs";
114
+ import { computedRecords as At, flattenColumns as st, formatDataIndex as it, formatNumber as nt } from "./business/ap-summary/utils.mjs";
115
115
  import { ApSummary as Ft } from "./business/ap-summary/index.mjs";
116
116
  import { ApNeedNameKeyDefault as Tt } from "./business/ap-appendix/interface.mjs";
117
117
  import { ApAppendix as Ct } from "./business/ap-appendix/index.mjs";
118
- import { default as Dt } from "./business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
118
+ import { default as gt } from "./business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
119
119
  import { default as Gt } from "./business/batch-input-group/index.vue.mjs";
120
120
  import { default as Et } from "./business/batch-input-group/form-item.vue.mjs";
121
121
  import { ApSizeInput as Lt } from "./business/ap-size-input/index.mjs";
@@ -128,25 +128,26 @@ import { ApKeepAlive as Vt } from "./business/ap-keep-alive/index.mjs";
128
128
  import { LruCacher as zt } from "./business/ap-keep-alive/cacher/lru-cacher.mjs";
129
129
  import { useApKeepAliveInject as Ht } from "./business/ap-keep-alive/hook.mjs";
130
130
  import { matches as Jt } from "./business/ap-keep-alive/utils.mjs";
131
- import { useTablePaging as Xt } from "./ap-table/hooks/use-table-paging.mjs";
132
- import { default as Zt } from "./editable-table/index.vue.mjs";
133
- import { default as ep } from "./editable-table/form-item.vue.mjs";
134
- import { default as rp } from "./ap-descriptions/ap-descriptions.vue.mjs";
135
- import { ensureRangeValue as pp } from "./scroll-bar/utils/index.mjs";
136
- import { default as mp } from "./scroll-bar/index.vue.mjs";
137
- import { default as lp } from "./scroll-bar/internal.vue.mjs";
138
- import { default as dp } from "./scroll-view/index.vue.mjs";
139
- import { default as sp } from "./portal/index.vue.mjs";
140
- import { default as ip } from "./full-screen/index.vue.mjs";
141
- import { default as cp } from "./resize-observer/index.vue.mjs";
142
- import { ROW_SELECTION_FIELD as Ip } from "./ap-grid/constants.mjs";
143
- import { toTreeArray as bp } from "./ap-grid/utils/to-tree-array.mjs";
144
- import { default as Sp } from "./ap-grid/index.vue.mjs";
145
- import { default as gp } from "./ap-grid/editable/index.vue.mjs";
146
- import { default as hp } from "./ap-grid/editable/form-item.vue.mjs";
147
- import { default as Pp } from "./text/index.vue.mjs";
148
- import { default as Np } from "./text/group.vue.mjs";
149
- import { default as yp } from "./mask/index.vue.mjs";
131
+ import { ApDraggableGrid as Xt } from "./business/ap-draggable-grid/index.mjs";
132
+ import { useTablePaging as Zt } from "./ap-table/hooks/use-table-paging.mjs";
133
+ import { default as ep } from "./editable-table/index.vue.mjs";
134
+ import { default as rp } from "./editable-table/form-item.vue.mjs";
135
+ import { default as pp } from "./ap-descriptions/ap-descriptions.vue.mjs";
136
+ import { ensureRangeValue as mp } from "./scroll-bar/utils/index.mjs";
137
+ import { default as lp } from "./scroll-bar/index.vue.mjs";
138
+ import { default as dp } from "./scroll-bar/internal.vue.mjs";
139
+ import { default as Ap } from "./scroll-view/index.vue.mjs";
140
+ import { default as ip } from "./portal/index.vue.mjs";
141
+ import { default as cp } from "./full-screen/index.vue.mjs";
142
+ import { default as Ip } from "./resize-observer/index.vue.mjs";
143
+ import { ROW_SELECTION_FIELD as bp } from "./ap-grid/constants.mjs";
144
+ import { toTreeArray as Sp } from "./ap-grid/utils/to-tree-array.mjs";
145
+ import { default as Dp } from "./ap-grid/index.vue.mjs";
146
+ import { default as hp } from "./ap-grid/editable/index.vue.mjs";
147
+ import { default as Pp } from "./ap-grid/editable/form-item.vue.mjs";
148
+ import { default as Np } from "./text/index.vue.mjs";
149
+ import { default as yp } from "./text/group.vue.mjs";
150
+ import { default as vp } from "./mask/index.vue.mjs";
150
151
  export {
151
152
  T as APConfigProvider,
152
153
  lr as ApActionButton,
@@ -158,20 +159,21 @@ export {
158
159
  Ct as ApAppendix,
159
160
  br as ApAttachment,
160
161
  Sr as ApBatchAction,
161
- gr as ApBatchActionGroup,
162
+ Dr as ApBatchActionGroup,
162
163
  mr as ApButton,
163
164
  hr as ApButtonGroup,
164
165
  Pr as ApCard,
165
166
  dr as ApConfirmButton,
166
167
  Mt as ApCopy,
167
- rp as ApDescriptions,
168
+ pp as ApDescriptions,
168
169
  Zo as ApDownLoadNeedNameKeyDefault,
169
170
  er as ApDownload,
171
+ Xt as ApDraggableGrid,
170
172
  v as ApDrawer,
171
173
  Nr as ApExpandAlert,
172
174
  vr as ApExportGroup,
173
175
  yr as ApExportGroupActionType,
174
- D as ApField,
176
+ g as ApField,
175
177
  ro as ApFieldCheckbox,
176
178
  po as ApFieldDate,
177
179
  no as ApFieldDateRange,
@@ -179,12 +181,12 @@ export {
179
181
  To as ApFieldPassword,
180
182
  lo as ApFieldRadio,
181
183
  Go as ApFieldRate,
182
- Do as ApFieldSegmented,
184
+ go as ApFieldSegmented,
183
185
  Fo as ApFieldSelect,
184
186
  Co as ApFieldSlider,
185
187
  uo as ApFieldSwitch,
186
188
  eo as ApFieldText,
187
- Ao as ApFieldTextArea,
189
+ so as ApFieldTextArea,
188
190
  Eo as ApFieldTreeSelect,
189
191
  C as ApForm,
190
192
  Je as ApFormControlRender,
@@ -200,9 +202,9 @@ export {
200
202
  be as ApFormItemRadio,
201
203
  Xe as ApFormItemRender,
202
204
  Se as ApFormItemSelect,
203
- ge as ApFormItemSwitch,
205
+ De as ApFormItemSwitch,
204
206
  de as ApFormItemText,
205
- se as ApFormItemTextArea,
207
+ Ae as ApFormItemTextArea,
206
208
  Pe as ApFormItemTextPassword,
207
209
  Ne as ApFormItemTreeSelect,
208
210
  ke as ApFormList,
@@ -210,7 +212,7 @@ export {
210
212
  Ze as ApFormProvider,
211
213
  Ke as ApFormSearchForm,
212
214
  ze as ApFormSet,
213
- Sp as ApGrid,
215
+ Dp as ApGrid,
214
216
  Ur as ApImage,
215
217
  Vr as ApInputRadio,
216
218
  Vt as ApKeepAlive,
@@ -232,12 +234,12 @@ export {
232
234
  ir as ApTableModal,
233
235
  zo as ApTag,
234
236
  Ho as ApTagGroup,
235
- Pp as ApText,
236
- Np as ApTextGroup,
237
+ Np as ApText,
238
+ yp as ApTextGroup,
237
239
  rt as ApTitle,
238
- sr as ApTransformDataHelper,
240
+ Ar as ApTransformDataHelper,
239
241
  Xo as ApUpload,
240
- Dt as ApUploadSingle,
242
+ gt as ApUploadSingle,
241
243
  wt as ApView,
242
244
  Gt as BatchInputGroup,
243
245
  N as CheckCard,
@@ -246,34 +248,34 @@ export {
246
248
  V as DEFAULT_NAMESPACE,
247
249
  W as DEFAULT_UIMODE,
248
250
  Bo as DictCode,
249
- gp as EditableGrid,
250
- hp as EditableGridFormItem,
251
- Zt as EditableTable,
252
- ep as EditableTableFormItem,
253
- ip as FullScreen,
254
- lp as InternalScrollBar,
251
+ hp as EditableGrid,
252
+ Pp as EditableGridFormItem,
253
+ ep as EditableTable,
254
+ rp as EditableTableFormItem,
255
+ cp as FullScreen,
256
+ dp as InternalScrollBar,
255
257
  zt as LruCacher,
256
- yp as Mask,
258
+ vp as Mask,
257
259
  Jo as NeedNameKeyDefault,
258
- sp as Portal,
259
- Ip as ROW_SELECTION_FIELD,
260
- cp as ResizeObserver,
261
- mp as ScrollBar,
262
- dp as ScrollView,
260
+ ip as Portal,
261
+ bp as ROW_SELECTION_FIELD,
262
+ Ip as ResizeObserver,
263
+ lp as ScrollBar,
264
+ Ap as ScrollView,
263
265
  K as Splitter,
264
266
  Vo as WorkOrderModal,
265
267
  G as adminToken,
266
268
  h as aplusToken,
267
269
  X as buildLocaleContext,
268
270
  Y as buildTranslator,
269
- st as computedRecords,
271
+ At as computedRecords,
270
272
  z as configProviderContextKey,
271
273
  U as configProviderProps,
272
274
  Kr as convertExportField,
273
275
  Uo as createWorkOrderModal,
274
276
  re as defaultNamespace,
275
- pp as ensureRangeValue,
276
- At as flattenColumns,
277
+ mp as ensureRangeValue,
278
+ st as flattenColumns,
277
279
  Ut as forceStopTags,
278
280
  it as formatDataIndex,
279
281
  nt as formatNumber,
@@ -286,7 +288,7 @@ export {
286
288
  qr as locales,
287
289
  te as namespaceContextKey,
288
290
  q as provideGlobalConfig,
289
- bp as toTreeArray,
291
+ Sp as toTreeArray,
290
292
  $ as translate,
291
293
  Ht as useApKeepAliveInject,
292
294
  pe as useGetDerivedNamespace,
@@ -297,7 +299,7 @@ export {
297
299
  lt as usePageListApGrid,
298
300
  pt as usePageListApTable,
299
301
  cr as useTableModal,
300
- Xt as useTablePaging,
302
+ Zt as useTablePaging,
301
303
  mt as useTableRefresh,
302
304
  Ir as useTableSelectModal
303
305
  };
@@ -99,7 +99,8 @@ const e = {
99
99
  Mask: ["mask"],
100
100
  Splitter: ["splitter"],
101
101
  ApView: ["business", "ap-view"],
102
- ApRadioGroup: ["business", "ap-radio-group"]
102
+ ApRadioGroup: ["business", "ap-radio-group"],
103
+ ApDraggableGrid: ["business", "ap-draggable-grid"]
103
104
  };
104
105
  export {
105
106
  e as default
@@ -1,2 +1,2 @@
1
- declare const _default: "6.16.0";
1
+ declare const _default: "6.17.0";
2
2
  export default _default;
@@ -1,4 +1,4 @@
1
- const e = "6.16.0";
1
+ const e = "6.17.0";
2
2
  export {
3
3
  e as default
4
4
  };