@teselagen/ui 0.7.27 → 0.7.32
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.
- package/DataTable/utils/getRowCopyText.d.ts +1 -3
- package/DataTable/utils/handleCopyRows.d.ts +1 -5
- package/DataTable/utils/index.d.ts +0 -1
- package/DataTable/utils/rowClick.d.ts +1 -1
- package/FormComponents/Uploader.d.ts +1 -3
- package/MenuBar/index.d.ts +1 -3
- package/ResizableDraggableDialog/index.d.ts +1 -3
- package/TagSelect/index.d.ts +1 -1
- package/index.cjs.js +25628 -24898
- package/index.es.js +24577 -23847
- package/package.json +8 -12
- package/src/DataTable/index.js +7 -5
- package/src/index.js +0 -1
- package/src/utils/isBeingCalledExcessively.js +1 -0
- package/utils/hotkeyUtils.d.ts +1 -3
- package/DataTable/EditabelCell.d.ts +0 -10
- package/DataTable/defaultProps.d.ts +0 -43
- package/DataTable/utils/computePresets.d.ts +0 -1
- package/src/DataTable/EditabelCell.js +0 -55
- package/src/DataTable/defaultProps.js +0 -45
- package/src/DataTable/utils/computePresets.js +0 -42
- /package/{style.css → ui.css} +0 -0
|
@@ -1,5 +1 @@
|
|
|
1
|
-
export function handleCopyRows(rowElsToCopy: any, { specificColumn, onFinishMsg, isDownload }?: {
|
|
2
|
-
specificColumn: any;
|
|
3
|
-
onFinishMsg: any;
|
|
4
|
-
isDownload: any;
|
|
5
|
-
}): any;
|
|
1
|
+
export function handleCopyRows(rowElsToCopy: any, { specificColumn, onFinishMsg, isDownload }?: {}): any;
|
|
@@ -19,5 +19,4 @@ import { isEntityClean } from './isEntityClean';
|
|
|
19
19
|
import { PRIMARY_SELECTED_VAL } from './primarySelectedValue';
|
|
20
20
|
import { removeCleanRows } from './removeCleanRows';
|
|
21
21
|
import { useTableEntities } from './useTableEntities';
|
|
22
|
-
|
|
23
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, useTableEntities };
|
|
@@ -14,7 +14,7 @@ export default function rowClick(e: any, rowInfo: any, entities: any, { reduxFor
|
|
|
14
14
|
}): void;
|
|
15
15
|
export function changeSelectedEntities({ idMap, entities, change }: {
|
|
16
16
|
idMap: any;
|
|
17
|
-
entities?:
|
|
17
|
+
entities?: never[] | undefined;
|
|
18
18
|
change: any;
|
|
19
19
|
}): void;
|
|
20
20
|
export function finalizeSelection({ idMap, entities, props: { onDeselect, onSingleRowSelect, onMultiRowSelect, noDeselectAll, onRowSelect, noSelect, change } }: {
|
|
@@ -13,9 +13,7 @@ declare function Uploader({ accept: __accept, action, autoUnzip, beforeUpload, c
|
|
|
13
13
|
fileList: any;
|
|
14
14
|
innerIcon: any;
|
|
15
15
|
innerText: any;
|
|
16
|
-
meta?: {
|
|
17
|
-
form: any;
|
|
18
|
-
} | undefined;
|
|
16
|
+
meta?: {} | undefined;
|
|
19
17
|
minimal: any;
|
|
20
18
|
name: any;
|
|
21
19
|
noBuildCsvOption: any;
|
package/MenuBar/index.d.ts
CHANGED
|
@@ -6,9 +6,7 @@ declare class MenuBar extends React.Component<any, any, any> {
|
|
|
6
6
|
style: {};
|
|
7
7
|
};
|
|
8
8
|
constructor(props: any);
|
|
9
|
-
hotkeyEnabler: ({ children }?: {
|
|
10
|
-
children: any;
|
|
11
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
hotkeyEnabler: ({ children }?: {}) => import("react/jsx-runtime").JSX.Element;
|
|
12
10
|
state: {
|
|
13
11
|
isOpen: boolean;
|
|
14
12
|
openIndex: null;
|
|
@@ -10,9 +10,7 @@ export default class ResizableDraggableDialog extends React.Component<any, any,
|
|
|
10
10
|
width: number;
|
|
11
11
|
height: number;
|
|
12
12
|
};
|
|
13
|
-
setDefaults: ({ doNotSetXOrWidth }?: {
|
|
14
|
-
doNotSetXOrWidth: any;
|
|
15
|
-
}) => void;
|
|
13
|
+
setDefaults: ({ doNotSetXOrWidth }?: {}) => void;
|
|
16
14
|
onWindowResize: () => void;
|
|
17
15
|
componentWillUnmount(): void;
|
|
18
16
|
getWindowWidthAndHeight: () => {
|
package/TagSelect/index.d.ts
CHANGED