lkt-table 2.0.7 → 2.0.9
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 +1692 -689
- package/package.json +8 -7
- package/src/components/CreateButton.vue +4 -1
- package/src/components/DropButtonComponent.vue +3 -1
- package/src/components/EditButtonComponent.vue +3 -1
- package/src/components/LktHiddenRow.vue +4 -1
- package/src/components/LktTableCell.vue +3 -1
- package/src/components/LktTableRow.vue +8 -1
- package/src/components/TableHeader.vue +3 -1
- package/src/lib-components/LktTable.vue +50 -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 sn } from "lkt-vue-kernel";
|
|
2
|
+
import { createColumn as dn } from "lkt-vue-kernel";
|
|
3
|
+
declare namespace en {
|
|
4
|
+
function install(e: any): void;
|
|
5
5
|
}
|
|
6
|
-
declare function
|
|
7
|
-
declare function
|
|
8
|
-
declare function
|
|
9
|
-
declare function
|
|
10
|
-
declare function
|
|
11
|
-
export {
|
|
6
|
+
declare function ln(e: any): boolean;
|
|
7
|
+
declare function an(e: any): boolean;
|
|
8
|
+
declare function nn(e: any): void;
|
|
9
|
+
declare function tn(e: any): boolean;
|
|
10
|
+
declare function on(e: any): void;
|
|
11
|
+
export { sn as Column, dn as createColumn, en as default, ln as setTableCreateButtonSlot, an as setTableDropButtonSlot, nn as setTableEmptySlot, tn as setTableNavButtonSlot, on as setTableSaveIcon };
|