lkt-table 2.0.22 → 2.0.24
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 -10
- package/dist/build.js +1246 -1193
- package/dist/components/LktHiddenRow.vue.d.ts +2 -31
- package/dist/components/LktTableRow.vue.d.ts +2 -72
- package/package.json +1 -1
- package/src/components/LktTableCell.vue +17 -3
- package/src/lib-components/LktTable.vue +63 -1
package/dist/build.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Column as
|
|
2
|
-
import { createColumn as
|
|
3
|
-
declare namespace
|
|
4
|
-
function install(
|
|
1
|
+
import { Column as wn } from "lkt-vue-kernel";
|
|
2
|
+
import { createColumn as Bn } from "lkt-vue-kernel";
|
|
3
|
+
declare namespace mn {
|
|
4
|
+
function install(t: any): void;
|
|
5
5
|
}
|
|
6
|
-
declare function
|
|
7
|
-
declare function
|
|
8
|
-
declare function
|
|
9
|
-
declare function
|
|
10
|
-
declare function
|
|
11
|
-
export {
|
|
6
|
+
declare function yn(t: any): boolean;
|
|
7
|
+
declare function bn(t: any): boolean;
|
|
8
|
+
declare function hn(t: any): void;
|
|
9
|
+
declare function gn(t: any): boolean;
|
|
10
|
+
declare function kn(t: any): void;
|
|
11
|
+
export { wn as Column, Bn as createColumn, mn as default, yn as setTableCreateButtonSlot, bn as setTableDropButtonSlot, hn as setTableEmptySlot, gn as setTableNavButtonSlot, kn as setTableSaveIcon };
|