@adaptabletools/adaptable 13.0.0-canary.1 → 13.0.0-canary.3

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.
Files changed (124) hide show
  1. package/agGrid.d.ts +23 -1
  2. package/agGrid.js +23 -1
  3. package/base.css +1 -0
  4. package/bundle.cjs.js +158 -158
  5. package/index.css +1 -0
  6. package/package.json +3 -3
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -0
  10. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +42 -14
  11. package/src/Api/ConditionalStyleApi.d.ts +20 -0
  12. package/src/Api/FormatColumnApi.d.ts +42 -3
  13. package/src/Api/Implementation/DashboardApiImpl.js +2 -3
  14. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +17 -1
  15. package/src/Api/Implementation/FormatColumnApiImpl.js +94 -14
  16. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +0 -2
  17. package/src/Api/Implementation/QueryLanguageApiImpl.js +0 -3
  18. package/src/Api/QueryLanguageApi.d.ts +0 -5
  19. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
  20. package/src/PredefinedConfig/Common/AdaptablePredicate.js +37 -37
  21. package/src/PredefinedConfig/FormatColumnState.d.ts +19 -0
  22. package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -0
  23. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
  24. package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
  25. package/src/Redux/Store/AdaptableStore.js +2 -0
  26. package/src/Strategy/FormatColumnModule.d.ts +2 -9
  27. package/src/Strategy/FormatColumnModule.js +5 -1
  28. package/src/Strategy/Interface/IModule.d.ts +10 -10
  29. package/src/Strategy/Utilities/Alert/getAlertBehaviourViewItems.d.ts +2 -2
  30. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +5 -5
  31. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
  32. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -1
  33. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -0
  34. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +4 -1
  35. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
  36. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +4 -1
  37. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -0
  38. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +4 -1
  39. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -0
  40. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
  41. package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
  42. package/src/Utilities/Extensions/TypeExtensions.js +5 -0
  43. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
  44. package/src/Utilities/Services/LicenseService.js +1 -1
  45. package/src/Utilities/Services/QueryLanguageService.d.ts +5 -3
  46. package/src/Utilities/Services/QueryLanguageService.js +92 -39
  47. package/src/Utilities/license/LicenseDetails.d.ts +1 -1
  48. package/src/Utilities/license/decode.d.ts +1 -0
  49. package/src/Utilities/license/decode.js +1 -1
  50. package/src/View/AdaptablePopover/index.d.ts +2 -2
  51. package/src/View/AdaptableView.d.ts +3 -3
  52. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.d.ts +1 -1
  53. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +1 -1
  54. package/src/View/AdaptableWizardView/index.d.ts +1 -1
  55. package/src/View/ColorPicker.d.ts +1 -5
  56. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  57. package/src/View/Components/Buttons/ButtonEdit.d.ts +1 -1
  58. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +1 -1
  59. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +2 -2
  60. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +1 -1
  61. package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -1
  62. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +1 -1
  63. package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +1 -1
  64. package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +1 -1
  65. package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
  66. package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
  67. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +9 -0
  68. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +66 -0
  69. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +20 -2
  70. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -1
  71. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +14 -0
  72. package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
  73. package/src/View/FormatColumn/Wizard/constants.js +4 -0
  74. package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
  75. package/src/View/Layout/Wizard/sections/SettingsSection.d.ts +2 -2
  76. package/src/View/License/LicenseWatermark.d.ts +1 -1
  77. package/src/View/StateManagement/components/ClearButton.d.ts +1 -1
  78. package/src/View/StateManagement/components/LoadButton.d.ts +1 -1
  79. package/src/View/StatusBar/StatusBarPanel.d.ts +4 -4
  80. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +3 -3
  81. package/src/View/Wizard/OnePageAdaptableWizard.js +2 -2
  82. package/src/View/Wizard/OnePageWizards.d.ts +3 -3
  83. package/src/View/Wizard/OnePageWizards.js +2 -2
  84. package/src/agGrid/Adaptable.d.ts +11 -0
  85. package/src/agGrid/Adaptable.js +134 -66
  86. package/src/agGrid/FilterWrapper.js +4 -5
  87. package/src/agGrid/FloatingFilterWrapper.js +3 -4
  88. package/src/agGrid/createAgStatusPanelComponent.d.ts +1 -0
  89. package/src/agGrid/createAgStatusPanelComponent.js +3 -3
  90. package/src/components/CheckBox/index.d.ts +1 -1
  91. package/src/components/Datepicker/index.d.ts +1 -1
  92. package/src/components/Dialog/index.d.ts +4 -2
  93. package/src/components/Dialog/index.js +2 -2
  94. package/src/components/DropdownButton/index.d.ts +21 -4
  95. package/src/components/DropdownButton/index.js +5 -6
  96. package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
  97. package/src/components/ExpressionEditor/EditorInput.js +1 -1
  98. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
  99. package/src/components/Input/index.d.ts +1 -1
  100. package/src/components/List/ListGroupItem/index.d.ts +4 -2
  101. package/src/components/Loader/Loader.d.ts +2 -2
  102. package/src/components/Logo/index.d.ts +1 -1
  103. package/src/components/Modal/index.d.ts +1 -1
  104. package/src/components/PopupWithFooter.d.ts +2 -2
  105. package/src/components/ProgressIndicator/ProgressIndicator.d.ts +1 -1
  106. package/src/components/SelectList.d.ts +1 -1
  107. package/src/components/SimpleButton/index.d.ts +4 -5
  108. package/src/components/SimpleButton/index.js +3 -2
  109. package/src/components/StylePreview.d.ts +1 -1
  110. package/src/components/Tag/Tag.d.ts +1 -1
  111. package/src/components/Textarea/index.d.ts +6 -4
  112. package/src/components/ToggleButton/index.d.ts +1 -1
  113. package/src/components/WindowModal/WindowModal.d.ts +1 -1
  114. package/src/components/icons/index.d.ts +3 -2
  115. package/src/components/icons/layout.d.ts +2 -1
  116. package/src/components/utils/useContainerScrollObserver/index.d.ts +1 -1
  117. package/src/metamodel/adaptable.metamodel.d.ts +47 -29
  118. package/src/metamodel/adaptable.metamodel.js +1 -1
  119. package/src/parser/src/types.d.ts +6 -3
  120. package/src/renderReactRoot.d.ts +3 -0
  121. package/src/renderReactRoot.js +54 -0
  122. package/src/types.d.ts +2 -2
  123. package/version.d.ts +1 -1
  124. package/version.js +1 -1
