@teselagen/ui 0.4.10 → 0.4.13
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 +14 -0
- package/TagSelect/index.d.ts +6 -0
- 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 +1091 -1181
- package/index.d.ts +60 -60
- package/index.es.js +251 -341
- package/package.json +3 -1
- package/showConfirmationDialog/index.d.ts +2 -2
- package/src/DataTable/dataTableEnhancer.js +5 -1
- package/src/ExcelCell.js +38 -0
- package/src/Tag.js +112 -0
- package/src/TagSelect/index.js +69 -0
- package/src/TagSelect/style.css +13 -0
- package/src/TgSelect/index.js +0 -16
- package/src/TgSelect/style.css +7 -0
- package/src/Timeline/index.js +1 -0
- package/style.css +7 -0
- 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 +6 -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/AdvancedOptions.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { default as React } from '../../../node_modules/react';
|
|
1
2
|
export const AssignDefaultsModeContext: React.Context<{
|
|
2
3
|
inAssignDefaultsMode: boolean;
|
|
3
4
|
setAssignDefaultsMode: () => void;
|
|
@@ -22,4 +23,3 @@ export const WorkflowDefaultParamsContext: React.Context<{
|
|
|
22
23
|
workflowToolTitle: undefined;
|
|
23
24
|
workflowTaskCode: undefined;
|
|
24
25
|
}>;
|
|
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("react/jsx-runtime").JSX.Element;
|
package/DNALoader/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
2
|
export default class DisplayOptions extends React.Component<any, any, any> {
|
|
2
3
|
constructor(props: any);
|
|
3
4
|
constructor(props: any, context: any);
|
|
@@ -9,6 +10,5 @@ export default class DisplayOptions extends React.Component<any, any, any> {
|
|
|
9
10
|
closePopover: () => void;
|
|
10
11
|
changeTableDensity: (e: any) => void;
|
|
11
12
|
toggleForcedHidden: (e: any) => any;
|
|
12
|
-
render(): import(
|
|
13
|
+
render(): import("react/jsx-runtime").JSX.Element | null;
|
|
13
14
|
}
|
|
14
|
-
import React from '../../../../node_modules/react';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
2
|
export default class FilterAndSortMenu extends React.Component<any, any, any> {
|
|
2
3
|
constructor(props: any);
|
|
3
4
|
state: any;
|
|
4
5
|
handleFilterChange: (selectedFilter: any) => void;
|
|
5
6
|
handleFilterValueChange: (filterValue: any) => void;
|
|
6
7
|
handleFilterSubmit: () => any;
|
|
7
|
-
render(): import(
|
|
8
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
}
|
|
9
|
-
import React from '../../../../node_modules/react';
|
package/DataTable/SearchBar.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
2
|
export default SortableColumns;
|
|
2
3
|
declare class SortableColumns extends React.Component<any, any, any> {
|
|
3
4
|
constructor(props: any);
|
|
@@ -5,6 +6,5 @@ declare class SortableColumns extends React.Component<any, any, any> {
|
|
|
5
6
|
shouldCancelStart: (e: any) => boolean;
|
|
6
7
|
onSortEnd: (...args: any[]) => void;
|
|
7
8
|
onSortStart: () => void;
|
|
8
|
-
render(): import(
|
|
9
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
}
|
|
10
|
-
import React from '../../../../node_modules/react';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
2
|
export default TableFormTrackerContext;
|
|
2
3
|
declare const TableFormTrackerContext: React.Context<{
|
|
3
4
|
formNames: never[];
|
|
4
5
|
pushFormName: () => void;
|
|
5
6
|
isActive: boolean;
|
|
6
7
|
}>;
|
|
7
|
-
import React from '../../../../node_modules/react';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { noop } from 'lodash-es';
|
|
1
2
|
declare namespace _default {
|
|
2
3
|
export { noop as addFilters };
|
|
3
4
|
export let className: string;
|
|
@@ -40,4 +41,3 @@ declare namespace _default {
|
|
|
40
41
|
export let withSort: boolean;
|
|
41
42
|
}
|
|
42
43
|
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("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("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("react/jsx-runtime").JSX.Element;
|
|
@@ -1,17 +1,19 @@
|
|
|
1
|
+
import { fieldRequired } from './utils';
|
|
2
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
3
|
export function generateField(component: any, opts: any): ({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
2
4
|
[x: string]: any;
|
|
3
5
|
name: any;
|
|
4
6
|
isRequired: any;
|
|
5
7
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
6
8
|
noRedux: any;
|
|
7
|
-
}) => import(
|
|
9
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
8
10
|
export { fieldRequired };
|
|
9
|
-
export function renderBlueprintDateInput(props: any): import(
|
|
10
|
-
export function renderBlueprintDateRangeInput(props: any): import(
|
|
11
|
-
export function RenderBlueprintInput(props: any): import(
|
|
12
|
-
export function renderBlueprintCheckbox(props: any): import(
|
|
13
|
-
export function renderBlueprintSwitch(props: any): import(
|
|
14
|
-
export function renderFileUpload(props: any): import(
|
|
11
|
+
export function renderBlueprintDateInput(props: any): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export function renderBlueprintDateRangeInput(props: any): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export function RenderBlueprintInput(props: any): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export function renderBlueprintCheckbox(props: any): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export function renderBlueprintSwitch(props: any): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export function renderFileUpload(props: any): import("react/jsx-runtime").JSX.Element;
|
|
15
17
|
export class renderBlueprintTextarea extends React.Component<any, any, any> {
|
|
16
18
|
constructor(props: any);
|
|
17
19
|
constructor(props: any, context: any);
|
|
@@ -24,129 +26,127 @@ export class renderBlueprintTextarea extends React.Component<any, any, any> {
|
|
|
24
26
|
updateVal: (e: any) => void;
|
|
25
27
|
handleValSubmit: () => void;
|
|
26
28
|
onKeyDown: (...args: any[]) => void;
|
|
27
|
-
render(): import(
|
|
29
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
28
30
|
}
|
|
29
|
-
export function renderBlueprintEditableText(props: any): import(
|
|
30
|
-
export function renderReactSelect(props: any): import(
|
|
31
|
-
export function renderSuggest_old(props: any): import(
|
|
32
|
-
export function renderSuggest(props: any): import(
|
|
31
|
+
export function renderBlueprintEditableText(props: any): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export function renderReactSelect(props: any): import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
export function renderSuggest_old(props: any): import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
export function renderSuggest(props: any): import("react/jsx-runtime").JSX.Element;
|
|
33
35
|
export function BPSelect({ value, onChange, ...rest }: {
|
|
34
36
|
[x: string]: any;
|
|
35
37
|
value: any;
|
|
36
38
|
onChange: any;
|
|
37
|
-
}): import(
|
|
38
|
-
export function renderSelect(props: any): import(
|
|
39
|
-
export function renderBlueprintNumericInput(props: any): import(
|
|
39
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
export function renderSelect(props: any): import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
export function renderBlueprintNumericInput(props: any): import("react/jsx-runtime").JSX.Element;
|
|
40
42
|
export function renderBlueprintRadioGroup({ input, options, onFieldSubmit, ...rest }: {
|
|
41
43
|
[x: string]: any;
|
|
42
44
|
input: any;
|
|
43
45
|
options: any;
|
|
44
46
|
onFieldSubmit: any;
|
|
45
|
-
}): import(
|
|
47
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
46
48
|
export class RenderReactColorPicker extends React.Component<any, any, any> {
|
|
47
49
|
constructor(props: any);
|
|
48
50
|
constructor(props: any, context: any);
|
|
49
51
|
handleChange: (color: any) => void;
|
|
50
|
-
render(): import(
|
|
52
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
51
53
|
}
|
|
52
|
-
export function withAbstractWrapper(ComponentToWrap: any, opts?: {}): (props: any) => import(
|
|
54
|
+
export function withAbstractWrapper(ComponentToWrap: any, opts?: {}): (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
53
55
|
export function InputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
54
56
|
[x: string]: any;
|
|
55
57
|
name: any;
|
|
56
58
|
isRequired: any;
|
|
57
59
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
58
60
|
noRedux: any;
|
|
59
|
-
}): import(
|
|
61
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
60
62
|
export function FileUploadField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
61
63
|
[x: string]: any;
|
|
62
64
|
name: any;
|
|
63
65
|
isRequired: any;
|
|
64
66
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
65
67
|
noRedux: any;
|
|
66
|
-
}): import(
|
|
68
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
67
69
|
export function DateInputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
68
70
|
[x: string]: any;
|
|
69
71
|
name: any;
|
|
70
72
|
isRequired: any;
|
|
71
73
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
72
74
|
noRedux: any;
|
|
73
|
-
}): import(
|
|
75
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
74
76
|
export function DateRangeInputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
75
77
|
[x: string]: any;
|
|
76
78
|
name: any;
|
|
77
79
|
isRequired: any;
|
|
78
80
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
79
81
|
noRedux: any;
|
|
80
|
-
}): import(
|
|
82
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
81
83
|
export function CheckboxField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
82
84
|
[x: string]: any;
|
|
83
85
|
name: any;
|
|
84
86
|
isRequired: any;
|
|
85
87
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
86
88
|
noRedux: any;
|
|
87
|
-
}): import(
|
|
89
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
88
90
|
export function SwitchField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
89
91
|
[x: string]: any;
|
|
90
92
|
name: any;
|
|
91
93
|
isRequired: any;
|
|
92
94
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
93
95
|
noRedux: any;
|
|
94
|
-
}): import(
|
|
96
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
95
97
|
export function TextareaField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
96
98
|
[x: string]: any;
|
|
97
99
|
name: any;
|
|
98
100
|
isRequired: any;
|
|
99
101
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
100
102
|
noRedux: any;
|
|
101
|
-
}): import(
|
|
103
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
102
104
|
export function SuggestField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
103
105
|
[x: string]: any;
|
|
104
106
|
name: any;
|
|
105
107
|
isRequired: any;
|
|
106
108
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
107
109
|
noRedux: any;
|
|
108
|
-
}): import(
|
|
110
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
109
111
|
export function EditableTextField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
110
112
|
[x: string]: any;
|
|
111
113
|
name: any;
|
|
112
114
|
isRequired: any;
|
|
113
115
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
114
116
|
noRedux: any;
|
|
115
|
-
}): import(
|
|
117
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
116
118
|
export function NumericInputField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
117
119
|
[x: string]: any;
|
|
118
120
|
name: any;
|
|
119
121
|
isRequired: any;
|
|
120
122
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
121
123
|
noRedux: any;
|
|
122
|
-
}): import(
|
|
124
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
123
125
|
export function RadioGroupField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
124
126
|
[x: string]: any;
|
|
125
127
|
name: any;
|
|
126
128
|
isRequired: any;
|
|
127
129
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
128
130
|
noRedux: any;
|
|
129
|
-
}): import(
|
|
131
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
130
132
|
export function ReactSelectField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
131
133
|
[x: string]: any;
|
|
132
134
|
name: any;
|
|
133
135
|
isRequired: any;
|
|
134
136
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
135
137
|
noRedux: any;
|
|
136
|
-
}): import(
|
|
138
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
137
139
|
export function SelectField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
138
140
|
[x: string]: any;
|
|
139
141
|
name: any;
|
|
140
142
|
isRequired: any;
|
|
141
143
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
142
144
|
noRedux: any;
|
|
143
|
-
}): import(
|
|
145
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
144
146
|
export function ReactColorField({ name, isRequired, onFieldSubmit, noRedux, ...rest }: {
|
|
145
147
|
[x: string]: any;
|
|
146
148
|
name: any;
|
|
147
149
|
isRequired: any;
|
|
148
150
|
onFieldSubmit?: ((...args: any[]) => void) | undefined;
|
|
149
151
|
noRedux: any;
|
|
150
|
-
}): import(
|
|
151
|
-
import { fieldRequired } from "./utils";
|
|
152
|
-
import React from '../../../../node_modules/react';
|
|
152
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default itemUpload;
|
|
2
|
-
declare function itemUpload(props: any): import(
|
|
2
|
+
declare function itemUpload(props: any): import("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("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("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,3 +1,4 @@
|
|
|
1
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
2
|
export default MenuBar;
|
|
2
3
|
declare class MenuBar extends React.Component<any, any, any> {
|
|
3
4
|
static defaultProps: {
|
|
@@ -7,7 +8,7 @@ declare class MenuBar extends React.Component<any, any, any> {
|
|
|
7
8
|
constructor(props: any);
|
|
8
9
|
hotkeyEnabler: ({ children }?: {
|
|
9
10
|
children: any;
|
|
10
|
-
}) => import(
|
|
11
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
state: {
|
|
12
13
|
isOpen: boolean;
|
|
13
14
|
openIndex: null;
|
|
@@ -20,10 +21,9 @@ declare class MenuBar extends React.Component<any, any, any> {
|
|
|
20
21
|
isTopLevelSearch: boolean | undefined;
|
|
21
22
|
menuSearchIndex: any;
|
|
22
23
|
searchInput: HTMLInputElement | undefined;
|
|
23
|
-
helpItemRenderer: (i: any, b: any) => import(
|
|
24
|
+
helpItemRenderer: (i: any, b: any) => import("react/jsx-runtime").JSX.Element;
|
|
24
25
|
handleItemClickOrSelect: (__i: any) => (_i: any) => void;
|
|
25
26
|
toggleFocusSearchMenu: () => void;
|
|
26
|
-
render(): import(
|
|
27
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
27
28
|
n: HTMLButtonElement | undefined;
|
|
28
29
|
}
|
|
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("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,3 +1,4 @@
|
|
|
1
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
2
|
export default class ResizableDraggableDialog extends React.Component<any, any, any> {
|
|
2
3
|
constructor(props: any);
|
|
3
4
|
constructor(props: any, context: any);
|
|
@@ -18,7 +19,6 @@ export default class ResizableDraggableDialog extends React.Component<any, any,
|
|
|
18
19
|
windowWidth: number;
|
|
19
20
|
windowHeight: number;
|
|
20
21
|
};
|
|
21
|
-
render(): import(
|
|
22
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
22
23
|
containerEl: HTMLDivElement | undefined;
|
|
23
24
|
}
|
|
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("react/jsx-runtime").JSX.Element;
|
package/SimpleStepViz.d.ts
CHANGED
package/Tag.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export default Tag;
|
|
2
|
+
declare function Tag({ name, color, tooltip, selected, secondarySelected, hasSelection, onDelete, onClick, clickable, doNotFillWidth, style }: {
|
|
3
|
+
name: any;
|
|
4
|
+
color: any;
|
|
5
|
+
tooltip: any;
|
|
6
|
+
selected: any;
|
|
7
|
+
secondarySelected: any;
|
|
8
|
+
hasSelection: any;
|
|
9
|
+
onDelete: any;
|
|
10
|
+
onClick: any;
|
|
11
|
+
clickable: any;
|
|
12
|
+
doNotFillWidth: any;
|
|
13
|
+
style?: {} | undefined;
|
|
14
|
+
}): import("react/jsx-runtime").JSX.Element;
|
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("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("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,3 +1,4 @@
|
|
|
1
|
+
import { default as React } from '../../../../node_modules/react';
|
|
1
2
|
export default TgSuggest;
|
|
2
3
|
declare class TgSuggest extends React.Component<any, any, any> {
|
|
3
4
|
static defaultProps: {
|
|
@@ -11,12 +12,11 @@ declare class TgSuggest extends React.Component<any, any, any> {
|
|
|
11
12
|
index: any;
|
|
12
13
|
handleClick: any;
|
|
13
14
|
modifiers: any;
|
|
14
|
-
}) => import(
|
|
15
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
15
16
|
handleItemSelect: (item: any) => any;
|
|
16
17
|
itemListPredicate: (queryString: any, item: any) => any;
|
|
17
18
|
onQueryChange: (query: any) => void;
|
|
18
19
|
renderInputValue: (item: any) => any;
|
|
19
|
-
render(): import(
|
|
20
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
20
21
|
input: HTMLInputElement | undefined;
|
|
21
22
|
}
|
|
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("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("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("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export const tubeIcon: import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export const orfIcon: import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export const featureIcon: import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export const reverseFeatureIcon: import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export const bluntFeatureIcon: import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export const dnaIcon: import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export const workqueueIcon: import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export const removeDuplicatesIcon: import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export const inventoryIcon: import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export const workflowIcon: import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export const strainIcon: import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export const designIcon: import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export const moleculeIcon: import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export const keyboardIcon: import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export const cardDetailsIcon: import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export const driveIcon: import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export const sharedDriveIcon: import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export const proteinIcon: import("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("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("react/jsx-runtime").JSX.Element;
|