lkt-table 1.4.2 → 2.0.0
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/README.md +12 -1
- package/dist/build.d.ts +10 -10
- package/dist/build.js +694 -713
- package/dist/components/CreateButton.vue.d.ts +3 -10
- package/dist/components/DropButton.vue.d.ts +3 -3
- package/dist/components/EditButton.vue.d.ts +3 -3
- package/dist/components/LktHiddenRow.vue.d.ts +3 -3
- package/dist/components/LktTableCell.vue.d.ts +2 -2
- package/dist/components/LktTableRow.vue.d.ts +16 -16
- package/dist/functions/table-functions.d.ts +2 -2
- package/package.json +4 -4
- package/src/components/CreateButton.vue +11 -18
- package/src/lib-components/LktTable.vue +163 -315
package/README.md
CHANGED
|
@@ -196,4 +196,15 @@ Slot props:
|
|
|
196
196
|
<div>{{value}}, {{item.surname}}</div>
|
|
197
197
|
</template
|
|
198
198
|
</lkt-table>
|
|
199
|
-
```
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
:icon="Settings.defaultSaveIcon"
|
|
204
|
+
:disabled="!ableToSave"
|
|
205
|
+
:confirm-modal="saveConfirm"
|
|
206
|
+
:confirm-data="confirmData"
|
|
207
|
+
:resource="saveResource"
|
|
208
|
+
:resource-data="computedSaveResourceData"
|
|
209
|
+
:split="splitSave"
|
|
210
|
+
:tooltip-engine="saveTooltipEngine"
|
package/dist/build.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Column as
|
|
2
|
-
declare function
|
|
3
|
-
declare namespace
|
|
1
|
+
import { Column as Zl } from "lkt-vue-kernel";
|
|
2
|
+
declare function jl(n: any): Le;
|
|
3
|
+
declare namespace Kl {
|
|
4
4
|
function install(n: any): void;
|
|
5
5
|
}
|
|
6
|
-
declare function
|
|
7
|
-
declare function
|
|
8
|
-
declare function
|
|
9
|
-
declare function
|
|
10
|
-
declare function
|
|
11
|
-
import { Column as
|
|
12
|
-
export {
|
|
6
|
+
declare function Gl(n: any): boolean;
|
|
7
|
+
declare function zl(n: any): boolean;
|
|
8
|
+
declare function Jl(n: any): void;
|
|
9
|
+
declare function Wl(n: any): boolean;
|
|
10
|
+
declare function Ql(n: any): void;
|
|
11
|
+
import { Column as Le } from "lkt-vue-kernel";
|
|
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 };
|