lkt-table 2.0.6 → 2.0.7
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 +8 -8
- package/dist/build.js +421 -420
- package/dist/components/DropButtonComponent.vue.d.ts +14 -0
- package/dist/components/EditButtonComponent.vue.d.ts +14 -0
- package/dist/components/LktTableRow.vue.d.ts +10 -10
- package/package.json +2 -2
- package/src/components/{DropButton.vue → DropButtonComponent.vue} +10 -7
- package/src/components/{EditButton.vue → EditButtonComponent.vue} +11 -8
- package/src/components/LktTableRow.vue +9 -7
- package/src/lib-components/LktTable.vue +12 -11
package/dist/build.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Column as
|
|
2
|
-
import { createColumn as
|
|
3
|
-
declare namespace
|
|
1
|
+
import { Column as ra } from "lkt-vue-kernel";
|
|
2
|
+
import { createColumn as ia } from "lkt-vue-kernel";
|
|
3
|
+
declare namespace xl {
|
|
4
4
|
function install(o: any): void;
|
|
5
5
|
}
|
|
6
|
+
declare function la(o: any): boolean;
|
|
7
|
+
declare function ta(o: any): boolean;
|
|
8
|
+
declare function aa(o: any): void;
|
|
6
9
|
declare function ea(o: any): boolean;
|
|
7
|
-
declare function
|
|
8
|
-
|
|
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 };
|
|
10
|
+
declare function oa(o: any): void;
|
|
11
|
+
export { ra as Column, ia as createColumn, xl as default, la as setTableCreateButtonSlot, ta as setTableDropButtonSlot, aa as setTableEmptySlot, ea as setTableNavButtonSlot, oa as setTableSaveIcon };
|