@teselagen/ui 0.7.18 → 0.7.19

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.
@@ -1,4 +1,4 @@
1
- export function useColumns({ addFilters, cellRenderer, columns, currentParams, compact, editingCell, editingCellSelectAll, entities, expandedEntityIdMap, extraCompact, filters, formName, getCellHoverText, isCellEditable, isEntityDisabled, isLocalCall, isSimple, isSingleSelect, isSelectionARectangle, noDeselectAll, noSelect, noUserSelect, onDeselect, onMultiRowSelect, onRowClick, onRowSelect, onSingleRowSelect, order, primarySelectedCellId, reduxFormCellValidation, reduxFormSelectedEntityIdMap, refocusTable, removeSingleFilter, schema, selectedCells, setExpandedEntityIdMap, setNewParams, setOrder, setSelectedCells, shouldShowSubComponent, startCellEdit, SubComponent, tableRef, updateEntitiesHelper, updateValidation, withCheckboxes, withExpandAndCollapseAllButton, withFilter: _withFilter, withSort }: {
1
+ export function useColumns({ addFilters, cellRenderer, columns, currentParams, compact, editingCell, editingCellSelectAll, entities, expandedEntityIdMap, extraCompact, filters, formName, getCellHoverText, isCellEditable, isEntityDisabled, isLocalCall, isSimple, isSingleSelect, isSelectionARectangle, noDeselectAll, noSelect, noUserSelect, onDeselect, onMultiRowSelect, onRowClick, onRowSelect, onSingleRowSelect, order, primarySelectedCellId, reduxFormCellValidation, reduxFormSelectedEntityIdMap, refocusTable, removeSingleFilter, schema, selectedCells, setExpandedEntityIdMap, setNewParams, setOrder, setSelectedCells, shouldShowSubComponent, startCellEdit, SubComponent, tableRef, updateEntitiesHelper, updateValidation, withCheckboxes, withExpandAndCollapseAllButton, withFilter: _withFilter, withSort, recordIdToIsVisibleMap, setRecordIdToIsVisibleMap }: {
2
2
  addFilters: any;
3
3
  cellRenderer: any;
4
4
  columns: any;
@@ -48,4 +48,6 @@ export function useColumns({ addFilters, cellRenderer, columns, currentParams, c
48
48
  withExpandAndCollapseAllButton: any;
49
49
  withFilter: any;
50
50
  withSort?: boolean | undefined;
51
+ recordIdToIsVisibleMap: any;
52
+ setRecordIdToIsVisibleMap: any;
51
53
  }): any;
@@ -17,3 +17,14 @@ export function openColumn({ onDoubleClick, history }: {
17
17
  immovable: boolean;
18
18
  type: string;
19
19
  };
20
+ export namespace multiViewColumn {
21
+ export function columnHeader({ recordIdToIsVisibleMap, setRecordIdToIsVisibleMap }: {
22
+ recordIdToIsVisibleMap: any;
23
+ setRecordIdToIsVisibleMap: any;
24
+ }): import("react/jsx-runtime").JSX.Element;
25
+ export function render_1(val: any, record: any, row: any, { recordIdToIsVisibleMap, setRecordIdToIsVisibleMap }: {
26
+ recordIdToIsVisibleMap: any;
27
+ setRecordIdToIsVisibleMap: any;
28
+ }): import("react/jsx-runtime").JSX.Element | null;
29
+ export { render_1 as render };
30
+ }
@@ -7,7 +7,7 @@ export default function tryToMatchSchemas({ incomingData, validateAgainstSchema
7
7
  matchedHeaders: {};
8
8
  userSchema: {
9
9
  fields: {
10
- path: string;
10
+ path: never;
11
11
  type: string;
12
12
  }[];
13
13
  userData: any;