lkt-table 1.4.3 → 2.0.2
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 -11
- package/dist/build.js +652 -654
- package/dist/components/CreateButton.vue.d.ts +3 -10
- package/dist/components/LktHiddenRow.vue.d.ts +41 -15
- package/dist/components/LktTableRow.vue.d.ts +99 -5
- 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 +7 -8
- package/src/components/CreateButton.vue +11 -18
- package/src/components/LktTableRow.vue +3 -1
- package/src/lib-components/LktTable.vue +168 -155
- package/dist/lib-components/LktTable.vue.d.ts +0 -164
- /package/dist/{style.css → build.css} +0 -0
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,11 @@
|
|
|
1
|
-
import { Column as
|
|
2
|
-
|
|
3
|
-
declare namespace
|
|
4
|
-
function install(
|
|
1
|
+
import { Column as ta } from "lkt-vue-kernel";
|
|
2
|
+
import { createColumn as la } from "lkt-vue-kernel";
|
|
3
|
+
declare namespace Jl {
|
|
4
|
+
function install(n: any): void;
|
|
5
5
|
}
|
|
6
|
-
declare function
|
|
7
|
-
declare function
|
|
8
|
-
declare function
|
|
9
|
-
declare function
|
|
10
|
-
declare function
|
|
11
|
-
|
|
12
|
-
export { Jl as Column, Al as createColumn, Ol as default, ql as setTableCreateButtonSlot, Wl as setTableDropButtonSlot, jl as setTableEmptySlot, Hl as setTableNavButtonSlot, Kl as setTableSaveIcon };
|
|
6
|
+
declare function Yl(n: any): boolean;
|
|
7
|
+
declare function Xl(n: any): boolean;
|
|
8
|
+
declare function Zl(n: any): void;
|
|
9
|
+
declare function Ql(n: any): boolean;
|
|
10
|
+
declare function _l(n: any): void;
|
|
11
|
+
export { ta as Column, la as createColumn, Jl as default, Yl as setTableCreateButtonSlot, Xl as setTableDropButtonSlot, Zl as setTableEmptySlot, Ql as setTableNavButtonSlot, _l as setTableSaveIcon };
|