@zeedhi/vuetify 1.71.0 → 1.73.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/vuetify",
3
- "version": "1.71.0",
3
+ "version": "1.73.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.16.2",
52
52
  "@types/sortablejs": "^1.10.6"
53
53
  },
54
- "gitHead": "3c7f0ee1f8ad2063d7411ecb6af636a6af04d468"
54
+ "gitHead": "8a71366a2552c49660df52b1f2a4bef7f08d6c70"
55
55
  }
@@ -35,6 +35,10 @@ export default class ZdGrid extends ZdIterable {
35
35
  changeLoading(value: boolean): void;
36
36
  updateStates(): void;
37
37
  protected allselectedState: boolean;
38
+ /**
39
+ * Left distance for each column
40
+ */
41
+ fixedRight: IDictionary<string>;
38
42
  mounted(): void;
39
43
  private setHeight;
40
44
  private setViewGetWidth;
@@ -68,11 +72,10 @@ export default class ZdGrid extends ZdIterable {
68
72
  changeData(): void;
69
73
  protected calcScrollData(): void;
70
74
  updateScrollPerPage(): void;
71
- getVisibleData(): IDictionary<any>[];
72
75
  getData(): IDictionary<any>[];
73
76
  get renderedData(): IDictionary<any>[];
74
77
  private updateScrollData;
75
- private debounceScroll;
78
+ private lastStart;
76
79
  onScroll(event: Event): void;
77
80
  get cssColorVars(): {
78
81
  '--current-row-color': string;
@@ -81,4 +84,7 @@ export default class ZdGrid extends ZdIterable {
81
84
  checkOverflow(event: MouseEvent, columnOverflow: number | string): void;
82
85
  removeTooltip(): void;
83
86
  getWidthStyle(column: Column): {};
87
+ private tableHeader;
88
+ private tableBody;
89
+ private updateFixedColumnsAction;
84
90
  }
@@ -11,6 +11,7 @@ export default class ZdGridCellContent extends Vue {
11
11
  cssClass: (IDictionary<boolean> | string)[];
12
12
  row: IDictionary<any>;
13
13
  getWidthStyle: Function;
14
+ hasUsingCellText: boolean;
14
15
  mouseenter(event: Event): void;
15
16
  mouseleave(event: Event): void;
16
17
  get cellProps(): {
@@ -20,6 +20,7 @@ export default class ZdIterable extends ZdComponentRender {
20
20
  datasource: IDatasource;
21
21
  pageSizes: string[];
22
22
  virtualScroll: string | boolean;
23
+ virtualScrollCache: string | number;
23
24
  searchVisibleOnly: string | boolean;
24
25
  instance: Iterable;
25
26
  instanceType: typeof Iterable;
@@ -14,11 +14,14 @@ export default class ZdTreeGrid extends ZdGrid {
14
14
  footerSlot: IComponentRender[];
15
15
  instance: TreeGrid;
16
16
  instanceType: typeof TreeGrid;
17
+ private originalChangeLayout?;
17
18
  mounted(): void;
18
- toggleExpand(row: IDictionary, rowIndex: number): Promise<void>;
19
+ toggleExpand(row: IDictionary, rowIndex: number, event?: PointerEvent): Promise<void>;
20
+ orderColumnVisibility(): void;
19
21
  checkSome(row: IDictionary<any>): boolean;
20
22
  checkEvery(row: IDictionary<any>): any;
21
23
  selectClick(index: number, isSelected: boolean, event: Event): void;
22
24
  getVisibleData(): IDictionary<any>[];
23
25
  getData(): IDictionary<any>[];
26
+ private onChangeLayout;
24
27
  }
@@ -8,6 +8,7 @@ import { IColumnWidths } from '../zd-grid/ZdGridEditable';
8
8
  export default class ZdTreeGridEditable extends ZdTreeGrid {
9
9
  doubleClickEdit: boolean | string;
10
10
  canEditRow: Function | string;
11
+ hasUsingCellText: boolean;
11
12
  instance: TreeGridEditable;
12
13
  instanceType: typeof TreeGridEditable;
13
14
  inputToFocus: string;
@@ -7,6 +7,8 @@ export default class ZdTreeGridCellContent extends ZdGridCellContent {
7
7
  search?: string;
8
8
  expandClass?: string;
9
9
  fieldHasChild?: string;
10
+ hasUsingCellText: boolean;
10
11
  formatSearchResult(text: string): string;
11
12
  hasShowChevron(row?: any): boolean;
13
+ hasShowChevronInTreeGrid(headerIndex?: number, selectable?: boolean): boolean | undefined;
12
14
  }
@@ -0,0 +1 @@
1
+ export declare function setFillHeight(element: HTMLElement): void;