@adaptabletools/adaptable 10.0.1 → 10.0.4-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 +68 -26
- package/index.css +80 -28
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +12 -2
- package/src/AdaptableOptions/FilterOptions.d.ts +14 -7
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
- package/src/AdaptableOptions/NotificationsOptions.d.ts +3 -1
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +107 -5
- package/src/Api/AlertApi.d.ts +1 -1
- package/src/Api/CalculatedColumnApi.d.ts +15 -0
- package/src/Api/ColumnApi.d.ts +39 -0
- package/src/Api/ConfigApi.d.ts +8 -0
- package/src/Api/Events/AdaptableReady.d.ts +2 -6
- package/src/Api/Events/AdaptableStateChanged.d.ts +2 -1
- package/src/Api/Events/AlertFired.d.ts +2 -1
- package/src/Api/Events/BaseEventInfo.d.ts +10 -0
- package/src/{Utilities/Interface/ProgressIndicator.js → Api/Events/BaseEventInfo.js} +0 -0
- package/src/Api/Events/CellChanged.d.ts +2 -1
- package/src/Api/Events/ChexboxColumnClicked.d.ts +2 -1
- package/src/Api/Events/CustomToolbarConfigured.d.ts +2 -1
- package/src/Api/Events/DashboardChanged.d.ts +2 -1
- package/src/Api/Events/FlashingAlertFired.d.ts +2 -1
- package/src/Api/Events/GridDataChanged.d.ts +2 -1
- package/src/Api/Events/LayoutChanged.d.ts +2 -1
- package/src/Api/Events/LiveDataChanged.d.ts +2 -1
- package/src/Api/Events/SearchChanged.d.ts +2 -1
- package/src/Api/Events/SelectionChanged.d.ts +2 -1
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +2 -1
- package/src/Api/Events/TeamSharingEntityChanged.d.ts +2 -1
- package/src/Api/Events/ThemeChanged.d.ts +2 -1
- package/src/Api/GridApi.d.ts +34 -8
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
- package/src/Api/Implementation/AlertApiImpl.js +22 -15
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +8 -0
- package/src/Api/Implementation/ColumnApiImpl.js +69 -36
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ConfigApiImpl.js +28 -17
- package/src/Api/Implementation/DashboardApiImpl.js +2 -1
- package/src/Api/Implementation/ExportApiImpl.js +4 -4
- package/src/Api/Implementation/FormatColumnApiImpl.js +2 -1
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +9 -3
- package/src/Api/Implementation/GridApiImpl.d.ts +9 -0
- package/src/Api/Implementation/GridApiImpl.js +28 -10
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -1
- package/src/Api/Implementation/InternalApiImpl.js +20 -4
- package/src/Api/Implementation/LayoutApiImpl.js +4 -3
- package/src/Api/Implementation/ScopeApiImpl.js +11 -11
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -0
- package/src/Api/Implementation/TeamSharingApiImpl.js +1 -0
- package/src/Api/Implementation/ThemeApiImpl.js +1 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +12 -8
- package/src/Api/Implementation/UserInterfaceApiImpl.js +69 -87
- package/src/Api/InternalApi.d.ts +3 -1
- package/src/Api/UserInterfaceApi.d.ts +16 -6
- package/src/PredefinedConfig/AlertState.d.ts +4 -0
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +4 -37
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +33 -33
- package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +19 -18
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +3 -2
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
- package/src/PredefinedConfig/Common/SpecialColumnSettings.js +2 -0
- package/src/PredefinedConfig/FilterState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +10 -0
- package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
- package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
- package/src/PredefinedConfig/SystemState.d.ts +4 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
- package/src/Redux/Store/AdaptableStore.js +7 -3
- package/src/Strategy/AdaptableModuleBase.js +8 -8
- package/src/Strategy/AlertModule.js +12 -11
- package/src/Strategy/BulkUpdateModule.js +5 -5
- package/src/Strategy/CalculatedColumnModule.js +1 -1
- package/src/Strategy/CellSummaryModule.js +3 -3
- package/src/Strategy/ConditionalStyleModule.js +3 -3
- package/src/Strategy/CustomSortModule.js +2 -2
- package/src/Strategy/ExportModule.d.ts +0 -2
- package/src/Strategy/ExportModule.js +59 -62
- package/src/Strategy/FilterModule.js +4 -4
- package/src/Strategy/FormatColumnModule.js +5 -5
- package/src/Strategy/FreeTextColumnModule.js +1 -1
- package/src/Strategy/LayoutModule.js +3 -3
- package/src/Strategy/PlusMinusModule.js +8 -9
- package/src/Strategy/SmartEditModule.js +6 -6
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
- package/src/Utilities/Helpers/DateHelper.d.ts +2 -2
- package/src/Utilities/Helpers/DateHelper.js +30 -20
- package/src/Utilities/Helpers/PreviewHelper.js +2 -2
- package/src/Utilities/ObjectFactory.d.ts +1 -1
- package/src/Utilities/ObjectFactory.js +14 -2
- package/src/Utilities/Services/DataService.js +5 -5
- package/src/Utilities/Services/ReportService.js +13 -12
- package/src/Utilities/Services/ValidationService.js +4 -5
- package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
- package/src/Utilities/runIfNotResolvedIn.js +23 -0
- package/src/View/AdaptableView.js +1 -1
- package/src/View/Alert/AlertPopup.js +1 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.js +6 -4
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
- package/src/View/Components/ColumnSelector/index.js +2 -2
- package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
- package/src/View/Components/FilterForm/FilterForm.js +53 -32
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +3 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +14 -5
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
- package/src/View/Components/FilterForm/QuickFilterForm.js +72 -31
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
- package/src/View/Components/NewScopeComponent.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/PreviewResultsPanel.js +1 -1
- package/src/View/Components/RangesComponent.js +2 -2
- package/src/View/Components/Selectors/ColumnSelector.js +5 -5
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
- package/src/View/Components/Selectors/ColumnValueSelector.js +47 -15
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +7 -7
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
- package/src/View/CustomSort/CustomSortEntityRow.js +2 -2
- package/src/View/CustomSort/CustomSortPopup.js +1 -1
- package/src/View/CustomSort/CustomSortSummary.js +3 -3
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +3 -3
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
- package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
- package/src/View/Dashboard/Dashboard.js +2 -3
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +5 -5
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +4 -1
- package/src/View/Export/ExportCustomDestinationDialog.js +1 -1
- package/src/View/Filter/FilterSummary.js +2 -2
- package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +4 -2
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +5 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
- package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
- package/src/View/GridInfo/GridInfoPopup.js +4 -1
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
- package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
- package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
- package/src/View/Query/QueryViewPanel.js +2 -2
- package/src/View/UIHelper.d.ts +2 -0
- package/src/View/UIHelper.js +10 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
- package/src/agGrid/ActionColumnRenderer.js +21 -4
- package/src/agGrid/Adaptable.d.ts +20 -4
- package/src/agGrid/Adaptable.js +249 -102
- package/src/agGrid/agGridHelper.js +33 -32
- package/src/agGrid/agGridMenuHelper.js +2 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -3
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/DropdownButton/index.js +1 -1
- package/src/components/ExpressionEditor/index.js +7 -7
- package/src/components/Loader/Loader.d.ts +7 -0
- package/src/components/Loader/Loader.js +13 -0
- package/src/components/Loader/index.d.ts +2 -0
- package/src/components/Loader/index.js +7 -0
- package/src/components/ProgressIndicator/ProgressIndicator.d.ts +2 -0
- package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
- package/src/metamodel/adaptable.metamodel.d.ts +125 -16
- package/src/metamodel/adaptable.metamodel.js +403 -106
- package/src/types.d.ts +4 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
- package/src/View/Export/ProgressIndicator.d.ts +0 -6
- package/src/View/Export/ProgressIndicator.js +0 -25
|
@@ -18,6 +18,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
18
18
|
"description": "Button to display in the Column",
|
|
19
19
|
"uiLabel": "Action Column Button"
|
|
20
20
|
},
|
|
21
|
+
{
|
|
22
|
+
"name": "actionColumnSettings",
|
|
23
|
+
"kind": "REFERENCE",
|
|
24
|
+
"description": "Additional optional properties for Column (e.g. filterable, resizable)",
|
|
25
|
+
"uiLabel": "Action Column Settings",
|
|
26
|
+
"isOptional": true,
|
|
27
|
+
"reference": "ActionColumnSettings"
|
|
28
|
+
},
|
|
21
29
|
{
|
|
22
30
|
"name": "columnId",
|
|
23
31
|
"kind": "string",
|
|
@@ -67,6 +75,44 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
67
75
|
}
|
|
68
76
|
]
|
|
69
77
|
},
|
|
78
|
+
"ActionColumnSettings": {
|
|
79
|
+
"name": "ActionColumnSettings",
|
|
80
|
+
"kind": "Interface",
|
|
81
|
+
"description": "Set of optional properties that define an Action Columns behaviour",
|
|
82
|
+
"properties": [
|
|
83
|
+
{
|
|
84
|
+
"name": "resizable",
|
|
85
|
+
"kind": "boolean",
|
|
86
|
+
"description": "Whether Column can be resized (by dragging column header edges)",
|
|
87
|
+
"uiLabel": "Resizable",
|
|
88
|
+
"isOptional": true,
|
|
89
|
+
"defaultValue": "true"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "suppressMenu",
|
|
93
|
+
"kind": "boolean",
|
|
94
|
+
"description": "Whether no menu should be shown for this Column header.",
|
|
95
|
+
"uiLabel": "Suppress Menu",
|
|
96
|
+
"isOptional": true,
|
|
97
|
+
"defaultValue": "false"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "suppressMovable",
|
|
101
|
+
"kind": "boolean",
|
|
102
|
+
"description": "Whether if this Column should be movable via dragging",
|
|
103
|
+
"uiLabel": "Suppress Movable",
|
|
104
|
+
"isOptional": true,
|
|
105
|
+
"defaultValue": "false"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "width",
|
|
109
|
+
"kind": "number",
|
|
110
|
+
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
|
|
111
|
+
"uiLabel": "Width",
|
|
112
|
+
"isOptional": true
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
},
|
|
70
116
|
"ActionHandler": {
|
|
71
117
|
"name": "ActionHandler",
|
|
72
118
|
"kind": "TypeAlias",
|
|
@@ -434,27 +480,27 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
434
480
|
"description": "Defines an Adaptable Column - created at run-time based on vendor grid column definition",
|
|
435
481
|
"properties": [
|
|
436
482
|
{
|
|
437
|
-
"name": "
|
|
483
|
+
"name": "aggregatable",
|
|
438
484
|
"kind": "boolean",
|
|
439
485
|
"description": "Is Column able to display aggregations (e.g. 'sum') when grouped",
|
|
440
486
|
"uiLabel": "Aggregatable"
|
|
441
487
|
},
|
|
442
488
|
{
|
|
443
|
-
"name": "
|
|
489
|
+
"name": "aggregationFunction",
|
|
444
490
|
"kind": "string",
|
|
445
491
|
"description": "Custom aggregation function for the Column",
|
|
446
492
|
"uiLabel": "Aggregation Function",
|
|
447
493
|
"isOptional": true
|
|
448
494
|
},
|
|
449
495
|
{
|
|
450
|
-
"name": "
|
|
496
|
+
"name": "availableAggregationFunctions",
|
|
451
497
|
"kind": "unknown",
|
|
452
498
|
"description": "Available aggregations for the Column",
|
|
453
499
|
"uiLabel": "Available Aggregation Functions",
|
|
454
500
|
"isOptional": true
|
|
455
501
|
},
|
|
456
502
|
{
|
|
457
|
-
"name": "
|
|
503
|
+
"name": "columnGroup",
|
|
458
504
|
"kind": "REFERENCE",
|
|
459
505
|
"description": "The parent column group, if the column belongs to one",
|
|
460
506
|
"uiLabel": "Column Group",
|
|
@@ -462,98 +508,98 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
462
508
|
"reference": "unknown"
|
|
463
509
|
},
|
|
464
510
|
{
|
|
465
|
-
"name": "
|
|
511
|
+
"name": "filterable",
|
|
466
512
|
"kind": "boolean",
|
|
467
513
|
"description": "Is Column able to be filtered",
|
|
468
514
|
"uiLabel": "Filterable"
|
|
469
515
|
},
|
|
470
516
|
{
|
|
471
|
-
"name": "
|
|
517
|
+
"name": "flex",
|
|
472
518
|
"kind": "number",
|
|
473
519
|
"description": "Flex details of the column",
|
|
474
520
|
"uiLabel": "Flex",
|
|
475
521
|
"isOptional": true
|
|
476
522
|
},
|
|
477
523
|
{
|
|
478
|
-
"name": "
|
|
524
|
+
"name": "groupable",
|
|
479
525
|
"kind": "boolean",
|
|
480
526
|
"description": "Can Column form a Row Group",
|
|
481
527
|
"uiLabel": "Groupable"
|
|
482
528
|
},
|
|
483
529
|
{
|
|
484
|
-
"name": "
|
|
530
|
+
"name": "hideable",
|
|
485
531
|
"kind": "boolean",
|
|
486
532
|
"description": "Can Column be removed from the grid",
|
|
487
533
|
"uiLabel": "Hideable"
|
|
488
534
|
},
|
|
489
535
|
{
|
|
490
|
-
"name": "
|
|
536
|
+
"name": "isExcludedFromQuickSearch",
|
|
491
537
|
"kind": "boolean",
|
|
492
538
|
"description": "Has colummn been excluded from Quick Search results",
|
|
493
539
|
"uiLabel": "Is Excluded From Quick Search"
|
|
494
540
|
},
|
|
495
541
|
{
|
|
496
|
-
"name": "
|
|
542
|
+
"name": "isFixed",
|
|
497
543
|
"kind": "boolean",
|
|
498
544
|
"description": "Is Column pinned or locked into position",
|
|
499
545
|
"uiLabel": "Is Fixed"
|
|
500
546
|
},
|
|
501
547
|
{
|
|
502
|
-
"name": "
|
|
548
|
+
"name": "isGrouped",
|
|
503
549
|
"kind": "boolean",
|
|
504
550
|
"description": "Is Column currently grouped",
|
|
505
551
|
"uiLabel": "Is Grouped"
|
|
506
552
|
},
|
|
507
553
|
{
|
|
508
|
-
"name": "
|
|
554
|
+
"name": "isPrimaryKey",
|
|
509
555
|
"kind": "boolean",
|
|
510
556
|
"description": "Is this the Primary Key column",
|
|
511
557
|
"uiLabel": "Is Primary Key"
|
|
512
558
|
},
|
|
513
559
|
{
|
|
514
|
-
"name": "
|
|
560
|
+
"name": "isSparkline",
|
|
515
561
|
"kind": "boolean",
|
|
516
562
|
"description": "Is it a Sparkline Column",
|
|
517
563
|
"uiLabel": "Is Sparkline"
|
|
518
564
|
},
|
|
519
565
|
{
|
|
520
|
-
"name": "
|
|
566
|
+
"name": "moveable",
|
|
521
567
|
"kind": "boolean",
|
|
522
568
|
"description": "Can Column be moved at run-time to a new position",
|
|
523
569
|
"uiLabel": "Moveable"
|
|
524
570
|
},
|
|
525
571
|
{
|
|
526
|
-
"name": "
|
|
572
|
+
"name": "pivotable",
|
|
527
573
|
"kind": "boolean",
|
|
528
574
|
"description": "Can Column be used in a Pivot Grid",
|
|
529
575
|
"uiLabel": "Pivotable"
|
|
530
576
|
},
|
|
531
577
|
{
|
|
532
|
-
"name": "
|
|
578
|
+
"name": "queryable",
|
|
533
579
|
"kind": "boolean",
|
|
534
580
|
"description": "Can the Column be in included in Queries / Expressions",
|
|
535
581
|
"uiLabel": "Queryable"
|
|
536
582
|
},
|
|
537
583
|
{
|
|
538
|
-
"name": "
|
|
584
|
+
"name": "readOnly",
|
|
539
585
|
"kind": "boolean",
|
|
540
586
|
"description": "Is column editable",
|
|
541
587
|
"uiLabel": "Read Only"
|
|
542
588
|
},
|
|
543
589
|
{
|
|
544
|
-
"name": "
|
|
590
|
+
"name": "sortable",
|
|
545
591
|
"kind": "boolean",
|
|
546
592
|
"description": "Is Column sortable",
|
|
547
593
|
"uiLabel": "Sortable"
|
|
548
594
|
},
|
|
549
595
|
{
|
|
550
|
-
"name": "
|
|
596
|
+
"name": "visible",
|
|
551
597
|
"kind": "boolean",
|
|
552
598
|
"description": "Is Column currently visible",
|
|
553
599
|
"uiLabel": "Visible"
|
|
554
600
|
},
|
|
555
601
|
{
|
|
556
|
-
"name": "
|
|
602
|
+
"name": "width",
|
|
557
603
|
"kind": "number",
|
|
558
604
|
"description": "Column width",
|
|
559
605
|
"uiLabel": "Width",
|
|
@@ -567,19 +613,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
567
613
|
"description": "Base class for Adaptable Column containing most important properties",
|
|
568
614
|
"properties": [
|
|
569
615
|
{
|
|
570
|
-
"name": "
|
|
616
|
+
"name": "columnId",
|
|
571
617
|
"kind": "string",
|
|
572
618
|
"description": "Name of Column in underlying grid (e.g. field or colId)",
|
|
573
619
|
"uiLabel": "Column Id"
|
|
574
620
|
},
|
|
575
621
|
{
|
|
576
|
-
"name": "
|
|
622
|
+
"name": "dataType",
|
|
577
623
|
"kind": "unknown",
|
|
578
624
|
"description": "DataType of the column",
|
|
579
625
|
"uiLabel": "Data Type"
|
|
580
626
|
},
|
|
581
627
|
{
|
|
582
|
-
"name": "
|
|
628
|
+
"name": "friendlyName",
|
|
583
629
|
"kind": "string",
|
|
584
630
|
"description": "How Column is referred to in Adaptable UI; 'Caption' or 'Header' property in underlying grid",
|
|
585
631
|
"uiLabel": "Friendly Name"
|
|
@@ -1198,13 +1244,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1198
1244
|
"kind": "Interface",
|
|
1199
1245
|
"description": "Object returned by `AdaptableReady` event - fired when AdapTable has loaded",
|
|
1200
1246
|
"properties": [
|
|
1201
|
-
{
|
|
1202
|
-
"name": "adaptableApi",
|
|
1203
|
-
"kind": "REFERENCE",
|
|
1204
|
-
"description": "Adaptable API object used for runtime programmatic access to AdapTable",
|
|
1205
|
-
"uiLabel": "Adaptable Api",
|
|
1206
|
-
"reference": "AdaptableApi"
|
|
1207
|
-
},
|
|
1208
1247
|
{
|
|
1209
1248
|
"name": "vendorGrid",
|
|
1210
1249
|
"kind": "unknown",
|
|
@@ -1775,6 +1814,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1775
1814
|
"isOptional": true,
|
|
1776
1815
|
"reference": "AlertProperties"
|
|
1777
1816
|
},
|
|
1817
|
+
{
|
|
1818
|
+
"name": "MessageText",
|
|
1819
|
+
"kind": "string",
|
|
1820
|
+
"description": "Alert Message - can be string or function; if not provided AdapTable creates dynamically using Rule & Scope",
|
|
1821
|
+
"uiLabel": "Message Text",
|
|
1822
|
+
"isOptional": true
|
|
1823
|
+
},
|
|
1778
1824
|
{
|
|
1779
1825
|
"name": "MessageType",
|
|
1780
1826
|
"kind": "REFERENCE",
|
|
@@ -2034,6 +2080,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2034
2080
|
}
|
|
2035
2081
|
]
|
|
2036
2082
|
},
|
|
2083
|
+
"BulkUpdatePermittedValues": {
|
|
2084
|
+
"name": "BulkUpdatePermittedValues",
|
|
2085
|
+
"kind": "Interface",
|
|
2086
|
+
"description": "User to define permitted values when updating cells via bulk update"
|
|
2087
|
+
},
|
|
2037
2088
|
"ButtonStyle": {
|
|
2038
2089
|
"name": "ButtonStyle",
|
|
2039
2090
|
"kind": "Interface",
|
|
@@ -2072,7 +2123,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2072
2123
|
{
|
|
2073
2124
|
"name": "CalculatedColumnSettings",
|
|
2074
2125
|
"kind": "REFERENCE",
|
|
2075
|
-
"description": "
|
|
2126
|
+
"description": "Additional optional properties for Column (e.g. filterable, resizable)",
|
|
2076
2127
|
"uiLabel": "Calculated Column Settings",
|
|
2077
2128
|
"isOptional": true,
|
|
2078
2129
|
"reference": "CalculatedColumnSettings"
|
|
@@ -2159,12 +2210,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2159
2210
|
"description": "Returns all the references in the AdaptableState of the given CalculatedColumn",
|
|
2160
2211
|
"uiLabel": "Get Calculated Column Module References"
|
|
2161
2212
|
},
|
|
2213
|
+
{
|
|
2214
|
+
"name": "getCalculatedColumnsReferencingColumnId",
|
|
2215
|
+
"kind": "function",
|
|
2216
|
+
"description": "Returns all Calculated Columns whose Expression contains the ColumnId",
|
|
2217
|
+
"uiLabel": "Get Calculated Columns Referencing Column Id"
|
|
2218
|
+
},
|
|
2162
2219
|
{
|
|
2163
2220
|
"name": "getCalculatedColumnState",
|
|
2164
2221
|
"kind": "function",
|
|
2165
2222
|
"description": "Retrieves Calculated Column section from Adaptable State",
|
|
2166
2223
|
"uiLabel": "Get Calculated Column State"
|
|
2167
2224
|
},
|
|
2225
|
+
{
|
|
2226
|
+
"name": "getReferencedColumnIdsForCalculatedColumn",
|
|
2227
|
+
"kind": "function",
|
|
2228
|
+
"description": "Gets any ColumnIds referenced in a Calculated Column",
|
|
2229
|
+
"uiLabel": "Get Referenced Column Ids For Calculated Column"
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"name": "getReferencedColumnIdsForCalculatedColumnId",
|
|
2233
|
+
"kind": "function",
|
|
2234
|
+
"description": "Gets any ColumnIds referenced in a Calculated Column",
|
|
2235
|
+
"uiLabel": "Get Referenced Column Ids For Calculated Column Id"
|
|
2236
|
+
},
|
|
2168
2237
|
{
|
|
2169
2238
|
"name": "showCalculatedColumnPopup",
|
|
2170
2239
|
"kind": "function",
|
|
@@ -2178,53 +2247,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2178
2247
|
"kind": "Interface",
|
|
2179
2248
|
"description": "Set of optional properties that define a Calculated Column's behaviour",
|
|
2180
2249
|
"properties": [
|
|
2181
|
-
{
|
|
2182
|
-
"name": "Aggregatable",
|
|
2183
|
-
"kind": "boolean",
|
|
2184
|
-
"description": "Whether Column can be used in an aggregation when grouping",
|
|
2185
|
-
"uiLabel": "Aggregatable",
|
|
2186
|
-
"isOptional": true,
|
|
2187
|
-
"defaultValue": "true"
|
|
2188
|
-
},
|
|
2189
2250
|
{
|
|
2190
2251
|
"name": "DataType",
|
|
2191
2252
|
"kind": "unknown",
|
|
2192
|
-
"description": "Expression's return value DataType; inferred by AdapTable but
|
|
2253
|
+
"description": "Expression's return value DataType; inferred by AdapTable but settable by User",
|
|
2193
2254
|
"uiLabel": "Data Type",
|
|
2194
2255
|
"isOptional": true
|
|
2195
2256
|
},
|
|
2196
|
-
{
|
|
2197
|
-
"name": "Filterable",
|
|
2198
|
-
"kind": "boolean",
|
|
2199
|
-
"description": "Whether Column is filterable",
|
|
2200
|
-
"uiLabel": "Filterable",
|
|
2201
|
-
"isOptional": true,
|
|
2202
|
-
"defaultValue": "true"
|
|
2203
|
-
},
|
|
2204
|
-
{
|
|
2205
|
-
"name": "Groupable",
|
|
2206
|
-
"kind": "boolean",
|
|
2207
|
-
"description": "Whether Column can be grouped",
|
|
2208
|
-
"uiLabel": "Groupable",
|
|
2209
|
-
"isOptional": true,
|
|
2210
|
-
"defaultValue": "true"
|
|
2211
|
-
},
|
|
2212
|
-
{
|
|
2213
|
-
"name": "Pivotable",
|
|
2214
|
-
"kind": "boolean",
|
|
2215
|
-
"description": "Whether Column can be used when grid is in pivot mode",
|
|
2216
|
-
"uiLabel": "Pivotable",
|
|
2217
|
-
"isOptional": true,
|
|
2218
|
-
"defaultValue": "true"
|
|
2219
|
-
},
|
|
2220
|
-
{
|
|
2221
|
-
"name": "Resizable",
|
|
2222
|
-
"kind": "boolean",
|
|
2223
|
-
"description": "Whether Column can be resized (by dragging column header edges)",
|
|
2224
|
-
"uiLabel": "Resizable",
|
|
2225
|
-
"isOptional": true,
|
|
2226
|
-
"defaultValue": "true"
|
|
2227
|
-
},
|
|
2228
2257
|
{
|
|
2229
2258
|
"name": "ShowToolTip",
|
|
2230
2259
|
"kind": "boolean",
|
|
@@ -2232,21 +2261,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2232
2261
|
"uiLabel": "Show Tool Tip",
|
|
2233
2262
|
"isOptional": true,
|
|
2234
2263
|
"defaultValue": "false"
|
|
2235
|
-
},
|
|
2236
|
-
{
|
|
2237
|
-
"name": "Sortable",
|
|
2238
|
-
"kind": "boolean",
|
|
2239
|
-
"description": "Whether Column is sortable",
|
|
2240
|
-
"uiLabel": "Sortable",
|
|
2241
|
-
"isOptional": true,
|
|
2242
|
-
"defaultValue": "true"
|
|
2243
|
-
},
|
|
2244
|
-
{
|
|
2245
|
-
"name": "Width",
|
|
2246
|
-
"kind": "number",
|
|
2247
|
-
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
|
|
2248
|
-
"uiLabel": "Width",
|
|
2249
|
-
"isOptional": true
|
|
2250
2264
|
}
|
|
2251
2265
|
]
|
|
2252
2266
|
},
|
|
@@ -2393,6 +2407,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2393
2407
|
"kind": "TypeAlias",
|
|
2394
2408
|
"description": "List of all the Module buttons Adaptable provides - each Module has a popup for which this is a shortcut button"
|
|
2395
2409
|
},
|
|
2410
|
+
"CellValuesList": {
|
|
2411
|
+
"name": "CellValuesList",
|
|
2412
|
+
"kind": "TypeAlias",
|
|
2413
|
+
"description": "Use PermittedValues instead"
|
|
2414
|
+
},
|
|
2396
2415
|
"ChartApi": {
|
|
2397
2416
|
"name": "ChartApi",
|
|
2398
2417
|
"kind": "Interface",
|
|
@@ -2599,12 +2618,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2599
2618
|
"description": "Returns all Date Columns",
|
|
2600
2619
|
"uiLabel": "Get Date Columns"
|
|
2601
2620
|
},
|
|
2621
|
+
{
|
|
2622
|
+
"name": "getDistinctBulkUpdateDisplayValuesForColumn",
|
|
2623
|
+
"kind": "function",
|
|
2624
|
+
"description": "Gets all distinct column display values for bulk update.",
|
|
2625
|
+
"uiLabel": "Get Distinct Bulk Update Display Values For Column"
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
"name": "getDistinctCustomSortDisplayValuesForColumn",
|
|
2629
|
+
"kind": "function",
|
|
2630
|
+
"description": "Gets all distinct column display values in for custom sort.",
|
|
2631
|
+
"uiLabel": "Get Distinct Custom Sort Display Values For Column"
|
|
2632
|
+
},
|
|
2602
2633
|
{
|
|
2603
2634
|
"name": "getDistinctDisplayValuesForColumn",
|
|
2604
2635
|
"kind": "function",
|
|
2605
2636
|
"description": "Gets all distinct display values in the Column",
|
|
2606
2637
|
"uiLabel": "Get Distinct Display Values For Column"
|
|
2607
2638
|
},
|
|
2639
|
+
{
|
|
2640
|
+
"name": "getDistinctFilterDisplayValuesForColumn",
|
|
2641
|
+
"kind": "function",
|
|
2642
|
+
"description": "Gets all distinct display values in for filter column, used for Floating Filter and Column Header filter",
|
|
2643
|
+
"uiLabel": "Get Distinct Filter Display Values For Column"
|
|
2644
|
+
},
|
|
2608
2645
|
{
|
|
2609
2646
|
"name": "getDistinctRawValuesForColumn",
|
|
2610
2647
|
"kind": "function",
|
|
@@ -2719,12 +2756,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2719
2756
|
"description": "Is Column an Action Column",
|
|
2720
2757
|
"uiLabel": "Is Action Column"
|
|
2721
2758
|
},
|
|
2759
|
+
{
|
|
2760
|
+
"name": "isBooleanColumn",
|
|
2761
|
+
"kind": "function",
|
|
2762
|
+
"description": "Is Column Boolean",
|
|
2763
|
+
"uiLabel": "Is Boolean Column"
|
|
2764
|
+
},
|
|
2722
2765
|
{
|
|
2723
2766
|
"name": "isCalculatedColumn",
|
|
2724
2767
|
"kind": "function",
|
|
2725
2768
|
"description": "Is Column a Calculated Column",
|
|
2726
2769
|
"uiLabel": "Is Calculated Column"
|
|
2727
2770
|
},
|
|
2771
|
+
{
|
|
2772
|
+
"name": "isColumnReferencedInExpression",
|
|
2773
|
+
"kind": "function",
|
|
2774
|
+
"description": "Checks if a column is referenced in a given Expression",
|
|
2775
|
+
"uiLabel": "Is Column Referenced In Expression"
|
|
2776
|
+
},
|
|
2728
2777
|
{
|
|
2729
2778
|
"name": "isDateColumn",
|
|
2730
2779
|
"kind": "function",
|
|
@@ -2778,6 +2827,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2778
2827
|
"kind": "function",
|
|
2779
2828
|
"description": "Makes a Column visible",
|
|
2780
2829
|
"uiLabel": "Show Column"
|
|
2830
|
+
},
|
|
2831
|
+
{
|
|
2832
|
+
"name": "usesAdaptableFilterForm",
|
|
2833
|
+
"kind": "function",
|
|
2834
|
+
"description": "Does Column use AdapTable's Filter Form",
|
|
2835
|
+
"uiLabel": "Uses Adaptable Filter Form"
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
"name": "usesAdaptableQuickFilter",
|
|
2839
|
+
"kind": "function",
|
|
2840
|
+
"description": "Does Column use AdapTable's Quick Filter",
|
|
2841
|
+
"uiLabel": "Uses Adaptable Quick Filter"
|
|
2781
2842
|
}
|
|
2782
2843
|
]
|
|
2783
2844
|
},
|
|
@@ -3027,6 +3088,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3027
3088
|
"description": "Copies User State sections of Adaptable State to clipboard",
|
|
3028
3089
|
"uiLabel": "Copy User State To Clipboard"
|
|
3029
3090
|
},
|
|
3091
|
+
{
|
|
3092
|
+
"name": "dispatchStateReadyAction",
|
|
3093
|
+
"kind": "function",
|
|
3094
|
+
"description": "Sent by each Module when it is Ready",
|
|
3095
|
+
"uiLabel": "Dispatch State Ready Action"
|
|
3096
|
+
},
|
|
3030
3097
|
{
|
|
3031
3098
|
"name": "getAdaptableSearchState",
|
|
3032
3099
|
"kind": "function",
|
|
@@ -3201,6 +3268,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3201
3268
|
"description": "Returns given section of Adaptable State (as JSON or object)",
|
|
3202
3269
|
"uiLabel": "Get User State By State Key"
|
|
3203
3270
|
},
|
|
3271
|
+
{
|
|
3272
|
+
"name": "incrementUerStateRevision",
|
|
3273
|
+
"kind": "function",
|
|
3274
|
+
"description": "Adds '1' to current revision number of State element",
|
|
3275
|
+
"uiLabel": "Increment Uer State Revision"
|
|
3276
|
+
},
|
|
3204
3277
|
{
|
|
3205
3278
|
"name": "loadUserState",
|
|
3206
3279
|
"kind": "function",
|
|
@@ -3456,6 +3529,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3456
3529
|
}
|
|
3457
3530
|
]
|
|
3458
3531
|
},
|
|
3532
|
+
"CustomSortPermittedValues": {
|
|
3533
|
+
"name": "CustomSortPermittedValues",
|
|
3534
|
+
"kind": "Interface",
|
|
3535
|
+
"description": "Custom column values for custom sort."
|
|
3536
|
+
},
|
|
3459
3537
|
"CustomSortState": {
|
|
3460
3538
|
"name": "CustomSortState",
|
|
3461
3539
|
"kind": "Interface",
|
|
@@ -4013,10 +4091,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4013
4091
|
"uiLabel": "Changed At"
|
|
4014
4092
|
},
|
|
4015
4093
|
{
|
|
4016
|
-
"name": "
|
|
4017
|
-
"kind": "
|
|
4018
|
-
"description": "
|
|
4019
|
-
"uiLabel": "Column
|
|
4094
|
+
"name": "column",
|
|
4095
|
+
"kind": "REFERENCE",
|
|
4096
|
+
"description": "Column in which cell is situated",
|
|
4097
|
+
"uiLabel": "Column",
|
|
4098
|
+
"reference": "AdaptableColumn"
|
|
4020
4099
|
},
|
|
4021
4100
|
{
|
|
4022
4101
|
"name": "newValue",
|
|
@@ -4247,6 +4326,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4247
4326
|
"kind": "Interface",
|
|
4248
4327
|
"description": "Object passed into Adaptable Grid Api data management methods",
|
|
4249
4328
|
"properties": [
|
|
4329
|
+
{
|
|
4330
|
+
"name": "addIndex",
|
|
4331
|
+
"kind": "number",
|
|
4332
|
+
"description": "Index where to add new rows",
|
|
4333
|
+
"uiLabel": "Add Index",
|
|
4334
|
+
"isOptional": true
|
|
4335
|
+
},
|
|
4250
4336
|
{
|
|
4251
4337
|
"name": "callback",
|
|
4252
4338
|
"kind": "unknown",
|
|
@@ -4257,7 +4343,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4257
4343
|
{
|
|
4258
4344
|
"name": "runAsync",
|
|
4259
4345
|
"kind": "boolean",
|
|
4260
|
-
"description": "Whether data should be updated
|
|
4346
|
+
"description": "Whether data should be updated asynchronously",
|
|
4261
4347
|
"uiLabel": "Run Async",
|
|
4262
4348
|
"isOptional": true
|
|
4263
4349
|
}
|
|
@@ -4332,6 +4418,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4332
4418
|
}
|
|
4333
4419
|
]
|
|
4334
4420
|
},
|
|
4421
|
+
"EditLookUpPermittedValues": {
|
|
4422
|
+
"name": "EditLookUpPermittedValues",
|
|
4423
|
+
"kind": "Interface",
|
|
4424
|
+
"description": "Used to define permitted values for inline column editor"
|
|
4425
|
+
},
|
|
4335
4426
|
"EditOptions": {
|
|
4336
4427
|
"name": "EditOptions",
|
|
4337
4428
|
"kind": "Interface",
|
|
@@ -5188,7 +5279,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5188
5279
|
{
|
|
5189
5280
|
"name": "defaultDateColumnFilter",
|
|
5190
5281
|
"kind": "unknown",
|
|
5191
|
-
"description": "Default filter type for date Columns
|
|
5282
|
+
"description": "Default filter type for date Columns",
|
|
5192
5283
|
"uiLabel": "Default Date Column Filter",
|
|
5193
5284
|
"isOptional": true,
|
|
5194
5285
|
"gridInfo": "item",
|
|
@@ -5206,7 +5297,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5206
5297
|
{
|
|
5207
5298
|
"name": "defaultNumericColumnFilter",
|
|
5208
5299
|
"kind": "unknown",
|
|
5209
|
-
"description": "Default filter type for numeric Columns
|
|
5300
|
+
"description": "Default filter type for numeric Columns",
|
|
5210
5301
|
"uiLabel": "Default Numeric Column Filter",
|
|
5211
5302
|
"isOptional": true,
|
|
5212
5303
|
"gridInfo": "item",
|
|
@@ -5215,7 +5306,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5215
5306
|
{
|
|
5216
5307
|
"name": "defaultStringColumnFilter",
|
|
5217
5308
|
"kind": "unknown",
|
|
5218
|
-
"description": "Default filter type for string Columns
|
|
5309
|
+
"description": "Default filter type for string Columns",
|
|
5219
5310
|
"uiLabel": "Default String Column Filter",
|
|
5220
5311
|
"isOptional": true,
|
|
5221
5312
|
"gridInfo": "item",
|
|
@@ -5224,7 +5315,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5224
5315
|
{
|
|
5225
5316
|
"name": "enableFilterOnSpecialColumns",
|
|
5226
5317
|
"kind": "boolean",
|
|
5227
|
-
"description": "Allows filtering on Calculated
|
|
5318
|
+
"description": "Allows filtering on Calculated & FreeText columns",
|
|
5228
5319
|
"uiLabel": "Enable Filter On Special Columns",
|
|
5229
5320
|
"isOptional": true,
|
|
5230
5321
|
"gridInfo": "item",
|
|
@@ -5291,6 +5382,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5291
5382
|
"gridInfo": "item",
|
|
5292
5383
|
"defaultValue": "'mouseenter'"
|
|
5293
5384
|
},
|
|
5385
|
+
{
|
|
5386
|
+
"name": "quickFilterValuesTrigger",
|
|
5387
|
+
"kind": "unknown",
|
|
5388
|
+
"description": "Whether to open Quick Filter Values dropdown with mouse hover or click",
|
|
5389
|
+
"uiLabel": "Quick Filter Values Trigger",
|
|
5390
|
+
"isOptional": true,
|
|
5391
|
+
"gridInfo": "item",
|
|
5392
|
+
"defaultValue": "'mouseenter'"
|
|
5393
|
+
},
|
|
5294
5394
|
{
|
|
5295
5395
|
"name": "sortColumnValuesInFilter",
|
|
5296
5396
|
"kind": "boolean",
|
|
@@ -5336,6 +5436,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5336
5436
|
}
|
|
5337
5437
|
]
|
|
5338
5438
|
},
|
|
5439
|
+
"FilterPermittedValues": {
|
|
5440
|
+
"name": "FilterPermittedValues",
|
|
5441
|
+
"kind": "Interface",
|
|
5442
|
+
"description": "Used to define values inside the floating filter and floating filter (quick filter)",
|
|
5443
|
+
"properties": [
|
|
5444
|
+
{
|
|
5445
|
+
"name": "suppressClientSideFiltering",
|
|
5446
|
+
"kind": "boolean",
|
|
5447
|
+
"description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
|
|
5448
|
+
"uiLabel": "Suppress Client Side Filtering",
|
|
5449
|
+
"isOptional": true
|
|
5450
|
+
}
|
|
5451
|
+
]
|
|
5452
|
+
},
|
|
5339
5453
|
"FilterState": {
|
|
5340
5454
|
"name": "FilterState",
|
|
5341
5455
|
"kind": "Interface",
|
|
@@ -5754,6 +5868,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5754
5868
|
"uiLabel": "Default Value",
|
|
5755
5869
|
"isOptional": true
|
|
5756
5870
|
},
|
|
5871
|
+
{
|
|
5872
|
+
"name": "FreeTextColumnSettings",
|
|
5873
|
+
"kind": "REFERENCE",
|
|
5874
|
+
"description": "Additional optional properties for Column (e.g. filterable, resizable)",
|
|
5875
|
+
"uiLabel": "Free Text Column Settings",
|
|
5876
|
+
"isOptional": true,
|
|
5877
|
+
"reference": "FreeTextColumnSettings"
|
|
5878
|
+
},
|
|
5757
5879
|
{
|
|
5758
5880
|
"name": "FreeTextStoredValues",
|
|
5759
5881
|
"kind": "unknown",
|
|
@@ -5863,6 +5985,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5863
5985
|
}
|
|
5864
5986
|
]
|
|
5865
5987
|
},
|
|
5988
|
+
"FreeTextColumnSettings": {
|
|
5989
|
+
"name": "FreeTextColumnSettings",
|
|
5990
|
+
"kind": "Interface",
|
|
5991
|
+
"description": "Set of optional properties that define a FreeText Columns behaviour"
|
|
5992
|
+
},
|
|
5866
5993
|
"FreeTextColumnState": {
|
|
5867
5994
|
"name": "FreeTextColumnState",
|
|
5868
5995
|
"kind": "Interface",
|
|
@@ -6401,6 +6528,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6401
6528
|
"description": "Get keys for any open rows in Row Grouping",
|
|
6402
6529
|
"uiLabel": "Get Expand Row Groups Keys"
|
|
6403
6530
|
},
|
|
6531
|
+
{
|
|
6532
|
+
"name": "getFilteredData",
|
|
6533
|
+
"kind": "function",
|
|
6534
|
+
"description": "Retrieves filtered data from the grid",
|
|
6535
|
+
"uiLabel": "Get Filtered Data"
|
|
6536
|
+
},
|
|
6404
6537
|
{
|
|
6405
6538
|
"name": "getFirstRowNode",
|
|
6406
6539
|
"kind": "function",
|
|
@@ -6419,6 +6552,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6419
6552
|
"description": "Retrieves Cell in given Row and Column",
|
|
6420
6553
|
"uiLabel": "Get Grid Cell From Row Node"
|
|
6421
6554
|
},
|
|
6555
|
+
{
|
|
6556
|
+
"name": "getGridContainerElement",
|
|
6557
|
+
"kind": "function",
|
|
6558
|
+
"description": "Returns the Grid Container in which the Adaptable Instance is present",
|
|
6559
|
+
"uiLabel": "Get Grid Container Element"
|
|
6560
|
+
},
|
|
6561
|
+
{
|
|
6562
|
+
"name": "getGridData",
|
|
6563
|
+
"kind": "function",
|
|
6564
|
+
"description": "Retrieves all data from the grid",
|
|
6565
|
+
"uiLabel": "Get Grid Data"
|
|
6566
|
+
},
|
|
6422
6567
|
{
|
|
6423
6568
|
"name": "getGridState",
|
|
6424
6569
|
"kind": "function",
|
|
@@ -6581,6 +6726,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6581
6726
|
"description": "Refresh Cells in AdapTable",
|
|
6582
6727
|
"uiLabel": "Refresh Cells"
|
|
6583
6728
|
},
|
|
6729
|
+
{
|
|
6730
|
+
"name": "refreshRow",
|
|
6731
|
+
"kind": "function",
|
|
6732
|
+
"description": "Forces a render of a row",
|
|
6733
|
+
"uiLabel": "Refresh Row"
|
|
6734
|
+
},
|
|
6584
6735
|
{
|
|
6585
6736
|
"name": "selectAll",
|
|
6586
6737
|
"kind": "function",
|
|
@@ -6623,6 +6774,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6623
6774
|
"description": "Sorts AdapTable using given Column Sorts",
|
|
6624
6775
|
"uiLabel": "Set Adaptable Sorting"
|
|
6625
6776
|
},
|
|
6777
|
+
{
|
|
6778
|
+
"name": "setCellsValue",
|
|
6779
|
+
"kind": "function",
|
|
6780
|
+
"description": "Updates multiple cells",
|
|
6781
|
+
"uiLabel": "Set Cells Value"
|
|
6782
|
+
},
|
|
6626
6783
|
{
|
|
6627
6784
|
"name": "setCellValue",
|
|
6628
6785
|
"kind": "function",
|
|
@@ -6679,10 +6836,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6679
6836
|
"description": "Defines a Cell in Adaptable - every cell is an intersection of a Column Id and a Primary Key Value",
|
|
6680
6837
|
"properties": [
|
|
6681
6838
|
{
|
|
6682
|
-
"name": "
|
|
6683
|
-
"kind": "
|
|
6839
|
+
"name": "column",
|
|
6840
|
+
"kind": "REFERENCE",
|
|
6684
6841
|
"description": "Column in which cell is situtated",
|
|
6685
|
-
"uiLabel": "Column
|
|
6842
|
+
"uiLabel": "Column",
|
|
6843
|
+
"reference": "AdaptableColumn"
|
|
6686
6844
|
},
|
|
6687
6845
|
{
|
|
6688
6846
|
"name": "displayValue",
|
|
@@ -7472,7 +7630,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7472
7630
|
{
|
|
7473
7631
|
"name": "createDefaultLayout",
|
|
7474
7632
|
"kind": "boolean",
|
|
7475
|
-
"description": "Whether a "Default Layout" will be created in addition to Layouts in Config
|
|
7633
|
+
"description": "Whether a "Default Layout" will be created in addition to Layouts provided in Config",
|
|
7476
7634
|
"uiLabel": "Create Default Layout",
|
|
7477
7635
|
"isOptional": true,
|
|
7478
7636
|
"gridInfo": "item",
|
|
@@ -8142,6 +8300,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8142
8300
|
"kind": "Interface",
|
|
8143
8301
|
"description": "Internal State used by AdapTable for managing the OpenFin plugin"
|
|
8144
8302
|
},
|
|
8303
|
+
"PermittedValues": {
|
|
8304
|
+
"name": "PermittedValues",
|
|
8305
|
+
"kind": "Interface",
|
|
8306
|
+
"description": "Permitted/possible values, when column values can be selected (e.g. sort, bulk-update)",
|
|
8307
|
+
"properties": [
|
|
8308
|
+
{
|
|
8309
|
+
"name": "values",
|
|
8310
|
+
"kind": "unknown",
|
|
8311
|
+
"description": "Values to display: either hardcoded list or a function",
|
|
8312
|
+
"uiLabel": "Values",
|
|
8313
|
+
"isOptional": true
|
|
8314
|
+
}
|
|
8315
|
+
]
|
|
8316
|
+
},
|
|
8145
8317
|
"PluginsApi": {
|
|
8146
8318
|
"name": "PluginsApi",
|
|
8147
8319
|
"kind": "Interface",
|
|
@@ -8987,32 +9159,46 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8987
9159
|
"kind": "Interface",
|
|
8988
9160
|
"description": "Provides meta data about a Row in Adaptable",
|
|
8989
9161
|
"properties": [
|
|
9162
|
+
{
|
|
9163
|
+
"name": "isDisplayed",
|
|
9164
|
+
"kind": "boolean",
|
|
9165
|
+
"description": "Is Row displayed (ie. filtered, not necessarily in viewport)",
|
|
9166
|
+
"uiLabel": "Is Displayed",
|
|
9167
|
+
"isOptional": true
|
|
9168
|
+
},
|
|
8990
9169
|
{
|
|
8991
9170
|
"name": "isExpanded",
|
|
8992
9171
|
"kind": "boolean",
|
|
8993
|
-
"description": "
|
|
9172
|
+
"description": "Is Row expanded (if a group row)",
|
|
8994
9173
|
"uiLabel": "Is Expanded",
|
|
8995
9174
|
"isOptional": true
|
|
8996
9175
|
},
|
|
8997
9176
|
{
|
|
8998
9177
|
"name": "isGroup",
|
|
8999
9178
|
"kind": "boolean",
|
|
9000
|
-
"description": "
|
|
9179
|
+
"description": "Is Row grouped",
|
|
9001
9180
|
"uiLabel": "Is Group",
|
|
9002
9181
|
"isOptional": true
|
|
9003
9182
|
},
|
|
9004
9183
|
{
|
|
9005
9184
|
"name": "isMaster",
|
|
9006
9185
|
"kind": "boolean",
|
|
9007
|
-
"description": "
|
|
9186
|
+
"description": "Is Row a Master Row (in a Master-Detail grid)",
|
|
9008
9187
|
"uiLabel": "Is Master",
|
|
9009
9188
|
"isOptional": true
|
|
9010
9189
|
},
|
|
9011
9190
|
{
|
|
9012
|
-
"name": "
|
|
9191
|
+
"name": "isSelected",
|
|
9192
|
+
"kind": "boolean",
|
|
9193
|
+
"description": "Is Row selected",
|
|
9194
|
+
"uiLabel": "Is Selected",
|
|
9195
|
+
"isOptional": true
|
|
9196
|
+
},
|
|
9197
|
+
{
|
|
9198
|
+
"name": "rowGroupLevel",
|
|
9013
9199
|
"kind": "number",
|
|
9014
9200
|
"description": "What level the Row is (if Row Grouping is active)",
|
|
9015
|
-
"uiLabel": "Level",
|
|
9201
|
+
"uiLabel": "Row Group Level",
|
|
9016
9202
|
"isOptional": true
|
|
9017
9203
|
}
|
|
9018
9204
|
]
|
|
@@ -9953,6 +10139,84 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9953
10139
|
}
|
|
9954
10140
|
]
|
|
9955
10141
|
},
|
|
10142
|
+
"SpecialColumnSettings": {
|
|
10143
|
+
"name": "SpecialColumnSettings",
|
|
10144
|
+
"kind": "Interface",
|
|
10145
|
+
"description": "Base Settings for SpecialColumns",
|
|
10146
|
+
"properties": [
|
|
10147
|
+
{
|
|
10148
|
+
"name": "Aggregatable",
|
|
10149
|
+
"kind": "boolean",
|
|
10150
|
+
"description": "Whether Column can be used in an aggregation when grouping",
|
|
10151
|
+
"uiLabel": "Aggregatable",
|
|
10152
|
+
"isOptional": true,
|
|
10153
|
+
"defaultValue": "true"
|
|
10154
|
+
},
|
|
10155
|
+
{
|
|
10156
|
+
"name": "Filterable",
|
|
10157
|
+
"kind": "boolean",
|
|
10158
|
+
"description": "Whether Column is filterable",
|
|
10159
|
+
"uiLabel": "Filterable",
|
|
10160
|
+
"isOptional": true,
|
|
10161
|
+
"defaultValue": "true"
|
|
10162
|
+
},
|
|
10163
|
+
{
|
|
10164
|
+
"name": "Groupable",
|
|
10165
|
+
"kind": "boolean",
|
|
10166
|
+
"description": "Whether Column can be grouped",
|
|
10167
|
+
"uiLabel": "Groupable",
|
|
10168
|
+
"isOptional": true,
|
|
10169
|
+
"defaultValue": "true"
|
|
10170
|
+
},
|
|
10171
|
+
{
|
|
10172
|
+
"name": "Pivotable",
|
|
10173
|
+
"kind": "boolean",
|
|
10174
|
+
"description": "Whether Column can be used when grid is in pivot mode",
|
|
10175
|
+
"uiLabel": "Pivotable",
|
|
10176
|
+
"isOptional": true,
|
|
10177
|
+
"defaultValue": "true"
|
|
10178
|
+
},
|
|
10179
|
+
{
|
|
10180
|
+
"name": "Resizable",
|
|
10181
|
+
"kind": "boolean",
|
|
10182
|
+
"description": "Whether Column can be resized (by dragging column header edges)",
|
|
10183
|
+
"uiLabel": "Resizable",
|
|
10184
|
+
"isOptional": true,
|
|
10185
|
+
"defaultValue": "true"
|
|
10186
|
+
},
|
|
10187
|
+
{
|
|
10188
|
+
"name": "Sortable",
|
|
10189
|
+
"kind": "boolean",
|
|
10190
|
+
"description": "Whether Column is sortable",
|
|
10191
|
+
"uiLabel": "Sortable",
|
|
10192
|
+
"isOptional": true,
|
|
10193
|
+
"defaultValue": "true"
|
|
10194
|
+
},
|
|
10195
|
+
{
|
|
10196
|
+
"name": "SuppressMenu",
|
|
10197
|
+
"kind": "boolean",
|
|
10198
|
+
"description": "Whether if no menu should be shown for this Column header.",
|
|
10199
|
+
"uiLabel": "Suppress Menu",
|
|
10200
|
+
"isOptional": true,
|
|
10201
|
+
"defaultValue": "false"
|
|
10202
|
+
},
|
|
10203
|
+
{
|
|
10204
|
+
"name": "SuppressMovable",
|
|
10205
|
+
"kind": "boolean",
|
|
10206
|
+
"description": "Whether if this Column should be movable via dragging",
|
|
10207
|
+
"uiLabel": "Suppress Movable",
|
|
10208
|
+
"isOptional": true,
|
|
10209
|
+
"defaultValue": "false"
|
|
10210
|
+
},
|
|
10211
|
+
{
|
|
10212
|
+
"name": "Width",
|
|
10213
|
+
"kind": "number",
|
|
10214
|
+
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
|
|
10215
|
+
"uiLabel": "Width",
|
|
10216
|
+
"isOptional": true
|
|
10217
|
+
}
|
|
10218
|
+
]
|
|
10219
|
+
},
|
|
9956
10220
|
"StateOptions": {
|
|
9957
10221
|
"name": "StateOptions",
|
|
9958
10222
|
"kind": "Interface",
|
|
@@ -10632,6 +10896,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10632
10896
|
"description": "Retrieves Color Palette currently being used",
|
|
10633
10897
|
"uiLabel": "Get Color Palette"
|
|
10634
10898
|
},
|
|
10899
|
+
{
|
|
10900
|
+
"name": "getCustomSortPermittedValuesForColumn",
|
|
10901
|
+
"kind": "function",
|
|
10902
|
+
"description": "Retrieves Permitted values for Custom sort.",
|
|
10903
|
+
"uiLabel": "Get Custom Sort Permitted Values For Column"
|
|
10904
|
+
},
|
|
10635
10905
|
{
|
|
10636
10906
|
"name": "getEditableCellStyle",
|
|
10637
10907
|
"kind": "function",
|
|
@@ -10650,6 +10920,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10650
10920
|
"description": "Retrieves actual Look Up Values from an EditLookUpItem",
|
|
10651
10921
|
"uiLabel": "Get Edit Look Up Values For Edit Look Up Item"
|
|
10652
10922
|
},
|
|
10923
|
+
{
|
|
10924
|
+
"name": "getFilterPermittedValuesForColumn",
|
|
10925
|
+
"kind": "function",
|
|
10926
|
+
"description": "Retrieves Permitted values for filtering by column values in Floating Filter and dropdown Filter.",
|
|
10927
|
+
"uiLabel": "Get Filter Permitted Values For Column"
|
|
10928
|
+
},
|
|
10653
10929
|
{
|
|
10654
10930
|
"name": "getPermittedValuesForColumn",
|
|
10655
10931
|
"kind": "function",
|
|
@@ -10691,6 +10967,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10691
10967
|
"defaultValue": "null",
|
|
10692
10968
|
"reference": "AdaptableIcon"
|
|
10693
10969
|
},
|
|
10970
|
+
{
|
|
10971
|
+
"name": "bulkUpdatePermittedValues",
|
|
10972
|
+
"kind": "unknown",
|
|
10973
|
+
"description": "Custom column values for editing via bulk-update. When not defined it defaults to permittedValues.",
|
|
10974
|
+
"uiLabel": "Bulk Update Permitted Values",
|
|
10975
|
+
"isOptional": true
|
|
10976
|
+
},
|
|
10694
10977
|
{
|
|
10695
10978
|
"name": "colorPalette",
|
|
10696
10979
|
"kind": "unknown",
|
|
@@ -10698,6 +10981,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10698
10981
|
"uiLabel": "Color Palette",
|
|
10699
10982
|
"isOptional": true
|
|
10700
10983
|
},
|
|
10984
|
+
{
|
|
10985
|
+
"name": "customSortPermittedValues",
|
|
10986
|
+
"kind": "unknown",
|
|
10987
|
+
"description": "Custom column values for defining custom sort. When not defined it defaults to permittedValues.",
|
|
10988
|
+
"uiLabel": "Custom Sort Permitted Values",
|
|
10989
|
+
"isOptional": true
|
|
10990
|
+
},
|
|
10701
10991
|
{
|
|
10702
10992
|
"name": "dateInputOptions",
|
|
10703
10993
|
"kind": "REFERENCE",
|
|
@@ -10717,10 +11007,17 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10717
11007
|
{
|
|
10718
11008
|
"name": "editLookUpItems",
|
|
10719
11009
|
"kind": "unknown",
|
|
10720
|
-
"description": "Dropdown values displayed when column is being edited",
|
|
11010
|
+
"description": "Dropdown values displayed when column is being edited. When not defined it defaults to permittedValues.",
|
|
10721
11011
|
"uiLabel": "Edit Look Up Items",
|
|
10722
11012
|
"isOptional": true
|
|
10723
11013
|
},
|
|
11014
|
+
{
|
|
11015
|
+
"name": "filterPermittedValues",
|
|
11016
|
+
"kind": "unknown",
|
|
11017
|
+
"description": "Dropdown values for filter options inside floating and header filter. When not defined it defaults to permittedValues.",
|
|
11018
|
+
"uiLabel": "Filter Permitted Values",
|
|
11019
|
+
"isOptional": true
|
|
11020
|
+
},
|
|
10724
11021
|
{
|
|
10725
11022
|
"name": "permittedValues",
|
|
10726
11023
|
"kind": "unknown",
|