@zeedhi/teknisa-components-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/teknisa-components-vuetify",
3
- "version": "1.71.0",
3
+ "version": "1.73.0",
4
4
  "description": "Teknisa Components based on Vuetify",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -41,5 +41,5 @@
41
41
  "vue": "^2.6.12",
42
42
  "vuetify": "^2.4.0"
43
43
  },
44
- "gitHead": "5d07dd32186fce8f874881da6b7fb8327c7b462e"
44
+ "gitHead": "dabb19274544671327703e79b2bc3cacb61dd5b6"
45
45
  }
@@ -2,7 +2,6 @@
2
2
  import { TekTreeGrid as TekTreeGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, IModalFilterProps } from '@zeedhi/teknisa-components-common';
3
3
  import { Column, IComponentRender, Select } from '@zeedhi/common';
4
4
  import { IDictionary, IEventParam } from '@zeedhi/core';
5
- import { IColumnWidths } from '@zeedhi/vuetify/types/components/zd-grid/ZdGridEditable';
6
5
  declare const ZdTreeGridEditable: import("vue").VueConstructor<import("vue-property-decorator").Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue-property-decorator").Vue<Record<string, any>, Record<string, any>, never, never, any>>>;
7
6
  /**
8
7
  * TekGrid component
@@ -28,13 +27,13 @@ export default class TekGrid extends ZdTreeGridEditable {
28
27
  toolbarSlot: IComponentRender[];
29
28
  instance: TekTreeGridClass;
30
29
  instanceType: typeof TekTreeGridClass;
31
- private originalChangeLayout?;
30
+ private originalChangeTekGridLayout?;
32
31
  calcScrollData: (() => void) | undefined;
33
32
  scrollData: any;
34
33
  renderedData: any;
35
34
  mounted(): void;
36
35
  minimumColumnWidth(column?: TekGridColumn): number;
37
- private onChangeLayout;
36
+ private onChangeTekGridLayout;
38
37
  getFilterActivatorEvents(on: any, column: TekGridColumn): any;
39
38
  private debouncedDatasourceGet;
40
39
  getFilterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number): (__3: IEventParam<Select>) => void;
@@ -44,6 +43,7 @@ export default class TekGrid extends ZdTreeGridEditable {
44
43
  getComponentType(index: number): "" | "ZdTextInput";
45
44
  getComponentHint(index: number): "" | "TEKGRID_MULTIPLE_VALUE_HINT";
46
45
  filterItemChange(prop: keyof IDynamicFilterItem, column: TekGridColumn, index: number, { component, event, element }: IEventParam<Select>): void;
46
+ orderColumnVisibility(): void;
47
47
  private defaultOperation;
48
48
  private defaultRelation;
49
49
  private lastFilter;
@@ -61,7 +61,11 @@ export default class TekGrid extends ZdTreeGridEditable {
61
61
  private tableBody;
62
62
  private updateFixedColumns;
63
63
  getFixedLeft(column: TekGridColumn): string;
64
- setSpanWidth(column: Column): any;
65
- getWidthStyle(column: Column): IColumnWidths;
64
+ setSpanWidth(column: Column): string | undefined;
65
+ getWidthStyle(column: Column): {
66
+ width: any;
67
+ 'min-width': any;
68
+ 'max-width': any;
69
+ };
66
70
  }
67
71
  export {};