overgrid-vue 1.10.1 → 1.10.2
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/dist/index.d.ts +15 -0
- package/dist/overgrid.es.js +1850 -1832
- package/dist/overgrid.umd.js +23 -23
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -195,11 +195,26 @@ search: OverGridUseSearchInterface;
|
|
|
195
195
|
refresh: () => Promise<void>;
|
|
196
196
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
197
197
|
$slots: {
|
|
198
|
+
search?(_: {
|
|
199
|
+
config: OverGridSearchConfig | undefined;
|
|
200
|
+
searchApi: OverGridUseSearchInterface;
|
|
201
|
+
}): any;
|
|
202
|
+
cellHeader?(_: {
|
|
203
|
+
titleField: OverGridField;
|
|
204
|
+
orderActive: boolean | undefined;
|
|
205
|
+
orderable: boolean | undefined;
|
|
206
|
+
orderApi: OverGridUseOrderingInterface;
|
|
207
|
+
orderConfig: OverGridOrderConfig | undefined;
|
|
208
|
+
columnFiltersApi: OverGridUseColumnFiltersInterface;
|
|
209
|
+
}): any;
|
|
198
210
|
extraRow?(_: {
|
|
199
211
|
record: any;
|
|
200
212
|
extraSlotParams: object;
|
|
201
213
|
}): any;
|
|
202
214
|
emptyResult?(_: {}): any;
|
|
215
|
+
pagination?(_: {
|
|
216
|
+
paginationApi: OverGridUsePaginationInterface;
|
|
217
|
+
}): any;
|
|
203
218
|
};
|
|
204
219
|
});
|
|
205
220
|
|