@teselagen/ui 0.4.13 → 0.4.14
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/AdvancedOptions.d.ts +1 -1
- package/AssignDefaultsModeContext.d.ts +1 -1
- package/AsyncValidateFieldSpinner/index.d.ts +1 -1
- package/BlueprintError/index.d.ts +1 -1
- package/BounceLoader/index.d.ts +1 -1
- package/CollapsibleCard/index.d.ts +1 -1
- package/DNALoader/index.d.ts +1 -1
- package/DataTable/CellDragHandle.d.ts +1 -1
- package/DataTable/DisabledLoadingComponent.d.ts +1 -1
- package/DataTable/DisplayOptions.d.ts +2 -2
- package/DataTable/FilterAndSortMenu.d.ts +2 -2
- package/DataTable/SearchBar.d.ts +1 -1
- package/DataTable/SortableColumns.d.ts +2 -2
- package/DataTable/TableFormTrackerContext.d.ts +1 -1
- package/DataTable/defaultProps.d.ts +1 -1
- package/DataTable/utils/computePresets.d.ts +1 -1
- package/DataTable/viewColumn.d.ts +2 -2
- package/DialogFooter/index.d.ts +1 -1
- package/DropdownButton.d.ts +1 -1
- package/FillWindow.d.ts +1 -1
- package/FormComponents/LoadingDots.d.ts +1 -1
- package/FormComponents/index.d.ts +34 -34
- package/FormComponents/itemUpload.d.ts +1 -1
- package/HotkeysDialog/index.d.ts +1 -1
- package/InfoHelper/index.d.ts +1 -1
- package/IntentText/index.d.ts +1 -1
- package/MatchHeaders.d.ts +1 -1
- package/MenuBar/index.d.ts +4 -4
- package/PromptUnsavedChanges/index.d.ts +1 -1
- package/ResizableDraggableDialog/index.d.ts +2 -2
- package/ScrollToTop/index.d.ts +1 -1
- package/SimpleStepViz.d.ts +1 -1
- package/Tag.d.ts +1 -1
- package/TagSelect/index.d.ts +1 -1
- package/TgSelect/index.d.ts +2 -2
- package/TgSuggest/index.d.ts +3 -3
- package/Timeline/TimelineEvent.d.ts +1 -1
- package/Timeline/index.d.ts +2 -2
- package/UploadCsvWizard.d.ts +1 -1
- package/customIcons.d.ts +19 -19
- package/enhancers/withField.d.ts +1 -1
- package/enhancers/withFields.d.ts +1 -1
- package/enhancers/withLocalStorage.d.ts +1 -1
- package/index.cjs.js +284 -222
- package/index.d.ts +60 -60
- package/index.es.js +284 -222
- package/package.json +1 -3
- package/showConfirmationDialog/index.d.ts +2 -2
- package/src/utils/menuUtils.js +3 -2
- package/useDialog.d.ts +2 -2
- package/utils/adHoc.d.ts +1 -1
- package/utils/commandControls.d.ts +5 -5
- package/utils/hotkeyUtils.d.ts +1 -1
- package/utils/menuUtils.d.ts +13 -6
- package/utils/tagUtils.d.ts +1 -1
- package/utils/tgFormValues.d.ts +1 -1
- package/utils/withStore.d.ts +1 -1
- package/wrapDialog.d.ts +1 -1
- package/src/ExcelCell.js +0 -38
package/AdvancedOptions.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from '../../../node_modules/react';
|
|
2
1
|
export const AssignDefaultsModeContext: React.Context<{
|
|
3
2
|
inAssignDefaultsMode: boolean;
|
|
4
3
|
setAssignDefaultsMode: () => void;
|
|
@@ -23,3 +22,4 @@ export const WorkflowDefaultParamsContext: React.Context<{
|
|
|
23
22
|
workflowToolTitle: undefined;
|
|
24
23
|
workflowTaskCode: undefined;
|
|
25
24
|
}>;
|
|
25
|
+
import React from '../../../node_modules/react';
|
package/BounceLoader/index.d.ts
CHANGED
|
@@ -9,4 +9,4 @@ export default function CollapsibleCard({ title, icon, openTitleElements, noCard
|
|
|
9
9
|
initialClosed?: boolean | undefined;
|
|
10
10
|
toggle: any;
|
|
11
11
|
isOpen: any;
|
|
12
|
-
}): import(
|
|
12
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
package/DNALoader/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default class DisplayOptions extends React.Component<any, any, any> {
|
|
3
2
|
constructor(props: any);
|
|
4
3
|
constructor(props: any, context: any);
|
|
@@ -10,5 +9,6 @@ export default class DisplayOptions extends React.Component<any, any, any> {
|
|
|
10
9
|
closePopover: () => void;
|
|
11
10
|
changeTableDensity: (e: any) => void;
|
|
12
11
|
toggleForcedHidden: (e: any) => any;
|
|
13
|
-
render(): import(
|
|
12
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element | null;
|
|
14
13
|
}
|
|
14
|
+
import React from '../../../../node_modules/react';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default class FilterAndSortMenu extends React.Component<any, any, any> {
|
|
3
2
|
constructor(props: any);
|
|
4
3
|
state: any;
|
|
5
4
|
handleFilterChange: (selectedFilter: any) => void;
|
|
6
5
|
handleFilterValueChange: (filterValue: any) => void;
|
|
7
6
|
handleFilterSubmit: () => any;
|
|
8
|
-
render(): import(
|
|
7
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
9
8
|
}
|
|
9
|
+
import React from '../../../../node_modules/react';
|
package/DataTable/SearchBar.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default SortableColumns;
|
|
3
2
|
declare class SortableColumns extends React.Component<any, any, any> {
|
|
4
3
|
constructor(props: any);
|
|
@@ -6,5 +5,6 @@ declare class SortableColumns extends React.Component<any, any, any> {
|
|
|
6
5
|
shouldCancelStart: (e: any) => boolean;
|
|
7
6
|
onSortEnd: (...args: any[]) => void;
|
|
8
7
|
onSortStart: () => void;
|
|
9
|
-
render(): import(
|
|
8
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
10
9
|
}
|
|
10
|
+
import React from '../../../../node_modules/react';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default TableFormTrackerContext;
|
|
3
2
|
declare const TableFormTrackerContext: React.Context<{
|
|
4
3
|
formNames: never[];
|
|
5
4
|
pushFormName: () => void;
|
|
6
5
|
isActive: boolean;
|
|
7
6
|
}>;
|
|
7
|
+
import React from '../../../../node_modules/react';
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { noop } from 'lodash-es';
|
|
2
1
|
declare namespace _default {
|
|
3
2
|
export { noop as addFilters };
|
|
4
3
|
export let className: string;
|
|
@@ -41,3 +40,4 @@ declare namespace _default {
|
|
|
41
40
|
export let withSort: boolean;
|
|
42
41
|
}
|
|
43
42
|
export default _default;
|
|
43
|
+
import { noop } from "lodash-es";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function computePresets(props?: {}): import(
|
|
1
|
+
export default function computePresets(props?: {}): import("lodash").Dictionary<any>;
|
|
@@ -4,9 +4,9 @@ export namespace viewColumn {
|
|
|
4
4
|
let hideInMenu: boolean;
|
|
5
5
|
let immovable: boolean;
|
|
6
6
|
let type: string;
|
|
7
|
-
function render(): import(
|
|
7
|
+
function render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
8
8
|
}
|
|
9
9
|
export namespace openColumn {
|
|
10
|
-
export function render_1(val: any, record: any, rowInfo: any, props: any): import(
|
|
10
|
+
export function render_1(val: any, record: any, rowInfo: any, props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
11
11
|
export { render_1 as render };
|
|
12
12
|
}
|
package/DialogFooter/index.d.ts
CHANGED
package/DropdownButton.d.ts
CHANGED
package/FillWindow.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export function LoadingDots(): import(
|
|
1
|
+
export function LoadingDots(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-
import { fieldRequired } from './utils';
|
|
2
|
-
import { default as React } from '../../../../node_modules/react';
|
|
3
1
|
export function generateField(component: any, opts: any): ({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
4
2
|
[x: string]: any;
|
|
5
3
|
name: any;
|
|
6
4
|
isRequired: any;
|
|
7
5
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
8
6
|
noRedux: any;
|
|
9
|
-
}) => import(
|
|
7
|
+
}) => import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
10
8
|
export { fieldRequired };
|
|
11
|
-
export function renderBlueprintDateInput(props: any): import(
|
|
12
|
-
export function renderBlueprintDateRangeInput(props: any): import(
|
|
13
|
-
export function RenderBlueprintInput(props: any): import(
|
|
14
|
-
export function renderBlueprintCheckbox(props: any): import(
|
|
15
|
-
export function renderBlueprintSwitch(props: any): import(
|
|
16
|
-
export function renderFileUpload(props: any): import(
|
|
9
|
+
export function renderBlueprintDateInput(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
10
|
+
export function renderBlueprintDateRangeInput(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
11
|
+
export function RenderBlueprintInput(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
12
|
+
export function renderBlueprintCheckbox(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
13
|
+
export function renderBlueprintSwitch(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
14
|
+
export function renderFileUpload(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
17
15
|
export class renderBlueprintTextarea extends React.Component<any, any, any> {
|
|
18
16
|
constructor(props: any);
|
|
19
17
|
constructor(props: any, context: any);
|
|
@@ -26,127 +24,129 @@ export class renderBlueprintTextarea extends React.Component<any, any, any> {
|
|
|
26
24
|
updateVal: (e: any) => void;
|
|
27
25
|
handleValSubmit: () => void;
|
|
28
26
|
onKeyDown: (...args: any[]) => void;
|
|
29
|
-
render(): import(
|
|
27
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
30
28
|
}
|
|
31
|
-
export function renderBlueprintEditableText(props: any): import(
|
|
32
|
-
export function renderReactSelect(props: any): import(
|
|
33
|
-
export function renderSuggest_old(props: any): import(
|
|
34
|
-
export function renderSuggest(props: any): import(
|
|
29
|
+
export function renderBlueprintEditableText(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
30
|
+
export function renderReactSelect(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
31
|
+
export function renderSuggest_old(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
32
|
+
export function renderSuggest(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
35
33
|
export function BPSelect({ value, onChange, ...rest }: {
|
|
36
34
|
[x: string]: any;
|
|
37
35
|
value: any;
|
|
38
36
|
onChange: any;
|
|
39
|
-
}): import(
|
|
40
|
-
export function renderSelect(props: any): import(
|
|
41
|
-
export function renderBlueprintNumericInput(props: any): import(
|
|
37
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
38
|
+
export function renderSelect(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
39
|
+
export function renderBlueprintNumericInput(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
42
40
|
export function renderBlueprintRadioGroup({ input, options, onFieldSubmit, ...rest }: {
|
|
43
41
|
[x: string]: any;
|
|
44
42
|
input: any;
|
|
45
43
|
options: any;
|
|
46
44
|
onFieldSubmit: any;
|
|
47
|
-
}): import(
|
|
45
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
48
46
|
export class RenderReactColorPicker extends React.Component<any, any, any> {
|
|
49
47
|
constructor(props: any);
|
|
50
48
|
constructor(props: any, context: any);
|
|
51
49
|
handleChange: (color: any) => void;
|
|
52
|
-
render(): import(
|
|
50
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
53
51
|
}
|
|
54
|
-
export function withAbstractWrapper(ComponentToWrap: any, opts?: {}): (props: any) => import(
|
|
52
|
+
export function withAbstractWrapper(ComponentToWrap: any, opts?: {}): (props: any) => import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
55
53
|
export function InputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
56
54
|
[x: string]: any;
|
|
57
55
|
name: any;
|
|
58
56
|
isRequired: any;
|
|
59
57
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
60
58
|
noRedux: any;
|
|
61
|
-
}): import(
|
|
59
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
62
60
|
export function FileUploadField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
63
61
|
[x: string]: any;
|
|
64
62
|
name: any;
|
|
65
63
|
isRequired: any;
|
|
66
64
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
67
65
|
noRedux: any;
|
|
68
|
-
}): import(
|
|
66
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
69
67
|
export function DateInputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
70
68
|
[x: string]: any;
|
|
71
69
|
name: any;
|
|
72
70
|
isRequired: any;
|
|
73
71
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
74
72
|
noRedux: any;
|
|
75
|
-
}): import(
|
|
73
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
76
74
|
export function DateRangeInputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
77
75
|
[x: string]: any;
|
|
78
76
|
name: any;
|
|
79
77
|
isRequired: any;
|
|
80
78
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
81
79
|
noRedux: any;
|
|
82
|
-
}): import(
|
|
80
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
83
81
|
export function CheckboxField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
84
82
|
[x: string]: any;
|
|
85
83
|
name: any;
|
|
86
84
|
isRequired: any;
|
|
87
85
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
88
86
|
noRedux: any;
|
|
89
|
-
}): import(
|
|
87
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
90
88
|
export function SwitchField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
91
89
|
[x: string]: any;
|
|
92
90
|
name: any;
|
|
93
91
|
isRequired: any;
|
|
94
92
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
95
93
|
noRedux: any;
|
|
96
|
-
}): import(
|
|
94
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
97
95
|
export function TextareaField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
98
96
|
[x: string]: any;
|
|
99
97
|
name: any;
|
|
100
98
|
isRequired: any;
|
|
101
99
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
102
100
|
noRedux: any;
|
|
103
|
-
}): import(
|
|
101
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
104
102
|
export function SuggestField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
105
103
|
[x: string]: any;
|
|
106
104
|
name: any;
|
|
107
105
|
isRequired: any;
|
|
108
106
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
109
107
|
noRedux: any;
|
|
110
|
-
}): import(
|
|
108
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
111
109
|
export function EditableTextField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
112
110
|
[x: string]: any;
|
|
113
111
|
name: any;
|
|
114
112
|
isRequired: any;
|
|
115
113
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
116
114
|
noRedux: any;
|
|
117
|
-
}): import(
|
|
115
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
118
116
|
export function NumericInputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
119
117
|
[x: string]: any;
|
|
120
118
|
name: any;
|
|
121
119
|
isRequired: any;
|
|
122
120
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
123
121
|
noRedux: any;
|
|
124
|
-
}): import(
|
|
122
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
125
123
|
export function RadioGroupField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
126
124
|
[x: string]: any;
|
|
127
125
|
name: any;
|
|
128
126
|
isRequired: any;
|
|
129
127
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
130
128
|
noRedux: any;
|
|
131
|
-
}): import(
|
|
129
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
132
130
|
export function ReactSelectField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
133
131
|
[x: string]: any;
|
|
134
132
|
name: any;
|
|
135
133
|
isRequired: any;
|
|
136
134
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
137
135
|
noRedux: any;
|
|
138
|
-
}): import(
|
|
136
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
139
137
|
export function SelectField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
140
138
|
[x: string]: any;
|
|
141
139
|
name: any;
|
|
142
140
|
isRequired: any;
|
|
143
141
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
144
142
|
noRedux: any;
|
|
145
|
-
}): import(
|
|
143
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
146
144
|
export function ReactColorField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
147
145
|
[x: string]: any;
|
|
148
146
|
name: any;
|
|
149
147
|
isRequired: any;
|
|
150
148
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
151
149
|
noRedux: any;
|
|
152
|
-
}): import(
|
|
150
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
151
|
+
import { fieldRequired } from "./utils";
|
|
152
|
+
import React from '../../../../node_modules/react';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default itemUpload;
|
|
2
|
-
declare function itemUpload(props: any): import(
|
|
2
|
+
declare function itemUpload(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
package/HotkeysDialog/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function HotkeysDialog(props: any): import(
|
|
1
|
+
export default function HotkeysDialog(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element | null;
|
package/InfoHelper/index.d.ts
CHANGED
|
@@ -15,5 +15,5 @@ declare function _default({ className, content, children, icon, isPopover, isBut
|
|
|
15
15
|
disabled: any;
|
|
16
16
|
displayToSide: any;
|
|
17
17
|
style: any;
|
|
18
|
-
}): import(
|
|
18
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
19
19
|
export default _default;
|
package/IntentText/index.d.ts
CHANGED
package/MatchHeaders.d.ts
CHANGED
package/MenuBar/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default MenuBar;
|
|
3
2
|
declare class MenuBar extends React.Component<any, any, any> {
|
|
4
3
|
static defaultProps: {
|
|
@@ -8,7 +7,7 @@ declare class MenuBar extends React.Component<any, any, any> {
|
|
|
8
7
|
constructor(props: any);
|
|
9
8
|
hotkeyEnabler: ({ children }?: {
|
|
10
9
|
children: any;
|
|
11
|
-
}) => import(
|
|
10
|
+
}) => import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
12
11
|
state: {
|
|
13
12
|
isOpen: boolean;
|
|
14
13
|
openIndex: null;
|
|
@@ -21,9 +20,10 @@ declare class MenuBar extends React.Component<any, any, any> {
|
|
|
21
20
|
isTopLevelSearch: boolean | undefined;
|
|
22
21
|
menuSearchIndex: any;
|
|
23
22
|
searchInput: HTMLInputElement | undefined;
|
|
24
|
-
helpItemRenderer: (i: any, b: any) => import(
|
|
23
|
+
helpItemRenderer: (i: any, b: any) => import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
25
24
|
handleItemClickOrSelect: (__i: any) => (_i: any) => void;
|
|
26
25
|
toggleFocusSearchMenu: () => void;
|
|
27
|
-
render(): import(
|
|
26
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
28
27
|
n: HTMLButtonElement | undefined;
|
|
29
28
|
}
|
|
29
|
+
import React from '../../../../node_modules/react';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export function PromptUnsavedChanges({ message, when }: {
|
|
2
2
|
message?: string | undefined;
|
|
3
3
|
when?: boolean | undefined;
|
|
4
|
-
}): import(
|
|
4
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element | null;
|
|
5
5
|
export const defaultMessagge: "Are you sure you want to leave? There are unsaved changes.";
|
|
6
6
|
export default PromptUnsavedChanges;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default class ResizableDraggableDialog extends React.Component<any, any, any> {
|
|
3
2
|
constructor(props: any);
|
|
4
3
|
constructor(props: any, context: any);
|
|
@@ -19,6 +18,7 @@ export default class ResizableDraggableDialog extends React.Component<any, any,
|
|
|
19
18
|
windowWidth: number;
|
|
20
19
|
windowHeight: number;
|
|
21
20
|
};
|
|
22
|
-
render(): import(
|
|
21
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
23
22
|
containerEl: HTMLDivElement | undefined;
|
|
24
23
|
}
|
|
24
|
+
import React from '../../../../node_modules/react';
|
package/ScrollToTop/index.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export default ScrollToTop;
|
|
|
2
2
|
declare function ScrollToTop({ showAt, scrollContainer }: {
|
|
3
3
|
showAt?: number | undefined;
|
|
4
4
|
scrollContainer?: Element | null | undefined;
|
|
5
|
-
}): import(
|
|
5
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
package/SimpleStepViz.d.ts
CHANGED
package/Tag.d.ts
CHANGED
package/TagSelect/index.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ declare function _default({ value, options, onChange }: {
|
|
|
2
2
|
value?: {} | undefined;
|
|
3
3
|
options?: any[] | undefined;
|
|
4
4
|
onChange: any;
|
|
5
|
-
}): import(
|
|
5
|
+
}): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
6
6
|
export default _default;
|
package/TgSelect/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export function createNewOption(newValString: any): {
|
|
|
4
4
|
value: any;
|
|
5
5
|
};
|
|
6
6
|
export function simplesearch(needle: any, haystack: any): boolean;
|
|
7
|
-
declare function _default(props: any): import(
|
|
7
|
+
declare function _default(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
8
8
|
export default _default;
|
|
9
|
-
export function renderCreateNewOption(query: any, active: any, handleClick: any): import(
|
|
9
|
+
export function renderCreateNewOption(query: any, active: any, handleClick: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
10
10
|
export function itemListPredicate(_queryString: string | undefined, items: any, isSimpleSearch: any): any;
|
package/TgSuggest/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as React } from '../../../../node_modules/react';
|
|
2
1
|
export default TgSuggest;
|
|
3
2
|
declare class TgSuggest extends React.Component<any, any, any> {
|
|
4
3
|
static defaultProps: {
|
|
@@ -12,11 +11,12 @@ declare class TgSuggest extends React.Component<any, any, any> {
|
|
|
12
11
|
index: any;
|
|
13
12
|
handleClick: any;
|
|
14
13
|
modifiers: any;
|
|
15
|
-
}) => import(
|
|
14
|
+
}) => import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
16
15
|
handleItemSelect: (item: any) => any;
|
|
17
16
|
itemListPredicate: (queryString: any, item: any) => any;
|
|
18
17
|
onQueryChange: (query: any) => void;
|
|
19
18
|
renderInputValue: (item: any) => any;
|
|
20
|
-
render(): import(
|
|
19
|
+
render(): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
21
20
|
input: HTMLInputElement | undefined;
|
|
22
21
|
}
|
|
22
|
+
import React from '../../../../node_modules/react';
|
package/Timeline/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default as TimelineEvent } from
|
|
1
|
+
export { default as TimelineEvent } from "./TimelineEvent";
|
|
2
2
|
export default Timeline;
|
|
3
|
-
declare function Timeline(props: any): import(
|
|
3
|
+
declare function Timeline(props: any): import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
package/UploadCsvWizard.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export default UploadCsvWizardDialog;
|
|
2
|
-
export function PreviewCsvData(props: any): import(
|
|
2
|
+
export function PreviewCsvData(props: any): import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
3
3
|
export const SimpleInsertDataDialog: any;
|
|
4
4
|
declare const UploadCsvWizardDialog: any;
|
package/customIcons.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export const flaskIcon: import(
|
|
2
|
-
export const tubeIcon: import(
|
|
3
|
-
export const orfIcon: import(
|
|
4
|
-
export const featureIcon: import(
|
|
5
|
-
export const reverseFeatureIcon: import(
|
|
6
|
-
export const bluntFeatureIcon: import(
|
|
7
|
-
export const dnaIcon: import(
|
|
8
|
-
export const workqueueIcon: import(
|
|
9
|
-
export const removeDuplicatesIcon: import(
|
|
10
|
-
export const inventoryIcon: import(
|
|
11
|
-
export const workflowIcon: import(
|
|
12
|
-
export const strainIcon: import(
|
|
13
|
-
export const designIcon: import(
|
|
14
|
-
export const moleculeIcon: import(
|
|
15
|
-
export const keyboardIcon: import(
|
|
16
|
-
export const cardDetailsIcon: import(
|
|
17
|
-
export const driveIcon: import(
|
|
18
|
-
export const sharedDriveIcon: import(
|
|
19
|
-
export const proteinIcon: import(
|
|
1
|
+
export const flaskIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
2
|
+
export const tubeIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
3
|
+
export const orfIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
4
|
+
export const featureIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
5
|
+
export const reverseFeatureIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
6
|
+
export const bluntFeatureIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
7
|
+
export const dnaIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
8
|
+
export const workqueueIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
9
|
+
export const removeDuplicatesIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
10
|
+
export const inventoryIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
11
|
+
export const workflowIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
12
|
+
export const strainIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
13
|
+
export const designIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
14
|
+
export const moleculeIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
15
|
+
export const keyboardIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
16
|
+
export const cardDetailsIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
17
|
+
export const driveIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
18
|
+
export const sharedDriveIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
19
|
+
export const proteinIcon: import('../../../node_modules/react/jsx-runtime').JSX.Element;
|
package/enhancers/withField.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function WithFields(fieldsProps: any): (Component: any) => (props: any) => import(
|
|
1
|
+
export default function WithFields(fieldsProps: any): (Component: any) => (props: any) => import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function WithField(fieldProps: any): (Component: any) => (props: any) => import(
|
|
1
|
+
export default function WithField(fieldProps: any): (Component: any) => (props: any) => import('../../../../node_modules/react/jsx-runtime').JSX.Element;
|