@adaptabletools/adaptable 15.3.2 → 15.3.3-canary.1
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 +156 -156
- 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/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/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 +61 -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 +27 -25
- 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/ButtonInvalid.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/Buttons/ButtonShare.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/NewScopeComponent.js +2 -2
- 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/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +4 -3
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +3 -3
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +2 -2
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +14 -12
- 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 +6 -0
- package/src/agGrid/Adaptable.js +63 -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 -72
- 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 +86 -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
|
@@ -11,5 +11,5 @@ exports.getSize = getSize;
|
|
|
11
11
|
exports.default = (_a) => {
|
|
12
12
|
var { children, size = DEFAULT_SIZE, name, tabIndex, color } = _a, props = tslib_1.__rest(_a, ["children", "size", "name", "tabIndex", "color"]);
|
|
13
13
|
size = (0, exports.getSize)(size);
|
|
14
|
-
return (React.createElement("svg", Object.assign({ width: size, height: size, viewBox: "0 0 24 24", tabIndex: tabIndex }, props, { className: (0, join_1.default)(props.className, `ab-Icon ab-Icon--${name}`), style: Object.assign({ verticalAlign: 'middle', fill: color !== null && color !== void 0 ? color : 'currentColor' }, props.style) }), children));
|
|
14
|
+
return (React.createElement("svg", Object.assign({ width: size, height: size, viewBox: "0 0 24 24", tabIndex: tabIndex, "data-id": name, "data-name": "AdaptableIcon" }, props, { className: (0, join_1.default)(props.className, `ab-Icon ab-Icon--${name}`), style: Object.assign({ verticalAlign: 'middle', fill: color !== null && color !== void 0 ? color : 'currentColor' }, props.style) }), children));
|
|
15
15
|
};
|
|
@@ -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"));
|
|
@@ -105,7 +98,6 @@ const dock_1 = tslib_1.__importDefault(require("./dock"));
|
|
|
105
98
|
const collapse_1 = tslib_1.__importDefault(require("./collapse"));
|
|
106
99
|
const expand_1 = tslib_1.__importDefault(require("./expand"));
|
|
107
100
|
const arrow_expand_1 = tslib_1.__importDefault(require("./arrow-expand"));
|
|
108
|
-
const invalid_1 = tslib_1.__importDefault(require("./invalid"));
|
|
109
101
|
const history_1 = tslib_1.__importDefault(require("./history"));
|
|
110
102
|
const filter_1 = tslib_1.__importDefault(require("./filter"));
|
|
111
103
|
const close_1 = tslib_1.__importDefault(require("./close"));
|
|
@@ -133,6 +125,19 @@ const menu_1 = tslib_1.__importDefault(require("./menu"));
|
|
|
133
125
|
const statusbar_1 = tslib_1.__importDefault(require("./statusbar"));
|
|
134
126
|
const add_row_1 = tslib_1.__importDefault(require("./add-row"));
|
|
135
127
|
const brush_1 = tslib_1.__importDefault(require("./brush"));
|
|
128
|
+
const gradient_1 = tslib_1.__importDefault(require("./gradient"));
|
|
129
|
+
const badge_1 = tslib_1.__importDefault(require("./badge"));
|
|
130
|
+
const italic_1 = tslib_1.__importDefault(require("./italic"));
|
|
131
|
+
const bold_1 = tslib_1.__importDefault(require("./bold"));
|
|
132
|
+
const align_left_1 = tslib_1.__importDefault(require("./align-left"));
|
|
133
|
+
const align_right_1 = tslib_1.__importDefault(require("./align-right"));
|
|
134
|
+
const align_center_1 = tslib_1.__importDefault(require("./align-center"));
|
|
135
|
+
const overline_1 = tslib_1.__importDefault(require("./overline"));
|
|
136
|
+
const underline_1 = tslib_1.__importDefault(require("./underline"));
|
|
137
|
+
const strikethrough_1 = tslib_1.__importDefault(require("./strikethrough"));
|
|
138
|
+
const case_lower_1 = tslib_1.__importDefault(require("./case-lower"));
|
|
139
|
+
const case_upper_1 = tslib_1.__importDefault(require("./case-upper"));
|
|
140
|
+
const case_sentence_1 = tslib_1.__importDefault(require("./case-sentence"));
|
|
136
141
|
const quote_1 = tslib_1.__importDefault(require("./quote"));
|
|
137
142
|
const news_1 = tslib_1.__importDefault(require("./news"));
|
|
138
143
|
const instrument_1 = tslib_1.__importDefault(require("./instrument"));
|
|
@@ -142,148 +147,147 @@ const visibility_off_1 = tslib_1.__importDefault(require("./visibility-off"));
|
|
|
142
147
|
const AdaptableIconComponent_1 = require("../AdaptableIconComponent");
|
|
143
148
|
const AdaptableLogger_1 = require("../../agGrid/AdaptableLogger");
|
|
144
149
|
const allIcons = {
|
|
145
|
-
|
|
146
|
-
|
|
150
|
+
search: query_1.default,
|
|
151
|
+
grid: layout_1.default,
|
|
152
|
+
cells: cell_summary_1.default,
|
|
153
|
+
columns: column_chooser_1.default,
|
|
154
|
+
'chart-and-grid': calculated_column_1.default,
|
|
155
|
+
laptop: application_1.default,
|
|
147
156
|
alert: alert_1.default,
|
|
148
157
|
analysis: analysis_1.default,
|
|
149
|
-
'
|
|
158
|
+
'edit-table': bulk_update_1.default,
|
|
150
159
|
chart: chart_1.default,
|
|
151
|
-
'cell-summary': cell_summary_1.default,
|
|
152
|
-
'column-chooser': column_chooser_1.default,
|
|
153
160
|
'column-add': column_add_1.default,
|
|
154
|
-
'column-filter': column_filter_1.default,
|
|
155
161
|
person: person_1.default,
|
|
156
162
|
quote: quote_1.default,
|
|
157
163
|
call: call_1.default,
|
|
158
|
-
instrument: instrument_1.default,
|
|
159
164
|
news: news_1.default,
|
|
160
165
|
brush: brush_1.default,
|
|
161
166
|
'data-set': data_set_1.default,
|
|
162
167
|
export: export_1.default,
|
|
163
|
-
campaign: campaign_1.default,
|
|
164
168
|
broadcast: campaign_1.default,
|
|
165
|
-
layout: layout_1.default,
|
|
166
|
-
'quick-search': quick_search_1.default,
|
|
167
|
-
'smart-edit': smart_edit_1.default,
|
|
168
169
|
theme: theme_1.default,
|
|
169
|
-
|
|
170
|
-
query: query_1.default,
|
|
171
|
-
'calculated-column': calculated_column_1.default,
|
|
170
|
+
brain: instrument_1.default,
|
|
172
171
|
calendar: calendar_1.default,
|
|
173
|
-
'cell-validation': cell_validation_1.default,
|
|
174
172
|
chat: chat_1.default,
|
|
175
|
-
'
|
|
176
|
-
|
|
177
|
-
'
|
|
178
|
-
|
|
173
|
+
'filter-list': column_filter_1.default,
|
|
174
|
+
filter: filter_1.default,
|
|
175
|
+
'search-table': quick_search_1.default,
|
|
176
|
+
lightning: flashing_cell_1.default,
|
|
177
|
+
'color-palette': format_column_1.default,
|
|
179
178
|
'export-data': table_arrow_right_1.default,
|
|
180
|
-
'
|
|
181
|
-
'percent-
|
|
182
|
-
'gradient-column': gradient_column_1.default,
|
|
179
|
+
'horizontal-lines': freetext_column_1.default,
|
|
180
|
+
'percent-tag': percent_bar_1.default,
|
|
183
181
|
'spark-line': spark_line_1.default,
|
|
184
182
|
'pie-chart': pie_chart_1.default,
|
|
185
|
-
'
|
|
183
|
+
'add-circle': plus_minus_1.default,
|
|
186
184
|
reminder: reminder_1.default,
|
|
187
185
|
schedule: schedule_1.default,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
'
|
|
192
|
-
'
|
|
193
|
-
'
|
|
186
|
+
link: shortcut_1.default,
|
|
187
|
+
assignment: state_management_1.default,
|
|
188
|
+
clipboard: tool_panel_1.default,
|
|
189
|
+
'traffic-lights': system_status_1.default,
|
|
190
|
+
'add': add_row_1.default,
|
|
191
|
+
'downloaded': updated_row_1.default,
|
|
194
192
|
// others
|
|
195
193
|
edit: edit_1.default,
|
|
194
|
+
undo: undo_1.default,
|
|
195
|
+
clone: clone_1.default,
|
|
196
|
+
save: save_1.default,
|
|
197
|
+
refresh: refresh_1.default,
|
|
198
|
+
delete: delete_1.default,
|
|
196
199
|
'tab-unselected': tab_unselected_1.default,
|
|
197
|
-
unchecked: check_box_outline_1.default,
|
|
198
200
|
checked: check_box_1.default,
|
|
201
|
+
unchecked: check_box_outline_1.default,
|
|
199
202
|
'boolean-list': boolean_list_1.default,
|
|
200
203
|
'arrow-right': arrow_right_1.default,
|
|
204
|
+
'arrow-left': arrow_left_1.default,
|
|
201
205
|
'arrow-up': arrow_up_1.default,
|
|
202
|
-
'arrow-up-long': arrow_up_long_1.default,
|
|
203
|
-
'triangle-up': triangle_up_1.default,
|
|
204
206
|
'arrow-down': arrow_down_1.default,
|
|
207
|
+
'arrow-up-long': arrow_up_long_1.default,
|
|
205
208
|
'arrow-down-long': arrow_down_long_1.default,
|
|
209
|
+
'triangle-up': triangle_up_1.default,
|
|
206
210
|
'triangle-down': triangle_down_1.default,
|
|
207
|
-
'arrow-left': arrow_left_1.default,
|
|
208
211
|
'check-circle': check_circle_1.default,
|
|
209
212
|
comment: comment_1.default,
|
|
210
213
|
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,
|
|
214
|
+
spanner: build_1.default,
|
|
218
215
|
error: error_1.default,
|
|
216
|
+
play: play_1.default,
|
|
217
|
+
stop: stop_1.default,
|
|
218
|
+
pause: pause_1.default,
|
|
219
219
|
'fast-forward': fast_forward_1.default,
|
|
220
220
|
'fast-backward': fast_backward_1.default,
|
|
221
221
|
warning: warning_1.default,
|
|
222
|
-
justify: justify_1.default,
|
|
223
222
|
check: check_1.default,
|
|
224
|
-
ok: check_1.default,
|
|
225
223
|
'open-in-new': open_in_new_1.default,
|
|
226
|
-
plus: plus_1.default,
|
|
227
224
|
home: home_1.default,
|
|
228
225
|
'sort-asc': sort_asc_1.default,
|
|
229
226
|
'sort-desc': sort_desc_1.default,
|
|
230
|
-
'align-justify': align_justify_1.default,
|
|
231
|
-
login: login_1.default,
|
|
232
227
|
logout: logout_1.default,
|
|
233
|
-
clear: clear_1.default,
|
|
234
228
|
'import-export': import_export_1.default,
|
|
235
|
-
'
|
|
229
|
+
'paperclip': attach_file_1.default,
|
|
236
230
|
info: info_1.default,
|
|
237
|
-
add: plus_1.default,
|
|
238
231
|
'cloud-upload': cloud_upload_1.default,
|
|
239
232
|
upload: upload_1.default,
|
|
240
|
-
|
|
233
|
+
download: ipushpull_1.default,
|
|
241
234
|
'folder-open': folder_open_1.default,
|
|
242
235
|
'folder-shared': folder_shared_1.default,
|
|
243
|
-
play: play_1.default,
|
|
244
|
-
stop: stop_1.default,
|
|
245
|
-
pause: pause_1.default,
|
|
246
236
|
folder: folder_1.default,
|
|
247
237
|
newpage: newpage_1.default,
|
|
248
238
|
drag: drag_1.default,
|
|
249
|
-
'hide-column': hide_column_1.default,
|
|
250
|
-
'show-column': show_column_1.default,
|
|
251
239
|
'date-range': date_range_1.default,
|
|
252
240
|
settings: settings_1.default,
|
|
253
241
|
dock: dock_1.default,
|
|
254
242
|
collapse: collapse_1.default,
|
|
255
243
|
expand: expand_1.default,
|
|
256
|
-
|
|
257
|
-
invalid: invalid_1.default,
|
|
244
|
+
'arrow-expand': arrow_expand_1.default,
|
|
258
245
|
history: history_1.default,
|
|
259
|
-
filter: filter_1.default,
|
|
260
246
|
close: close_1.default,
|
|
261
247
|
function: function_1.default,
|
|
262
248
|
equation: equation_1.default,
|
|
249
|
+
equals: equal_1.default,
|
|
250
|
+
'not-equal': not_equal_1.default,
|
|
263
251
|
'greater-than-or-equal': greater_than_or_equal_1.default,
|
|
264
252
|
'greater-than': greater_than_1.default,
|
|
265
253
|
'less-than-or-equal': less_than_or_equal_1.default,
|
|
266
254
|
'less-than': less_than_1.default,
|
|
255
|
+
plus: plus_1.default,
|
|
267
256
|
minus: minus_1.default,
|
|
268
257
|
multiplication: multiplication_1.default,
|
|
269
258
|
division: division_1.default,
|
|
270
259
|
percent: percent_1.default,
|
|
271
260
|
exponent: exponent_1.default,
|
|
272
|
-
equal: equal_1.default,
|
|
273
|
-
'not-equal': not_equal_1.default,
|
|
274
261
|
'ends-with': ends_with_1.default,
|
|
275
262
|
'starts-with': starts_with_1.default,
|
|
276
|
-
|
|
277
|
-
'
|
|
263
|
+
'unfilled-circle': blanks_1.default,
|
|
264
|
+
'filled-circle': non_blanks_1.default,
|
|
278
265
|
'not-contains': not_contains_1.default,
|
|
279
266
|
contains: contains_1.default,
|
|
280
267
|
regex: regex_1.default,
|
|
281
|
-
'
|
|
268
|
+
'target': track_changes_1.default,
|
|
282
269
|
menu: menu_1.default,
|
|
283
270
|
statusbar: statusbar_1.default,
|
|
284
|
-
|
|
285
|
-
visibility: visibility_1.default,
|
|
271
|
+
dashboard: dashboard_1.default,
|
|
272
|
+
'visibility-on': visibility_1.default,
|
|
286
273
|
'visibility-off': visibility_off_1.default,
|
|
274
|
+
'visibility-off-bold': hide_column_1.default,
|
|
275
|
+
'visibility-on-bold': show_column_1.default,
|
|
276
|
+
gradient: gradient_1.default,
|
|
277
|
+
badge: badge_1.default,
|
|
278
|
+
bold: bold_1.default,
|
|
279
|
+
italic: italic_1.default,
|
|
280
|
+
'align-left': align_left_1.default,
|
|
281
|
+
'align-right': align_right_1.default,
|
|
282
|
+
'align-center': align_center_1.default,
|
|
283
|
+
'align-justify': justify_1.default,
|
|
284
|
+
underline: underline_1.default,
|
|
285
|
+
overline: overline_1.default,
|
|
286
|
+
strikethrough: strikethrough_1.default,
|
|
287
|
+
'case-lower': case_lower_1.default,
|
|
288
|
+
'case-upper': case_upper_1.default,
|
|
289
|
+
'case-sentence': case_sentence_1.default,
|
|
290
|
+
flag: cell_validation_1.default, // original icon is flag,
|
|
287
291
|
};
|
|
288
292
|
Object.keys(allIcons).forEach((name) => {
|
|
289
293
|
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,40 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1156
1156
|
desc: string;
|
|
1157
1157
|
}[];
|
|
1158
1158
|
};
|
|
1159
|
+
BadgeStyle: {
|
|
1160
|
+
name: string;
|
|
1161
|
+
kind: string;
|
|
1162
|
+
desc: string;
|
|
1163
|
+
};
|
|
1164
|
+
BadgeStyleDefinition: {
|
|
1165
|
+
name: string;
|
|
1166
|
+
kind: string;
|
|
1167
|
+
desc: string;
|
|
1168
|
+
props: ({
|
|
1169
|
+
name: string;
|
|
1170
|
+
kind: string;
|
|
1171
|
+
desc: string;
|
|
1172
|
+
isOpt: boolean;
|
|
1173
|
+
ref?: undefined;
|
|
1174
|
+
} | {
|
|
1175
|
+
name: string;
|
|
1176
|
+
kind: string;
|
|
1177
|
+
desc: string;
|
|
1178
|
+
isOpt: boolean;
|
|
1179
|
+
ref: string;
|
|
1180
|
+
} | {
|
|
1181
|
+
name: string;
|
|
1182
|
+
kind: string;
|
|
1183
|
+
desc: string;
|
|
1184
|
+
ref: string;
|
|
1185
|
+
isOpt?: undefined;
|
|
1186
|
+
})[];
|
|
1187
|
+
};
|
|
1188
|
+
BadgeStylePredicate: {
|
|
1189
|
+
name: string;
|
|
1190
|
+
kind: string;
|
|
1191
|
+
desc: string;
|
|
1192
|
+
};
|
|
1159
1193
|
BaseContext: {
|
|
1160
1194
|
name: string;
|
|
1161
1195
|
kind: string;
|
|
@@ -1284,6 +1318,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1284
1318
|
isOpt: boolean;
|
|
1285
1319
|
})[];
|
|
1286
1320
|
};
|
|
1321
|
+
CellEditableContext: {
|
|
1322
|
+
name: string;
|
|
1323
|
+
kind: string;
|
|
1324
|
+
desc: string;
|
|
1325
|
+
props: {
|
|
1326
|
+
name: string;
|
|
1327
|
+
kind: string;
|
|
1328
|
+
desc: string;
|
|
1329
|
+
}[];
|
|
1330
|
+
};
|
|
1287
1331
|
CellHighlightInfo: {
|
|
1288
1332
|
name: string;
|
|
1289
1333
|
kind: string;
|
|
@@ -4006,6 +4050,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4006
4050
|
desc: string;
|
|
4007
4051
|
}[];
|
|
4008
4052
|
};
|
|
4053
|
+
ServerValidationContext: {
|
|
4054
|
+
name: string;
|
|
4055
|
+
kind: string;
|
|
4056
|
+
desc: string;
|
|
4057
|
+
props: {
|
|
4058
|
+
name: string;
|
|
4059
|
+
kind: string;
|
|
4060
|
+
desc: string;
|
|
4061
|
+
}[];
|
|
4062
|
+
};
|
|
4009
4063
|
SettingsPanelOptions: {
|
|
4010
4064
|
name: string;
|
|
4011
4065
|
kind: string;
|
|
@@ -4205,21 +4259,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4205
4259
|
kind: string;
|
|
4206
4260
|
desc: string;
|
|
4207
4261
|
isOpt: boolean;
|
|
4208
|
-
ref
|
|
4262
|
+
ref: string;
|
|
4209
4263
|
defVal?: undefined;
|
|
4210
4264
|
} | {
|
|
4211
4265
|
name: string;
|
|
4212
4266
|
kind: string;
|
|
4213
4267
|
desc: string;
|
|
4214
|
-
isOpt
|
|
4268
|
+
isOpt: boolean;
|
|
4215
4269
|
ref?: undefined;
|
|
4216
4270
|
defVal?: undefined;
|
|
4217
4271
|
} | {
|
|
4218
4272
|
name: string;
|
|
4219
4273
|
kind: string;
|
|
4220
4274
|
desc: string;
|
|
4221
|
-
isOpt
|
|
4222
|
-
ref
|
|
4275
|
+
isOpt?: undefined;
|
|
4276
|
+
ref?: undefined;
|
|
4223
4277
|
defVal?: undefined;
|
|
4224
4278
|
} | {
|
|
4225
4279
|
name: string;
|
|
@@ -4262,6 +4316,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4262
4316
|
kind: string;
|
|
4263
4317
|
desc: string;
|
|
4264
4318
|
};
|
|
4319
|
+
SystemBadgeStylePredicateId: {
|
|
4320
|
+
name: string;
|
|
4321
|
+
kind: string;
|
|
4322
|
+
desc: string;
|
|
4323
|
+
};
|
|
4324
|
+
SystemBadgeStylePredicateIds: {
|
|
4325
|
+
name: string;
|
|
4326
|
+
kind: string;
|
|
4327
|
+
desc: string;
|
|
4328
|
+
};
|
|
4265
4329
|
SystemExportDestination: {
|
|
4266
4330
|
name: string;
|
|
4267
4331
|
kind: string;
|
|
@@ -4554,12 +4618,28 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4554
4618
|
name: string;
|
|
4555
4619
|
kind: string;
|
|
4556
4620
|
desc: string;
|
|
4557
|
-
props: {
|
|
4621
|
+
props: ({
|
|
4558
4622
|
name: string;
|
|
4559
4623
|
kind: string;
|
|
4560
4624
|
desc: string;
|
|
4561
4625
|
isOpt: boolean;
|
|
4562
|
-
|
|
4626
|
+
defVal: string;
|
|
4627
|
+
ref: string;
|
|
4628
|
+
} | {
|
|
4629
|
+
name: string;
|
|
4630
|
+
kind: string;
|
|
4631
|
+
desc: string;
|
|
4632
|
+
isOpt: boolean;
|
|
4633
|
+
defVal?: undefined;
|
|
4634
|
+
ref?: undefined;
|
|
4635
|
+
} | {
|
|
4636
|
+
name: string;
|
|
4637
|
+
kind: string;
|
|
4638
|
+
desc: string;
|
|
4639
|
+
isOpt: boolean;
|
|
4640
|
+
defVal: string;
|
|
4641
|
+
ref?: undefined;
|
|
4642
|
+
})[];
|
|
4563
4643
|
};
|
|
4564
4644
|
WeightedAverageAggregation: {
|
|
4565
4645
|
name: string;
|