@adaptabletools/adaptable 15.3.1 → 15.3.3-canary.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/base.css +57 -2
- package/base.css.map +1 -1
- package/bundle.cjs.js +157 -157
- package/index.css +83 -2
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -0
- package/src/AdaptableOptions/ActionOptions.d.ts +6 -1
- package/src/AdaptableOptions/EditOptions.d.ts +35 -6
- package/src/AdaptableOptions/EntitlementOptions.d.ts +3 -2
- package/src/AdaptableOptions/ExportOptions.d.ts +1 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +9 -3
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
- package/src/Api/GridApi.d.ts +11 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +12 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +4 -0
- package/src/Api/Implementation/GridApiImpl.js +8 -0
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/StyledColumnApiImpl.js +12 -0
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +3 -1
- package/src/Api/Internal/StyledColumnInternalApi.js +24 -0
- package/src/Api/StyledColumnApi.d.ts +5 -0
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +1 -2
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +5 -5
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +8 -0
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/StyledColumnState.d.ts +37 -5
- package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
- package/src/Strategy/BulkUpdateModule.js +1 -1
- package/src/Strategy/CalculatedColumnModule.js +1 -1
- package/src/Strategy/CellSummaryModule.js +1 -1
- package/src/Strategy/CustomSortModule.js +1 -1
- package/src/Strategy/DashboardModule.js +2 -2
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/FilterModule.js +1 -1
- package/src/Strategy/FlashingCellModule.js +1 -1
- package/src/Strategy/FormatColumnModule.js +42 -3
- package/src/Strategy/FreeTextColumnModule.js +1 -1
- package/src/Strategy/GridInfoModule.js +2 -2
- package/src/Strategy/LayoutModule.js +7 -6
- package/src/Strategy/PlusMinusModule.js +1 -1
- package/src/Strategy/QueryModule.js +1 -1
- package/src/Strategy/QuickSearchModule.js +1 -1
- package/src/Strategy/ShortcutModule.js +1 -1
- package/src/Strategy/SmartEditModule.js +1 -1
- package/src/Strategy/StateManagementModule.js +1 -1
- package/src/Strategy/StyledColumnModule.d.ts +2 -0
- package/src/Strategy/StyledColumnModule.js +132 -59
- package/src/Strategy/SystemStatusModule.js +1 -1
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/ToolPanelModule.js +1 -1
- package/src/Utilities/Constants/GeneralConstants.d.ts +2 -0
- package/src/Utilities/Constants/GeneralConstants.js +4 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
- package/src/Utilities/Helpers/StyleHelper.js +19 -0
- package/src/Utilities/ObjectFactory.d.ts +3 -1
- package/src/Utilities/ObjectFactory.js +14 -1
- package/src/Utilities/Services/EntitlementService.js +7 -4
- package/src/Utilities/Services/ValidationService.js +13 -2
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +1 -1
- package/src/View/Charting/ShowChartButton.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -1
- package/src/View/Components/Buttons/ButtonClear.js +1 -1
- package/src/View/Components/Buttons/ButtonClose.js +1 -1
- package/src/View/Components/Buttons/ButtonConfigure.js +1 -1
- package/src/View/Components/Buttons/ButtonDelete.js +1 -1
- package/src/View/Components/Buttons/ButtonExpand.js +1 -1
- package/src/View/Components/Buttons/ButtonLogin.js +1 -1
- package/src/View/Components/Buttons/ButtonPreviewDelete.js +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +10 -2
- package/src/View/Components/Forms/AdaptableFormControlTextClear.js +1 -1
- package/src/View/Components/ListBox/ListBoxFilterSortComponent.js +1 -1
- package/src/View/Components/Panels/ToolPanelSettingsPanel.js +1 -1
- package/src/View/Components/PredicateEditor/PredicateEditor.d.ts +1 -0
- package/src/View/Components/PredicateEditor/PredicateEditor.js +24 -16
- package/src/View/Components/StyleComponent.d.ts +7 -0
- package/src/View/Components/StyleComponent.js +68 -16
- package/src/View/Components/ValueSelector/index.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +8 -6
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +18 -10
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +3 -3
- package/src/View/StateManagement/StateManagementViewPanel.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.d.ts +7 -0
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +108 -0
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +15 -14
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +44 -21
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +17 -9
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.d.ts +5 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +29 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +25 -5
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +15 -4
- package/src/View/Theme/ThemeEditor.js +1 -1
- package/src/agGrid/Adaptable.d.ts +10 -1
- package/src/agGrid/Adaptable.js +69 -26
- package/src/agGrid/BadgeRenderer.d.ts +4 -0
- package/src/agGrid/BadgeRenderer.js +59 -0
- package/src/agGrid/PercentBarRenderer.js +37 -17
- package/src/agGrid/agGridHelper.d.ts +1 -0
- package/src/agGrid/agGridHelper.js +4 -0
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -1
- package/src/components/Badge/index.d.ts +8 -0
- package/src/components/Badge/index.js +18 -0
- package/src/components/Dashboard/DashboardToolbar.js +2 -2
- package/src/components/Datepicker/index.js +1 -1
- package/src/components/DragAndDropContext/TabList.js +1 -1
- package/src/components/Dropdown/index.js +1 -1
- package/src/components/DropdownButton/index.js +1 -1
- package/src/components/FileDroppable/index.js +1 -1
- package/src/components/IconSelector/IconSelector.d.ts +7 -0
- package/src/components/IconSelector/IconSelector.js +42 -0
- package/src/components/IconSelector/index.d.ts +1 -0
- package/src/components/IconSelector/index.js +4 -0
- package/src/components/OverlayTrigger/index.js +1 -0
- package/src/components/Toggle/Toggle.d.ts +8 -0
- package/src/components/Toggle/Toggle.js +15 -0
- package/src/components/Toggle/ToggleGroup.d.ts +2 -0
- package/src/components/Toggle/ToggleGroup.js +10 -0
- package/src/components/Toggle/index.d.ts +2 -0
- package/src/components/Toggle/index.js +5 -0
- package/src/components/icons/DefaultIcon.js +1 -1
- package/src/components/icons/align-center.js +7 -0
- package/src/components/icons/align-left.d.ts +3 -0
- package/src/components/icons/align-left.js +7 -0
- package/src/components/icons/align-right.d.ts +3 -0
- package/src/components/icons/align-right.js +7 -0
- package/src/components/icons/badge.d.ts +3 -0
- package/src/components/icons/badge.js +7 -0
- package/src/components/icons/bold.d.ts +3 -0
- package/src/components/icons/bold.js +7 -0
- package/src/components/icons/case-lower.d.ts +3 -0
- package/src/components/icons/case-lower.js +7 -0
- package/src/components/icons/case-sentence.d.ts +3 -0
- package/src/components/icons/case-sentence.js +8 -0
- package/src/components/icons/case-upper.d.ts +3 -0
- package/src/components/icons/case-upper.js +7 -0
- package/src/components/icons/gradient.d.ts +3 -0
- package/src/components/icons/gradient.js +7 -0
- package/src/components/icons/index.js +76 -70
- package/src/components/icons/italic.d.ts +3 -0
- package/src/components/icons/{clear.js → italic.js} +2 -2
- package/src/components/icons/overline.d.ts +3 -0
- package/src/components/icons/overline.js +7 -0
- package/src/components/icons/strikethrough.d.ts +3 -0
- package/src/components/icons/strikethrough.js +7 -0
- package/src/components/icons/underline.d.ts +3 -0
- package/src/components/icons/underline.js +7 -0
- package/src/metamodel/adaptable.metamodel.d.ts +47 -6
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +4 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
- /package/src/components/icons/{clear.d.ts → align-center.d.ts} +0 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M120 936v-80h720v80H120Zm160-160v-80h400v80H280ZM120 616v-80h720v80H120Zm160-160v-80h400v80H280ZM120 296v-80h720v80H120Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M120 936v-80h720v80H120Zm0-160v-80h480v80H120Zm0-160v-80h720v80H120Zm0-160v-80h480v80H120Zm0-160v-80h720v80H120Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M120 936v-80h720v80H120Zm240-160v-80h480v80H360ZM120 616v-80h720v80H120Zm240-160v-80h480v80H360ZM120 296v-80h720v80H120Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M160 976q-33 0-56.5-23.5T80 896V456q0-33 23.5-56.5T160 376h200V256q0-33 23.5-56.5T440 176h80q33 0 56.5 23.5T600 256v120h200q33 0 56.5 23.5T880 456v440q0 33-23.5 56.5T800 976H160Zm0-80h640V456H600q0 33-23.5 56.5T520 536h-80q-33 0-56.5-23.5T360 456H160v440Zm80-80h240v-18q0-17-9.5-31.5T444 744q-20-9-40.5-13.5T360 726q-23 0-43.5 4.5T276 744q-17 8-26.5 22.5T240 798v18Zm320-60h160v-60H560v60Zm-200-60q25 0 42.5-17.5T420 636q0-25-17.5-42.5T360 576q-25 0-42.5 17.5T300 636q0 25 17.5 42.5T360 696Zm200-60h160v-60H560v60ZM440 456h80V256h-80v200Zm40 220Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M272 856V296h221q65 0 120 40t55 111q0 51-23 78.5T602 565q25 11 55.5 41t30.5 90q0 89-65 124.5T501 856H272Zm121-112h104q48 0 58.5-24.5T566 684q0-11-10.5-35.5T494 624H393v120Zm0-228h93q33 0 48-17t15-38q0-24-17-39t-44-15h-95v109Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 0 15 15" }),
|
|
7
|
+
React.createElement("path", { d: "M3.69899 5.20703C2.05823 5.20703 0.809204 6.68569 0.809204 8.60972C0.809204 10.6337 2.15823 12.0124 3.69899 12.0124C4.52126 12.0124 5.37402 11.6693 5.9539 11.0223V11.53C5.9539 11.7785 6.15537 11.98 6.4039 11.98C6.65243 11.98 6.8539 11.7785 6.8539 11.53V5.72001C6.8539 5.47149 6.65243 5.27001 6.4039 5.27001C6.15537 5.27001 5.9539 5.47149 5.9539 5.72001V6.22269C5.40506 5.60075 4.59218 5.20703 3.69899 5.20703ZM5.9539 9.799V7.30117C5.56339 6.58064 4.74118 6.05757 3.8868 6.05757C2.9089 6.05757 1.83508 6.96581 1.83508 8.60955C1.83508 10.1533 2.80889 11.1615 3.8868 11.1615C4.76984 11.1615 5.57141 10.4957 5.9539 9.799ZM10.799 5.20703C9.15823 5.20703 7.9092 6.68569 7.9092 8.60972C7.9092 10.6337 9.25823 12.0124 10.799 12.0124C11.6215 12.0124 12.4744 11.6692 13.0543 11.0218V11.53C13.0543 11.7785 13.2558 11.98 13.5043 11.98C13.7529 11.98 13.9543 11.7785 13.9543 11.53V5.72C13.9543 5.47147 13.7529 5.27 13.5043 5.27C13.2558 5.27 13.0543 5.47147 13.0543 5.72V6.22318C12.5055 5.60095 11.6924 5.20703 10.799 5.20703ZM13.0543 9.79822V7.30196C12.664 6.58102 11.8415 6.05757 10.9868 6.05757C10.0089 6.05757 8.93508 6.96581 8.93508 8.60955C8.93508 10.1533 9.90889 11.1615 10.9868 11.1615C11.8702 11.1615 12.672 10.4952 13.0543 9.79822Z", fill: "currentColor", fillRule: "evenodd", clipRule: "evenodd" })));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 0 17 17" }),
|
|
7
|
+
React.createElement("path", { fill: "currentColor", fillRule: "evenodd", clipRule: "evenodd", d: "M4.10889 3.11667C4.34607 3.11667 4.55816 3.26439 4.6404 3.48686L8.12582 12.9157C8.23433 13.2092 8.08433 13.5352 7.79078 13.6437C7.49724 13.7522 7.1713 13.6023 7.06279 13.3086L5.92037 10.2182H2.29739L1.15498 13.3086C1.04646 13.6023 0.720532 13.7522 0.426985 13.6437C0.133437 13.5352 -0.0165648 13.2092 0.0919466 12.9157L3.57737 3.48686C3.65961 3.26439 3.87169 3.11667 4.10889 3.11667ZM4.10889 5.31768L5.56427 9.25484H2.6535L4.10889 5.31768Z" }),
|
|
8
|
+
React.createElement("path", { fill: "currentColor", fillRule: "evenodd", clipRule: "evenodd", d: "M12.2389 5.90131C10.3793 5.90131 8.96375 7.57712 8.96375 9.75769C8.96375 12.0515 10.4926 13.6141 12.2389 13.6141C13.171 13.6141 14.1376 13.2251 14.7949 12.4914V13.0673C14.7949 13.349 15.0232 13.5773 15.3049 13.5773C15.5866 13.5773 15.8149 13.349 15.8149 13.0673V6.48267C15.8149 6.201 15.5866 5.97267 15.3049 5.97267C15.0232 5.97267 14.7949 6.201 14.7949 6.48267V7.05294C14.1729 6.34775 13.2514 5.90131 12.2389 5.90131ZM14.7949 11.1047V8.27556C14.3525 7.4585 13.4204 6.86525 12.4517 6.86525C11.3434 6.86525 10.1264 7.89459 10.1264 9.7575C10.1264 11.5071 11.2301 12.6497 12.4517 12.6497C13.4529 12.6497 14.3616 11.8946 14.7949 11.1047Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 0 15 15" }),
|
|
7
|
+
React.createElement("path", { d: "M3.6255 2.75C3.83478 2.75 4.02192 2.88034 4.09448 3.07664L7.16985 11.3962C7.2656 11.6552 7.13324 11.9428 6.87423 12.0386C6.61522 12.1343 6.32763 12.002 6.23188 11.7429L5.22387 9.01603H2.02712L1.01911 11.7429C0.923362 12.002 0.635774 12.1343 0.376762 12.0386C0.117749 11.9428 -0.0146052 11.6552 0.0811401 11.3962L3.15651 3.07664C3.22908 2.88034 3.41621 2.75 3.6255 2.75ZM3.6255 4.69207L4.90966 8.16603H2.34133L3.6255 4.69207ZM11.3719 2.75C11.5811 2.75 11.7683 2.88034 11.8408 3.07664L14.9162 11.3962C15.012 11.6552 14.8796 11.9428 14.6206 12.0386C14.3616 12.1343 14.074 12.002 13.9782 11.7429L12.9702 9.01603H9.77348L8.76547 11.7429C8.66972 12.002 8.38213 12.1343 8.12312 12.0386C7.86411 11.9428 7.73175 11.6552 7.8275 11.3962L10.9029 3.07664C10.9754 2.88034 11.1626 2.75 11.3719 2.75ZM11.3719 4.69207L12.656 8.16603H10.0877L11.3719 4.69207Z", fill: "currentColor", fillRule: "evenodd", clipRule: "evenodd" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M440 616v-80h80v80h-80Zm-80 80v-80h80v80h-80Zm160 0v-80h80v80h-80Zm80-80v-80h80v80h-80Zm-320 0v-80h80v80h-80Zm-80 320q-33 0-56.5-23.5T120 856V296q0-33 23.5-56.5T200 216h560q33 0 56.5 23.5T840 296v560q0 33-23.5 56.5T760 936H200Zm80-80h80v-80h-80v80Zm160 0h80v-80h-80v80Zm320 0v-80 80Zm-560-80h80v-80h80v80h80v-80h80v80h80v-80h80v80h80v-80h-80v-80h80V296H200v320h80v80h-80v80Zm0 80V296v560Zm560-240v80-80ZM600 776v80h80v-80h-80Z" })));
|
|
@@ -16,14 +16,12 @@ const check_1 = tslib_1.__importDefault(require("./check"));
|
|
|
16
16
|
const attach_file_1 = tslib_1.__importDefault(require("./attach-file"));
|
|
17
17
|
const plus_1 = tslib_1.__importDefault(require("./plus"));
|
|
18
18
|
const person_1 = tslib_1.__importDefault(require("./person"));
|
|
19
|
-
const clear_1 = tslib_1.__importDefault(require("./clear"));
|
|
20
19
|
const clone_1 = tslib_1.__importDefault(require("./clone"));
|
|
21
20
|
const chat_1 = tslib_1.__importDefault(require("./chat"));
|
|
22
21
|
const query_1 = tslib_1.__importDefault(require("./query"));
|
|
23
22
|
const info_1 = tslib_1.__importDefault(require("./info"));
|
|
24
23
|
const alert_1 = tslib_1.__importDefault(require("./alert"));
|
|
25
24
|
const list_1 = tslib_1.__importDefault(require("./list"));
|
|
26
|
-
const smart_edit_1 = tslib_1.__importDefault(require("./smart-edit"));
|
|
27
25
|
const home_1 = tslib_1.__importDefault(require("./home"));
|
|
28
26
|
const call_1 = tslib_1.__importDefault(require("./call"));
|
|
29
27
|
const justify_1 = tslib_1.__importDefault(require("./justify"));
|
|
@@ -53,7 +51,6 @@ const column_chooser_1 = tslib_1.__importDefault(require("./column-chooser"));
|
|
|
53
51
|
const column_add_1 = tslib_1.__importDefault(require("./column-add"));
|
|
54
52
|
const cell_validation_1 = tslib_1.__importDefault(require("./cell-validation"));
|
|
55
53
|
const column_filter_1 = tslib_1.__importDefault(require("./column-filter"));
|
|
56
|
-
const custom_sort_1 = tslib_1.__importDefault(require("./custom-sort"));
|
|
57
54
|
const system_status_1 = tslib_1.__importDefault(require("./system-status"));
|
|
58
55
|
const data_set_1 = tslib_1.__importDefault(require("./data-set"));
|
|
59
56
|
const flashing_cell_1 = tslib_1.__importDefault(require("./flashing-cell"));
|
|
@@ -67,7 +64,6 @@ const layout_1 = tslib_1.__importDefault(require("./layout"));
|
|
|
67
64
|
const state_management_1 = tslib_1.__importDefault(require("./state-management"));
|
|
68
65
|
const tool_panel_1 = tslib_1.__importDefault(require("./tool-panel"));
|
|
69
66
|
const percent_bar_1 = tslib_1.__importDefault(require("./percent-bar"));
|
|
70
|
-
const gradient_column_1 = tslib_1.__importDefault(require("./gradient-column"));
|
|
71
67
|
const spark_line_1 = tslib_1.__importDefault(require("./spark-line"));
|
|
72
68
|
const pie_chart_1 = tslib_1.__importDefault(require("./pie-chart"));
|
|
73
69
|
const plus_minus_1 = tslib_1.__importDefault(require("./plus-minus"));
|
|
@@ -75,10 +71,7 @@ const quick_search_1 = tslib_1.__importDefault(require("./quick-search"));
|
|
|
75
71
|
const reminder_1 = tslib_1.__importDefault(require("./reminder"));
|
|
76
72
|
const schedule_1 = tslib_1.__importDefault(require("./schedule"));
|
|
77
73
|
const shortcut_1 = tslib_1.__importDefault(require("./shortcut"));
|
|
78
|
-
const team_share_1 = tslib_1.__importDefault(require("./team-share"));
|
|
79
74
|
const updated_row_1 = tslib_1.__importDefault(require("./updated-row"));
|
|
80
|
-
const align_justify_1 = tslib_1.__importDefault(require("./align-justify"));
|
|
81
|
-
const login_1 = tslib_1.__importDefault(require("./login"));
|
|
82
75
|
const logout_1 = tslib_1.__importDefault(require("./logout"));
|
|
83
76
|
const theme_1 = tslib_1.__importDefault(require("./theme"));
|
|
84
77
|
const check_box_1 = tslib_1.__importDefault(require("./check-box"));
|
|
@@ -133,6 +126,19 @@ const menu_1 = tslib_1.__importDefault(require("./menu"));
|
|
|
133
126
|
const statusbar_1 = tslib_1.__importDefault(require("./statusbar"));
|
|
134
127
|
const add_row_1 = tslib_1.__importDefault(require("./add-row"));
|
|
135
128
|
const brush_1 = tslib_1.__importDefault(require("./brush"));
|
|
129
|
+
const gradient_1 = tslib_1.__importDefault(require("./gradient"));
|
|
130
|
+
const badge_1 = tslib_1.__importDefault(require("./badge"));
|
|
131
|
+
const italic_1 = tslib_1.__importDefault(require("./italic"));
|
|
132
|
+
const bold_1 = tslib_1.__importDefault(require("./bold"));
|
|
133
|
+
const align_left_1 = tslib_1.__importDefault(require("./align-left"));
|
|
134
|
+
const align_right_1 = tslib_1.__importDefault(require("./align-right"));
|
|
135
|
+
const align_center_1 = tslib_1.__importDefault(require("./align-center"));
|
|
136
|
+
const overline_1 = tslib_1.__importDefault(require("./overline"));
|
|
137
|
+
const underline_1 = tslib_1.__importDefault(require("./underline"));
|
|
138
|
+
const strikethrough_1 = tslib_1.__importDefault(require("./strikethrough"));
|
|
139
|
+
const case_lower_1 = tslib_1.__importDefault(require("./case-lower"));
|
|
140
|
+
const case_upper_1 = tslib_1.__importDefault(require("./case-upper"));
|
|
141
|
+
const case_sentence_1 = tslib_1.__importDefault(require("./case-sentence"));
|
|
136
142
|
const quote_1 = tslib_1.__importDefault(require("./quote"));
|
|
137
143
|
const news_1 = tslib_1.__importDefault(require("./news"));
|
|
138
144
|
const instrument_1 = tslib_1.__importDefault(require("./instrument"));
|
|
@@ -142,148 +148,148 @@ const visibility_off_1 = tslib_1.__importDefault(require("./visibility-off"));
|
|
|
142
148
|
const AdaptableIconComponent_1 = require("../AdaptableIconComponent");
|
|
143
149
|
const AdaptableLogger_1 = require("../../agGrid/AdaptableLogger");
|
|
144
150
|
const allIcons = {
|
|
145
|
-
|
|
146
|
-
|
|
151
|
+
search: query_1.default,
|
|
152
|
+
grid: layout_1.default,
|
|
153
|
+
cells: cell_summary_1.default,
|
|
154
|
+
columns: column_chooser_1.default,
|
|
155
|
+
'chart-and-grid': calculated_column_1.default,
|
|
156
|
+
laptop: application_1.default,
|
|
147
157
|
alert: alert_1.default,
|
|
148
158
|
analysis: analysis_1.default,
|
|
149
|
-
'
|
|
159
|
+
'edit-table': bulk_update_1.default,
|
|
150
160
|
chart: chart_1.default,
|
|
151
|
-
'cell-summary': cell_summary_1.default,
|
|
152
|
-
'column-chooser': column_chooser_1.default,
|
|
153
161
|
'column-add': column_add_1.default,
|
|
154
|
-
'column-filter': column_filter_1.default,
|
|
155
162
|
person: person_1.default,
|
|
156
163
|
quote: quote_1.default,
|
|
157
164
|
call: call_1.default,
|
|
158
|
-
instrument: instrument_1.default,
|
|
159
165
|
news: news_1.default,
|
|
160
166
|
brush: brush_1.default,
|
|
161
167
|
'data-set': data_set_1.default,
|
|
162
168
|
export: export_1.default,
|
|
163
|
-
campaign: campaign_1.default,
|
|
164
169
|
broadcast: campaign_1.default,
|
|
165
|
-
layout: layout_1.default,
|
|
166
|
-
'quick-search': quick_search_1.default,
|
|
167
|
-
'smart-edit': smart_edit_1.default,
|
|
168
170
|
theme: theme_1.default,
|
|
169
|
-
|
|
170
|
-
query: query_1.default,
|
|
171
|
-
'calculated-column': calculated_column_1.default,
|
|
171
|
+
brain: instrument_1.default,
|
|
172
172
|
calendar: calendar_1.default,
|
|
173
|
-
'cell-validation': cell_validation_1.default,
|
|
174
173
|
chat: chat_1.default,
|
|
175
|
-
'
|
|
176
|
-
|
|
177
|
-
'
|
|
178
|
-
|
|
174
|
+
'filter-list': column_filter_1.default,
|
|
175
|
+
filter: filter_1.default,
|
|
176
|
+
'search-table': quick_search_1.default,
|
|
177
|
+
lightning: flashing_cell_1.default,
|
|
178
|
+
'color-palette': format_column_1.default,
|
|
179
179
|
'export-data': table_arrow_right_1.default,
|
|
180
|
-
'
|
|
181
|
-
'percent-
|
|
182
|
-
'gradient-column': gradient_column_1.default,
|
|
180
|
+
'horizontal-lines': freetext_column_1.default,
|
|
181
|
+
'percent-tag': percent_bar_1.default,
|
|
183
182
|
'spark-line': spark_line_1.default,
|
|
184
183
|
'pie-chart': pie_chart_1.default,
|
|
185
|
-
'
|
|
184
|
+
'add-circle': plus_minus_1.default,
|
|
186
185
|
reminder: reminder_1.default,
|
|
187
186
|
schedule: schedule_1.default,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
'
|
|
192
|
-
'
|
|
193
|
-
'
|
|
187
|
+
link: shortcut_1.default,
|
|
188
|
+
assignment: state_management_1.default,
|
|
189
|
+
clipboard: tool_panel_1.default,
|
|
190
|
+
'traffic-lights': system_status_1.default,
|
|
191
|
+
'add': add_row_1.default,
|
|
192
|
+
'downloaded': updated_row_1.default,
|
|
194
193
|
// others
|
|
195
194
|
edit: edit_1.default,
|
|
195
|
+
undo: undo_1.default,
|
|
196
|
+
clone: clone_1.default,
|
|
197
|
+
save: save_1.default,
|
|
198
|
+
refresh: refresh_1.default,
|
|
199
|
+
delete: delete_1.default,
|
|
196
200
|
'tab-unselected': tab_unselected_1.default,
|
|
197
|
-
unchecked: check_box_outline_1.default,
|
|
198
201
|
checked: check_box_1.default,
|
|
202
|
+
unchecked: check_box_outline_1.default,
|
|
199
203
|
'boolean-list': boolean_list_1.default,
|
|
200
204
|
'arrow-right': arrow_right_1.default,
|
|
205
|
+
'arrow-left': arrow_left_1.default,
|
|
201
206
|
'arrow-up': arrow_up_1.default,
|
|
202
|
-
'arrow-up-long': arrow_up_long_1.default,
|
|
203
|
-
'triangle-up': triangle_up_1.default,
|
|
204
207
|
'arrow-down': arrow_down_1.default,
|
|
208
|
+
'arrow-up-long': arrow_up_long_1.default,
|
|
205
209
|
'arrow-down-long': arrow_down_long_1.default,
|
|
210
|
+
'triangle-up': triangle_up_1.default,
|
|
206
211
|
'triangle-down': triangle_down_1.default,
|
|
207
|
-
'arrow-left': arrow_left_1.default,
|
|
208
212
|
'check-circle': check_circle_1.default,
|
|
209
213
|
comment: comment_1.default,
|
|
210
214
|
list: list_1.default,
|
|
211
|
-
|
|
212
|
-
clone: clone_1.default,
|
|
213
|
-
delete: delete_1.default,
|
|
214
|
-
build: build_1.default,
|
|
215
|
-
save: save_1.default,
|
|
216
|
-
trash: delete_1.default,
|
|
217
|
-
refresh: refresh_1.default,
|
|
215
|
+
spanner: build_1.default,
|
|
218
216
|
error: error_1.default,
|
|
217
|
+
play: play_1.default,
|
|
218
|
+
stop: stop_1.default,
|
|
219
|
+
pause: pause_1.default,
|
|
219
220
|
'fast-forward': fast_forward_1.default,
|
|
220
221
|
'fast-backward': fast_backward_1.default,
|
|
221
222
|
warning: warning_1.default,
|
|
222
|
-
justify: justify_1.default,
|
|
223
223
|
check: check_1.default,
|
|
224
|
-
ok: check_1.default,
|
|
225
224
|
'open-in-new': open_in_new_1.default,
|
|
226
|
-
plus: plus_1.default,
|
|
227
225
|
home: home_1.default,
|
|
228
226
|
'sort-asc': sort_asc_1.default,
|
|
229
227
|
'sort-desc': sort_desc_1.default,
|
|
230
|
-
'align-justify': align_justify_1.default,
|
|
231
|
-
login: login_1.default,
|
|
232
228
|
logout: logout_1.default,
|
|
233
|
-
clear: clear_1.default,
|
|
234
229
|
'import-export': import_export_1.default,
|
|
235
|
-
'
|
|
230
|
+
'paperclip': attach_file_1.default,
|
|
236
231
|
info: info_1.default,
|
|
237
|
-
add: plus_1.default,
|
|
238
232
|
'cloud-upload': cloud_upload_1.default,
|
|
239
233
|
upload: upload_1.default,
|
|
240
|
-
|
|
234
|
+
download: ipushpull_1.default,
|
|
241
235
|
'folder-open': folder_open_1.default,
|
|
242
236
|
'folder-shared': folder_shared_1.default,
|
|
243
|
-
play: play_1.default,
|
|
244
|
-
stop: stop_1.default,
|
|
245
|
-
pause: pause_1.default,
|
|
246
237
|
folder: folder_1.default,
|
|
247
238
|
newpage: newpage_1.default,
|
|
248
239
|
drag: drag_1.default,
|
|
249
|
-
'hide-column': hide_column_1.default,
|
|
250
|
-
'show-column': show_column_1.default,
|
|
251
240
|
'date-range': date_range_1.default,
|
|
252
241
|
settings: settings_1.default,
|
|
253
242
|
dock: dock_1.default,
|
|
254
243
|
collapse: collapse_1.default,
|
|
255
244
|
expand: expand_1.default,
|
|
256
|
-
|
|
245
|
+
'arrow-expand': arrow_expand_1.default,
|
|
257
246
|
invalid: invalid_1.default,
|
|
258
247
|
history: history_1.default,
|
|
259
|
-
filter: filter_1.default,
|
|
260
248
|
close: close_1.default,
|
|
261
249
|
function: function_1.default,
|
|
262
250
|
equation: equation_1.default,
|
|
251
|
+
equals: equal_1.default,
|
|
252
|
+
'not-equal': not_equal_1.default,
|
|
263
253
|
'greater-than-or-equal': greater_than_or_equal_1.default,
|
|
264
254
|
'greater-than': greater_than_1.default,
|
|
265
255
|
'less-than-or-equal': less_than_or_equal_1.default,
|
|
266
256
|
'less-than': less_than_1.default,
|
|
257
|
+
plus: plus_1.default,
|
|
267
258
|
minus: minus_1.default,
|
|
268
259
|
multiplication: multiplication_1.default,
|
|
269
260
|
division: division_1.default,
|
|
270
261
|
percent: percent_1.default,
|
|
271
262
|
exponent: exponent_1.default,
|
|
272
|
-
equal: equal_1.default,
|
|
273
|
-
'not-equal': not_equal_1.default,
|
|
274
263
|
'ends-with': ends_with_1.default,
|
|
275
264
|
'starts-with': starts_with_1.default,
|
|
276
|
-
|
|
277
|
-
'
|
|
265
|
+
'unfilled-circle': blanks_1.default,
|
|
266
|
+
'filled-circle': non_blanks_1.default,
|
|
278
267
|
'not-contains': not_contains_1.default,
|
|
279
268
|
contains: contains_1.default,
|
|
280
269
|
regex: regex_1.default,
|
|
281
|
-
'
|
|
270
|
+
'target': track_changes_1.default,
|
|
282
271
|
menu: menu_1.default,
|
|
283
272
|
statusbar: statusbar_1.default,
|
|
284
|
-
|
|
285
|
-
visibility: visibility_1.default,
|
|
273
|
+
dashboard: dashboard_1.default,
|
|
274
|
+
'visibility-on': visibility_1.default,
|
|
286
275
|
'visibility-off': visibility_off_1.default,
|
|
276
|
+
'visibility-off-bold': hide_column_1.default,
|
|
277
|
+
'visibility-on-bold': show_column_1.default,
|
|
278
|
+
gradient: gradient_1.default,
|
|
279
|
+
badge: badge_1.default,
|
|
280
|
+
bold: bold_1.default,
|
|
281
|
+
italic: italic_1.default,
|
|
282
|
+
'align-left': align_left_1.default,
|
|
283
|
+
'align-right': align_right_1.default,
|
|
284
|
+
'align-center': align_center_1.default,
|
|
285
|
+
'align-justify': justify_1.default,
|
|
286
|
+
underline: underline_1.default,
|
|
287
|
+
overline: overline_1.default,
|
|
288
|
+
strikethrough: strikethrough_1.default,
|
|
289
|
+
'case-lower': case_lower_1.default,
|
|
290
|
+
'case-upper': case_upper_1.default,
|
|
291
|
+
'case-sentence': case_sentence_1.default,
|
|
292
|
+
flag: cell_validation_1.default, // original icon is flag,
|
|
287
293
|
};
|
|
288
294
|
Object.keys(allIcons).forEach((name) => {
|
|
289
295
|
const ReactCmp = allIcons[name];
|
|
@@ -3,5 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
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
|
-
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
-
React.createElement("path", {
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { xmlns: "http://www.w3.org/2000/svg", d: "M200 856V756h160l120-360H320V296h400v100H580L460 756h140v100H200Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M200 296v-80h560v80H200Zm280 640q-117 0-198.5-81.5T200 656q0-117 81.5-198.5T480 376q117 0 198.5 81.5T760 656q0 117-81.5 198.5T480 936Zm0-100q75 0 127.5-52.5T660 656q0-75-52.5-127.5T480 476q-75 0-127.5 52.5T300 656q0 75 52.5 127.5T480 836Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M486 896q-76 0-135-45t-85-123l88-38q14 48 48.5 79t85.5 31q42 0 76-20t34-64q0-18-7-33t-19-27h112q5 14 7.5 28.5T694 716q0 86-61.5 133T486 896ZM80 576v-80h800v80H80Zm402-326q66 0 115.5 32.5T674 382l-88 39q-9-29-33.5-52T484 346q-41 0-68 18.5T386 416h-96q2-69 54.5-117.5T482 250Z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props, { viewBox: "0 96 960 960" }),
|
|
7
|
+
React.createElement("path", { d: "M200 936v-80h560v80H200Zm280-160q-101 0-157-63t-56-167V216h103v336q0 56 28 91t82 35q54 0 82-35t28-91V216h103v330q0 104-56 167t-157 63Z" })));
|
|
@@ -1156,6 +1156,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1156
1156
|
desc: string;
|
|
1157
1157
|
}[];
|
|
1158
1158
|
};
|
|
1159
|
+
BadgeStylePredicate: {
|
|
1160
|
+
name: string;
|
|
1161
|
+
kind: string;
|
|
1162
|
+
desc: string;
|
|
1163
|
+
};
|
|
1159
1164
|
BaseContext: {
|
|
1160
1165
|
name: string;
|
|
1161
1166
|
kind: string;
|
|
@@ -1284,6 +1289,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1284
1289
|
isOpt: boolean;
|
|
1285
1290
|
})[];
|
|
1286
1291
|
};
|
|
1292
|
+
CellEditableContext: {
|
|
1293
|
+
name: string;
|
|
1294
|
+
kind: string;
|
|
1295
|
+
desc: string;
|
|
1296
|
+
props: {
|
|
1297
|
+
name: string;
|
|
1298
|
+
kind: string;
|
|
1299
|
+
desc: string;
|
|
1300
|
+
}[];
|
|
1301
|
+
};
|
|
1287
1302
|
CellHighlightInfo: {
|
|
1288
1303
|
name: string;
|
|
1289
1304
|
kind: string;
|
|
@@ -4006,6 +4021,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4006
4021
|
desc: string;
|
|
4007
4022
|
}[];
|
|
4008
4023
|
};
|
|
4024
|
+
ServerValidationContext: {
|
|
4025
|
+
name: string;
|
|
4026
|
+
kind: string;
|
|
4027
|
+
desc: string;
|
|
4028
|
+
props: {
|
|
4029
|
+
name: string;
|
|
4030
|
+
kind: string;
|
|
4031
|
+
desc: string;
|
|
4032
|
+
}[];
|
|
4033
|
+
};
|
|
4009
4034
|
SettingsPanelOptions: {
|
|
4010
4035
|
name: string;
|
|
4011
4036
|
kind: string;
|
|
@@ -4205,21 +4230,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4205
4230
|
kind: string;
|
|
4206
4231
|
desc: string;
|
|
4207
4232
|
isOpt: boolean;
|
|
4208
|
-
ref
|
|
4233
|
+
ref: string;
|
|
4209
4234
|
defVal?: undefined;
|
|
4210
4235
|
} | {
|
|
4211
4236
|
name: string;
|
|
4212
4237
|
kind: string;
|
|
4213
4238
|
desc: string;
|
|
4214
|
-
isOpt
|
|
4239
|
+
isOpt: boolean;
|
|
4215
4240
|
ref?: undefined;
|
|
4216
4241
|
defVal?: undefined;
|
|
4217
4242
|
} | {
|
|
4218
4243
|
name: string;
|
|
4219
4244
|
kind: string;
|
|
4220
4245
|
desc: string;
|
|
4221
|
-
isOpt
|
|
4222
|
-
ref
|
|
4246
|
+
isOpt?: undefined;
|
|
4247
|
+
ref?: undefined;
|
|
4223
4248
|
defVal?: undefined;
|
|
4224
4249
|
} | {
|
|
4225
4250
|
name: string;
|
|
@@ -4554,12 +4579,28 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4554
4579
|
name: string;
|
|
4555
4580
|
kind: string;
|
|
4556
4581
|
desc: string;
|
|
4557
|
-
props: {
|
|
4582
|
+
props: ({
|
|
4558
4583
|
name: string;
|
|
4559
4584
|
kind: string;
|
|
4560
4585
|
desc: string;
|
|
4561
4586
|
isOpt: boolean;
|
|
4562
|
-
|
|
4587
|
+
defVal: string;
|
|
4588
|
+
ref: string;
|
|
4589
|
+
} | {
|
|
4590
|
+
name: string;
|
|
4591
|
+
kind: string;
|
|
4592
|
+
desc: string;
|
|
4593
|
+
isOpt: boolean;
|
|
4594
|
+
defVal?: undefined;
|
|
4595
|
+
ref?: undefined;
|
|
4596
|
+
} | {
|
|
4597
|
+
name: string;
|
|
4598
|
+
kind: string;
|
|
4599
|
+
desc: string;
|
|
4600
|
+
isOpt: boolean;
|
|
4601
|
+
defVal: string;
|
|
4602
|
+
ref?: undefined;
|
|
4603
|
+
})[];
|
|
4563
4604
|
};
|
|
4564
4605
|
WeightedAverageAggregation: {
|
|
4565
4606
|
name: string;
|