@zeedhi/vuetify 1.80.1 → 1.81.1
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zeedhi/vuetify",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.81.1",
|
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": "e8374ab5b0dd0f75c0d10ee672bc7a63ba3f609c"
|
55
55
|
}
|
@@ -31,6 +31,10 @@ export default class ZdGrid extends ZdIterable {
|
|
31
31
|
toolbarSlot: IComponentRender[];
|
32
32
|
instance: Grid;
|
33
33
|
instanceType: typeof Grid;
|
34
|
+
/**
|
35
|
+
* Left distance for each column
|
36
|
+
*/
|
37
|
+
fixedLeft: IDictionary<string>;
|
34
38
|
update(value: boolean): void;
|
35
39
|
private updateColspan;
|
36
40
|
change(value: any): void;
|
@@ -95,5 +99,5 @@ export default class ZdGrid extends ZdIterable {
|
|
95
99
|
getWidthStyle(column: Column): {};
|
96
100
|
private tableHeader;
|
97
101
|
private tableBody;
|
98
|
-
|
102
|
+
protected updateFixedColumns(): void;
|
99
103
|
}
|