lkt-vue-kernel 1.2.28 → 1.2.29
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/index.d.ts +10 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -175,7 +175,7 @@ interface ModalConfig extends LktObject {
|
|
|
175
175
|
type ValidAnchorTo = RouteConfig | string | ((data: LktObject) => RouteConfig | string);
|
|
176
176
|
|
|
177
177
|
interface AnchorEvents {
|
|
178
|
-
click?: (data: ClickEventArgs) => void | undefined;
|
|
178
|
+
click?: (data: ClickEventArgs) => void | undefined | any;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
interface AnchorConfig {
|
|
@@ -279,9 +279,9 @@ interface AriaConfig {
|
|
|
279
279
|
}
|
|
280
280
|
|
|
281
281
|
interface ButtonEvents {
|
|
282
|
-
click?: (data: ClickEventArgs) => void | undefined;
|
|
282
|
+
click?: (data: ClickEventArgs) => void | undefined | any;
|
|
283
283
|
httpStart?: undefined | Function;
|
|
284
|
-
httpEnd?: (data: ClickEventArgs) => void | undefined;
|
|
284
|
+
httpEnd?: (data: ClickEventArgs) => void | undefined | any;
|
|
285
285
|
}
|
|
286
286
|
|
|
287
287
|
interface ButtonConfig {
|
|
@@ -605,8 +605,8 @@ declare enum PaginatorType {
|
|
|
605
605
|
|
|
606
606
|
interface PaginatorEvents {
|
|
607
607
|
httpStart?: undefined | Function;
|
|
608
|
-
httpEnd?: (data: ClickEventArgs) => void | undefined;
|
|
609
|
-
parseResults?: (data: LktObject[]) => void | undefined;
|
|
608
|
+
httpEnd?: (data: ClickEventArgs) => void | undefined | any;
|
|
609
|
+
parseResults?: (data: LktObject[]) => void | undefined | any;
|
|
610
610
|
}
|
|
611
611
|
|
|
612
612
|
interface PaginatorConfig {
|
|
@@ -839,8 +839,8 @@ interface FormConfig {
|
|
|
839
839
|
}
|
|
840
840
|
|
|
841
841
|
interface TableEvents {
|
|
842
|
-
parseResults?: (data: LktObject[]) => void | undefined | LktObject[];
|
|
843
|
-
viewChanged?: (view: TableType) => void;
|
|
842
|
+
parseResults?: (data: LktObject[]) => void | undefined | LktObject[] | any;
|
|
843
|
+
viewChanged?: (view: TableType) => void | any;
|
|
844
844
|
}
|
|
845
845
|
|
|
846
846
|
interface TableConfig {
|
|
@@ -1271,8 +1271,8 @@ declare enum CounterView {
|
|
|
1271
1271
|
}
|
|
1272
1272
|
|
|
1273
1273
|
interface CounterEvents {
|
|
1274
|
-
onChange?: (value: number | string) => void;
|
|
1275
|
-
onEnd?: () => void;
|
|
1274
|
+
onChange?: (value: number | string) => void | any;
|
|
1275
|
+
onEnd?: () => void | any;
|
|
1276
1276
|
}
|
|
1277
1277
|
|
|
1278
1278
|
interface CounterConfig {
|
|
@@ -1390,7 +1390,7 @@ declare enum NotificationType {
|
|
|
1390
1390
|
|
|
1391
1391
|
interface ItemCrudEvents {
|
|
1392
1392
|
httpStart?: undefined | Function;
|
|
1393
|
-
httpEnd?: (data: ClickEventArgs) => void | undefined;
|
|
1393
|
+
httpEnd?: (data: ClickEventArgs) => void | undefined | any;
|
|
1394
1394
|
}
|
|
1395
1395
|
|
|
1396
1396
|
interface ItemCrudSaveConfig {
|