geekplus-digital-ui 0.2.5 → 0.2.6
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.
- package/components/index.js +4 -3
- package/components/table/index.d.ts +1 -0
- package/components/table/index.js +4 -3
- package/index.js +5 -5
- package/package.json +1 -1
package/components/index.js
CHANGED
|
@@ -8,9 +8,9 @@ import o from "./inline-edit/index.js";
|
|
|
8
8
|
import s from "./upload/index.js";
|
|
9
9
|
import c from "./search-form/index.js";
|
|
10
10
|
import l from "./search-item/index.js";
|
|
11
|
-
import u from "./table/index.js";
|
|
11
|
+
import u, { DTableWrapper as d } from "./table/index.js";
|
|
12
12
|
//#region packages/components/index.js
|
|
13
|
-
var
|
|
13
|
+
var f = /* @__PURE__ */ e({
|
|
14
14
|
DCopy: () => t,
|
|
15
15
|
DEditor: () => n,
|
|
16
16
|
DFoldText: () => r,
|
|
@@ -20,7 +20,8 @@ var d = /* @__PURE__ */ e({
|
|
|
20
20
|
DSearchForm: () => c,
|
|
21
21
|
DSearchItem: () => l,
|
|
22
22
|
DTable: () => u,
|
|
23
|
+
DTableWrapper: () => d,
|
|
23
24
|
DUpload: () => s
|
|
24
25
|
});
|
|
25
26
|
//#endregion
|
|
26
|
-
export { t as DCopy, n as DEditor, r as DFoldText, i as DIcon, a as DIconTip, o as DInlineEdit, c as DSearchForm, l as DSearchItem, u as DTable, s as DUpload,
|
|
27
|
+
export { t as DCopy, n as DEditor, r as DFoldText, i as DIcon, a as DIconTip, o as DInlineEdit, c as DSearchForm, l as DSearchItem, u as DTable, d as DTableWrapper, s as DUpload, f as components_exports };
|
|
@@ -120,4 +120,5 @@ export const DTable: {
|
|
|
120
120
|
pagination?(_: {}): any;
|
|
121
121
|
};
|
|
122
122
|
});
|
|
123
|
+
export const DTableWrapper: import('vue').DefineComponent<{}, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
123
124
|
export default DTable;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import e from "./src/table.vue.js";
|
|
1
|
+
import e from "./src/table-wrapper.vue.js";
|
|
2
|
+
import t from "./src/table.vue.js";
|
|
2
3
|
//#region packages/components/table/index.js
|
|
3
|
-
var t = e;
|
|
4
|
+
var n = t, r = e;
|
|
4
5
|
//#endregion
|
|
5
|
-
export {
|
|
6
|
+
export { r as DTableWrapper, n as default };
|
package/index.js
CHANGED
|
@@ -10,11 +10,11 @@ import s from "./components/inline-edit/index.js";
|
|
|
10
10
|
import c from "./components/upload/index.js";
|
|
11
11
|
import l from "./components/search-form/index.js";
|
|
12
12
|
import u from "./components/search-item/index.js";
|
|
13
|
-
import d from "./components/table/index.js";
|
|
13
|
+
import d, { DTableWrapper as f } from "./components/table/index.js";
|
|
14
14
|
import "./components/index.js";
|
|
15
|
-
import { setComponentRegistry as
|
|
16
|
-
import { install as
|
|
15
|
+
import { setComponentRegistry as p, setGlobalConfig as m } from "./config/index.js";
|
|
16
|
+
import { install as h } from "./install.js";
|
|
17
17
|
//#region packages/index.js
|
|
18
|
-
var
|
|
18
|
+
var g = { install: h };
|
|
19
19
|
//#endregion
|
|
20
|
-
export { n as DCopy, r as DEditor, i as DFoldText, a as DIcon, o as DIconTip, s as DInlineEdit, l as DSearchForm, u as DSearchItem, d as DTable, c as DUpload,
|
|
20
|
+
export { n as DCopy, r as DEditor, i as DFoldText, a as DIcon, o as DIconTip, s as DInlineEdit, l as DSearchForm, u as DSearchItem, d as DTable, f as DTableWrapper, c as DUpload, g as default, h as install, p as setComponentRegistry, m as setGlobalConfig, t as useActivated, e as useLocale };
|