@adaptabletools/adaptable 10.0.2 → 10.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/UserInterfaceOptions.d.ts +89 -4
- package/src/Api/AlertApi.d.ts +1 -1
- package/src/Api/ColumnApi.d.ts +33 -0
- package/src/Api/ConfigApi.d.ts +8 -0
- package/src/Api/GridApi.d.ts +34 -8
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
- package/src/Api/Implementation/AlertApiImpl.js +11 -4
- package/src/Api/Implementation/ColumnApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ColumnApiImpl.js +37 -1
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ConfigApiImpl.js +28 -17
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +2 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +9 -0
- package/src/Api/Implementation/GridApiImpl.js +17 -1
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -0
- package/src/Api/Implementation/InternalApiImpl.js +16 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +11 -8
- package/src/Api/Implementation/UserInterfaceApiImpl.js +57 -80
- package/src/Api/InternalApi.d.ts +2 -0
- package/src/Api/UserInterfaceApi.d.ts +14 -5
- package/src/PredefinedConfig/AlertState.d.ts +5 -0
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +4 -37
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +16 -15
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
- package/src/{Utilities/Interface/ProgressIndicator.js → PredefinedConfig/Common/SpecialColumnSettings.js} +0 -0
- package/src/PredefinedConfig/FilterState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +10 -0
- package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
- package/src/PredefinedConfig/SystemState.d.ts +4 -1
- package/src/Redux/Store/AdaptableStore.js +4 -0
- package/src/Strategy/AlertModule.js +1 -1
- package/src/Strategy/ExportModule.d.ts +0 -2
- package/src/Strategy/ExportModule.js +58 -61
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
- package/src/Utilities/Helpers/DateHelper.d.ts +2 -2
- package/src/Utilities/Helpers/DateHelper.js +30 -20
- package/src/Utilities/ObjectFactory.d.ts +1 -1
- package/src/Utilities/ObjectFactory.js +13 -1
- package/src/Utilities/Services/MetamodelService.js +1 -0
- package/src/Utilities/Services/ReportService.js +1 -1
- 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/Wizard/AlertDisplayWizardSection.js +19 -5
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.js +4 -2
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
- package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
- package/src/View/Components/FilterForm/FilterForm.js +44 -23
- 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 +64 -23
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
- package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
- package/src/View/Components/Selectors/ColumnValueSelector.js +45 -13
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +3 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +3 -1
- package/src/View/GridInfo/GridInfoPopup.js +4 -1
- 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 +20 -3
- package/src/agGrid/Adaptable.d.ts +20 -4
- package/src/agGrid/Adaptable.js +166 -50
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/DropdownButton/index.js +1 -1
- 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 +72 -2
- package/src/metamodel/adaptable.metamodel.js +304 -69
- 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",
|
|
@@ -1775,6 +1821,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1775
1821
|
"isOptional": true,
|
|
1776
1822
|
"reference": "AlertProperties"
|
|
1777
1823
|
},
|
|
1824
|
+
{
|
|
1825
|
+
"name": "MessageText",
|
|
1826
|
+
"kind": "unknown",
|
|
1827
|
+
"description": "Alert Message - can be string or function; if not provided AdapTable creates dynamically using Rule & Scope",
|
|
1828
|
+
"uiLabel": "Message Text",
|
|
1829
|
+
"isOptional": true
|
|
1830
|
+
},
|
|
1778
1831
|
{
|
|
1779
1832
|
"name": "MessageType",
|
|
1780
1833
|
"kind": "REFERENCE",
|
|
@@ -2072,7 +2125,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2072
2125
|
{
|
|
2073
2126
|
"name": "CalculatedColumnSettings",
|
|
2074
2127
|
"kind": "REFERENCE",
|
|
2075
|
-
"description": "
|
|
2128
|
+
"description": "Additional optional properties for Column (e.g. filterable, resizable)",
|
|
2076
2129
|
"uiLabel": "Calculated Column Settings",
|
|
2077
2130
|
"isOptional": true,
|
|
2078
2131
|
"reference": "CalculatedColumnSettings"
|
|
@@ -2178,53 +2231,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2178
2231
|
"kind": "Interface",
|
|
2179
2232
|
"description": "Set of optional properties that define a Calculated Column's behaviour",
|
|
2180
2233
|
"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
2234
|
{
|
|
2190
2235
|
"name": "DataType",
|
|
2191
2236
|
"kind": "unknown",
|
|
2192
|
-
"description": "Expression's return value DataType; inferred by AdapTable but
|
|
2237
|
+
"description": "Expression's return value DataType; inferred by AdapTable but settable by User",
|
|
2193
2238
|
"uiLabel": "Data Type",
|
|
2194
2239
|
"isOptional": true
|
|
2195
2240
|
},
|
|
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
2241
|
{
|
|
2229
2242
|
"name": "ShowToolTip",
|
|
2230
2243
|
"kind": "boolean",
|
|
@@ -2232,21 +2245,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2232
2245
|
"uiLabel": "Show Tool Tip",
|
|
2233
2246
|
"isOptional": true,
|
|
2234
2247
|
"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
2248
|
}
|
|
2251
2249
|
]
|
|
2252
2250
|
},
|
|
@@ -2393,6 +2391,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2393
2391
|
"kind": "TypeAlias",
|
|
2394
2392
|
"description": "List of all the Module buttons Adaptable provides - each Module has a popup for which this is a shortcut button"
|
|
2395
2393
|
},
|
|
2394
|
+
"CellValuesList": {
|
|
2395
|
+
"name": "CellValuesList",
|
|
2396
|
+
"kind": "TypeAlias",
|
|
2397
|
+
"description": "Use PermittedValues instead"
|
|
2398
|
+
},
|
|
2396
2399
|
"ChartApi": {
|
|
2397
2400
|
"name": "ChartApi",
|
|
2398
2401
|
"kind": "Interface",
|
|
@@ -2599,12 +2602,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2599
2602
|
"description": "Returns all Date Columns",
|
|
2600
2603
|
"uiLabel": "Get Date Columns"
|
|
2601
2604
|
},
|
|
2605
|
+
{
|
|
2606
|
+
"name": "getDistinctBulkUpdateDisplayValuesForColumn",
|
|
2607
|
+
"kind": "function",
|
|
2608
|
+
"description": "Gets all distinct column display values for bulk update.",
|
|
2609
|
+
"uiLabel": "Get Distinct Bulk Update Display Values For Column"
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"name": "getDistinctCustomSortDisplayValuesForColumn",
|
|
2613
|
+
"kind": "function",
|
|
2614
|
+
"description": "Gets all distinct column display values in for custom sort.",
|
|
2615
|
+
"uiLabel": "Get Distinct Custom Sort Display Values For Column"
|
|
2616
|
+
},
|
|
2602
2617
|
{
|
|
2603
2618
|
"name": "getDistinctDisplayValuesForColumn",
|
|
2604
2619
|
"kind": "function",
|
|
2605
2620
|
"description": "Gets all distinct display values in the Column",
|
|
2606
2621
|
"uiLabel": "Get Distinct Display Values For Column"
|
|
2607
2622
|
},
|
|
2623
|
+
{
|
|
2624
|
+
"name": "getDistinctFilterDisplayValuesForColumn",
|
|
2625
|
+
"kind": "function",
|
|
2626
|
+
"description": "Gets all distinct display values in for filter column, used for Floating Filter and Column Header filter",
|
|
2627
|
+
"uiLabel": "Get Distinct Filter Display Values For Column"
|
|
2628
|
+
},
|
|
2608
2629
|
{
|
|
2609
2630
|
"name": "getDistinctRawValuesForColumn",
|
|
2610
2631
|
"kind": "function",
|
|
@@ -2719,6 +2740,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2719
2740
|
"description": "Is Column an Action Column",
|
|
2720
2741
|
"uiLabel": "Is Action Column"
|
|
2721
2742
|
},
|
|
2743
|
+
{
|
|
2744
|
+
"name": "isBooleanColumn",
|
|
2745
|
+
"kind": "function",
|
|
2746
|
+
"description": "Is Column Boolean",
|
|
2747
|
+
"uiLabel": "Is Boolean Column"
|
|
2748
|
+
},
|
|
2722
2749
|
{
|
|
2723
2750
|
"name": "isCalculatedColumn",
|
|
2724
2751
|
"kind": "function",
|
|
@@ -2778,6 +2805,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2778
2805
|
"kind": "function",
|
|
2779
2806
|
"description": "Makes a Column visible",
|
|
2780
2807
|
"uiLabel": "Show Column"
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
"name": "usesAdaptableFilterForm",
|
|
2811
|
+
"kind": "function",
|
|
2812
|
+
"description": "Does Column use AdapTable's Filter Form",
|
|
2813
|
+
"uiLabel": "Uses Adaptable Filter Form"
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
"name": "usesAdaptableQuickFilter",
|
|
2817
|
+
"kind": "function",
|
|
2818
|
+
"description": "Does Column use AdapTable's Quick Filter",
|
|
2819
|
+
"uiLabel": "Uses Adaptable Quick Filter"
|
|
2781
2820
|
}
|
|
2782
2821
|
]
|
|
2783
2822
|
},
|
|
@@ -3027,6 +3066,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3027
3066
|
"description": "Copies User State sections of Adaptable State to clipboard",
|
|
3028
3067
|
"uiLabel": "Copy User State To Clipboard"
|
|
3029
3068
|
},
|
|
3069
|
+
{
|
|
3070
|
+
"name": "dispatchStateReadyAction",
|
|
3071
|
+
"kind": "function",
|
|
3072
|
+
"description": "Sent by each Module when it is Ready",
|
|
3073
|
+
"uiLabel": "Dispatch State Ready Action"
|
|
3074
|
+
},
|
|
3030
3075
|
{
|
|
3031
3076
|
"name": "getAdaptableSearchState",
|
|
3032
3077
|
"kind": "function",
|
|
@@ -3201,6 +3246,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3201
3246
|
"description": "Returns given section of Adaptable State (as JSON or object)",
|
|
3202
3247
|
"uiLabel": "Get User State By State Key"
|
|
3203
3248
|
},
|
|
3249
|
+
{
|
|
3250
|
+
"name": "incrementUerStateRevision",
|
|
3251
|
+
"kind": "function",
|
|
3252
|
+
"description": "Adds '1' to current revision number of State element",
|
|
3253
|
+
"uiLabel": "Increment Uer State Revision"
|
|
3254
|
+
},
|
|
3204
3255
|
{
|
|
3205
3256
|
"name": "loadUserState",
|
|
3206
3257
|
"kind": "function",
|
|
@@ -4247,6 +4298,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4247
4298
|
"kind": "Interface",
|
|
4248
4299
|
"description": "Object passed into Adaptable Grid Api data management methods",
|
|
4249
4300
|
"properties": [
|
|
4301
|
+
{
|
|
4302
|
+
"name": "addIndex",
|
|
4303
|
+
"kind": "number",
|
|
4304
|
+
"description": "Index where to add new rows",
|
|
4305
|
+
"uiLabel": "Add Index",
|
|
4306
|
+
"isOptional": true
|
|
4307
|
+
},
|
|
4250
4308
|
{
|
|
4251
4309
|
"name": "callback",
|
|
4252
4310
|
"kind": "unknown",
|
|
@@ -4257,7 +4315,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4257
4315
|
{
|
|
4258
4316
|
"name": "runAsync",
|
|
4259
4317
|
"kind": "boolean",
|
|
4260
|
-
"description": "Whether data should be updated
|
|
4318
|
+
"description": "Whether data should be updated asynchronously",
|
|
4261
4319
|
"uiLabel": "Run Async",
|
|
4262
4320
|
"isOptional": true
|
|
4263
4321
|
}
|
|
@@ -5188,7 +5246,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5188
5246
|
{
|
|
5189
5247
|
"name": "defaultDateColumnFilter",
|
|
5190
5248
|
"kind": "unknown",
|
|
5191
|
-
"description": "Default filter type for date Columns
|
|
5249
|
+
"description": "Default filter type for date Columns",
|
|
5192
5250
|
"uiLabel": "Default Date Column Filter",
|
|
5193
5251
|
"isOptional": true,
|
|
5194
5252
|
"gridInfo": "item",
|
|
@@ -5206,7 +5264,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5206
5264
|
{
|
|
5207
5265
|
"name": "defaultNumericColumnFilter",
|
|
5208
5266
|
"kind": "unknown",
|
|
5209
|
-
"description": "Default filter type for numeric Columns
|
|
5267
|
+
"description": "Default filter type for numeric Columns",
|
|
5210
5268
|
"uiLabel": "Default Numeric Column Filter",
|
|
5211
5269
|
"isOptional": true,
|
|
5212
5270
|
"gridInfo": "item",
|
|
@@ -5215,7 +5273,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5215
5273
|
{
|
|
5216
5274
|
"name": "defaultStringColumnFilter",
|
|
5217
5275
|
"kind": "unknown",
|
|
5218
|
-
"description": "Default filter type for string Columns
|
|
5276
|
+
"description": "Default filter type for string Columns",
|
|
5219
5277
|
"uiLabel": "Default String Column Filter",
|
|
5220
5278
|
"isOptional": true,
|
|
5221
5279
|
"gridInfo": "item",
|
|
@@ -5224,7 +5282,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5224
5282
|
{
|
|
5225
5283
|
"name": "enableFilterOnSpecialColumns",
|
|
5226
5284
|
"kind": "boolean",
|
|
5227
|
-
"description": "Allows filtering on Calculated
|
|
5285
|
+
"description": "Allows filtering on Calculated & FreeText columns",
|
|
5228
5286
|
"uiLabel": "Enable Filter On Special Columns",
|
|
5229
5287
|
"isOptional": true,
|
|
5230
5288
|
"gridInfo": "item",
|
|
@@ -5291,6 +5349,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5291
5349
|
"gridInfo": "item",
|
|
5292
5350
|
"defaultValue": "'mouseenter'"
|
|
5293
5351
|
},
|
|
5352
|
+
{
|
|
5353
|
+
"name": "quickFilterValuesTrigger",
|
|
5354
|
+
"kind": "unknown",
|
|
5355
|
+
"description": "Whether to open Quick Filter Values dropdown with mouse hover or click",
|
|
5356
|
+
"uiLabel": "Quick Filter Values Trigger",
|
|
5357
|
+
"isOptional": true,
|
|
5358
|
+
"gridInfo": "item",
|
|
5359
|
+
"defaultValue": "'mouseenter'"
|
|
5360
|
+
},
|
|
5294
5361
|
{
|
|
5295
5362
|
"name": "sortColumnValuesInFilter",
|
|
5296
5363
|
"kind": "boolean",
|
|
@@ -5754,6 +5821,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5754
5821
|
"uiLabel": "Default Value",
|
|
5755
5822
|
"isOptional": true
|
|
5756
5823
|
},
|
|
5824
|
+
{
|
|
5825
|
+
"name": "FreeTextColumnSettings",
|
|
5826
|
+
"kind": "REFERENCE",
|
|
5827
|
+
"description": "Additional optional properties for Column (e.g. filterable, resizable)",
|
|
5828
|
+
"uiLabel": "Free Text Column Settings",
|
|
5829
|
+
"isOptional": true,
|
|
5830
|
+
"reference": "FreeTextColumnSettings"
|
|
5831
|
+
},
|
|
5757
5832
|
{
|
|
5758
5833
|
"name": "FreeTextStoredValues",
|
|
5759
5834
|
"kind": "unknown",
|
|
@@ -5863,6 +5938,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5863
5938
|
}
|
|
5864
5939
|
]
|
|
5865
5940
|
},
|
|
5941
|
+
"FreeTextColumnSettings": {
|
|
5942
|
+
"name": "FreeTextColumnSettings",
|
|
5943
|
+
"kind": "Interface",
|
|
5944
|
+
"description": "Set of optional properties that define a FreeText Columns behaviour"
|
|
5945
|
+
},
|
|
5866
5946
|
"FreeTextColumnState": {
|
|
5867
5947
|
"name": "FreeTextColumnState",
|
|
5868
5948
|
"kind": "Interface",
|
|
@@ -6401,6 +6481,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6401
6481
|
"description": "Get keys for any open rows in Row Grouping",
|
|
6402
6482
|
"uiLabel": "Get Expand Row Groups Keys"
|
|
6403
6483
|
},
|
|
6484
|
+
{
|
|
6485
|
+
"name": "getFilteredData",
|
|
6486
|
+
"kind": "function",
|
|
6487
|
+
"description": "Retrieves filtered data from the grid",
|
|
6488
|
+
"uiLabel": "Get Filtered Data"
|
|
6489
|
+
},
|
|
6404
6490
|
{
|
|
6405
6491
|
"name": "getFirstRowNode",
|
|
6406
6492
|
"kind": "function",
|
|
@@ -6419,6 +6505,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6419
6505
|
"description": "Retrieves Cell in given Row and Column",
|
|
6420
6506
|
"uiLabel": "Get Grid Cell From Row Node"
|
|
6421
6507
|
},
|
|
6508
|
+
{
|
|
6509
|
+
"name": "getGridContainerElement",
|
|
6510
|
+
"kind": "function",
|
|
6511
|
+
"description": "Returns the Grid Container in which the Adaptable Instance is present",
|
|
6512
|
+
"uiLabel": "Get Grid Container Element"
|
|
6513
|
+
},
|
|
6514
|
+
{
|
|
6515
|
+
"name": "getGridData",
|
|
6516
|
+
"kind": "function",
|
|
6517
|
+
"description": "Retrieves all data from the grid",
|
|
6518
|
+
"uiLabel": "Get Grid Data"
|
|
6519
|
+
},
|
|
6422
6520
|
{
|
|
6423
6521
|
"name": "getGridState",
|
|
6424
6522
|
"kind": "function",
|
|
@@ -6581,6 +6679,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6581
6679
|
"description": "Refresh Cells in AdapTable",
|
|
6582
6680
|
"uiLabel": "Refresh Cells"
|
|
6583
6681
|
},
|
|
6682
|
+
{
|
|
6683
|
+
"name": "refreshRow",
|
|
6684
|
+
"kind": "function",
|
|
6685
|
+
"description": "Forces a render of a row",
|
|
6686
|
+
"uiLabel": "Refresh Row"
|
|
6687
|
+
},
|
|
6584
6688
|
{
|
|
6585
6689
|
"name": "selectAll",
|
|
6586
6690
|
"kind": "function",
|
|
@@ -6623,6 +6727,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6623
6727
|
"description": "Sorts AdapTable using given Column Sorts",
|
|
6624
6728
|
"uiLabel": "Set Adaptable Sorting"
|
|
6625
6729
|
},
|
|
6730
|
+
{
|
|
6731
|
+
"name": "setCellsValue",
|
|
6732
|
+
"kind": "function",
|
|
6733
|
+
"description": "Updates multiple cells",
|
|
6734
|
+
"uiLabel": "Set Cells Value"
|
|
6735
|
+
},
|
|
6626
6736
|
{
|
|
6627
6737
|
"name": "setCellValue",
|
|
6628
6738
|
"kind": "function",
|
|
@@ -7472,7 +7582,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7472
7582
|
{
|
|
7473
7583
|
"name": "createDefaultLayout",
|
|
7474
7584
|
"kind": "boolean",
|
|
7475
|
-
"description": "Whether a "Default Layout" will be created in addition to Layouts in Config
|
|
7585
|
+
"description": "Whether a "Default Layout" will be created in addition to Layouts provided in Config",
|
|
7476
7586
|
"uiLabel": "Create Default Layout",
|
|
7477
7587
|
"isOptional": true,
|
|
7478
7588
|
"gridInfo": "item",
|
|
@@ -8987,32 +9097,46 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8987
9097
|
"kind": "Interface",
|
|
8988
9098
|
"description": "Provides meta data about a Row in Adaptable",
|
|
8989
9099
|
"properties": [
|
|
9100
|
+
{
|
|
9101
|
+
"name": "isDisplayed",
|
|
9102
|
+
"kind": "boolean",
|
|
9103
|
+
"description": "Is Row displayed (ie. filtered, not necessarily in viewport)",
|
|
9104
|
+
"uiLabel": "Is Displayed",
|
|
9105
|
+
"isOptional": true
|
|
9106
|
+
},
|
|
8990
9107
|
{
|
|
8991
9108
|
"name": "isExpanded",
|
|
8992
9109
|
"kind": "boolean",
|
|
8993
|
-
"description": "
|
|
9110
|
+
"description": "Is Row expanded (if a group row)",
|
|
8994
9111
|
"uiLabel": "Is Expanded",
|
|
8995
9112
|
"isOptional": true
|
|
8996
9113
|
},
|
|
8997
9114
|
{
|
|
8998
9115
|
"name": "isGroup",
|
|
8999
9116
|
"kind": "boolean",
|
|
9000
|
-
"description": "
|
|
9117
|
+
"description": "Is Row grouped",
|
|
9001
9118
|
"uiLabel": "Is Group",
|
|
9002
9119
|
"isOptional": true
|
|
9003
9120
|
},
|
|
9004
9121
|
{
|
|
9005
9122
|
"name": "isMaster",
|
|
9006
9123
|
"kind": "boolean",
|
|
9007
|
-
"description": "
|
|
9124
|
+
"description": "Is Row a Master Row (in a Master-Detail grid)",
|
|
9008
9125
|
"uiLabel": "Is Master",
|
|
9009
9126
|
"isOptional": true
|
|
9010
9127
|
},
|
|
9011
9128
|
{
|
|
9012
|
-
"name": "
|
|
9129
|
+
"name": "isSelected",
|
|
9130
|
+
"kind": "boolean",
|
|
9131
|
+
"description": "Is Row selected",
|
|
9132
|
+
"uiLabel": "Is Selected",
|
|
9133
|
+
"isOptional": true
|
|
9134
|
+
},
|
|
9135
|
+
{
|
|
9136
|
+
"name": "rowGroupLevel",
|
|
9013
9137
|
"kind": "number",
|
|
9014
9138
|
"description": "What level the Row is (if Row Grouping is active)",
|
|
9015
|
-
"uiLabel": "Level",
|
|
9139
|
+
"uiLabel": "Row Group Level",
|
|
9016
9140
|
"isOptional": true
|
|
9017
9141
|
}
|
|
9018
9142
|
]
|
|
@@ -9953,6 +10077,84 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9953
10077
|
}
|
|
9954
10078
|
]
|
|
9955
10079
|
},
|
|
10080
|
+
"SpecialColumnSettings": {
|
|
10081
|
+
"name": "SpecialColumnSettings",
|
|
10082
|
+
"kind": "Interface",
|
|
10083
|
+
"description": "Base Settings for SpecialColumns",
|
|
10084
|
+
"properties": [
|
|
10085
|
+
{
|
|
10086
|
+
"name": "Aggregatable",
|
|
10087
|
+
"kind": "boolean",
|
|
10088
|
+
"description": "Whether Column can be used in an aggregation when grouping",
|
|
10089
|
+
"uiLabel": "Aggregatable",
|
|
10090
|
+
"isOptional": true,
|
|
10091
|
+
"defaultValue": "true"
|
|
10092
|
+
},
|
|
10093
|
+
{
|
|
10094
|
+
"name": "Filterable",
|
|
10095
|
+
"kind": "boolean",
|
|
10096
|
+
"description": "Whether Column is filterable",
|
|
10097
|
+
"uiLabel": "Filterable",
|
|
10098
|
+
"isOptional": true,
|
|
10099
|
+
"defaultValue": "true"
|
|
10100
|
+
},
|
|
10101
|
+
{
|
|
10102
|
+
"name": "Groupable",
|
|
10103
|
+
"kind": "boolean",
|
|
10104
|
+
"description": "Whether Column can be grouped",
|
|
10105
|
+
"uiLabel": "Groupable",
|
|
10106
|
+
"isOptional": true,
|
|
10107
|
+
"defaultValue": "true"
|
|
10108
|
+
},
|
|
10109
|
+
{
|
|
10110
|
+
"name": "Pivotable",
|
|
10111
|
+
"kind": "boolean",
|
|
10112
|
+
"description": "Whether Column can be used when grid is in pivot mode",
|
|
10113
|
+
"uiLabel": "Pivotable",
|
|
10114
|
+
"isOptional": true,
|
|
10115
|
+
"defaultValue": "true"
|
|
10116
|
+
},
|
|
10117
|
+
{
|
|
10118
|
+
"name": "Resizable",
|
|
10119
|
+
"kind": "boolean",
|
|
10120
|
+
"description": "Whether Column can be resized (by dragging column header edges)",
|
|
10121
|
+
"uiLabel": "Resizable",
|
|
10122
|
+
"isOptional": true,
|
|
10123
|
+
"defaultValue": "true"
|
|
10124
|
+
},
|
|
10125
|
+
{
|
|
10126
|
+
"name": "Sortable",
|
|
10127
|
+
"kind": "boolean",
|
|
10128
|
+
"description": "Whether Column is sortable",
|
|
10129
|
+
"uiLabel": "Sortable",
|
|
10130
|
+
"isOptional": true,
|
|
10131
|
+
"defaultValue": "true"
|
|
10132
|
+
},
|
|
10133
|
+
{
|
|
10134
|
+
"name": "SuppressMenu",
|
|
10135
|
+
"kind": "boolean",
|
|
10136
|
+
"description": "Whether if no menu should be shown for this Column header.",
|
|
10137
|
+
"uiLabel": "Suppress Menu",
|
|
10138
|
+
"isOptional": true,
|
|
10139
|
+
"defaultValue": "false"
|
|
10140
|
+
},
|
|
10141
|
+
{
|
|
10142
|
+
"name": "SuppressMovable",
|
|
10143
|
+
"kind": "boolean",
|
|
10144
|
+
"description": "Whether if this Column should be movable via dragging",
|
|
10145
|
+
"uiLabel": "Suppress Movable",
|
|
10146
|
+
"isOptional": true,
|
|
10147
|
+
"defaultValue": "false"
|
|
10148
|
+
},
|
|
10149
|
+
{
|
|
10150
|
+
"name": "Width",
|
|
10151
|
+
"kind": "number",
|
|
10152
|
+
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
|
|
10153
|
+
"uiLabel": "Width",
|
|
10154
|
+
"isOptional": true
|
|
10155
|
+
}
|
|
10156
|
+
]
|
|
10157
|
+
},
|
|
9956
10158
|
"StateOptions": {
|
|
9957
10159
|
"name": "StateOptions",
|
|
9958
10160
|
"kind": "Interface",
|
|
@@ -10632,6 +10834,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10632
10834
|
"description": "Retrieves Color Palette currently being used",
|
|
10633
10835
|
"uiLabel": "Get Color Palette"
|
|
10634
10836
|
},
|
|
10837
|
+
{
|
|
10838
|
+
"name": "getCustomSortPermittedValuesForColumn",
|
|
10839
|
+
"kind": "function",
|
|
10840
|
+
"description": "Retrieves Permitted values for Custom sort.",
|
|
10841
|
+
"uiLabel": "Get Custom Sort Permitted Values For Column"
|
|
10842
|
+
},
|
|
10635
10843
|
{
|
|
10636
10844
|
"name": "getEditableCellStyle",
|
|
10637
10845
|
"kind": "function",
|
|
@@ -10650,6 +10858,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10650
10858
|
"description": "Retrieves actual Look Up Values from an EditLookUpItem",
|
|
10651
10859
|
"uiLabel": "Get Edit Look Up Values For Edit Look Up Item"
|
|
10652
10860
|
},
|
|
10861
|
+
{
|
|
10862
|
+
"name": "getFilterPermittedValuesForColumn",
|
|
10863
|
+
"kind": "function",
|
|
10864
|
+
"description": "Retrieves Permitted values for filtering by column values in Floating Filter and dropdown Filter.",
|
|
10865
|
+
"uiLabel": "Get Filter Permitted Values For Column"
|
|
10866
|
+
},
|
|
10653
10867
|
{
|
|
10654
10868
|
"name": "getPermittedValuesForColumn",
|
|
10655
10869
|
"kind": "function",
|
|
@@ -10691,6 +10905,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10691
10905
|
"defaultValue": "null",
|
|
10692
10906
|
"reference": "AdaptableIcon"
|
|
10693
10907
|
},
|
|
10908
|
+
{
|
|
10909
|
+
"name": "bulkUpdatePermittedValues",
|
|
10910
|
+
"kind": "unknown",
|
|
10911
|
+
"description": "Custom column values for editing via bulk-update. When not defined it defaults to permittedValues.",
|
|
10912
|
+
"uiLabel": "Bulk Update Permitted Values",
|
|
10913
|
+
"isOptional": true
|
|
10914
|
+
},
|
|
10694
10915
|
{
|
|
10695
10916
|
"name": "colorPalette",
|
|
10696
10917
|
"kind": "unknown",
|
|
@@ -10698,6 +10919,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10698
10919
|
"uiLabel": "Color Palette",
|
|
10699
10920
|
"isOptional": true
|
|
10700
10921
|
},
|
|
10922
|
+
{
|
|
10923
|
+
"name": "customSortPermittedValues",
|
|
10924
|
+
"kind": "unknown",
|
|
10925
|
+
"description": "Custom column values for defining custom sort. When not defined it defaults to permittedValues.",
|
|
10926
|
+
"uiLabel": "Custom Sort Permitted Values",
|
|
10927
|
+
"isOptional": true
|
|
10928
|
+
},
|
|
10701
10929
|
{
|
|
10702
10930
|
"name": "dateInputOptions",
|
|
10703
10931
|
"kind": "REFERENCE",
|
|
@@ -10717,10 +10945,17 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10717
10945
|
{
|
|
10718
10946
|
"name": "editLookUpItems",
|
|
10719
10947
|
"kind": "unknown",
|
|
10720
|
-
"description": "Dropdown values displayed when column is being edited",
|
|
10948
|
+
"description": "Dropdown values displayed when column is being edited. When not defined it defaults to permittedValues.",
|
|
10721
10949
|
"uiLabel": "Edit Look Up Items",
|
|
10722
10950
|
"isOptional": true
|
|
10723
10951
|
},
|
|
10952
|
+
{
|
|
10953
|
+
"name": "filterPermittedValues",
|
|
10954
|
+
"kind": "unknown",
|
|
10955
|
+
"description": "Dropdown values for filter options inside floating and header filter. When not defined it defaults to permittedValues.",
|
|
10956
|
+
"uiLabel": "Filter Permitted Values",
|
|
10957
|
+
"isOptional": true
|
|
10958
|
+
},
|
|
10724
10959
|
{
|
|
10725
10960
|
"name": "permittedValues",
|
|
10726
10961
|
"kind": "unknown",
|
package/src/types.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterA
|
|
|
23
23
|
export type { ConfigState } from './PredefinedConfig/ConfigState';
|
|
24
24
|
export type { TeamSharingOptions } from './AdaptableOptions/TeamSharingOptions';
|
|
25
25
|
export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
|
|
26
|
-
export type { UserInterfaceOptions, CellValuesList, ActionColumnButtonContext, ActionColumn, } from './AdaptableOptions/UserInterfaceOptions';
|
|
26
|
+
export type { UserInterfaceOptions, CellValuesList, ActionColumnButtonContext, ActionColumn, ActionColumnSettings, } from './AdaptableOptions/UserInterfaceOptions';
|
|
27
27
|
export type { MenuOptions } from './AdaptableOptions/MenuOptions';
|
|
28
28
|
export type { EntitlementOptions } from './AdaptableOptions/EntitlementOptions';
|
|
29
29
|
export type { QueryLanguageOptions, ModuleExpressionFunctions, } from './AdaptableOptions/QueryLanguageOptions';
|
|
@@ -41,6 +41,7 @@ export type { ConfigApi } from './Api/ConfigApi';
|
|
|
41
41
|
export type { CustomSortApi } from './Api/CustomSortApi';
|
|
42
42
|
export type { DashboardApi } from './Api/DashboardApi';
|
|
43
43
|
export type { DataSourceApi } from './Api/DataSourceApi';
|
|
44
|
+
export type { DataChangeHistoryApi } from './Api/DataChangeHistoryApi';
|
|
44
45
|
export type { ExportApi } from './Api/ExportApi';
|
|
45
46
|
export type { FilterApi } from './Api/FilterApi';
|
|
46
47
|
export type { FinanceApi } from './Api/FinanceApi';
|
|
@@ -67,7 +68,6 @@ export type { TeamSharingApi } from './Api/TeamSharingApi';
|
|
|
67
68
|
export type { ThemeApi } from './Api/ThemeApi';
|
|
68
69
|
export type { ToolPanelApi } from './Api/ToolPanelApi';
|
|
69
70
|
export type { UserInterfaceApi } from './Api/UserInterfaceApi';
|
|
70
|
-
export type { DataChangeHistoryApi } from './Api/DataChangeHistoryApi';
|
|
71
71
|
export type { EventApi } from './Api/EventApi';
|
|
72
72
|
export type { AdaptableReadyInfo } from './Api/Events/AdaptableReady';
|
|
73
73
|
export type { AlertFiredInfo } from './Api/Events/AlertFired';
|
|
@@ -88,6 +88,7 @@ export type { AdaptableStateChangedInfo } from './Api/Events/AdaptableStateChang
|
|
|
88
88
|
export type { AdaptableState } from './PredefinedConfig/AdaptableState';
|
|
89
89
|
export type { BaseAlertDefinition, AlertDefinition, FlashingAlertDefinition, FlashingAlertProperties, AlertProperties, AlertState, AlertButtonForm, AlertButton, AdaptableAlertAction, AlertDefinitionPredicate, } from './PredefinedConfig/AlertState';
|
|
90
90
|
export type { ApplicationDataEntry, ApplicationState } from './PredefinedConfig/ApplicationState';
|
|
91
|
+
export type { SpecialColumnSettings } from './PredefinedConfig/Common/SpecialColumnSettings';
|
|
91
92
|
export type { CalculatedColumn, CalculatedColumnSettings, CalculatedColumnState, } from './PredefinedConfig/CalculatedColumnState';
|
|
92
93
|
export type { CellSummmary, CellSummaryOperation, CellSummaryOperationParams, } from './PredefinedConfig/Common/CellSummary';
|
|
93
94
|
export type { CategoryChartDefinition, CategoryChartProperties, ChartDefinition, ChartProperties, ChartState, FinancialChartDataItem, FinancialChartDataSource, FinancialChartDefinition, PieChartDataItem, PieChartDefinition, PieChartProperties, SparklineChartProperties, SparklinesChartDefinition, } from './PredefinedConfig/ChartState';
|
|
@@ -123,7 +124,7 @@ export type { DataSource, DataSourceState } from './PredefinedConfig/DataSourceS
|
|
|
123
124
|
export type { ExportState, Report, ReportData, ReportSchedule, SystemReportName, SystemReportNames, } from './PredefinedConfig/ExportState';
|
|
124
125
|
export type { ColumnFilter, ColumnFilterPredicate, FilterPredicateHandler, FilterPredicateInput, FilterPredicateParams, FilterState, } from './PredefinedConfig/FilterState';
|
|
125
126
|
export type { FormatColumn, ColumnStyle, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, FormatColumnState, } from './PredefinedConfig/FormatColumnState';
|
|
126
|
-
export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, } from './PredefinedConfig/FreeTextColumnState';
|
|
127
|
+
export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeTextColumnSettings, } from './PredefinedConfig/FreeTextColumnState';
|
|
127
128
|
export type { Glue42Report, Glue42Schedule, Glue42State } from './PredefinedConfig/Glue42State';
|
|
128
129
|
export type { IPushPullDomain, IPushPullReport, IPushPullSchedule, IPushPullState, } from './PredefinedConfig/IPushPullState';
|
|
129
130
|
export type { Layout, LayoutState } from './PredefinedConfig/LayoutState';
|