init component
This commit is contained in:
7
node_modules/buetify/lib/components/table/shared.js
generated
vendored
Executable file
7
node_modules/buetify/lib/components/table/shared.js
generated
vendored
Executable file
@@ -0,0 +1,7 @@
|
||||
import { contramap, eqStrict, eqString } from 'fp-ts/lib/Eq';
|
||||
import { toggleListItem } from '../../utils/helpers';
|
||||
export const eqBTableRowData = contramap(row => row.id)(eqStrict);
|
||||
export const eqBTableColumn = contramap(column => column.label)(eqString);
|
||||
export const toggleBTableRow = toggleListItem(eqBTableRowData);
|
||||
export const toggleBTableColumn = toggleListItem(eqBTableColumn);
|
||||
//# sourceMappingURL=shared.js.map
|
||||
Reference in New Issue
Block a user