@adaptabletools/adaptable 16.0.9 → 16.0.10-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 +14 -14
- package/base.css.map +1 -1
- package/bundle.cjs.js +169 -169
- package/index.css +14 -14
- 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/AdaptableOptions.d.ts +2 -2
- package/src/AdaptableOptions/ChartingOptions.d.ts +40 -0
- package/src/AdaptableOptions/ColumnOptions.d.ts +17 -0
- package/src/AdaptableOptions/NotesOptions.d.ts +23 -0
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +8 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -0
- package/src/Api/AdaptableApi.d.ts +3 -3
- package/src/Api/ChartingApi.d.ts +30 -0
- package/src/Api/ColumnApi.d.ts +5 -0
- package/src/Api/ConfigApi.d.ts +4 -3
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -2
- package/src/Api/Implementation/ApiBase.d.ts +2 -2
- package/src/Api/Implementation/ApiBase.js +2 -2
- package/src/Api/Implementation/ChartingApiImpl.d.ts +8 -2
- package/src/Api/Implementation/ChartingApiImpl.js +64 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.js +4 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +3 -2
- package/src/Api/Implementation/ConfigApiImpl.js +9 -9
- package/src/Api/Implementation/NotesApiImpl.d.ts +20 -0
- package/src/Api/Implementation/NotesApiImpl.js +58 -0
- package/src/Api/Implementation/OptionsApiImpl.d.ts +2 -2
- package/src/Api/Implementation/OptionsApiImpl.js +2 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.js +8 -0
- package/src/Api/Internal/AdaptableInternalApi.d.ts +0 -2
- package/src/Api/Internal/AdaptableInternalApi.js +0 -6
- package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.js +12 -0
- package/src/Api/Internal/ChartingInternalApi.d.ts +7 -0
- package/src/Api/Internal/ChartingInternalApi.js +45 -0
- package/src/Api/Internal/ColumnInternalApi.d.ts +3 -0
- package/src/Api/Internal/ColumnInternalApi.js +3 -0
- package/src/Api/NotesAPi.d.ts +50 -0
- package/src/Api/OptionsApi.d.ts +3 -3
- package/src/Api/UserInterfaceApi.d.ts +8 -0
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -2
- package/src/PredefinedConfig/ChartingState.d.ts +22 -0
- package/src/PredefinedConfig/ChartingState.js +9 -0
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +12 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +2 -2
- package/src/PredefinedConfig/Common/Types.js +1 -1
- package/src/PredefinedConfig/NotesState.d.ts +59 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -2
- package/src/PredefinedConfig/SystemState.d.ts +5 -3
- package/src/Redux/ActionsReducers/ChartingRedux.d.ts +28 -3
- package/src/Redux/ActionsReducers/ChartingRedux.js +52 -5
- package/src/Redux/ActionsReducers/NotesRedux.d.ts +39 -0
- package/src/Redux/ActionsReducers/NotesRedux.js +88 -0
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +10 -10
- package/src/Redux/ActionsReducers/SystemRedux.js +23 -22
- package/src/Redux/Store/AdaptableStore.js +19 -11
- package/src/Strategy/ChartingModule.d.ts +5 -2
- package/src/Strategy/ChartingModule.js +28 -7
- package/src/Strategy/ColumnInfoModule.d.ts +11 -0
- package/src/Strategy/ColumnInfoModule.js +47 -0
- package/src/Strategy/DataSetModule.js +1 -0
- package/src/Strategy/FilterModule.js +5 -0
- package/src/Strategy/GridInfoModule.js +13 -82
- package/src/Strategy/Interface/IModule.d.ts +2 -0
- package/src/Strategy/{CommentsModule.d.ts → NotesModule.d.ts} +6 -6
- package/src/Strategy/{CommentsModule.js → NotesModule.js} +41 -41
- package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.d.ts +2 -0
- package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +20 -18
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -3
- package/src/Utilities/Constants/ModuleConstants.js +8 -5
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -1
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +36 -10
- package/src/Utilities/Extensions/ObjectExtensions.d.ts +1 -0
- package/src/Utilities/Extensions/ObjectExtensions.js +5 -1
- package/src/Utilities/ObjectFactory.d.ts +2 -1
- package/src/Utilities/ObjectFactory.js +10 -2
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +4 -0
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +1 -1
- package/src/Utilities/Services/QueryLanguageService.d.ts +1 -2
- package/src/Utilities/Services/QueryLanguageService.js +1 -6
- package/src/Utilities/Services/ValidationService.js +15 -5
- package/src/View/AdaptableView.js +2 -2
- package/src/View/AdaptableViewFactory.js +5 -3
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +20 -4
- package/src/View/Alert/Wizard/AlertWizard.js +14 -7
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.d.ts +2 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +25 -46
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.d.ts +8 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.js +19 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +2 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +44 -3
- package/src/View/CalculatedColumn/utils.d.ts +2 -0
- package/src/View/CalculatedColumn/utils.js +14 -0
- package/src/View/Charting/ChartingWizard/AgChargingWizard/AgChargingWizard.d.ts +6 -0
- package/src/View/Charting/ChartingWizard/AgChargingWizard/AgChargingWizard.js +47 -0
- package/src/View/Charting/ChartingWizard/{PreviewChartSection.d.ts → AgChargingWizard/PreviewChartSection.d.ts} +1 -1
- package/src/View/Charting/ChartingWizard/{PreviewChartSection.js → AgChargingWizard/PreviewChartSection.js} +2 -2
- package/src/View/Charting/ChartingWizard/{SettingsSection.d.ts → AgChargingWizard/SettingsSection.d.ts} +1 -1
- package/src/View/Charting/ChartingWizard/{SettingsSection.js → AgChargingWizard/SettingsSection.js} +4 -4
- package/src/View/Charting/ChartingWizard/AgChargingWizard/index.d.ts +1 -0
- package/src/View/Charting/ChartingWizard/AgChargingWizard/index.js +4 -0
- package/src/View/Charting/ChartingWizard/ChartingWizard.d.ts +4 -3
- package/src/View/Charting/ChartingWizard/ChartingWizard.js +12 -39
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.d.ts +6 -0
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.js +59 -0
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.d.ts +9 -0
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.js +25 -0
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/index.d.ts +1 -0
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/index.js +4 -0
- package/src/View/Charting/ChartingWizard/index.d.ts +1 -0
- package/src/View/Charting/ChartingWizard/index.js +4 -0
- package/src/View/Charting/DeleteChartButton.d.ts +2 -1
- package/src/View/Charting/DeleteChartButton.js +4 -2
- package/src/View/Charting/EditChartButton.d.ts +2 -1
- package/src/View/Charting/ShowChartButton.js +47 -16
- package/src/View/Charting/{useChartState.d.ts → useAgChartState.d.ts} +1 -1
- package/src/View/Charting/{useChartState.js → useAgChartState.js} +7 -7
- package/src/View/Charting/useChartingElements.d.ts +2 -1
- package/src/View/Charting/useChartingElements.js +36 -26
- package/src/View/Charting/useExternalChartState.d.ts +7 -0
- package/src/View/Charting/useExternalChartState.js +56 -0
- package/src/View/ColumnInfo/ColumnInfo.d.ts +5 -0
- package/src/View/ColumnInfo/ColumnInfo.js +185 -0
- package/src/View/ColumnInfo/ColumnInfoPopup.d.ts +3 -0
- package/src/View/ColumnInfo/ColumnInfoPopup.js +15 -0
- package/src/View/Components/AdaptableIconSelector/index.d.ts +1 -1
- package/src/View/Components/Selectors/ColumnSelector.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +6 -1
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +9 -0
- package/src/View/GridInfo/{AdaptableObjectsSummary.js → GridInfoPopup/AdaptableObjectsSummary.js} +2 -2
- package/src/View/GridInfo/{AdaptableOptionsComponent.d.ts → GridInfoPopup/AdaptableOptionsComponent.d.ts} +1 -1
- package/src/View/GridInfo/{AdaptableOptionsComponent.js → GridInfoPopup/AdaptableOptionsComponent.js} +6 -6
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.d.ts +6 -0
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +82 -0
- package/src/View/GridInfo/GridInfoPopup/index.d.ts +1 -0
- package/src/View/GridInfo/GridInfoPopup/index.js +4 -0
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/Notes/NotesListing.d.ts +2 -0
- package/src/View/{Comments/CommentListing.js → Notes/NotesListing.js} +13 -14
- package/src/View/Notes/NotesPopup.d.ts +2 -0
- package/src/View/{Comments/CommentPopup.js → Notes/NotesPopup.js} +21 -21
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +6 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +14 -0
- package/src/agGrid/Adaptable.d.ts +1 -1
- package/src/agGrid/Adaptable.js +28 -16
- package/src/agGrid/agGridHelper.d.ts +3 -3
- package/src/agGrid/agGridHelper.js +56 -30
- package/src/agGrid/agGridMenuHelper.js +4 -2
- package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +15 -6
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +5 -10
- package/src/components/ExpressionEditor/editorButtonsCumulativeAggregatedScalar.js +5 -5
- package/src/components/ExpressionEditor/editorButtonsQuantileAggregatedScalar.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsQuantileAggregatedScalar.js +25 -0
- package/src/components/ExpressionEditor/index.d.ts +1 -1
- package/src/components/ExpressionEditor/index.js +2 -1
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/note.d.ts +3 -0
- package/src/components/icons/note.js +7 -0
- package/src/metamodel/adaptable.metamodel.d.ts +72 -59
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/CommentsOptions.d.ts +0 -23
- package/src/Api/CommentsApi.d.ts +0 -50
- package/src/Api/Implementation/CommentsApiImpl.d.ts +0 -20
- package/src/Api/Implementation/CommentsApiImpl.js +0 -58
- package/src/PredefinedConfig/CommentsState.d.ts +0 -59
- package/src/Redux/ActionsReducers/CommentsRedux.d.ts +0 -39
- package/src/Redux/ActionsReducers/CommentsRedux.js +0 -92
- package/src/View/Comments/CommentListing.d.ts +0 -2
- package/src/View/Comments/CommentPopup.d.ts +0 -2
- package/src/View/GridInfo/ColumnInfoComponent.d.ts +0 -20
- package/src/View/GridInfo/ColumnInfoComponent.js +0 -176
- package/src/View/GridInfo/GridInfoPopup.d.ts +0 -16
- package/src/View/GridInfo/GridInfoPopup.js +0 -117
- package/src/View/GridInfo/GridOptionsComponent.d.ts +0 -16
- package/src/View/GridInfo/GridOptionsComponent.js +0 -36
- /package/src/AdaptableOptions/{CommentsOptions.js → NotesOptions.js} +0 -0
- /package/src/Api/{CommentsApi.js → NotesAPi.js} +0 -0
- /package/src/PredefinedConfig/{CommentsState.js → NotesState.js} +0 -0
- /package/src/View/GridInfo/{AdaptableObjectsSummary.d.ts → GridInfoPopup/AdaptableObjectsSummary.d.ts} +0 -0
|
@@ -308,7 +308,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
308
308
|
kind: string;
|
|
309
309
|
desc: string;
|
|
310
310
|
};
|
|
311
|
-
|
|
311
|
+
AdaptableColumnGroup: {
|
|
312
312
|
name: string;
|
|
313
313
|
kind: string;
|
|
314
314
|
desc: string;
|
|
@@ -316,15 +316,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
316
316
|
name: string;
|
|
317
317
|
kind: string;
|
|
318
318
|
desc: string;
|
|
319
|
-
isOpt: boolean;
|
|
320
319
|
}[];
|
|
321
320
|
};
|
|
322
|
-
|
|
323
|
-
name: string;
|
|
324
|
-
kind: string;
|
|
325
|
-
desc: string;
|
|
326
|
-
};
|
|
327
|
-
AdaptableComment: {
|
|
321
|
+
AdaptableColumnPredicate: {
|
|
328
322
|
name: string;
|
|
329
323
|
kind: string;
|
|
330
324
|
desc: string;
|
|
@@ -332,9 +326,10 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
332
326
|
name: string;
|
|
333
327
|
kind: string;
|
|
334
328
|
desc: string;
|
|
329
|
+
isOpt: boolean;
|
|
335
330
|
}[];
|
|
336
331
|
};
|
|
337
|
-
|
|
332
|
+
AdaptableColumnType: {
|
|
338
333
|
name: string;
|
|
339
334
|
kind: string;
|
|
340
335
|
desc: string;
|
|
@@ -533,6 +528,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
533
528
|
kind: string;
|
|
534
529
|
desc: string;
|
|
535
530
|
};
|
|
531
|
+
AdaptableNote: {
|
|
532
|
+
name: string;
|
|
533
|
+
kind: string;
|
|
534
|
+
desc: string;
|
|
535
|
+
props: {
|
|
536
|
+
name: string;
|
|
537
|
+
kind: string;
|
|
538
|
+
desc: string;
|
|
539
|
+
}[];
|
|
540
|
+
};
|
|
541
|
+
AdaptableNotes: {
|
|
542
|
+
name: string;
|
|
543
|
+
kind: string;
|
|
544
|
+
desc: string;
|
|
545
|
+
};
|
|
536
546
|
AdaptableObject: {
|
|
537
547
|
name: string;
|
|
538
548
|
kind: string;
|
|
@@ -1542,6 +1552,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1542
1552
|
desc: string;
|
|
1543
1553
|
isOpt: boolean;
|
|
1544
1554
|
defVal: string;
|
|
1555
|
+
ref?: undefined;
|
|
1545
1556
|
noCode?: undefined;
|
|
1546
1557
|
} | {
|
|
1547
1558
|
name: string;
|
|
@@ -1549,6 +1560,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1549
1560
|
desc: string;
|
|
1550
1561
|
isOpt: boolean;
|
|
1551
1562
|
defVal?: undefined;
|
|
1563
|
+
ref?: undefined;
|
|
1564
|
+
noCode?: undefined;
|
|
1565
|
+
} | {
|
|
1566
|
+
name: string;
|
|
1567
|
+
kind: string;
|
|
1568
|
+
desc: string;
|
|
1569
|
+
isOpt: boolean;
|
|
1570
|
+
ref: string;
|
|
1571
|
+
defVal?: undefined;
|
|
1552
1572
|
noCode?: undefined;
|
|
1553
1573
|
} | {
|
|
1554
1574
|
name: string;
|
|
@@ -1557,6 +1577,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1557
1577
|
isOpt: boolean;
|
|
1558
1578
|
noCode: string;
|
|
1559
1579
|
defVal: string;
|
|
1580
|
+
ref?: undefined;
|
|
1560
1581
|
})[];
|
|
1561
1582
|
};
|
|
1562
1583
|
ChartingState: {
|
|
@@ -1663,17 +1684,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1663
1684
|
kind: string;
|
|
1664
1685
|
desc: string;
|
|
1665
1686
|
isOpt: boolean;
|
|
1687
|
+
gridInfo: string;
|
|
1688
|
+
noCode: string;
|
|
1666
1689
|
defVal: string;
|
|
1667
|
-
gridInfo?: undefined;
|
|
1668
|
-
noCode?: undefined;
|
|
1669
1690
|
} | {
|
|
1670
1691
|
name: string;
|
|
1671
1692
|
kind: string;
|
|
1672
1693
|
desc: string;
|
|
1673
1694
|
isOpt: boolean;
|
|
1674
|
-
gridInfo: string;
|
|
1675
|
-
noCode: string;
|
|
1676
1695
|
defVal: string;
|
|
1696
|
+
gridInfo?: undefined;
|
|
1697
|
+
noCode?: undefined;
|
|
1677
1698
|
})[];
|
|
1678
1699
|
};
|
|
1679
1700
|
ColumnSort: {
|
|
@@ -1702,44 +1723,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1702
1723
|
ref: string;
|
|
1703
1724
|
})[];
|
|
1704
1725
|
};
|
|
1705
|
-
CommentGridCell: {
|
|
1706
|
-
name: string;
|
|
1707
|
-
kind: string;
|
|
1708
|
-
desc: string;
|
|
1709
|
-
};
|
|
1710
|
-
CommentOptions: {
|
|
1711
|
-
name: string;
|
|
1712
|
-
kind: string;
|
|
1713
|
-
desc: string;
|
|
1714
|
-
props: {
|
|
1715
|
-
name: string;
|
|
1716
|
-
kind: string;
|
|
1717
|
-
desc: string;
|
|
1718
|
-
isOpt: boolean;
|
|
1719
|
-
}[];
|
|
1720
|
-
};
|
|
1721
|
-
CommentsState: {
|
|
1722
|
-
name: string;
|
|
1723
|
-
kind: string;
|
|
1724
|
-
desc: string;
|
|
1725
|
-
props: {
|
|
1726
|
-
name: string;
|
|
1727
|
-
kind: string;
|
|
1728
|
-
desc: string;
|
|
1729
|
-
isOpt: boolean;
|
|
1730
|
-
ref: string;
|
|
1731
|
-
}[];
|
|
1732
|
-
};
|
|
1733
|
-
CommmentableCellContext: {
|
|
1734
|
-
name: string;
|
|
1735
|
-
kind: string;
|
|
1736
|
-
desc: string;
|
|
1737
|
-
props: {
|
|
1738
|
-
name: string;
|
|
1739
|
-
kind: string;
|
|
1740
|
-
desc: string;
|
|
1741
|
-
}[];
|
|
1742
|
-
};
|
|
1743
1726
|
CompatibleContext: {
|
|
1744
1727
|
name: string;
|
|
1745
1728
|
kind: string;
|
|
@@ -3639,6 +3622,44 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3639
3622
|
desc: string;
|
|
3640
3623
|
}[];
|
|
3641
3624
|
};
|
|
3625
|
+
NotableCellContext: {
|
|
3626
|
+
name: string;
|
|
3627
|
+
kind: string;
|
|
3628
|
+
desc: string;
|
|
3629
|
+
props: {
|
|
3630
|
+
name: string;
|
|
3631
|
+
kind: string;
|
|
3632
|
+
desc: string;
|
|
3633
|
+
}[];
|
|
3634
|
+
};
|
|
3635
|
+
NoteGridCell: {
|
|
3636
|
+
name: string;
|
|
3637
|
+
kind: string;
|
|
3638
|
+
desc: string;
|
|
3639
|
+
};
|
|
3640
|
+
NotesOptions: {
|
|
3641
|
+
name: string;
|
|
3642
|
+
kind: string;
|
|
3643
|
+
desc: string;
|
|
3644
|
+
props: {
|
|
3645
|
+
name: string;
|
|
3646
|
+
kind: string;
|
|
3647
|
+
desc: string;
|
|
3648
|
+
isOpt: boolean;
|
|
3649
|
+
}[];
|
|
3650
|
+
};
|
|
3651
|
+
NoteState: {
|
|
3652
|
+
name: string;
|
|
3653
|
+
kind: string;
|
|
3654
|
+
desc: string;
|
|
3655
|
+
props: {
|
|
3656
|
+
name: string;
|
|
3657
|
+
kind: string;
|
|
3658
|
+
desc: string;
|
|
3659
|
+
isOpt: boolean;
|
|
3660
|
+
ref: string;
|
|
3661
|
+
}[];
|
|
3662
|
+
};
|
|
3642
3663
|
NotificationsOptions: {
|
|
3643
3664
|
name: string;
|
|
3644
3665
|
kind: string;
|
|
@@ -4877,19 +4898,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4877
4898
|
kind: string;
|
|
4878
4899
|
desc: string;
|
|
4879
4900
|
isOpt: boolean;
|
|
4880
|
-
ref?: undefined;
|
|
4881
|
-
} | {
|
|
4882
|
-
name: string;
|
|
4883
|
-
kind: string;
|
|
4884
|
-
desc: string;
|
|
4885
|
-
isOpt: boolean;
|
|
4886
|
-
ref: string;
|
|
4887
4901
|
} | {
|
|
4888
4902
|
name: string;
|
|
4889
4903
|
kind: string;
|
|
4890
4904
|
desc: string;
|
|
4891
4905
|
isOpt?: undefined;
|
|
4892
|
-
ref?: undefined;
|
|
4893
4906
|
})[];
|
|
4894
4907
|
};
|
|
4895
4908
|
ValidationResult: {
|