lkt-table 1.0.19 → 1.1.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/dist/{lkt-table.d.ts → build.d.ts} +64 -64
- package/dist/build.js +562 -0
- package/dist/components/LktHiddenRow.vue.d.ts +104 -0
- package/dist/components/LktTableCell.vue.d.ts +39 -0
- package/dist/components/LktTableRow.vue.d.ts +97 -0
- package/dist/functions/table-functions.d.ts +61 -0
- package/dist/index.d.ts +8 -0
- package/dist/instances/LktTableColumn.d.ts +55 -0
- package/dist/lib-components/LktTable.vue.d.ts +109 -0
- package/package.json +7 -7
- package/src/components/LktHiddenRow.vue +65 -0
- package/src/components/LktTableCell.vue +102 -0
- package/src/components/LktTableRow.vue +71 -0
- package/src/lib-components/LktTable.vue +263 -0
- package/dist/lkt-table.js +0 -556
|
@@ -1,4 +1,56 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare class w {
|
|
2
|
+
constructor(t?: string, l?: string);
|
|
3
|
+
key: string;
|
|
4
|
+
label: string;
|
|
5
|
+
sortable: boolean;
|
|
6
|
+
hidden: boolean;
|
|
7
|
+
resource: string;
|
|
8
|
+
resourceData: {};
|
|
9
|
+
isMultiple: boolean;
|
|
10
|
+
isLoading: boolean;
|
|
11
|
+
resourceLoaded: boolean;
|
|
12
|
+
valueSlot: string;
|
|
13
|
+
editSlot: string;
|
|
14
|
+
multipleDisplay: string;
|
|
15
|
+
multipleDisplayEdition: string;
|
|
16
|
+
setIsSortable(t?: boolean): this;
|
|
17
|
+
setIsEditable(t?: boolean): this;
|
|
18
|
+
editable: boolean | undefined;
|
|
19
|
+
setIsHidden(t?: boolean): this;
|
|
20
|
+
setIsLoading(t?: boolean): this;
|
|
21
|
+
setFormatter(t?: undefined): this;
|
|
22
|
+
formatter: any;
|
|
23
|
+
setEmptyChecker(t?: undefined): this;
|
|
24
|
+
checkEmpty: any;
|
|
25
|
+
setColSpan(t?: undefined): this;
|
|
26
|
+
getHref(t: any): any;
|
|
27
|
+
doAction(t: any): any;
|
|
28
|
+
defineAsLink(t: any): this;
|
|
29
|
+
type: string | undefined;
|
|
30
|
+
link: any;
|
|
31
|
+
defineAsText(): this;
|
|
32
|
+
defineAsEmail(): this;
|
|
33
|
+
defineAsTel(): this;
|
|
34
|
+
defineAsInt(): this;
|
|
35
|
+
defineAsFloat(): this;
|
|
36
|
+
defineAsCheck(): this;
|
|
37
|
+
defineAsSwitch(): this;
|
|
38
|
+
defineAsAction(t: any): this;
|
|
39
|
+
action: any;
|
|
40
|
+
defineAsSelect(t: any): this;
|
|
41
|
+
options: any;
|
|
42
|
+
showLoading(): boolean;
|
|
43
|
+
hasToLoadResource(): boolean;
|
|
44
|
+
setIsMultiple(t?: boolean): this;
|
|
45
|
+
setResource(t: any): this;
|
|
46
|
+
setResourceData(t: any): this;
|
|
47
|
+
loadResource(): Promise<this>;
|
|
48
|
+
setEditSlot(t: any): this;
|
|
49
|
+
setValueSlot(t: any): this;
|
|
50
|
+
setMultipleDisplay(t: any): this;
|
|
51
|
+
setMultipleDisplayEdition(t: any): this;
|
|
52
|
+
}
|
|
53
|
+
declare function Ge(e: any, t: any, l: any, n?: boolean): {
|
|
2
54
|
key: string;
|
|
3
55
|
label: string;
|
|
4
56
|
sortable: boolean;
|
|
@@ -49,7 +101,7 @@ declare function it(e: any, t: any, l: any, n?: boolean): {
|
|
|
49
101
|
setMultipleDisplay: (t: any) => w;
|
|
50
102
|
setMultipleDisplayEdition: (t: any) => w;
|
|
51
103
|
};
|
|
52
|
-
declare function
|
|
104
|
+
declare function Xe(e: any, t: any, l?: boolean): {
|
|
53
105
|
key: string;
|
|
54
106
|
label: string;
|
|
55
107
|
sortable: boolean;
|
|
@@ -100,7 +152,7 @@ declare function ut(e: any, t: any, l?: boolean): {
|
|
|
100
152
|
setMultipleDisplay: (t: any) => w;
|
|
101
153
|
setMultipleDisplayEdition: (t: any) => w;
|
|
102
154
|
};
|
|
103
|
-
declare function
|
|
155
|
+
declare function Je(e: any, t: any, l?: boolean): {
|
|
104
156
|
key: string;
|
|
105
157
|
label: string;
|
|
106
158
|
sortable: boolean;
|
|
@@ -151,7 +203,7 @@ declare function tt(e: any, t: any, l?: boolean): {
|
|
|
151
203
|
setMultipleDisplay: (t: any) => w;
|
|
152
204
|
setMultipleDisplayEdition: (t: any) => w;
|
|
153
205
|
};
|
|
154
|
-
declare function
|
|
206
|
+
declare function Qe(e: any, t: any, l?: boolean): {
|
|
155
207
|
key: string;
|
|
156
208
|
label: string;
|
|
157
209
|
sortable: boolean;
|
|
@@ -202,7 +254,7 @@ declare function nt(e: any, t: any, l?: boolean): {
|
|
|
202
254
|
setMultipleDisplay: (t: any) => w;
|
|
203
255
|
setMultipleDisplayEdition: (t: any) => w;
|
|
204
256
|
};
|
|
205
|
-
declare function
|
|
257
|
+
declare function _e(e: any, t: any, l?: boolean): {
|
|
206
258
|
key: string;
|
|
207
259
|
label: string;
|
|
208
260
|
sortable: boolean;
|
|
@@ -253,7 +305,7 @@ declare function dt(e: any, t: any, l?: boolean): {
|
|
|
253
305
|
setMultipleDisplay: (t: any) => w;
|
|
254
306
|
setMultipleDisplayEdition: (t: any) => w;
|
|
255
307
|
};
|
|
256
|
-
declare function
|
|
308
|
+
declare function qe(e: any, t: any, l: any, n?: boolean): {
|
|
257
309
|
key: string;
|
|
258
310
|
label: string;
|
|
259
311
|
sortable: boolean;
|
|
@@ -304,7 +356,7 @@ declare function lt(e: any, t: any, l: any, n?: boolean): {
|
|
|
304
356
|
setMultipleDisplay: (t: any) => w;
|
|
305
357
|
setMultipleDisplayEdition: (t: any) => w;
|
|
306
358
|
};
|
|
307
|
-
declare function
|
|
359
|
+
declare function Ze(e: any, t: any, l: any, n?: boolean): {
|
|
308
360
|
key: string;
|
|
309
361
|
label: string;
|
|
310
362
|
sortable: boolean;
|
|
@@ -355,7 +407,7 @@ declare function rt(e: any, t: any, l: any, n?: boolean): {
|
|
|
355
407
|
setMultipleDisplay: (t: any) => w;
|
|
356
408
|
setMultipleDisplayEdition: (t: any) => w;
|
|
357
409
|
};
|
|
358
|
-
declare function
|
|
410
|
+
declare function Ye(e: any, t: any, l?: boolean): {
|
|
359
411
|
key: string;
|
|
360
412
|
label: string;
|
|
361
413
|
sortable: boolean;
|
|
@@ -406,7 +458,7 @@ declare function st(e: any, t: any, l?: boolean): {
|
|
|
406
458
|
setMultipleDisplay: (t: any) => w;
|
|
407
459
|
setMultipleDisplayEdition: (t: any) => w;
|
|
408
460
|
};
|
|
409
|
-
declare function
|
|
461
|
+
declare function We(e: any, t: any, l?: boolean): {
|
|
410
462
|
key: string;
|
|
411
463
|
label: string;
|
|
412
464
|
sortable: boolean;
|
|
@@ -457,7 +509,7 @@ declare function ot(e: any, t: any, l?: boolean): {
|
|
|
457
509
|
setMultipleDisplay: (t: any) => w;
|
|
458
510
|
setMultipleDisplayEdition: (t: any) => w;
|
|
459
511
|
};
|
|
460
|
-
declare function
|
|
512
|
+
declare function Pe(e: any, t: any, l?: boolean): {
|
|
461
513
|
key: string;
|
|
462
514
|
label: string;
|
|
463
515
|
sortable: boolean;
|
|
@@ -508,59 +560,7 @@ declare function at(e: any, t: any, l?: boolean): {
|
|
|
508
560
|
setMultipleDisplay: (t: any) => w;
|
|
509
561
|
setMultipleDisplayEdition: (t: any) => w;
|
|
510
562
|
};
|
|
511
|
-
declare namespace
|
|
563
|
+
declare namespace et {
|
|
512
564
|
function install(e: any): void;
|
|
513
565
|
}
|
|
514
|
-
|
|
515
|
-
constructor(t?: string, l?: string);
|
|
516
|
-
key: string;
|
|
517
|
-
label: string;
|
|
518
|
-
sortable: boolean;
|
|
519
|
-
hidden: boolean;
|
|
520
|
-
resource: string;
|
|
521
|
-
resourceData: {};
|
|
522
|
-
isMultiple: boolean;
|
|
523
|
-
isLoading: boolean;
|
|
524
|
-
resourceLoaded: boolean;
|
|
525
|
-
valueSlot: string;
|
|
526
|
-
editSlot: string;
|
|
527
|
-
multipleDisplay: string;
|
|
528
|
-
multipleDisplayEdition: string;
|
|
529
|
-
setIsSortable(t?: boolean): this;
|
|
530
|
-
setIsEditable(t?: boolean): this;
|
|
531
|
-
editable: boolean | undefined;
|
|
532
|
-
setIsHidden(t?: boolean): this;
|
|
533
|
-
setIsLoading(t?: boolean): this;
|
|
534
|
-
setFormatter(t?: undefined): this;
|
|
535
|
-
formatter: any;
|
|
536
|
-
setEmptyChecker(t?: undefined): this;
|
|
537
|
-
checkEmpty: any;
|
|
538
|
-
setColSpan(t?: undefined): this;
|
|
539
|
-
getHref(t: any): any;
|
|
540
|
-
doAction(t: any): any;
|
|
541
|
-
defineAsLink(t: any): this;
|
|
542
|
-
type: string | undefined;
|
|
543
|
-
link: any;
|
|
544
|
-
defineAsText(): this;
|
|
545
|
-
defineAsEmail(): this;
|
|
546
|
-
defineAsTel(): this;
|
|
547
|
-
defineAsInt(): this;
|
|
548
|
-
defineAsFloat(): this;
|
|
549
|
-
defineAsCheck(): this;
|
|
550
|
-
defineAsSwitch(): this;
|
|
551
|
-
defineAsAction(t: any): this;
|
|
552
|
-
action: any;
|
|
553
|
-
defineAsSelect(t: any): this;
|
|
554
|
-
options: any;
|
|
555
|
-
showLoading(): boolean;
|
|
556
|
-
hasToLoadResource(): boolean;
|
|
557
|
-
setIsMultiple(t?: boolean): this;
|
|
558
|
-
setResource(t: any): this;
|
|
559
|
-
setResourceData(t: any): this;
|
|
560
|
-
loadResource(): Promise<this>;
|
|
561
|
-
setEditSlot(t: any): this;
|
|
562
|
-
setValueSlot(t: any): this;
|
|
563
|
-
setMultipleDisplay(t: any): this;
|
|
564
|
-
setMultipleDisplayEdition(t: any): this;
|
|
565
|
-
}
|
|
566
|
-
export { it as createActionColumn, ut as createCheckColumn, tt as createColumn, nt as createEmailColumn, dt as createHiddenColumn, lt as createLinkColumn, rt as createSelectColumn, st as createSwitchColumn, ot as createTelColumn, at as createTextColumn, ct as default };
|
|
566
|
+
export { w as LktTableColumn, Ge as createActionColumn, Xe as createCheckColumn, Je as createColumn, Qe as createEmailColumn, _e as createHiddenColumn, qe as createLinkColumn, Ze as createSelectColumn, Ye as createSwitchColumn, We as createTelColumn, Pe as createTextColumn, et as default };
|