@teselagen/ui 0.5.23-beta.1 → 0.5.23-beta.10

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 +1,54 @@
1
- export function RenderColumns(props: any): any;
1
+ export function RenderColumns({ addFilters, cellRenderer, change, columns, currentParams, compact, editableCellValue, editingCell, editingCellSelectAll, entities, expandedEntityIdMap, extraCompact, filters, getCellHoverText, isCellEditable, isEntityDisabled, isLocalCall, isSimple, isSingleSelect, isSelectionARectangle, noDeselectAll, noSelect, noUserSelect, onDeselect, onMultiRowSelect, onRowClick, onRowSelect, onSingleRowSelect, order, primarySelectedCellId, reduxFormCellValidation, reduxFormSelectedEntityIdMap, refocusTable, removeSingleFilter, schema, selectedCells, setEditableCellValue, setEditingCell, setExpandedEntityIdMap, setNewParams, setOrder, setSelectedCells, shouldShowSubComponent, startCellEdit, SubComponent, tableRef, updateEntitiesHelper, updateValidation, withCheckboxes, withExpandAndCollapseAllButton, withFilter: _withFilter, withSort }: {
2
+ addFilters: any;
3
+ cellRenderer: any;
4
+ change: any;
5
+ columns: any;
6
+ currentParams: any;
7
+ compact: any;
8
+ editableCellValue: any;
9
+ editingCell: any;
10
+ editingCellSelectAll: any;
11
+ entities: any;
12
+ expandedEntityIdMap: any;
13
+ extraCompact: any;
14
+ filters: any;
15
+ getCellHoverText: any;
16
+ isCellEditable: any;
17
+ isEntityDisabled: any;
18
+ isLocalCall: any;
19
+ isSimple: any;
20
+ isSingleSelect: any;
21
+ isSelectionARectangle: any;
22
+ noDeselectAll: any;
23
+ noSelect: any;
24
+ noUserSelect: any;
25
+ onDeselect: any;
26
+ onMultiRowSelect: any;
27
+ onRowClick: any;
28
+ onRowSelect: any;
29
+ onSingleRowSelect: any;
30
+ order: any;
31
+ primarySelectedCellId: any;
32
+ reduxFormCellValidation: any;
33
+ reduxFormSelectedEntityIdMap: any;
34
+ refocusTable: any;
35
+ removeSingleFilter?: ((...args: any[]) => void) | undefined;
36
+ schema: any;
37
+ selectedCells: any;
38
+ setEditableCellValue: any;
39
+ setEditingCell: any;
40
+ setExpandedEntityIdMap: any;
41
+ setNewParams: any;
42
+ setOrder?: ((...args: any[]) => void) | undefined;
43
+ setSelectedCells: any;
44
+ shouldShowSubComponent: any;
45
+ startCellEdit: any;
46
+ SubComponent: any;
47
+ tableRef: any;
48
+ updateEntitiesHelper: any;
49
+ updateValidation: any;
50
+ withCheckboxes: any;
51
+ withExpandAndCollapseAllButton: any;
52
+ withFilter: any;
53
+ withSort?: boolean | undefined;
54
+ }): any;
@@ -19,5 +19,6 @@ import { isEntityClean } from './isEntityClean';
19
19
  import { PRIMARY_SELECTED_VAL } from './primarySelectedValue';
20
20
  import { removeCleanRows } from './removeCleanRows';
21
21
  import { useDeepEqualMemo } from './useDeepEqualMemo';
22
+ import { useTableEntities } from './useTableEntities';
22
23
 
23
- export { defaultParsePaste, formatPasteData, getAllRows, getCellCopyText, getCellInfo, getEntityIdToEntity, getFieldPathToIndex, getFieldPathToField, getIdOrCodeOrIndex, getLastSelectedEntity, getNewEntToSelect, getNumberStrAtEnd, getRecordsFromIdMap, getRowCopyText, getSelectedRowsFromEntities, handleCopyColumn, handleCopyHelper, handleCopyRows, handleCopyTable, isBottomRightCornerOfRectangle, isEntityClean, PRIMARY_SELECTED_VAL, removeCleanRows, stripNumberAtEnd, useDeepEqualMemo };
24
+ export { defaultParsePaste, formatPasteData, getAllRows, getCellCopyText, getCellInfo, getEntityIdToEntity, getFieldPathToIndex, getFieldPathToField, getIdOrCodeOrIndex, getLastSelectedEntity, getNewEntToSelect, getNumberStrAtEnd, getRecordsFromIdMap, getRowCopyText, getSelectedRowsFromEntities, handleCopyColumn, handleCopyHelper, handleCopyRows, handleCopyTable, isBottomRightCornerOfRectangle, isEntityClean, PRIMARY_SELECTED_VAL, removeCleanRows, stripNumberAtEnd, useDeepEqualMemo, useTableEntities };
@@ -0,0 +1,5 @@
1
+ export function useTableEntities(tableFormName: any): {
2
+ selectTableEntities: (entities?: any[]) => void;
3
+ allOrderedEntities: any;
4
+ selectedEntities: any;
5
+ };
@@ -6,7 +6,14 @@ export namespace viewColumn {
6
6
  let type: string;
7
7
  function render(): import("react/jsx-runtime").JSX.Element;
8
8
  }
9
- export namespace openColumn {
10
- export function render_1(val: any, record: any, rowInfo: any, props: any): import("react/jsx-runtime").JSX.Element;
11
- export { render_1 as render };
12
- }
9
+ export function openColumn({ onDoubleClick, history }: {
10
+ onDoubleClick: any;
11
+ history: any;
12
+ }): {
13
+ render: (val: any, record: any, rowInfo: any) => import("react/jsx-runtime").JSX.Element;
14
+ width: number;
15
+ noEllipsis: boolean;
16
+ hideInMenu: boolean;
17
+ immovable: boolean;
18
+ type: string;
19
+ };