g-ui-web 1.3.12 → 1.3.13

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.
@@ -7,6 +7,7 @@ declare function __VLS_template(): {
7
7
  }) => any>>;
8
8
  refs: {
9
9
  multipletable: HTMLDivElement;
10
+ tableContainer: HTMLDivElement;
10
11
  tableHeaderWrapper: HTMLDivElement;
11
12
  tableBodyWrapper: HTMLDivElement;
12
13
  };
@@ -62,11 +63,16 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
62
63
  type: NumberConstructor;
63
64
  default: number;
64
65
  };
66
+ actionBtns: {
67
+ type: ArrayConstructor;
68
+ default: never[];
69
+ };
65
70
  }>, {
66
71
  multipletable: globalThis.Ref<any, any>;
67
72
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
68
73
  cellClick: (...args: any[]) => void;
69
74
  sortChange: (...args: any[]) => void;
75
+ editRow: (...args: any[]) => void;
70
76
  }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
71
77
  description: {
72
78
  type: StringConstructor;
@@ -116,9 +122,14 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
116
122
  type: NumberConstructor;
117
123
  default: number;
118
124
  };
125
+ actionBtns: {
126
+ type: ArrayConstructor;
127
+ default: never[];
128
+ };
119
129
  }>> & Readonly<{
120
130
  onCellClick?: ((...args: any[]) => any) | undefined;
121
131
  onSortChange?: ((...args: any[]) => any) | undefined;
132
+ onEditRow?: ((...args: any[]) => any) | undefined;
122
133
  }>, {
123
134
  description: string;
124
135
  dbOptions: Record<string, any>;
@@ -132,6 +143,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
132
143
  tableColumns: unknown[];
133
144
  showDraggable: boolean;
134
145
  minColumnWidth: number;
146
+ actionBtns: unknown[];
135
147
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
136
148
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
137
149
  export default _default;