@teselagen/ui 0.4.19-beta.5 → 0.4.19-beta.8

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.
@@ -0,0 +1 @@
1
+ export function renderColumns(props: any): any;
@@ -1,9 +1,8 @@
1
- export function EditableCell({ cancelEdit, dataTest, finishEdit, initialValue, isNumeric, shouldSelectAll, stopSelectAll }: {
1
+ export function EditableCell({ value, setValue, cancelEdit, dataTest, finishEdit, isNumeric }: {
2
+ value: any;
3
+ setValue: any;
2
4
  cancelEdit: any;
3
5
  dataTest: any;
4
6
  finishEdit: any;
5
- initialValue: any;
6
7
  isNumeric: any;
7
- shouldSelectAll: any;
8
- stopSelectAll: any;
9
8
  }): import("react/jsx-runtime").JSX.Element;
@@ -16,6 +16,7 @@ import { handleCopyRows } from './handleCopyRows';
16
16
  import { handleCopyTable } from './handleCopyTable';
17
17
  import { isBottomRightCornerOfRectangle } from './isBottomRightCornerOfRectangle';
18
18
  import { isEntityClean } from './isEntityClean';
19
+ import { PRIMARY_SELECTED_VAL } from './primarySelectedValue';
19
20
  import { removeCleanRows } from './removeCleanRows';
20
21
 
21
- export { defaultParsePaste, formatPasteData, getAllRows, getCellCopyText, getCellInfo, getEntityIdToEntity, getFieldPathToIndex, getFieldPathToField, getIdOrCodeOrIndex, getLastSelectedEntity, getNewEntToSelect, getNumberStrAtEnd, getRecordsFromIdMap, getRowCopyText, getSelectedRowsFromEntities, handleCopyColumn, handleCopyHelper, handleCopyRows, handleCopyTable, isBottomRightCornerOfRectangle, isEntityClean, removeCleanRows, stripNumberAtEnd };
22
+ 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 };
@@ -0,0 +1 @@
1
+ export const PRIMARY_SELECTED_VAL: "main_cell";
@@ -0,0 +1 @@
1
+ export function withAbstractWrapper(ComponentToWrap: any, opts?: {}): (props: any) => import("react/jsx-runtime").JSX.Element;
@@ -11,9 +11,20 @@ export { fieldRequired };
11
11
  export function renderBlueprintDateInput(props: any): import("react/jsx-runtime").JSX.Element;
12
12
  export function renderBlueprintDateRangeInput(props: any): import("react/jsx-runtime").JSX.Element;
13
13
  export function RenderBlueprintInput(props: any): import("react/jsx-runtime").JSX.Element;
14
- export function renderBlueprintCheckbox(props: any): import("react/jsx-runtime").JSX.Element;
14
+ export function renderBlueprintCheckbox({ input, label, tooltipInfo, beforeOnChange, onFieldSubmit, ...rest }: {
15
+ [x: string]: any;
16
+ input: any;
17
+ label: any;
18
+ tooltipInfo: any;
19
+ beforeOnChange: any;
20
+ onFieldSubmit: any;
21
+ }): import("react/jsx-runtime").JSX.Element;
15
22
  export function renderBlueprintSwitch(props: any): import("react/jsx-runtime").JSX.Element;
16
- export function renderFileUpload(props: any): import("react/jsx-runtime").JSX.Element;
23
+ export function renderFileUpload({ input, onFieldSubmit, ...rest }: {
24
+ [x: string]: any;
25
+ input: any;
26
+ onFieldSubmit: any;
27
+ }): import("react/jsx-runtime").JSX.Element;
17
28
  export class renderBlueprintTextarea extends React.Component<any, any, any> {
18
29
  constructor(props: any);
19
30
  constructor(props: any, context: any);