@zeedhi/vuetify 1.81.0 → 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.81.0",
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": "a897368c946460ef5e7fc716e6da5cbb9fcde053"
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
- private updateFixedColumnsAction;
102
+ protected updateFixedColumns(): void;
99
103
  }
@@ -12,4 +12,5 @@ export default class ZdSelectTreeMultiple extends ZdSelectTree {
12
12
  onDeselect(node: ISelectTreeMultipleNode<IDictionary>): void;
13
13
  get allSelected(): boolean;
14
14
  selectAllClick(): void;
15
+ getMoreChipText(count: number): string;
15
16
  }