@zeedhi/vuetify 1.132.0 → 1.133.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/zd-vuetify.esm.js
CHANGED
|
@@ -52342,7 +52342,7 @@ let ZdIterablePagination = class ZdIterablePagination extends ZdIterablePageComp
|
|
|
52342
52342
|
datasource.events.onChangePagination = ({ component }) => {
|
|
52343
52343
|
const paginationLength = this.instance.iterableComponent.datasource.getPaginationLength();
|
|
52344
52344
|
this.lengthChange(paginationLength);
|
|
52345
|
-
if (compEvent) {
|
|
52345
|
+
if (compEvent && typeof compEvent === 'function') {
|
|
52346
52346
|
compEvent({ component });
|
|
52347
52347
|
}
|
|
52348
52348
|
this.lastLength = paginationLength;
|
package/dist/zd-vuetify.umd.js
CHANGED
|
@@ -52341,7 +52341,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
|
52341
52341
|
datasource.events.onChangePagination = ({ component }) => {
|
|
52342
52342
|
const paginationLength = this.instance.iterableComponent.datasource.getPaginationLength();
|
|
52343
52343
|
this.lengthChange(paginationLength);
|
|
52344
|
-
if (compEvent) {
|
|
52344
|
+
if (compEvent && typeof compEvent === 'function') {
|
|
52345
52345
|
compEvent({ component });
|
|
52346
52346
|
}
|
|
52347
52347
|
this.lastLength = paginationLength;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.133.0",
|
|
4
4
|
"description": "Zeedhi Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"@types/prismjs": "1.26.*",
|
|
52
52
|
"@types/sortablejs": "1.15.*"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "5242cfba6da1d50e921400e93d0d2f60af44c4d4"
|
|
55
55
|
}
|
package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts
CHANGED
|
@@ -11,14 +11,14 @@ export default class ZdIterableColumnsButton extends ZdButton {
|
|
|
11
11
|
instance: IterableColumnsButton;
|
|
12
12
|
instanceType: typeof IterableColumnsButton;
|
|
13
13
|
getEvents(on: any): {
|
|
14
|
-
[x: string]:
|
|
15
|
-
blur?:
|
|
16
|
-
click?:
|
|
17
|
-
focus?:
|
|
18
|
-
onCreated?:
|
|
19
|
-
onBeforeMount?:
|
|
20
|
-
onMounted?:
|
|
21
|
-
onBeforeDestroy?:
|
|
22
|
-
onDestroyed?:
|
|
14
|
+
[x: string]: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
15
|
+
blur?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
16
|
+
click?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
17
|
+
focus?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
18
|
+
onCreated?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
19
|
+
onBeforeMount?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
20
|
+
onMounted?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
21
|
+
onBeforeDestroy?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
22
|
+
onDestroyed?: import("@zeedhi/core").EventHandlerDefinition<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>>;
|
|
23
23
|
};
|
|
24
24
|
}
|