lkt-table 1.2.24 → 1.2.26
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 +87 -87
- package/dist/build.js +593 -586
- package/package.json +1 -2
- package/src/components/CreateButton.vue +3 -14
- package/src/components/DropButton.vue +3 -14
- package/src/components/EditButton.vue +3 -14
- package/src/components/LktHiddenRow.vue +1 -4
- package/src/components/LktTableCell.vue +13 -12
- package/src/components/LktTableRow.vue +2 -5
- package/src/components/TableHeader.vue +1 -5
- package/src/lib-components/LktTable.vue +99 -96
package/dist/build.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
declare class U {
|
|
2
|
-
constructor(t?: string,
|
|
3
|
-
preferSlot: boolean;
|
|
4
|
-
key: string;
|
|
5
|
-
label: string;
|
|
2
|
+
constructor(t?: string, r?: string);
|
|
6
3
|
sortable: boolean;
|
|
7
4
|
hidden: boolean;
|
|
5
|
+
preferSlot: boolean;
|
|
8
6
|
resource: string;
|
|
9
7
|
resourceData: {};
|
|
10
8
|
isMultiple: boolean;
|
|
@@ -14,6 +12,8 @@ declare class U {
|
|
|
14
12
|
editSlot: string;
|
|
15
13
|
multipleDisplay: string;
|
|
16
14
|
multipleDisplayEdition: string;
|
|
15
|
+
key: string | undefined;
|
|
16
|
+
label: string | undefined;
|
|
17
17
|
setIsSortable(t?: boolean): this;
|
|
18
18
|
setIsEditable(t?: boolean): this;
|
|
19
19
|
editable: boolean | undefined;
|
|
@@ -29,7 +29,7 @@ declare class U {
|
|
|
29
29
|
getHref(t: any): any;
|
|
30
30
|
doAction(t: any): any;
|
|
31
31
|
defineAsLink(t: any): this;
|
|
32
|
-
type:
|
|
32
|
+
type: any;
|
|
33
33
|
link: any;
|
|
34
34
|
defineAsText(): this;
|
|
35
35
|
defineAsEmail(): this;
|
|
@@ -62,7 +62,7 @@ declare class U {
|
|
|
62
62
|
setMultipleDisplayEditionToInline(): this;
|
|
63
63
|
setSlotData(t: any): this;
|
|
64
64
|
slotData: any;
|
|
65
|
-
setAutoLoadSelectOptions(t?: boolean,
|
|
65
|
+
setAutoLoadSelectOptions(t?: boolean, r?: string): this;
|
|
66
66
|
autoLoadSelectOptions: boolean | undefined;
|
|
67
67
|
autoLoadSelectOptionsKey: string | undefined;
|
|
68
68
|
setTagMode(t?: boolean): this;
|
|
@@ -75,12 +75,10 @@ declare class U {
|
|
|
75
75
|
setIsEquivalentToSelectValue(t?: boolean): this;
|
|
76
76
|
equivalentToSelectValue: boolean | undefined;
|
|
77
77
|
}
|
|
78
|
-
declare function
|
|
79
|
-
preferSlot: boolean;
|
|
80
|
-
key: string;
|
|
81
|
-
label: string;
|
|
78
|
+
declare function Fl(l: any, t: any, r: any, a?: boolean): {
|
|
82
79
|
sortable: boolean;
|
|
83
80
|
hidden: boolean;
|
|
81
|
+
preferSlot: boolean;
|
|
84
82
|
resource: string;
|
|
85
83
|
resourceData: {};
|
|
86
84
|
isMultiple: boolean;
|
|
@@ -90,6 +88,8 @@ declare function Al(l: any, t: any, s: any, n?: boolean): {
|
|
|
90
88
|
editSlot: string;
|
|
91
89
|
multipleDisplay: string;
|
|
92
90
|
multipleDisplayEdition: string;
|
|
91
|
+
key: string | undefined;
|
|
92
|
+
label: string | undefined;
|
|
93
93
|
setIsSortable: (t?: boolean) => U;
|
|
94
94
|
setIsEditable: (t?: boolean) => U;
|
|
95
95
|
editable: boolean | undefined;
|
|
@@ -105,7 +105,7 @@ declare function Al(l: any, t: any, s: any, n?: boolean): {
|
|
|
105
105
|
getHref: (t: any) => any;
|
|
106
106
|
doAction: (t: any) => any;
|
|
107
107
|
defineAsLink: (t: any) => U;
|
|
108
|
-
type:
|
|
108
|
+
type: any;
|
|
109
109
|
link: any;
|
|
110
110
|
defineAsText: () => U;
|
|
111
111
|
defineAsEmail: () => U;
|
|
@@ -138,7 +138,7 @@ declare function Al(l: any, t: any, s: any, n?: boolean): {
|
|
|
138
138
|
setMultipleDisplayEditionToInline: () => U;
|
|
139
139
|
setSlotData: (t: any) => U;
|
|
140
140
|
slotData: any;
|
|
141
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
141
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
142
142
|
autoLoadSelectOptions: boolean | undefined;
|
|
143
143
|
autoLoadSelectOptionsKey: string | undefined;
|
|
144
144
|
setTagMode: (t?: boolean) => U;
|
|
@@ -151,12 +151,10 @@ declare function Al(l: any, t: any, s: any, n?: boolean): {
|
|
|
151
151
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
152
152
|
equivalentToSelectValue: boolean | undefined;
|
|
153
153
|
};
|
|
154
|
-
declare function
|
|
155
|
-
preferSlot: boolean;
|
|
156
|
-
key: string;
|
|
157
|
-
label: string;
|
|
154
|
+
declare function Ol(l: any, t: any, r?: boolean): {
|
|
158
155
|
sortable: boolean;
|
|
159
156
|
hidden: boolean;
|
|
157
|
+
preferSlot: boolean;
|
|
160
158
|
resource: string;
|
|
161
159
|
resourceData: {};
|
|
162
160
|
isMultiple: boolean;
|
|
@@ -166,6 +164,8 @@ declare function Hl(l: any, t: any, s?: boolean): {
|
|
|
166
164
|
editSlot: string;
|
|
167
165
|
multipleDisplay: string;
|
|
168
166
|
multipleDisplayEdition: string;
|
|
167
|
+
key: string | undefined;
|
|
168
|
+
label: string | undefined;
|
|
169
169
|
setIsSortable: (t?: boolean) => U;
|
|
170
170
|
setIsEditable: (t?: boolean) => U;
|
|
171
171
|
editable: boolean | undefined;
|
|
@@ -181,7 +181,7 @@ declare function Hl(l: any, t: any, s?: boolean): {
|
|
|
181
181
|
getHref: (t: any) => any;
|
|
182
182
|
doAction: (t: any) => any;
|
|
183
183
|
defineAsLink: (t: any) => U;
|
|
184
|
-
type:
|
|
184
|
+
type: any;
|
|
185
185
|
link: any;
|
|
186
186
|
defineAsText: () => U;
|
|
187
187
|
defineAsEmail: () => U;
|
|
@@ -214,7 +214,7 @@ declare function Hl(l: any, t: any, s?: boolean): {
|
|
|
214
214
|
setMultipleDisplayEditionToInline: () => U;
|
|
215
215
|
setSlotData: (t: any) => U;
|
|
216
216
|
slotData: any;
|
|
217
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
217
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
218
218
|
autoLoadSelectOptions: boolean | undefined;
|
|
219
219
|
autoLoadSelectOptionsKey: string | undefined;
|
|
220
220
|
setTagMode: (t?: boolean) => U;
|
|
@@ -227,12 +227,10 @@ declare function Hl(l: any, t: any, s?: boolean): {
|
|
|
227
227
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
228
228
|
equivalentToSelectValue: boolean | undefined;
|
|
229
229
|
};
|
|
230
|
-
declare function
|
|
231
|
-
preferSlot: boolean;
|
|
232
|
-
key: string;
|
|
233
|
-
label: string;
|
|
230
|
+
declare function Al(l: any, t: any, r?: boolean): {
|
|
234
231
|
sortable: boolean;
|
|
235
232
|
hidden: boolean;
|
|
233
|
+
preferSlot: boolean;
|
|
236
234
|
resource: string;
|
|
237
235
|
resourceData: {};
|
|
238
236
|
isMultiple: boolean;
|
|
@@ -242,6 +240,8 @@ declare function Rl(l: any, t: any, s?: boolean): {
|
|
|
242
240
|
editSlot: string;
|
|
243
241
|
multipleDisplay: string;
|
|
244
242
|
multipleDisplayEdition: string;
|
|
243
|
+
key: string | undefined;
|
|
244
|
+
label: string | undefined;
|
|
245
245
|
setIsSortable: (t?: boolean) => U;
|
|
246
246
|
setIsEditable: (t?: boolean) => U;
|
|
247
247
|
editable: boolean | undefined;
|
|
@@ -257,7 +257,7 @@ declare function Rl(l: any, t: any, s?: boolean): {
|
|
|
257
257
|
getHref: (t: any) => any;
|
|
258
258
|
doAction: (t: any) => any;
|
|
259
259
|
defineAsLink: (t: any) => U;
|
|
260
|
-
type:
|
|
260
|
+
type: any;
|
|
261
261
|
link: any;
|
|
262
262
|
defineAsText: () => U;
|
|
263
263
|
defineAsEmail: () => U;
|
|
@@ -290,7 +290,7 @@ declare function Rl(l: any, t: any, s?: boolean): {
|
|
|
290
290
|
setMultipleDisplayEditionToInline: () => U;
|
|
291
291
|
setSlotData: (t: any) => U;
|
|
292
292
|
slotData: any;
|
|
293
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
293
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
294
294
|
autoLoadSelectOptions: boolean | undefined;
|
|
295
295
|
autoLoadSelectOptionsKey: string | undefined;
|
|
296
296
|
setTagMode: (t?: boolean) => U;
|
|
@@ -303,12 +303,10 @@ declare function Rl(l: any, t: any, s?: boolean): {
|
|
|
303
303
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
304
304
|
equivalentToSelectValue: boolean | undefined;
|
|
305
305
|
};
|
|
306
|
-
declare function
|
|
307
|
-
preferSlot: boolean;
|
|
308
|
-
key: string;
|
|
309
|
-
label: string;
|
|
306
|
+
declare function Hl(l: any, t: any, r?: boolean): {
|
|
310
307
|
sortable: boolean;
|
|
311
308
|
hidden: boolean;
|
|
309
|
+
preferSlot: boolean;
|
|
312
310
|
resource: string;
|
|
313
311
|
resourceData: {};
|
|
314
312
|
isMultiple: boolean;
|
|
@@ -318,6 +316,8 @@ declare function Nl(l: any, t: any, s?: boolean): {
|
|
|
318
316
|
editSlot: string;
|
|
319
317
|
multipleDisplay: string;
|
|
320
318
|
multipleDisplayEdition: string;
|
|
319
|
+
key: string | undefined;
|
|
320
|
+
label: string | undefined;
|
|
321
321
|
setIsSortable: (t?: boolean) => U;
|
|
322
322
|
setIsEditable: (t?: boolean) => U;
|
|
323
323
|
editable: boolean | undefined;
|
|
@@ -333,7 +333,7 @@ declare function Nl(l: any, t: any, s?: boolean): {
|
|
|
333
333
|
getHref: (t: any) => any;
|
|
334
334
|
doAction: (t: any) => any;
|
|
335
335
|
defineAsLink: (t: any) => U;
|
|
336
|
-
type:
|
|
336
|
+
type: any;
|
|
337
337
|
link: any;
|
|
338
338
|
defineAsText: () => U;
|
|
339
339
|
defineAsEmail: () => U;
|
|
@@ -366,7 +366,7 @@ declare function Nl(l: any, t: any, s?: boolean): {
|
|
|
366
366
|
setMultipleDisplayEditionToInline: () => U;
|
|
367
367
|
setSlotData: (t: any) => U;
|
|
368
368
|
slotData: any;
|
|
369
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
369
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
370
370
|
autoLoadSelectOptions: boolean | undefined;
|
|
371
371
|
autoLoadSelectOptionsKey: string | undefined;
|
|
372
372
|
setTagMode: (t?: boolean) => U;
|
|
@@ -379,12 +379,10 @@ declare function Nl(l: any, t: any, s?: boolean): {
|
|
|
379
379
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
380
380
|
equivalentToSelectValue: boolean | undefined;
|
|
381
381
|
};
|
|
382
|
-
declare function
|
|
383
|
-
preferSlot: boolean;
|
|
384
|
-
key: string;
|
|
385
|
-
label: string;
|
|
382
|
+
declare function jl(l: any, t: any, r?: boolean): {
|
|
386
383
|
sortable: boolean;
|
|
387
384
|
hidden: boolean;
|
|
385
|
+
preferSlot: boolean;
|
|
388
386
|
resource: string;
|
|
389
387
|
resourceData: {};
|
|
390
388
|
isMultiple: boolean;
|
|
@@ -394,6 +392,8 @@ declare function ql(l: any, t: any, s?: boolean): {
|
|
|
394
392
|
editSlot: string;
|
|
395
393
|
multipleDisplay: string;
|
|
396
394
|
multipleDisplayEdition: string;
|
|
395
|
+
key: string | undefined;
|
|
396
|
+
label: string | undefined;
|
|
397
397
|
setIsSortable: (t?: boolean) => U;
|
|
398
398
|
setIsEditable: (t?: boolean) => U;
|
|
399
399
|
editable: boolean | undefined;
|
|
@@ -409,7 +409,7 @@ declare function ql(l: any, t: any, s?: boolean): {
|
|
|
409
409
|
getHref: (t: any) => any;
|
|
410
410
|
doAction: (t: any) => any;
|
|
411
411
|
defineAsLink: (t: any) => U;
|
|
412
|
-
type:
|
|
412
|
+
type: any;
|
|
413
413
|
link: any;
|
|
414
414
|
defineAsText: () => U;
|
|
415
415
|
defineAsEmail: () => U;
|
|
@@ -442,7 +442,7 @@ declare function ql(l: any, t: any, s?: boolean): {
|
|
|
442
442
|
setMultipleDisplayEditionToInline: () => U;
|
|
443
443
|
setSlotData: (t: any) => U;
|
|
444
444
|
slotData: any;
|
|
445
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
445
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
446
446
|
autoLoadSelectOptions: boolean | undefined;
|
|
447
447
|
autoLoadSelectOptionsKey: string | undefined;
|
|
448
448
|
setTagMode: (t?: boolean) => U;
|
|
@@ -455,12 +455,10 @@ declare function ql(l: any, t: any, s?: boolean): {
|
|
|
455
455
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
456
456
|
equivalentToSelectValue: boolean | undefined;
|
|
457
457
|
};
|
|
458
|
-
declare function
|
|
459
|
-
preferSlot: boolean;
|
|
460
|
-
key: string;
|
|
461
|
-
label: string;
|
|
458
|
+
declare function Pl(l: any, t: any, r?: boolean): {
|
|
462
459
|
sortable: boolean;
|
|
463
460
|
hidden: boolean;
|
|
461
|
+
preferSlot: boolean;
|
|
464
462
|
resource: string;
|
|
465
463
|
resourceData: {};
|
|
466
464
|
isMultiple: boolean;
|
|
@@ -470,6 +468,8 @@ declare function Ol(l: any, t: any, s?: boolean): {
|
|
|
470
468
|
editSlot: string;
|
|
471
469
|
multipleDisplay: string;
|
|
472
470
|
multipleDisplayEdition: string;
|
|
471
|
+
key: string | undefined;
|
|
472
|
+
label: string | undefined;
|
|
473
473
|
setIsSortable: (t?: boolean) => U;
|
|
474
474
|
setIsEditable: (t?: boolean) => U;
|
|
475
475
|
editable: boolean | undefined;
|
|
@@ -485,7 +485,7 @@ declare function Ol(l: any, t: any, s?: boolean): {
|
|
|
485
485
|
getHref: (t: any) => any;
|
|
486
486
|
doAction: (t: any) => any;
|
|
487
487
|
defineAsLink: (t: any) => U;
|
|
488
|
-
type:
|
|
488
|
+
type: any;
|
|
489
489
|
link: any;
|
|
490
490
|
defineAsText: () => U;
|
|
491
491
|
defineAsEmail: () => U;
|
|
@@ -518,7 +518,7 @@ declare function Ol(l: any, t: any, s?: boolean): {
|
|
|
518
518
|
setMultipleDisplayEditionToInline: () => U;
|
|
519
519
|
setSlotData: (t: any) => U;
|
|
520
520
|
slotData: any;
|
|
521
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
521
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
522
522
|
autoLoadSelectOptions: boolean | undefined;
|
|
523
523
|
autoLoadSelectOptionsKey: string | undefined;
|
|
524
524
|
setTagMode: (t?: boolean) => U;
|
|
@@ -531,12 +531,10 @@ declare function Ol(l: any, t: any, s?: boolean): {
|
|
|
531
531
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
532
532
|
equivalentToSelectValue: boolean | undefined;
|
|
533
533
|
};
|
|
534
|
-
declare function
|
|
535
|
-
preferSlot: boolean;
|
|
536
|
-
key: string;
|
|
537
|
-
label: string;
|
|
534
|
+
declare function zl(l: any, t: any, r?: boolean): {
|
|
538
535
|
sortable: boolean;
|
|
539
536
|
hidden: boolean;
|
|
537
|
+
preferSlot: boolean;
|
|
540
538
|
resource: string;
|
|
541
539
|
resourceData: {};
|
|
542
540
|
isMultiple: boolean;
|
|
@@ -546,6 +544,8 @@ declare function jl(l: any, t: any, s?: boolean): {
|
|
|
546
544
|
editSlot: string;
|
|
547
545
|
multipleDisplay: string;
|
|
548
546
|
multipleDisplayEdition: string;
|
|
547
|
+
key: string | undefined;
|
|
548
|
+
label: string | undefined;
|
|
549
549
|
setIsSortable: (t?: boolean) => U;
|
|
550
550
|
setIsEditable: (t?: boolean) => U;
|
|
551
551
|
editable: boolean | undefined;
|
|
@@ -561,7 +561,7 @@ declare function jl(l: any, t: any, s?: boolean): {
|
|
|
561
561
|
getHref: (t: any) => any;
|
|
562
562
|
doAction: (t: any) => any;
|
|
563
563
|
defineAsLink: (t: any) => U;
|
|
564
|
-
type:
|
|
564
|
+
type: any;
|
|
565
565
|
link: any;
|
|
566
566
|
defineAsText: () => U;
|
|
567
567
|
defineAsEmail: () => U;
|
|
@@ -594,7 +594,7 @@ declare function jl(l: any, t: any, s?: boolean): {
|
|
|
594
594
|
setMultipleDisplayEditionToInline: () => U;
|
|
595
595
|
setSlotData: (t: any) => U;
|
|
596
596
|
slotData: any;
|
|
597
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
597
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
598
598
|
autoLoadSelectOptions: boolean | undefined;
|
|
599
599
|
autoLoadSelectOptionsKey: string | undefined;
|
|
600
600
|
setTagMode: (t?: boolean) => U;
|
|
@@ -607,12 +607,10 @@ declare function jl(l: any, t: any, s?: boolean): {
|
|
|
607
607
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
608
608
|
equivalentToSelectValue: boolean | undefined;
|
|
609
609
|
};
|
|
610
|
-
declare function
|
|
611
|
-
preferSlot: boolean;
|
|
612
|
-
key: string;
|
|
613
|
-
label: string;
|
|
610
|
+
declare function Nl(l: any, t: any, r?: boolean): {
|
|
614
611
|
sortable: boolean;
|
|
615
612
|
hidden: boolean;
|
|
613
|
+
preferSlot: boolean;
|
|
616
614
|
resource: string;
|
|
617
615
|
resourceData: {};
|
|
618
616
|
isMultiple: boolean;
|
|
@@ -622,6 +620,8 @@ declare function Ul(l: any, t: any, s?: boolean): {
|
|
|
622
620
|
editSlot: string;
|
|
623
621
|
multipleDisplay: string;
|
|
624
622
|
multipleDisplayEdition: string;
|
|
623
|
+
key: string | undefined;
|
|
624
|
+
label: string | undefined;
|
|
625
625
|
setIsSortable: (t?: boolean) => U;
|
|
626
626
|
setIsEditable: (t?: boolean) => U;
|
|
627
627
|
editable: boolean | undefined;
|
|
@@ -637,7 +637,7 @@ declare function Ul(l: any, t: any, s?: boolean): {
|
|
|
637
637
|
getHref: (t: any) => any;
|
|
638
638
|
doAction: (t: any) => any;
|
|
639
639
|
defineAsLink: (t: any) => U;
|
|
640
|
-
type:
|
|
640
|
+
type: any;
|
|
641
641
|
link: any;
|
|
642
642
|
defineAsText: () => U;
|
|
643
643
|
defineAsEmail: () => U;
|
|
@@ -670,7 +670,7 @@ declare function Ul(l: any, t: any, s?: boolean): {
|
|
|
670
670
|
setMultipleDisplayEditionToInline: () => U;
|
|
671
671
|
setSlotData: (t: any) => U;
|
|
672
672
|
slotData: any;
|
|
673
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
673
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
674
674
|
autoLoadSelectOptions: boolean | undefined;
|
|
675
675
|
autoLoadSelectOptionsKey: string | undefined;
|
|
676
676
|
setTagMode: (t?: boolean) => U;
|
|
@@ -683,12 +683,10 @@ declare function Ul(l: any, t: any, s?: boolean): {
|
|
|
683
683
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
684
684
|
equivalentToSelectValue: boolean | undefined;
|
|
685
685
|
};
|
|
686
|
-
declare function $l(l: any, t: any,
|
|
687
|
-
preferSlot: boolean;
|
|
688
|
-
key: string;
|
|
689
|
-
label: string;
|
|
686
|
+
declare function $l(l: any, t: any, r: any, a?: boolean): {
|
|
690
687
|
sortable: boolean;
|
|
691
688
|
hidden: boolean;
|
|
689
|
+
preferSlot: boolean;
|
|
692
690
|
resource: string;
|
|
693
691
|
resourceData: {};
|
|
694
692
|
isMultiple: boolean;
|
|
@@ -698,6 +696,8 @@ declare function $l(l: any, t: any, s: any, n?: boolean): {
|
|
|
698
696
|
editSlot: string;
|
|
699
697
|
multipleDisplay: string;
|
|
700
698
|
multipleDisplayEdition: string;
|
|
699
|
+
key: string | undefined;
|
|
700
|
+
label: string | undefined;
|
|
701
701
|
setIsSortable: (t?: boolean) => U;
|
|
702
702
|
setIsEditable: (t?: boolean) => U;
|
|
703
703
|
editable: boolean | undefined;
|
|
@@ -713,7 +713,7 @@ declare function $l(l: any, t: any, s: any, n?: boolean): {
|
|
|
713
713
|
getHref: (t: any) => any;
|
|
714
714
|
doAction: (t: any) => any;
|
|
715
715
|
defineAsLink: (t: any) => U;
|
|
716
|
-
type:
|
|
716
|
+
type: any;
|
|
717
717
|
link: any;
|
|
718
718
|
defineAsText: () => U;
|
|
719
719
|
defineAsEmail: () => U;
|
|
@@ -746,7 +746,7 @@ declare function $l(l: any, t: any, s: any, n?: boolean): {
|
|
|
746
746
|
setMultipleDisplayEditionToInline: () => U;
|
|
747
747
|
setSlotData: (t: any) => U;
|
|
748
748
|
slotData: any;
|
|
749
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
749
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
750
750
|
autoLoadSelectOptions: boolean | undefined;
|
|
751
751
|
autoLoadSelectOptionsKey: string | undefined;
|
|
752
752
|
setTagMode: (t?: boolean) => U;
|
|
@@ -759,12 +759,10 @@ declare function $l(l: any, t: any, s: any, n?: boolean): {
|
|
|
759
759
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
760
760
|
equivalentToSelectValue: boolean | undefined;
|
|
761
761
|
};
|
|
762
|
-
declare function
|
|
763
|
-
preferSlot: boolean;
|
|
764
|
-
key: string;
|
|
765
|
-
label: string;
|
|
762
|
+
declare function ql(l: any, t: any, r: any, a?: boolean): {
|
|
766
763
|
sortable: boolean;
|
|
767
764
|
hidden: boolean;
|
|
765
|
+
preferSlot: boolean;
|
|
768
766
|
resource: string;
|
|
769
767
|
resourceData: {};
|
|
770
768
|
isMultiple: boolean;
|
|
@@ -774,6 +772,8 @@ declare function Kl(l: any, t: any, s: any, n?: boolean): {
|
|
|
774
772
|
editSlot: string;
|
|
775
773
|
multipleDisplay: string;
|
|
776
774
|
multipleDisplayEdition: string;
|
|
775
|
+
key: string | undefined;
|
|
776
|
+
label: string | undefined;
|
|
777
777
|
setIsSortable: (t?: boolean) => U;
|
|
778
778
|
setIsEditable: (t?: boolean) => U;
|
|
779
779
|
editable: boolean | undefined;
|
|
@@ -789,7 +789,7 @@ declare function Kl(l: any, t: any, s: any, n?: boolean): {
|
|
|
789
789
|
getHref: (t: any) => any;
|
|
790
790
|
doAction: (t: any) => any;
|
|
791
791
|
defineAsLink: (t: any) => U;
|
|
792
|
-
type:
|
|
792
|
+
type: any;
|
|
793
793
|
link: any;
|
|
794
794
|
defineAsText: () => U;
|
|
795
795
|
defineAsEmail: () => U;
|
|
@@ -822,7 +822,7 @@ declare function Kl(l: any, t: any, s: any, n?: boolean): {
|
|
|
822
822
|
setMultipleDisplayEditionToInline: () => U;
|
|
823
823
|
setSlotData: (t: any) => U;
|
|
824
824
|
slotData: any;
|
|
825
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
825
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
826
826
|
autoLoadSelectOptions: boolean | undefined;
|
|
827
827
|
autoLoadSelectOptionsKey: string | undefined;
|
|
828
828
|
setTagMode: (t?: boolean) => U;
|
|
@@ -835,12 +835,10 @@ declare function Kl(l: any, t: any, s: any, n?: boolean): {
|
|
|
835
835
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
836
836
|
equivalentToSelectValue: boolean | undefined;
|
|
837
837
|
};
|
|
838
|
-
declare function
|
|
839
|
-
preferSlot: boolean;
|
|
840
|
-
key: string;
|
|
841
|
-
label: string;
|
|
838
|
+
declare function Wl(l: any, t: any, r?: boolean): {
|
|
842
839
|
sortable: boolean;
|
|
843
840
|
hidden: boolean;
|
|
841
|
+
preferSlot: boolean;
|
|
844
842
|
resource: string;
|
|
845
843
|
resourceData: {};
|
|
846
844
|
isMultiple: boolean;
|
|
@@ -850,6 +848,8 @@ declare function Pl(l: any, t: any, s?: boolean): {
|
|
|
850
848
|
editSlot: string;
|
|
851
849
|
multipleDisplay: string;
|
|
852
850
|
multipleDisplayEdition: string;
|
|
851
|
+
key: string | undefined;
|
|
852
|
+
label: string | undefined;
|
|
853
853
|
setIsSortable: (t?: boolean) => U;
|
|
854
854
|
setIsEditable: (t?: boolean) => U;
|
|
855
855
|
editable: boolean | undefined;
|
|
@@ -865,7 +865,7 @@ declare function Pl(l: any, t: any, s?: boolean): {
|
|
|
865
865
|
getHref: (t: any) => any;
|
|
866
866
|
doAction: (t: any) => any;
|
|
867
867
|
defineAsLink: (t: any) => U;
|
|
868
|
-
type:
|
|
868
|
+
type: any;
|
|
869
869
|
link: any;
|
|
870
870
|
defineAsText: () => U;
|
|
871
871
|
defineAsEmail: () => U;
|
|
@@ -898,7 +898,7 @@ declare function Pl(l: any, t: any, s?: boolean): {
|
|
|
898
898
|
setMultipleDisplayEditionToInline: () => U;
|
|
899
899
|
setSlotData: (t: any) => U;
|
|
900
900
|
slotData: any;
|
|
901
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
901
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
902
902
|
autoLoadSelectOptions: boolean | undefined;
|
|
903
903
|
autoLoadSelectOptionsKey: string | undefined;
|
|
904
904
|
setTagMode: (t?: boolean) => U;
|
|
@@ -911,12 +911,10 @@ declare function Pl(l: any, t: any, s?: boolean): {
|
|
|
911
911
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
912
912
|
equivalentToSelectValue: boolean | undefined;
|
|
913
913
|
};
|
|
914
|
-
declare function
|
|
915
|
-
preferSlot: boolean;
|
|
916
|
-
key: string;
|
|
917
|
-
label: string;
|
|
914
|
+
declare function Kl(l: any, t: any, r?: boolean): {
|
|
918
915
|
sortable: boolean;
|
|
919
916
|
hidden: boolean;
|
|
917
|
+
preferSlot: boolean;
|
|
920
918
|
resource: string;
|
|
921
919
|
resourceData: {};
|
|
922
920
|
isMultiple: boolean;
|
|
@@ -926,6 +924,8 @@ declare function Wl(l: any, t: any, s?: boolean): {
|
|
|
926
924
|
editSlot: string;
|
|
927
925
|
multipleDisplay: string;
|
|
928
926
|
multipleDisplayEdition: string;
|
|
927
|
+
key: string | undefined;
|
|
928
|
+
label: string | undefined;
|
|
929
929
|
setIsSortable: (t?: boolean) => U;
|
|
930
930
|
setIsEditable: (t?: boolean) => U;
|
|
931
931
|
editable: boolean | undefined;
|
|
@@ -941,7 +941,7 @@ declare function Wl(l: any, t: any, s?: boolean): {
|
|
|
941
941
|
getHref: (t: any) => any;
|
|
942
942
|
doAction: (t: any) => any;
|
|
943
943
|
defineAsLink: (t: any) => U;
|
|
944
|
-
type:
|
|
944
|
+
type: any;
|
|
945
945
|
link: any;
|
|
946
946
|
defineAsText: () => U;
|
|
947
947
|
defineAsEmail: () => U;
|
|
@@ -974,7 +974,7 @@ declare function Wl(l: any, t: any, s?: boolean): {
|
|
|
974
974
|
setMultipleDisplayEditionToInline: () => U;
|
|
975
975
|
setSlotData: (t: any) => U;
|
|
976
976
|
slotData: any;
|
|
977
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
977
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
978
978
|
autoLoadSelectOptions: boolean | undefined;
|
|
979
979
|
autoLoadSelectOptionsKey: string | undefined;
|
|
980
980
|
setTagMode: (t?: boolean) => U;
|
|
@@ -987,12 +987,10 @@ declare function Wl(l: any, t: any, s?: boolean): {
|
|
|
987
987
|
setIsEquivalentToSelectValue: (t?: boolean) => U;
|
|
988
988
|
equivalentToSelectValue: boolean | undefined;
|
|
989
989
|
};
|
|
990
|
-
declare function
|
|
991
|
-
preferSlot: boolean;
|
|
992
|
-
key: string;
|
|
993
|
-
label: string;
|
|
990
|
+
declare function Ul(l: any, t: any, r?: boolean): {
|
|
994
991
|
sortable: boolean;
|
|
995
992
|
hidden: boolean;
|
|
993
|
+
preferSlot: boolean;
|
|
996
994
|
resource: string;
|
|
997
995
|
resourceData: {};
|
|
998
996
|
isMultiple: boolean;
|
|
@@ -1002,6 +1000,8 @@ declare function Fl(l: any, t: any, s?: boolean): {
|
|
|
1002
1000
|
editSlot: string;
|
|
1003
1001
|
multipleDisplay: string;
|
|
1004
1002
|
multipleDisplayEdition: string;
|
|
1003
|
+
key: string | undefined;
|
|
1004
|
+
label: string | undefined;
|
|
1005
1005
|
setIsSortable: (t?: boolean) => U;
|
|
1006
1006
|
setIsEditable: (t?: boolean) => U;
|
|
1007
1007
|
editable: boolean | undefined;
|
|
@@ -1017,7 +1017,7 @@ declare function Fl(l: any, t: any, s?: boolean): {
|
|
|
1017
1017
|
getHref: (t: any) => any;
|
|
1018
1018
|
doAction: (t: any) => any;
|
|
1019
1019
|
defineAsLink: (t: any) => U;
|
|
1020
|
-
type:
|
|
1020
|
+
type: any;
|
|
1021
1021
|
link: any;
|
|
1022
1022
|
defineAsText: () => U;
|
|
1023
1023
|
defineAsEmail: () => U;
|
|
@@ -1050,7 +1050,7 @@ declare function Fl(l: any, t: any, s?: boolean): {
|
|
|
1050
1050
|
setMultipleDisplayEditionToInline: () => U;
|
|
1051
1051
|
setSlotData: (t: any) => U;
|
|
1052
1052
|
slotData: any;
|
|
1053
|
-
setAutoLoadSelectOptions: (t?: boolean,
|
|
1053
|
+
setAutoLoadSelectOptions: (t?: boolean, r?: string) => U;
|
|
1054
1054
|
autoLoadSelectOptions: boolean | undefined;
|
|
1055
1055
|
autoLoadSelectOptionsKey: string | undefined;
|
|
1056
1056
|
setTagMode: (t?: boolean) => U;
|
|
@@ -1066,8 +1066,8 @@ declare function Fl(l: any, t: any, s?: boolean): {
|
|
|
1066
1066
|
declare namespace Gl {
|
|
1067
1067
|
function install(l: any): void;
|
|
1068
1068
|
}
|
|
1069
|
+
declare function Xl(l: any): boolean;
|
|
1069
1070
|
declare function Ql(l: any): boolean;
|
|
1071
|
+
declare function Yl(l: any): void;
|
|
1070
1072
|
declare function Jl(l: any): boolean;
|
|
1071
|
-
|
|
1072
|
-
declare function zl(l: any): boolean;
|
|
1073
|
-
export { U as LktTableColumn, Al as createActionColumn, Hl as createCheckColumn, Rl as createColumn, Nl as createEmailColumn, ql as createFileColumn, Ol as createFloatColumn, jl as createHiddenColumn, Ul as createIntegerColumn, $l as createLinkColumn, Kl as createSelectColumn, Pl as createSwitchColumn, Wl as createTelColumn, Fl as createTextColumn, Gl as default, Ql as setTableCreateButtonSlot, Jl as setTableDropButtonSlot, Xl as setTableEmptySlot, zl as setTableNavButtonSlot };
|
|
1073
|
+
export { U as LktTableColumn, Fl as createActionColumn, Ol as createCheckColumn, Al as createColumn, Hl as createEmailColumn, jl as createFileColumn, Pl as createFloatColumn, zl as createHiddenColumn, Nl as createIntegerColumn, $l as createLinkColumn, ql as createSelectColumn, Wl as createSwitchColumn, Kl as createTelColumn, Ul as createTextColumn, Gl as default, Xl as setTableCreateButtonSlot, Ql as setTableDropButtonSlot, Yl as setTableEmptySlot, Jl as setTableNavButtonSlot };
|