ResponsivePluginConfig
Since v1.9.1
Responsive config widened to accept a Vue render function as cardRenderer
(row, rowIndex, column?) => VNode in addition to the vanilla
(row, rowIndex, column?) => HTMLElement signature.
Re-exported under the same name as the core type so Vue users see a single
canonical ResponsivePluginConfig from @toolbox-web/grid-vue.
type ResponsivePluginConfig = Omit<CoreResponsivePluginConfig<TRow>, "cardRenderer"> & { cardRenderer?: CoreResponsivePluginConfig<TRow>["cardRenderer"] | (row: TRow, rowIndex: number, column: Parameters<NonNullable<CoreResponsivePluginConfig<TRow>["cardRenderer"]>>[2]) => VNode | null | undefined }