lkt-table 2.0.0 → 2.0.3
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/dist/build.d.ts +10 -11
- package/dist/build.js +609 -637
- package/dist/components/DropButton.vue.d.ts +2 -11
- package/dist/components/LktHiddenRow.vue.d.ts +41 -15
- package/dist/components/LktTableRow.vue.d.ts +97 -14
- package/dist/components/TableHeader.vue.d.ts +1 -1
- package/dist/functions/table-functions.d.ts +1 -6
- package/dist/index.d.ts +1 -2
- package/package.json +15 -14
- package/src/components/DropButton.vue +5 -16
- package/src/components/LktTableRow.vue +6 -15
- package/src/lib-components/LktTable.vue +71 -33
- package/dist/lib-components/LktTable.vue.d.ts +0 -164
- /package/dist/{style.css → build.css} +0 -0
package/dist/build.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { Column as
|
|
2
|
-
|
|
3
|
-
declare namespace
|
|
4
|
-
function install(
|
|
1
|
+
import { Column as na } from "lkt-vue-kernel";
|
|
2
|
+
import { createColumn as ua } from "lkt-vue-kernel";
|
|
3
|
+
declare namespace Yl {
|
|
4
|
+
function install(o: any): void;
|
|
5
5
|
}
|
|
6
|
-
declare function
|
|
7
|
-
declare function
|
|
8
|
-
declare function
|
|
9
|
-
declare function
|
|
10
|
-
declare function
|
|
11
|
-
|
|
12
|
-
export { Zl as Column, jl as createColumn, Kl as default, Gl as setTableCreateButtonSlot, zl as setTableDropButtonSlot, Jl as setTableEmptySlot, Wl as setTableNavButtonSlot, Ql as setTableSaveIcon };
|
|
6
|
+
declare function ea(o: any): boolean;
|
|
7
|
+
declare function xl(o: any): boolean;
|
|
8
|
+
declare function ta(o: any): void;
|
|
9
|
+
declare function Zl(o: any): boolean;
|
|
10
|
+
declare function la(o: any): void;
|
|
11
|
+
export { na as Column, ua as createColumn, Yl as default, ea as setTableCreateButtonSlot, xl as setTableDropButtonSlot, ta as setTableEmptySlot, Zl as setTableNavButtonSlot, la as setTableSaveIcon };
|