ValuesInHtmlTableProps
ValuesInHtmlTableProps
props are used for components that will render Values
in an HTML table, such as the ValuesInHtmlTable
component.
{
store?: StoreOrStoreId;
editable?: boolean;
valueComponent?: ComponentType<ValueProps>;
getValueComponentProps?: (valueId: Id) => ExtraProps;
}
Type | Description | |
---|---|---|
store? | StoreOrStoreId | The |
editable? | boolean | Whether the |
valueComponent? | ComponentType<ValueProps> | A custom component for rendering each |
getValueComponentProps? | (valueId: Id) => ExtraProps | A function for generating extra props for each custom |
Since
v4.1.0