@adaptabletools/adaptable 11.0.0-canary.5 → 11.0.0
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/agGrid.d.ts +5 -4
- package/agGrid.js +9 -7
- package/base.css +2 -2
- package/bundle.cjs.js +103 -98
- package/index.css +2 -2
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +4 -6
- package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +37 -5
- package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
- package/src/AdaptableOptions/ContainerOptions.d.ts +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
- package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +4 -3
- package/src/AdaptableOptions/StateOptions.d.ts +7 -7
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
- package/src/Api/AdaptableApi.d.ts +5 -0
- package/src/Api/CalculatedColumnApi.d.ts +2 -9
- package/src/Api/ColumnApi.d.ts +0 -4
- package/src/Api/GridApi.d.ts +11 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -1
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/AlertApiImpl.js +4 -1
- package/src/Api/Implementation/ApiBase.d.ts +3 -2
- package/src/Api/Implementation/ApiBase.js +5 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
- package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ColumnApiImpl.js +0 -5
- package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
- package/src/Api/Implementation/GridApiImpl.js +27 -4
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
- package/src/Api/Implementation/InternalApiImpl.js +5 -4
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +4 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.js +17 -4
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
- package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
- package/src/Api/InternalApi.d.ts +2 -3
- package/src/Api/QueryApi.d.ts +2 -2
- package/src/Api/QueryLanguageApi.d.ts +23 -10
- package/src/Api/SettingsPanelApi.d.ts +16 -0
- package/src/Api/SettingsPanelApi.js +2 -0
- package/src/PredefinedConfig/AlertState.d.ts +6 -2
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -5
- package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -6
- package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
- package/src/PredefinedConfig/Common/Enums.js +0 -2
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +6 -1
- package/src/PredefinedConfig/Common/Types.js +1 -0
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
- package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
- package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
- package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
- package/src/Redux/Store/AdaptableStore.js +27 -2
- package/src/Strategy/AlertModule.js +12 -3
- package/src/Strategy/CalculatedColumnModule.js +4 -4
- package/src/Strategy/ChartingModule.d.ts +3 -3
- package/src/Strategy/ChartingModule.js +2 -2
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Strategy/FreeTextColumnModule.js +1 -0
- package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
- package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
- package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
- package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +3 -2
- package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -10
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +17 -13
- package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.d.ts → aggregatedBooleanExpressionFunctions.d.ts} +1 -1
- package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.js → aggregatedBooleanExpressionFunctions.js} +4 -4
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +24 -0
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +339 -0
- package/src/Utilities/ExpressionFunctions/deepMap.d.ts +35 -0
- package/src/Utilities/ExpressionFunctions/deepMap.js +283 -0
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
- package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +35 -0
- package/src/Utilities/ExpressionFunctions/groupingMap.js +105 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
- package/src/Utilities/Services/AlertService.js +8 -4
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
- package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +9 -3
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/ModuleService.js +33 -40
- package/src/Utilities/Services/QueryLanguageService.d.ts +11 -4
- package/src/Utilities/Services/QueryLanguageService.js +84 -25
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
- package/src/View/AdaptableWizardView/helper.js +2 -2
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
- package/src/View/Alert/Wizard/AlertWizard.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
- package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/EntityRulesEditor/index.js +11 -12
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/ValueSelector/index.js +1 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +2 -2
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
- package/src/View/License/LicenseWatermark.js +1 -1
- package/src/View/Query/Wizard/NamedQueryWizard.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
- package/src/agGrid/Adaptable.d.ts +1 -0
- package/src/agGrid/Adaptable.js +13 -14
- package/src/agGrid/agGridHelper.js +3 -7
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +5 -2
- package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInputReactive.js +1 -1
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
- package/src/components/ExpressionEditor/index.d.ts +2 -1
- package/src/components/ExpressionEditor/index.js +11 -4
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/Logo/index.js +8 -7
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/icons/calculated-column.js +2 -1
- package/src/metamodel/adaptable.metamodel.d.ts +233 -37
- package/src/metamodel/adaptable.metamodel.js +448 -149
- package/src/types.d.ts +5 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -11,4 +11,4 @@ export interface IPopupWithFooterProps extends DialogProps {
|
|
|
11
11
|
footer: React.ReactNode;
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
}
|
|
14
|
-
export declare const PopupWithFooter: React.ForwardRefExoticComponent<Pick<IPopupWithFooterProps, "fixed" | "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "footer" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "
|
|
14
|
+
export declare const PopupWithFooter: React.ForwardRefExoticComponent<Pick<IPopupWithFooterProps, "fixed" | "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "footer" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "name" | "colSpan" | "rowSpan" | "modal" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "onHide" | "isOpen" | "focusOnBrowserVisible" | "windowModal" | "windowModalProps" | "modalProps" | "defaultIsOpen" | "showCloseButton" | "onDismiss" | "dismissOnClickOutside" | "showModal"> & React.RefAttributes<HTMLElement>>;
|
|
@@ -7,5 +7,5 @@ export declare type TextareaProps = HTMLProps<HTMLTextAreaElement> & {
|
|
|
7
7
|
type?: string;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
} & BoxProps;
|
|
10
|
-
declare const Textarea: React.ForwardRefExoticComponent<Pick<TextareaProps, "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "
|
|
10
|
+
declare const Textarea: React.ForwardRefExoticComponent<Pick<TextareaProps, "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "name" | "colSpan" | "rowSpan" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "placehoder"> & React.RefAttributes<unknown>>;
|
|
11
11
|
export default Textarea;
|
|
@@ -4,4 +4,5 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const React = tslib_1.__importStar(require("react"));
|
|
5
5
|
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
6
|
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
-
React.createElement("path", { d: "
|
|
7
|
+
React.createElement("path", { d: "M14.67 14.4337V21.7831H9.33V14.4337H14.67ZM15.67 21.7831L20.9277 21.8072V14.4337H15.67V21.7831ZM8.33 21.7831V2.14458H3V21.7831H8.33Z", fill: "currentColor" }),
|
|
8
|
+
React.createElement("path", { d: "M19.6426 2H10.6466C9.93976 2 9.36145 2.57831 9.36145 3.28514V12.2811C9.36145 12.988 9.93976 13.5663 10.6466 13.5663H19.6426C20.3494 13.5663 20.9277 12.988 20.9277 12.2811V3.28514C20.9277 2.57831 20.3494 2 19.6426 2ZM15.8064 4.60884L16.4876 3.92771L17.3936 4.83373L18.2996 3.92771L18.9807 4.60884L18.0747 5.51486L18.9807 6.42088L18.2996 7.10201L17.3936 6.20241L16.4876 7.10843L15.8064 6.42731L16.7124 5.52128L15.8064 4.60884ZM11.4498 5.03293H14.6627V5.99679H11.4498V5.03293ZM14.8233 10.3534H13.5382V11.6386H12.5743V10.3534H11.2892V9.38956H12.5743V8.10442H13.5382V9.38956H14.8233V10.3534ZM19 11.1566H15.7871V10.1928H19V11.1566ZM19 9.5502H15.7871V8.58635H19V9.5502Z", fill: "currentColor" })));
|
|
@@ -101,6 +101,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
101
101
|
isOptional?: undefined;
|
|
102
102
|
})[];
|
|
103
103
|
};
|
|
104
|
+
AdaptableAlertQuery: {
|
|
105
|
+
name: string;
|
|
106
|
+
kind: string;
|
|
107
|
+
description: string;
|
|
108
|
+
};
|
|
104
109
|
AdaptableApi: {
|
|
105
110
|
name: string;
|
|
106
111
|
kind: string;
|
|
@@ -139,6 +144,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
139
144
|
reference: string;
|
|
140
145
|
})[];
|
|
141
146
|
};
|
|
147
|
+
AdaptableCalculatedColumnQuery: {
|
|
148
|
+
name: string;
|
|
149
|
+
kind: string;
|
|
150
|
+
description: string;
|
|
151
|
+
};
|
|
142
152
|
AdaptableColumn: {
|
|
143
153
|
name: string;
|
|
144
154
|
kind: string;
|
|
@@ -310,6 +320,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
310
320
|
kind: string;
|
|
311
321
|
description: string;
|
|
312
322
|
};
|
|
323
|
+
AdaptableModule: {
|
|
324
|
+
name: string;
|
|
325
|
+
kind: string;
|
|
326
|
+
description: string;
|
|
327
|
+
};
|
|
313
328
|
AdaptableObject: {
|
|
314
329
|
name: string;
|
|
315
330
|
kind: string;
|
|
@@ -349,8 +364,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
349
364
|
description: string;
|
|
350
365
|
uiLabel: string;
|
|
351
366
|
isOptional: boolean;
|
|
352
|
-
gridInfo: string;
|
|
353
367
|
reference: string;
|
|
368
|
+
gridInfo?: undefined;
|
|
354
369
|
defaultValue?: undefined;
|
|
355
370
|
} | {
|
|
356
371
|
name: string;
|
|
@@ -358,8 +373,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
358
373
|
description: string;
|
|
359
374
|
uiLabel: string;
|
|
360
375
|
isOptional: boolean;
|
|
376
|
+
gridInfo: string;
|
|
361
377
|
reference: string;
|
|
362
|
-
gridInfo?: undefined;
|
|
363
378
|
defaultValue?: undefined;
|
|
364
379
|
} | {
|
|
365
380
|
name: string;
|
|
@@ -449,6 +464,39 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
449
464
|
reference?: undefined;
|
|
450
465
|
})[];
|
|
451
466
|
};
|
|
467
|
+
AdaptableQLOptions: {
|
|
468
|
+
name: string;
|
|
469
|
+
kind: string;
|
|
470
|
+
description: string;
|
|
471
|
+
properties: ({
|
|
472
|
+
name: string;
|
|
473
|
+
kind: string;
|
|
474
|
+
description: string;
|
|
475
|
+
uiLabel: string;
|
|
476
|
+
isOptional: boolean;
|
|
477
|
+
gridInfo: string;
|
|
478
|
+
defaultValue: string;
|
|
479
|
+
reference?: undefined;
|
|
480
|
+
} | {
|
|
481
|
+
name: string;
|
|
482
|
+
kind: string;
|
|
483
|
+
description: string;
|
|
484
|
+
uiLabel: string;
|
|
485
|
+
isOptional: boolean;
|
|
486
|
+
reference: string;
|
|
487
|
+
gridInfo?: undefined;
|
|
488
|
+
defaultValue?: undefined;
|
|
489
|
+
} | {
|
|
490
|
+
name: string;
|
|
491
|
+
kind: string;
|
|
492
|
+
description: string;
|
|
493
|
+
uiLabel: string;
|
|
494
|
+
isOptional: boolean;
|
|
495
|
+
gridInfo: string;
|
|
496
|
+
defaultValue: string;
|
|
497
|
+
reference: string;
|
|
498
|
+
})[];
|
|
499
|
+
};
|
|
452
500
|
AdaptableReadyInfo: {
|
|
453
501
|
name: string;
|
|
454
502
|
kind: string;
|
|
@@ -705,6 +753,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
705
753
|
defaultValue: string;
|
|
706
754
|
})[];
|
|
707
755
|
};
|
|
756
|
+
AlertRule: {
|
|
757
|
+
name: string;
|
|
758
|
+
kind: string;
|
|
759
|
+
description: string;
|
|
760
|
+
};
|
|
708
761
|
AlertState: {
|
|
709
762
|
name: string;
|
|
710
763
|
kind: string;
|
|
@@ -892,6 +945,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
892
945
|
reference: string;
|
|
893
946
|
}[];
|
|
894
947
|
};
|
|
948
|
+
CellColorRange: {
|
|
949
|
+
name: string;
|
|
950
|
+
kind: string;
|
|
951
|
+
description: string;
|
|
952
|
+
properties: ({
|
|
953
|
+
name: string;
|
|
954
|
+
kind: string;
|
|
955
|
+
description: string;
|
|
956
|
+
uiLabel: string;
|
|
957
|
+
isOptional?: undefined;
|
|
958
|
+
} | {
|
|
959
|
+
name: string;
|
|
960
|
+
kind: string;
|
|
961
|
+
description: string;
|
|
962
|
+
uiLabel: string;
|
|
963
|
+
isOptional: boolean;
|
|
964
|
+
})[];
|
|
965
|
+
};
|
|
895
966
|
CellHighlightInfo: {
|
|
896
967
|
name: string;
|
|
897
968
|
kind: string;
|
|
@@ -992,6 +1063,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
992
1063
|
uiLabel: string;
|
|
993
1064
|
}[];
|
|
994
1065
|
};
|
|
1066
|
+
ColumnComparison: {
|
|
1067
|
+
name: string;
|
|
1068
|
+
kind: string;
|
|
1069
|
+
description: string;
|
|
1070
|
+
properties: {
|
|
1071
|
+
name: string;
|
|
1072
|
+
kind: string;
|
|
1073
|
+
description: string;
|
|
1074
|
+
uiLabel: string;
|
|
1075
|
+
}[];
|
|
1076
|
+
};
|
|
995
1077
|
ColumnFilter: {
|
|
996
1078
|
name: string;
|
|
997
1079
|
kind: string;
|
|
@@ -1039,6 +1121,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1039
1121
|
uiLabel: string;
|
|
1040
1122
|
}[];
|
|
1041
1123
|
};
|
|
1124
|
+
ColumnStyle: {
|
|
1125
|
+
name: string;
|
|
1126
|
+
kind: string;
|
|
1127
|
+
description: string;
|
|
1128
|
+
properties: ({
|
|
1129
|
+
name: string;
|
|
1130
|
+
kind: string;
|
|
1131
|
+
description: string;
|
|
1132
|
+
uiLabel: string;
|
|
1133
|
+
isOptional: boolean;
|
|
1134
|
+
reference?: undefined;
|
|
1135
|
+
} | {
|
|
1136
|
+
name: string;
|
|
1137
|
+
kind: string;
|
|
1138
|
+
description: string;
|
|
1139
|
+
uiLabel: string;
|
|
1140
|
+
isOptional: boolean;
|
|
1141
|
+
reference: string;
|
|
1142
|
+
})[];
|
|
1143
|
+
};
|
|
1042
1144
|
ColumnValuesComparer: {
|
|
1043
1145
|
name: string;
|
|
1044
1146
|
kind: string;
|
|
@@ -1185,6 +1287,33 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1185
1287
|
uiLabel: string;
|
|
1186
1288
|
}[];
|
|
1187
1289
|
};
|
|
1290
|
+
CustomSettingsPanel: {
|
|
1291
|
+
name: string;
|
|
1292
|
+
kind: string;
|
|
1293
|
+
description: string;
|
|
1294
|
+
properties: ({
|
|
1295
|
+
name: string;
|
|
1296
|
+
kind: string;
|
|
1297
|
+
description: string;
|
|
1298
|
+
uiLabel: string;
|
|
1299
|
+
isOptional: boolean;
|
|
1300
|
+
reference: string;
|
|
1301
|
+
} | {
|
|
1302
|
+
name: string;
|
|
1303
|
+
kind: string;
|
|
1304
|
+
description: string;
|
|
1305
|
+
uiLabel: string;
|
|
1306
|
+
isOptional?: undefined;
|
|
1307
|
+
reference?: undefined;
|
|
1308
|
+
} | {
|
|
1309
|
+
name: string;
|
|
1310
|
+
kind: string;
|
|
1311
|
+
description: string;
|
|
1312
|
+
uiLabel: string;
|
|
1313
|
+
isOptional: boolean;
|
|
1314
|
+
reference?: undefined;
|
|
1315
|
+
})[];
|
|
1316
|
+
};
|
|
1188
1317
|
CustomSort: {
|
|
1189
1318
|
name: string;
|
|
1190
1319
|
kind: string;
|
|
@@ -1767,6 +1896,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1767
1896
|
kind: string;
|
|
1768
1897
|
description: string;
|
|
1769
1898
|
};
|
|
1899
|
+
ExpressionOptions: {
|
|
1900
|
+
name: string;
|
|
1901
|
+
kind: string;
|
|
1902
|
+
description: string;
|
|
1903
|
+
properties: ({
|
|
1904
|
+
name: string;
|
|
1905
|
+
kind: string;
|
|
1906
|
+
description: string;
|
|
1907
|
+
uiLabel: string;
|
|
1908
|
+
isOptional: boolean;
|
|
1909
|
+
gridInfo: string;
|
|
1910
|
+
defaultValue: string;
|
|
1911
|
+
reference: string;
|
|
1912
|
+
} | {
|
|
1913
|
+
name: string;
|
|
1914
|
+
kind: string;
|
|
1915
|
+
description: string;
|
|
1916
|
+
uiLabel: string;
|
|
1917
|
+
isOptional: boolean;
|
|
1918
|
+
gridInfo: string;
|
|
1919
|
+
defaultValue: string;
|
|
1920
|
+
reference?: undefined;
|
|
1921
|
+
})[];
|
|
1922
|
+
};
|
|
1770
1923
|
FDC3Context: {
|
|
1771
1924
|
name: string;
|
|
1772
1925
|
kind: string;
|
|
@@ -2247,6 +2400,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2247
2400
|
reference?: undefined;
|
|
2248
2401
|
})[];
|
|
2249
2402
|
};
|
|
2403
|
+
GradientStyle: {
|
|
2404
|
+
name: string;
|
|
2405
|
+
kind: string;
|
|
2406
|
+
description: string;
|
|
2407
|
+
properties: ({
|
|
2408
|
+
name: string;
|
|
2409
|
+
kind: string;
|
|
2410
|
+
description: string;
|
|
2411
|
+
uiLabel: string;
|
|
2412
|
+
isOptional: boolean;
|
|
2413
|
+
reference?: undefined;
|
|
2414
|
+
} | {
|
|
2415
|
+
name: string;
|
|
2416
|
+
kind: string;
|
|
2417
|
+
description: string;
|
|
2418
|
+
uiLabel: string;
|
|
2419
|
+
isOptional: boolean;
|
|
2420
|
+
reference: string;
|
|
2421
|
+
})[];
|
|
2422
|
+
};
|
|
2250
2423
|
GridApi: {
|
|
2251
2424
|
name: string;
|
|
2252
2425
|
kind: string;
|
|
@@ -2671,6 +2844,36 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2671
2844
|
kind: string;
|
|
2672
2845
|
description: string;
|
|
2673
2846
|
};
|
|
2847
|
+
PercentBarStyle: {
|
|
2848
|
+
name: string;
|
|
2849
|
+
kind: string;
|
|
2850
|
+
description: string;
|
|
2851
|
+
properties: ({
|
|
2852
|
+
name: string;
|
|
2853
|
+
kind: string;
|
|
2854
|
+
description: string;
|
|
2855
|
+
uiLabel: string;
|
|
2856
|
+
isOptional: boolean;
|
|
2857
|
+
defaultValue: string;
|
|
2858
|
+
reference?: undefined;
|
|
2859
|
+
} | {
|
|
2860
|
+
name: string;
|
|
2861
|
+
kind: string;
|
|
2862
|
+
description: string;
|
|
2863
|
+
uiLabel: string;
|
|
2864
|
+
isOptional: boolean;
|
|
2865
|
+
defaultValue?: undefined;
|
|
2866
|
+
reference?: undefined;
|
|
2867
|
+
} | {
|
|
2868
|
+
name: string;
|
|
2869
|
+
kind: string;
|
|
2870
|
+
description: string;
|
|
2871
|
+
uiLabel: string;
|
|
2872
|
+
isOptional: boolean;
|
|
2873
|
+
reference: string;
|
|
2874
|
+
defaultValue?: undefined;
|
|
2875
|
+
})[];
|
|
2876
|
+
};
|
|
2674
2877
|
PermittedValues: {
|
|
2675
2878
|
name: string;
|
|
2676
2879
|
kind: string;
|
|
@@ -2808,30 +3011,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2808
3011
|
uiLabel: string;
|
|
2809
3012
|
}[];
|
|
2810
3013
|
};
|
|
2811
|
-
QueryLanguageOptions: {
|
|
2812
|
-
name: string;
|
|
2813
|
-
kind: string;
|
|
2814
|
-
description: string;
|
|
2815
|
-
properties: ({
|
|
2816
|
-
name: string;
|
|
2817
|
-
kind: string;
|
|
2818
|
-
description: string;
|
|
2819
|
-
uiLabel: string;
|
|
2820
|
-
isOptional: boolean;
|
|
2821
|
-
gridInfo: string;
|
|
2822
|
-
defaultValue: string;
|
|
2823
|
-
reference: string;
|
|
2824
|
-
} | {
|
|
2825
|
-
name: string;
|
|
2826
|
-
kind: string;
|
|
2827
|
-
description: string;
|
|
2828
|
-
uiLabel: string;
|
|
2829
|
-
isOptional: boolean;
|
|
2830
|
-
gridInfo: string;
|
|
2831
|
-
defaultValue: string;
|
|
2832
|
-
reference?: undefined;
|
|
2833
|
-
})[];
|
|
2834
|
-
};
|
|
2835
3014
|
QueryState: {
|
|
2836
3015
|
name: string;
|
|
2837
3016
|
kind: string;
|
|
@@ -3032,7 +3211,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3032
3211
|
isOptional: boolean;
|
|
3033
3212
|
gridInfo: string;
|
|
3034
3213
|
defaultValue: string;
|
|
3035
|
-
reference?: undefined;
|
|
3036
3214
|
} | {
|
|
3037
3215
|
name: string;
|
|
3038
3216
|
kind: string;
|
|
@@ -3041,16 +3219,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3041
3219
|
isOptional: boolean;
|
|
3042
3220
|
defaultValue: string;
|
|
3043
3221
|
gridInfo?: undefined;
|
|
3044
|
-
reference?: undefined;
|
|
3045
|
-
} | {
|
|
3046
|
-
name: string;
|
|
3047
|
-
kind: string;
|
|
3048
|
-
description: string;
|
|
3049
|
-
uiLabel: string;
|
|
3050
|
-
isOptional: boolean;
|
|
3051
|
-
gridInfo: string;
|
|
3052
|
-
defaultValue: string;
|
|
3053
|
-
reference: string;
|
|
3054
3222
|
})[];
|
|
3055
3223
|
};
|
|
3056
3224
|
SelectedCellInfo: {
|
|
@@ -3087,6 +3255,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3087
3255
|
reference: string;
|
|
3088
3256
|
}[];
|
|
3089
3257
|
};
|
|
3258
|
+
SettingsPanelApi: {
|
|
3259
|
+
name: string;
|
|
3260
|
+
kind: string;
|
|
3261
|
+
description: string;
|
|
3262
|
+
properties: {
|
|
3263
|
+
name: string;
|
|
3264
|
+
kind: string;
|
|
3265
|
+
description: string;
|
|
3266
|
+
uiLabel: string;
|
|
3267
|
+
}[];
|
|
3268
|
+
};
|
|
3090
3269
|
SharedEntity: {
|
|
3091
3270
|
name: string;
|
|
3092
3271
|
kind: string;
|
|
@@ -3205,6 +3384,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3205
3384
|
reference?: undefined;
|
|
3206
3385
|
})[];
|
|
3207
3386
|
};
|
|
3387
|
+
StringFormatterOptions: {
|
|
3388
|
+
name: string;
|
|
3389
|
+
kind: string;
|
|
3390
|
+
description: string;
|
|
3391
|
+
properties: {
|
|
3392
|
+
name: string;
|
|
3393
|
+
kind: string;
|
|
3394
|
+
description: string;
|
|
3395
|
+
uiLabel: string;
|
|
3396
|
+
isOptional: boolean;
|
|
3397
|
+
}[];
|
|
3398
|
+
};
|
|
3208
3399
|
SuspendableObject: {
|
|
3209
3400
|
name: string;
|
|
3210
3401
|
kind: string;
|
|
@@ -3440,6 +3631,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3440
3631
|
reference?: undefined;
|
|
3441
3632
|
})[];
|
|
3442
3633
|
};
|
|
3634
|
+
ToolPanelVisibilityMode: {
|
|
3635
|
+
name: string;
|
|
3636
|
+
kind: string;
|
|
3637
|
+
description: string;
|
|
3638
|
+
};
|
|
3443
3639
|
UserInterfaceApi: {
|
|
3444
3640
|
name: string;
|
|
3445
3641
|
kind: string;
|