g-ui-web 1.2.39 → 1.2.41

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.
@@ -35,11 +35,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
35
35
  default: never[];
36
36
  };
37
37
  height: {
38
- type: StringConstructor;
38
+ type: (NumberConstructor | StringConstructor)[];
39
39
  default: string;
40
40
  };
41
41
  maxHeight: {
42
- type: StringConstructor;
42
+ type: (NumberConstructor | StringConstructor)[];
43
43
  default: string;
44
44
  };
45
45
  showOverflowTooltip: {
@@ -81,11 +81,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
81
81
  default: never[];
82
82
  };
83
83
  height: {
84
- type: StringConstructor;
84
+ type: (NumberConstructor | StringConstructor)[];
85
85
  default: string;
86
86
  };
87
87
  maxHeight: {
88
- type: StringConstructor;
88
+ type: (NumberConstructor | StringConstructor)[];
89
89
  default: string;
90
90
  };
91
91
  showOverflowTooltip: {
@@ -106,8 +106,8 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
106
106
  }>, {
107
107
  description: string;
108
108
  dbOptions: Record<string, any>;
109
- height: string;
110
- maxHeight: string;
109
+ height: string | number;
110
+ maxHeight: string | number;
111
111
  fit: boolean;
112
112
  showSummary: boolean;
113
113
  rowClassName: unknown[];