@@ -16,7 +16,7 @@ const baseClassName = 'ab-DropdownButton';
16
16
  const defaultListItemStyle = {
17
17
  padding: 'var(--ab-cmp-dropdownbutton-list-item__padding)',
18
18
  };
19
- const DropdownButton = React.forwardRef((props, ref) => {
19
+ const DropdownButton = React.forwardRef((props, theRef) => {
20
20
  let { columns, overlayProps, listOffset = 10, collapseOnItemClick = true, focusOnClear = true, idProperty = 'id', isItemDisabled, items, children, listMinWidth = 100, listStyle, listItemStyle, listItemClassName, constrainTo, showClearButton = false, onClear, clearButtonProps, onExpand, onCollapse, showToggleIcon = true } = props, domProps = tslib_1.__rest(props, ["columns", "overlayProps", "listOffset", "collapseOnItemClick", "focusOnClear", "idProperty", "isItemDisabled", "items", "children", "listMinWidth", "listStyle", "listItemStyle", "listItemClassName", "constrainTo", "showClearButton", "onClear", "clearButtonProps", "onExpand", "onCollapse", "showToggleIcon"]);
21
21
  isItemDisabled = isItemDisabled || ((item) => item.disabled);
22
22
  if (!columns) {
@@ -79,7 +79,6 @@ const DropdownButton = React.forwardRef((props, ref) => {
79
79
  }
80
80
  const dropdownButtonClassName = props.className;
81
81
  const className = (0, join_1.default)(props.className, baseClassName);
82
- //const
83
82
  const positionerRef = (0, react_1.useRef)(null);
84
83
  const { expanded, toggle, setExpanded, positionInfo } = (0, useExpanded_1.default)(props, positionerRef);
85
84
  const { maxHeight: maxListHeight, maxWidth: maxListWidth } = positionInfo;
@@ -108,14 +107,14 @@ const DropdownButton = React.forwardRef((props, ref) => {
108
107
  } }, overlayProps, { target: domProps.tooltip ? (node) => node.previousSibling : undefined }),
109
108
  React.createElement(SimpleButton_1.default, Object.assign({ iconPosition: "end" }, (showToggleIcon && { icon, paddingRight: 0 }), domProps, { ref: (btn) => {
110
109
  buttonRef.current = btn;
111
- if (!ref) {
110
+ if (!theRef) {
112
111
  return;
113
112
  }
114
- if (typeof ref === 'function') {
115
- ref(btn);
113
+ if (typeof theRef === 'function') {
114
+ theRef(btn);
116
115
  }
117
116
  else {
118
- ref.current = btn;
117
+ theRef.current = btn;
119
118
  }
120
119
  }, style: domProps.style, className: className, onClick: (e) => {
121
120
  if (domProps.onClick) {
@@ -7,7 +7,7 @@ interface BaseEditorInputProps {
7
7
  onChange: (value: string) => void;
8
8
  disabled?: boolean;
9
9
  onSelectedFunctionChange: (expressionFunction: ExpressionFunction | null) => void;
10
- expressionFunctions: ExpressionFunctionMap;
10
+ expressionFunctions: ExpressionFunctionMap<string>;
11
11
  editorButtons: OperatorEditorButton[];
12
12
  testData: any;
13
13
  placeholder?: string;
@@ -13,7 +13,7 @@ const editorButtonsCumulativeAggregatedScalar_1 = require("./editorButtonsCumula
13
13
  function EditorInput(props) {
14
14
  const moduleExpressionFunctions = props.api.internalApi
15
15
  .getQueryLanguageService()
16
- .getModuleExpressionFunctions(props.module);
16
+ .getModuleExpressionFunctionsMap(props.module);
17
17
  const getFilteredAggregatedExpressionFunctions = (availableAggregatedExpressionFunctions, type) => {
18
18
  const sourceExpressionFunctions = type === 'aggregatedScalar'
19
19
  ? aggregatedScalarExpressionFunctions_1.aggregatedExpressionFunctions
@@ -15,7 +15,7 @@ const editorButtonsAggregatedBoolean_1 = require("./editorButtonsAggregatedBoole
15
15
  function EditorInputWithWhereClause(props) {
16
16
  const moduleExpressionFunctions = props.api.internalApi
17
17
  .getQueryLanguageService()
18
- .getModuleExpressionFunctions(props.module);
18
+ .getModuleExpressionFunctionsMap(props.module);
19
19
  const reactiveExpressionFns = props.type === 'observable'
20
20
  ? moduleExpressionFunctions.observableFunctions
21
21
  : moduleExpressionFunctions.aggregatedBooleanFunctions;
@@ -8,5 +8,5 @@ export declare type InputProps = HTMLProps<HTMLInputElement> & {
8
8
  disabled?: boolean;
9
9
  list?: any;
10
10
  } & BoxProps;
11
- declare const Input: React.ForwardRefExoticComponent<Pick<InputProps, "max" | "required" | "type" | "data" | "default" | "high" | "low" | "key" | "id" | "media" | "height" | "width" | "start" | "open" | "name" | "alignSelf" | "backgroundColor" | "color" | "content" | "flex" | "fontSize" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "value" | "hidden" | "cite" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "acceptCharset" | "action" | "method" | "noValidate" | "target" | "accessKey" | "draggable" | "lang" | "className" | "prefix" | "children" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "async" | "disabled" | "multiple" | "size" | "manifest" | "m" | "wrap" | "accept" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "marginHeight" | "marginWidth" | "maxLength" | "mediaGroup" | "min" | "minLength" | "muted" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "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" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "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" | "onClick" | "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" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "bg" | "css" | "placehoder"> & React.RefAttributes<HTMLInputElement>>;
11
+ declare const Input: React.ForwardRefExoticComponent<Pick<InputProps, "max" | "required" | "type" | "data" | "default" | "high" | "low" | "key" | "id" | "media" | "height" | "width" | "start" | "open" | "name" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "color" | "content" | "display" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "justifyContent" | "justifyItems" | "justifySelf" | "letterSpacing" | "lineHeight" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflow" | "overflowX" | "overflowY" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "textAlign" | "translate" | "verticalAlign" | "value" | "hidden" | "cite" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "acceptCharset" | "action" | "method" | "noValidate" | "target" | "accessKey" | "draggable" | "lang" | "className" | "prefix" | "children" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "async" | "disabled" | "multiple" | "size" | "manifest" | "m" | "wrap" | "accept" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "marginHeight" | "marginWidth" | "maxLength" | "mediaGroup" | "min" | "minLength" | "muted" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "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" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "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" | "onClick" | "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" | "bg" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "variant" | "tx" | "sx" | "placehoder"> & React.RefAttributes<HTMLInputElement>>;
12
12
  export default Input;
@@ -1,10 +1,12 @@
1
1
  import * as React from 'react';
2
2
  import { ReactComponentLike } from 'prop-types';
3
- declare const ListGroupItem: React.ForwardRefExoticComponent<Pick<React.HTMLProps<HTMLElement> & {
3
+ import { HTMLProps } from 'react';
4
+ declare type TypeProps = HTMLProps<HTMLElement> & {
4
5
  factory?: string | ReactComponentLike;
5
6
  active?: boolean;
6
7
  noZebra?: boolean;
7
8
  index?: number;
8
9
  selectionId?: string | number;
9
- }, "index" | "max" | "required" | "type" | "data" | "default" | "high" | "low" | "key" | "id" | "media" | "height" | "width" | "active" | "start" | "open" | "name" | "color" | "content" | "translate" | "value" | "hidden" | "cite" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "acceptCharset" | "action" | "method" | "noValidate" | "target" | "accessKey" | "draggable" | "lang" | "className" | "prefix" | "children" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "async" | "disabled" | "multiple" | "size" | "manifest" | "wrap" | "accept" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "marginHeight" | "marginWidth" | "maxLength" | "mediaGroup" | "min" | "minLength" | "muted" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "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" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "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" | "onClick" | "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" | "factory" | "noZebra" | "selectionId"> & React.RefAttributes<unknown>>;
10
+ };
11
+ declare const ListGroupItem: React.ForwardRefExoticComponent<Pick<TypeProps, "index" | "max" | "required" | "type" | "data" | "default" | "high" | "low" | "key" | "id" | "media" | "height" | "width" | "active" | "start" | "open" | "name" | "color" | "content" | "translate" | "value" | "hidden" | "cite" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "acceptCharset" | "action" | "method" | "noValidate" | "target" | "accessKey" | "draggable" | "lang" | "className" | "prefix" | "children" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "async" | "disabled" | "multiple" | "size" | "manifest" | "wrap" | "accept" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "marginHeight" | "marginWidth" | "maxLength" | "mediaGroup" | "min" | "minLength" | "muted" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "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" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "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" | "onClick" | "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" | "factory" | "noZebra" | "selectionId"> & React.RefAttributes<unknown>>;
10
12
  export default ListGroupItem;
@@ -2,6 +2,6 @@ import * as React from 'react';
2
2
  export declare const LoaderSpinner: React.FunctionComponent<{
3
3
  style?: React.CSSProperties;
4
4
  }>;
5
- export declare const Loader: React.FunctionComponent<{
5
+ export declare const Loader: React.FunctionComponent<React.PropsWithChildren<{
6
6
  style?: React.CSSProperties;
7
- }>;
7
+ }>>;
@@ -2,5 +2,5 @@ import * as React from 'react';
2
2
  interface LogoProps {
3
3
  style?: React.CSSProperties;
4
4
  }
5
- export declare const Logo: React.FunctionComponent<LogoProps>;
5
+ export declare const Logo: React.FunctionComponent<React.PropsWithChildren<LogoProps>>;
6
6
  export {};
@@ -6,4 +6,4 @@ export interface ModalProps extends FlexProps {
6
6
  backdropZIndexOffset?: number;
7
7
  onBringToFront?: () => void;
8
8
  }
9
- export declare const Modal: React.FunctionComponent<ModalProps>;
9
+ export declare const Modal: React.FunctionComponent<React.PropsWithChildren<ModalProps>>;
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { DialogProps } from './Dialog';
2
+ import { DialogProps, DialogRefType } from './Dialog';
3
3
  /**
4
4
  * This is the main popup that we use - so all function popups will appear here.
5
5
  */
@@ -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" | "type" | "data" | "default" | "high" | "low" | "key" | "id" | "media" | "height" | "width" | "start" | "open" | "name" | "alignSelf" | "backgroundColor" | "color" | "content" | "flex" | "fontSize" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "opacity" | "order" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "value" | "hidden" | "cite" | "dir" | "footer" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "acceptCharset" | "action" | "method" | "noValidate" | "target" | "accessKey" | "draggable" | "lang" | "className" | "prefix" | "children" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "async" | "disabled" | "multiple" | "size" | "manifest" | "m" | "wrap" | "accept" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "marginHeight" | "marginWidth" | "maxLength" | "mediaGroup" | "min" | "minLength" | "muted" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "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" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "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" | "onClick" | "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" | "modal" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "bg" | "css" | "showCloseButton" | "isOpen" | "focusOnBrowserVisible" | "windowModal" | "windowModalProps" | "modalProps" | "defaultIsOpen" | "onDismiss" | "dismissOnClickOutside" | "onHide" | "showModal"> & React.RefAttributes<HTMLElement>>;
14
+ export declare const PopupWithFooter: React.ForwardRefExoticComponent<IPopupWithFooterProps & React.RefAttributes<DialogRefType>>;
@@ -1,2 +1,2 @@
1
1
  import * as React from 'react';
2
- export declare const ProgressIndicator: React.FunctionComponent;
2
+ export declare const ProgressIndicator: React.FunctionComponent<unknown>;
@@ -7,4 +7,4 @@ export interface SelectListProps {
7
7
  options: SelectListOption[];
8
8
  onChange: (option: SelectListOption) => void;
9
9
  }
10
- export declare const SelectList: React.FunctionComponent<SelectListProps>;
10
+ export declare const SelectList: React.FunctionComponent<React.PropsWithChildren<SelectListProps>>;
@@ -5,7 +5,7 @@ import { AccessLevel } from '../../PredefinedConfig/Common/Entitlement';
5
5
  import { OverlayProps } from '../OverlayTrigger/Overlay';
6
6
  import { AdaptableIcon } from '../../PredefinedConfig/Common/AdaptableIcon';
7
7
  export declare const baseClassName = "ab-SimpleButton";
8
- export interface SimpleButtonProps extends ButtonProps {
8
+ export interface SimpleButtonProps extends Omit<ButtonProps, 'ref'> {
9
9
  tooltip?: string;
10
10
  variant?: 'text' | 'outlined' | 'raised';
11
11
  tone?: 'success' | 'error' | 'neutral' | 'none' | 'warning' | 'info' | 'accent';
@@ -14,10 +14,9 @@ export interface SimpleButtonProps extends ButtonProps {
14
14
  iconPosition?: 'start' | 'end';
15
15
  disabled?: boolean;
16
16
  accessLevel?: AccessLevel;
17
- children?: ReactNode | ReactNode[];
18
17
  tooltipAnchor?: OverlayProps['anchor'];
19
18
  }
20
- declare const SimpleButton: React.FunctionComponent<SimpleButtonProps> & {
21
- ref?: React.Ref<HTMLButtonElement>;
22
- };
19
+ declare const SimpleButton: React.ForwardRefExoticComponent<SimpleButtonProps & {
20
+ children?: React.ReactNode;
21
+ } & React.RefAttributes<HTMLButtonElement>>;
23
22
  export default SimpleButton;
@@ -10,7 +10,7 @@ const Tooltip_1 = tslib_1.__importDefault(require("../Tooltip"));
10
10
  const theme_1 = tslib_1.__importDefault(require("../../theme"));
11
11
  const AdaptableIconComponent_1 = require("../AdaptableIconComponent");
12
12
  exports.baseClassName = 'ab-SimpleButton';
13
- const SimpleButton = React.forwardRef((props, ref) => {
13
+ const SimpleButton = React.forwardRef((props, theRef) => {
14
14
  var _a, _b;
15
15
  let { children, disabled, variant = 'outlined', tone = 'neutral', iconPosition = 'start', iconSize, className, icon, tooltip, tooltipAnchor, accessLevel: accessLevel, type } = props, buttonProps = tslib_1.__rest(props, ["children", "disabled", "variant", "tone", "iconPosition", "iconSize", "className", "icon", "tooltip", "tooltipAnchor", "accessLevel", "type"]);
16
16
  let adaptableInternalIcon;
@@ -76,7 +76,7 @@ const SimpleButton = React.forwardRef((props, ref) => {
76
76
  const fontWeight = buttonProps.fontWeight
77
77
  ? (_b = (_a = theme_1.default[buttonProps.fontWeight]) !== null && _a !== void 0 ? _a : buttonProps.fontWeight) !== null && _b !== void 0 ? _b : 'normal'
78
78
  : 'normal';
79
- const btn = (React.createElement(rebass_1.Button, Object.assign({}, buttonProps, { disabled: disabled, className: (0, join_1.default)(className, exports.baseClassName, disabled ? `${exports.baseClassName}--disabled` : '', fontWeight ? `${exports.baseClassName}--font-weight=${fontWeight}` : '', `${exports.baseClassName}--variant-${variant}`, `${exports.baseClassName}--tone-${tone}`), ref: ref }), children));
79
+ const btn = (React.createElement(rebass_1.Button, Object.assign({}, buttonProps, { disabled: disabled, className: (0, join_1.default)(className, exports.baseClassName, disabled ? `${exports.baseClassName}--disabled` : '', fontWeight ? `${exports.baseClassName}--font-weight=${fontWeight}` : '', `${exports.baseClassName}--variant-${variant}`, `${exports.baseClassName}--tone-${tone}`), ref: theRef }), children));
80
80
  return tooltip ? (React.createElement(Tooltip_1.default, { anchor: tooltipAnchor, label: tooltip }, btn)) : (btn);
81
81
  });
82
82
  SimpleButton.defaultProps = {
@@ -84,6 +84,7 @@ SimpleButton.defaultProps = {
84
84
  py: null,
85
85
  fontWeight: 'normal',
86
86
  m: null,
87
+ //@ts-ignore
87
88
  borderRadius: null,
88
89
  };
89
90
  exports.default = SimpleButton;
@@ -4,5 +4,5 @@ import { AdaptableStyle } from '../types';
4
4
  interface StylePreviewProps extends BoxProps {
5
5
  styleObject: AdaptableStyle;
6
6
  }
7
- export declare const StylePreview: React.FunctionComponent<StylePreviewProps>;
7
+ export declare const StylePreview: React.FunctionComponent<React.PropsWithChildren<StylePreviewProps>>;
8
8
  export {};
@@ -1,3 +1,3 @@
1
1
  import * as React from 'react';
2
2
  import { FlexProps } from 'rebass';
3
- export declare const Tag: React.FunctionComponent<FlexProps>;
3
+ export declare const Tag: React.FunctionComponent<React.PropsWithChildren<FlexProps>>;
@@ -2,14 +2,16 @@ import * as React from 'react';
2
2
  import { BoxProps } from 'rebass';
3
3
  import { HTMLProps } from 'react';
4
4
  export declare const baseClassName = "ab-Textarea";
5
- export declare type TextareaProps = HTMLProps<HTMLTextAreaElement> & {
5
+ export declare type TextareaProps = Omit<HTMLProps<HTMLTextAreaElement>, 'ref'> & {
6
6
  placehoder?: string;
7
7
  type?: string;
8
8
  disabled?: boolean;
9
- } & BoxProps;
10
- declare const Textarea: React.ForwardRefExoticComponent<Pick<React.HTMLProps<HTMLTextAreaElement> & {
9
+ value?: string;
10
+ } & Omit<BoxProps, 'ref'>;
11
+ declare const Textarea: React.ForwardRefExoticComponent<Omit<React.HTMLProps<HTMLTextAreaElement>, "ref"> & {
11
12
  placehoder?: string;
12
13
  type?: string;
13
14
  disabled?: boolean;
14
- } & BoxProps, "max" | "required" | "type" | "data" | "default" | "high" | "low" | "key" | "id" | "media" | "height" | "width" | "start" | "open" | "name" | "alignSelf" | "backgroundColor" | "color" | "content" | "flex" | "fontSize" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "value" | "hidden" | "cite" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "acceptCharset" | "action" | "method" | "noValidate" | "target" | "accessKey" | "draggable" | "lang" | "className" | "prefix" | "children" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "async" | "disabled" | "multiple" | "size" | "manifest" | "m" | "wrap" | "accept" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "marginHeight" | "marginWidth" | "maxLength" | "mediaGroup" | "min" | "minLength" | "muted" | "optimum" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "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" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "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" | "onClick" | "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" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "bg" | "css" | "placehoder"> & React.RefAttributes<unknown>>;
15
+ value?: string;
16
+ } & Omit<BoxProps, "ref"> & React.RefAttributes<HTMLInputElement | HTMLDivElement | HTMLTextAreaElement>>;
15
17
  export default Textarea;
@@ -7,5 +7,5 @@ interface ToggleButtonProps {
7
7
  style?: React.CSSProperties;
8
8
  'data-name': string;
9
9
  }
10
- export declare const ToggleButton: React.FunctionComponent<ToggleButtonProps>;
10
+ export declare const ToggleButton: React.FunctionComponent<React.PropsWithChildren<ToggleButtonProps>>;
11
11
  export {};
@@ -24,4 +24,4 @@ export interface WindowModalProps {
24
24
  };
25
25
  }) => void;
26
26
  }
27
- export declare const WindowModal: React.FunctionComponent<WindowModalProps>;
27
+ export declare const WindowModal: React.FunctionComponent<React.PropsWithChildren<WindowModalProps>>;
@@ -1,7 +1,8 @@
1
1
  import * as React from 'react';
2
- import { CSSProperties, ReactNode } from 'react';
2
+ import { CSSProperties } from 'react';
3
+ import { IconProps } from './DefaultIcon';
3
4
  import { AdaptableExternalIcon, AdaptableInternalIcon, AdaptableInternalIconName } from '../../PredefinedConfig/Common/AdaptableIcon';
4
- declare const allIcons: Record<AdaptableInternalIconName, ReactNode>;
5
+ declare const allIcons: Record<AdaptableInternalIconName, React.FunctionComponent<IconProps>>;
5
6
  export declare const Icon: ({ name, style, className, tabIndex, ...props }: {
6
7
  style?: React.CSSProperties;
7
8
  name: AdaptableInternalIconName;
@@ -1,3 +1,4 @@
1
1
  /// <reference types="react" />
2
- declare const _default: (props: any) => JSX.Element;
2
+ import { IconProps } from './DefaultIcon';
3
+ declare const _default: (props: IconProps) => JSX.Element;
3
4
  export default _default;
@@ -1,6 +1,6 @@
1
1
  declare type UseContainerScrollObserverCallback = (currentIndex: number) => void;
2
2
  export declare const useContainerScrollObserver: (callback: UseContainerScrollObserverCallback) => {
3
- ref: (node: any) => void;
3
+ ref: (node: HTMLElement) => void;
4
4
  scrollToIndex: (index: number) => void;
5
5
  };
6
6
  export {};
@@ -888,12 +888,12 @@ export declare const ADAPTABLE_METAMODEL: {
888
888
  defaultValue: string;
889
889
  })[];
890
890
  };
891
- AggregatedScalarFunctionName: {
891
+ AggregatedBooleanFunctionName: {
892
892
  name: string;
893
893
  kind: string;
894
894
  description: string;
895
895
  };
896
- AggregationFunctionName: {
896
+ AggregatedScalarFunctionName: {
897
897
  name: string;
898
898
  kind: string;
899
899
  description: string;
@@ -2418,6 +2418,11 @@ export declare const ADAPTABLE_METAMODEL: {
2418
2418
  defaultValue: string;
2419
2419
  }[];
2420
2420
  };
2421
+ DefaultExpressionFunctionsContext: {
2422
+ name: string;
2423
+ kind: string;
2424
+ description: string;
2425
+ };
2421
2426
  DeletedActionRowInfo: {
2422
2427
  name: string;
2423
2428
  kind: string;
@@ -2559,6 +2564,26 @@ export declare const ADAPTABLE_METAMODEL: {
2559
2564
  defaultValue?: undefined;
2560
2565
  })[];
2561
2566
  };
2567
+ EvaluateExpressionExternallyContext: {
2568
+ name: string;
2569
+ kind: string;
2570
+ description: string;
2571
+ properties: ({
2572
+ name: string;
2573
+ kind: string;
2574
+ description: string;
2575
+ uiLabel: string;
2576
+ isOptional: boolean;
2577
+ reference?: undefined;
2578
+ } | {
2579
+ name: string;
2580
+ kind: string;
2581
+ description: string;
2582
+ uiLabel: string;
2583
+ reference: string;
2584
+ isOptional?: undefined;
2585
+ })[];
2586
+ };
2562
2587
  EventApi: {
2563
2588
  name: string;
2564
2589
  kind: string;
@@ -2657,28 +2682,12 @@ export declare const ADAPTABLE_METAMODEL: {
2657
2682
  description: string;
2658
2683
  uiLabel: string;
2659
2684
  isOptional?: undefined;
2660
- reference?: undefined;
2661
- } | {
2662
- name: string;
2663
- kind: string;
2664
- description: string;
2665
- uiLabel: string;
2666
- isOptional: boolean;
2667
- reference?: undefined;
2668
- } | {
2669
- name: string;
2670
- kind: string;
2671
- description: string;
2672
- uiLabel: string;
2673
- reference: string;
2674
- isOptional?: undefined;
2675
2685
  } | {
2676
2686
  name: string;
2677
2687
  kind: string;
2678
2688
  description: string;
2679
2689
  uiLabel: string;
2680
2690
  isOptional: boolean;
2681
- reference: string;
2682
2691
  })[];
2683
2692
  };
2684
2693
  ExpressionFunction: {
@@ -2701,6 +2710,11 @@ export declare const ADAPTABLE_METAMODEL: {
2701
2710
  isOptional?: undefined;
2702
2711
  })[];
2703
2712
  };
2713
+ ExpressionFunctionDefinitions: {
2714
+ name: string;
2715
+ kind: string;
2716
+ description: string;
2717
+ };
2704
2718
  ExpressionFunctionDocBlock: {
2705
2719
  name: string;
2706
2720
  kind: string;
@@ -2711,6 +2725,11 @@ export declare const ADAPTABLE_METAMODEL: {
2711
2725
  kind: string;
2712
2726
  description: string;
2713
2727
  };
2728
+ ExpressionFunctionMap: {
2729
+ name: string;
2730
+ kind: string;
2731
+ description: string;
2732
+ };
2714
2733
  ExpressionOptions: {
2715
2734
  name: string;
2716
2735
  kind: string;
@@ -2723,16 +2742,6 @@ export declare const ADAPTABLE_METAMODEL: {
2723
2742
  isOptional: boolean;
2724
2743
  gridInfo?: undefined;
2725
2744
  defaultValue?: undefined;
2726
- reference?: undefined;
2727
- } | {
2728
- name: string;
2729
- kind: string;
2730
- description: string;
2731
- uiLabel: string;
2732
- isOptional: boolean;
2733
- gridInfo: string;
2734
- defaultValue: string;
2735
- reference: string;
2736
2745
  } | {
2737
2746
  name: string;
2738
2747
  kind: string;
@@ -2741,7 +2750,6 @@ export declare const ADAPTABLE_METAMODEL: {
2741
2750
  isOptional: boolean;
2742
2751
  gridInfo: string;
2743
2752
  defaultValue: string;
2744
- reference?: undefined;
2745
2753
  })[];
2746
2754
  };
2747
2755
  FDC3Column: {
@@ -3758,6 +3766,16 @@ export declare const ADAPTABLE_METAMODEL: {
3758
3766
  kind: string;
3759
3767
  description: string;
3760
3768
  };
3769
+ ModuleExpressionFunctionsContext: {
3770
+ name: string;
3771
+ kind: string;
3772
+ description: string;
3773
+ };
3774
+ ModuleExpressionFunctionsMap: {
3775
+ name: string;
3776
+ kind: string;
3777
+ description: string;
3778
+ };
3761
3779
  NamedQuery: {
3762
3780
  name: string;
3763
3781
  kind: string;