FUNC_TYPES
constFUNC_TYPES:object
Defined in: src/const.ts:350
Type Declaration
| Name | Type | Default value | Description | Defined in |
|---|---|---|---|---|
APP | string | 'app' | An application that gets shown in the app store. Signature: app() | src/const.ts:353 |
AUTOSTART | string | 'autostart' | Gets invoked at platform startup. Use it wisely as the whole package will get initialized. Signature: autostart() | src/const.ts:365 |
CELL_EDITOR | string | 'cellEditor' | - | src/const.ts:415 |
CELL_RENDERER | string | 'cellRenderer' | Creates a cell renderer that is used for rendering cells for specific semantic types. Semantic type is derived from the cellRenderer-<semType> tag. Signature: cellRenderer(): GridCellRenderer | src/const.ts:390 |
CONVERTER | string | 'converter' | Converts values. Has one input and one output | src/const.ts:406 |
DASHBOARD | string | 'dashboard' | Makes a widget appear on the welcome screen Signature: dashboard(): DG.Widget | src/const.ts:398 |
DIM_RED_POSTPROCESS | string | 'dim-red-postprocessing-function' | - | src/const.ts:428 |
DIM_RED_PREPROCESS | string | 'dim-red-preprocessing-function' | - | src/const.ts:427 |
EDITOR | string | 'editor' | - | src/const.ts:410 |
FILE_EXPORTER | string | 'fileExporter' | Exports a file. Gets added to the "export" menu at startup. Signature: fileExporter() | src/const.ts:380 |
FILE_IMPORTER | string | 'file-handler' | Handles custom file formats. The meta.ext parameter should contain a comma-separated list of extensions. Signature: fileImporter(x: string | TypedArray): DataFrame[] |
FILE_VIEWER | string | 'fileViewer' | Creates a viewer (or editor) for a file with the specified extension. The extension is derived from the fileViewer-<extension> tag. Used in the file system browser. Signature: fileViewer(FileInfo): View | src/const.ts:376 |
FILTER | string | 'filter' | - | src/const.ts:412 |
FOLDER_VIEWER | string | 'folderViewer' | - | src/const.ts:419 |
FUNCTION_ANALYSIS | string | 'functionAnalysis' | Function analysis. Examples: sensitivity analysis, parameter editor Func => View | src/const.ts:403 |
HIT_DESIGNER_FUNCTION | string | 'HitDesignerFunction' | - | src/const.ts:425 |
HIT_TRIAGE_DATA_SOURCE | string | 'HitTriageDataSource' | - | src/const.ts:423 |
HIT_TRIAGE_FUNCTION | string | 'HitTriageFunction' | - | src/const.ts:422 |
HIT_TRIAGE_SUBMIT_FUNCTION | string | 'HitTriageSubmitFunction' | - | src/const.ts:424 |
INIT | string | 'init' | Gets invoked when the containing package is initialized Signature: init() | src/const.ts:361 |
KNIME_WORKFLOW | string | 'knimeWorkflow' | - | src/const.ts:435 |
MOLECULE_SKETCHER | string | 'moleculeSketcher' | - | src/const.ts:417 |
MONOMER_LIB_PROVIDER | string | 'monomer-lib-provider' | - | src/const.ts:430 |
NOTATION_REFINER | string | 'notationRefiner' | - | src/const.ts:433 |
PACKAGE_SETTINGS_EDITOR | string | 'packageSettingsEditor' | Edits package settings. Signature: packageSettingsEditor(): Widget | src/const.ts:394 |
PANEL | string | 'panel' | Context-specific widget that appears on the context panel Signature: panel(x: any): Widget | src/const.ts:357 |
SCRIPT_HANDLER | string | 'scriptHandler' | - | src/const.ts:420 |
SEARCH_PROVIDER | string | 'searchProvider' | - | src/const.ts:432 |
SEM_TYPE_DETECTOR | string | 'semTypeDetector' | Semantic type detector for a column. Gets invoked when a new dataframe is imported into the platform. Implementation should either set column.semType directly, or return the semantic type that will get assigned. Signature: semTypeDetector(Column): string | src/const.ts:370 |
TOOLTIP | string | 'tooltip' | - | src/const.ts:418 |
TRANSFORM | string | 'Transform' | - | src/const.ts:411 |
UNIT_CONVERTER | string | 'unitConverter' | - | src/const.ts:416 |
VALUE_EDITOR | string | 'valueEditor' | - | src/const.ts:414 |
VIEWER | string | 'viewer' | - | src/const.ts:413 |
WIDGET | string | 'widget' | - | src/const.ts:408 |
WIDGETS | string | 'widgets' | - | src/const.ts:409 |