@adaptabletools/adaptable 10.0.0-canary.3 → 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.
Files changed (129) hide show
  1. package/base.css +77 -29
  2. package/index.css +89 -31
  3. package/package.json +1 -5
  4. package/publishTimestamp.d.ts +1 -1
  5. package/publishTimestamp.js +1 -1
  6. package/src/AdaptableInterfaces/IAdaptable.d.ts +12 -2
  7. package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -1
  8. package/src/AdaptableOptions/FilterOptions.d.ts +14 -7
  9. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  10. package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
  11. package/src/AdaptableOptions/QueryLanguageOptions.d.ts +7 -0
  12. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +89 -4
  13. package/src/Api/AlertApi.d.ts +1 -1
  14. package/src/Api/ColumnApi.d.ts +33 -0
  15. package/src/Api/ConfigApi.d.ts +8 -0
  16. package/src/Api/DataChangeHistoryApi.d.ts +10 -4
  17. package/src/Api/GridApi.d.ts +34 -8
  18. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
  19. package/src/Api/Implementation/AlertApiImpl.js +11 -4
  20. package/src/Api/Implementation/ColumnApiImpl.d.ts +7 -0
  21. package/src/Api/Implementation/ColumnApiImpl.js +37 -1
  22. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  23. package/src/Api/Implementation/ConfigApiImpl.js +28 -17
  24. package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
  25. package/src/Api/Implementation/DataChangeHistoryApiImpl.js +3 -0
  26. package/src/Api/Implementation/FreeTextColumnApiImpl.js +2 -1
  27. package/src/Api/Implementation/GridApiImpl.d.ts +9 -0
  28. package/src/Api/Implementation/GridApiImpl.js +17 -1
  29. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -0
  30. package/src/Api/Implementation/InternalApiImpl.js +16 -0
  31. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +2 -0
  32. package/src/Api/Implementation/QueryLanguageApiImpl.js +3 -0
  33. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +11 -8
  34. package/src/Api/Implementation/UserInterfaceApiImpl.js +57 -80
  35. package/src/Api/InternalApi.d.ts +2 -0
  36. package/src/Api/QueryLanguageApi.d.ts +5 -0
  37. package/src/Api/UserInterfaceApi.d.ts +14 -5
  38. package/src/PredefinedConfig/AlertState.d.ts +10 -0
  39. package/src/PredefinedConfig/CalculatedColumnState.d.ts +4 -37
  40. package/src/PredefinedConfig/Common/AdaptablePredicate.js +16 -15
  41. package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
  42. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
  43. package/src/{AdaptableOptions/DataChangeTrackingOptions.js → PredefinedConfig/Common/SpecialColumnSettings.js} +0 -0
  44. package/src/PredefinedConfig/FilterState.d.ts +1 -1
  45. package/src/PredefinedConfig/FreeTextColumnState.d.ts +10 -0
  46. package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
  47. package/src/PredefinedConfig/SystemState.d.ts +4 -1
  48. package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -6
  49. package/src/Redux/ActionsReducers/SystemRedux.js +11 -11
  50. package/src/Redux/Store/AdaptableReduxMerger.js +7 -1
  51. package/src/Redux/Store/AdaptableStore.js +12 -0
  52. package/src/Strategy/AlertModule.js +1 -1
  53. package/src/Strategy/DataChangeHistoryModule.js +1 -1
  54. package/src/Strategy/ExportModule.d.ts +0 -2
  55. package/src/Strategy/ExportModule.js +58 -61
  56. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -4
  57. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +11 -5
  58. package/src/Utilities/Helpers/DateHelper.d.ts +8 -2
  59. package/src/Utilities/Helpers/DateHelper.js +42 -20
  60. package/src/Utilities/ObjectFactory.d.ts +1 -1
  61. package/src/Utilities/ObjectFactory.js +13 -1
  62. package/src/Utilities/Services/AlertService.d.ts +1 -0
  63. package/src/Utilities/Services/AlertService.js +5 -0
  64. package/src/Utilities/Services/DataService.d.ts +0 -4
  65. package/src/Utilities/Services/DataService.js +2 -18
  66. package/src/Utilities/Services/Interface/IAlertService.d.ts +2 -1
  67. package/src/Utilities/Services/Interface/IDataService.d.ts +0 -2
  68. package/src/Utilities/Services/Interface/ILicenseService.d.ts +2 -1
  69. package/src/Utilities/Services/LicenseService.d.ts +2 -2
  70. package/src/Utilities/Services/MetamodelService.js +1 -0
  71. package/src/Utilities/Services/ModuleService.js +31 -24
  72. package/src/Utilities/Services/ReportService.js +1 -1
  73. package/src/Utilities/Services/TeamSharingService.d.ts +1 -0
  74. package/src/Utilities/Services/TeamSharingService.js +4 -2
  75. package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
  76. package/src/Utilities/runIfNotResolvedIn.js +23 -0
  77. package/src/View/AdaptableView.js +1 -1
  78. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
  79. package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
  80. package/src/View/BulkUpdate/BulkUpdatePopup.js +4 -2
  81. package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
  82. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
  83. package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
  84. package/src/View/Components/FilterForm/FilterForm.js +44 -23
  85. package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +3 -0
  86. package/src/View/Components/FilterForm/ListBoxFilterForm.js +14 -5
  87. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
  88. package/src/View/Components/FilterForm/QuickFilterForm.js +64 -23
  89. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
  90. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
  91. package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
  92. package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
  93. package/src/View/Components/Selectors/ColumnValueSelector.js +45 -13
  94. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
  95. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +42 -32
  96. package/src/View/DataChangeHistory/DataChangeHistoryPopup.d.ts +5 -1
  97. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +8 -5
  98. package/src/View/FreeTextColumn/FreeTextColumnPopup.js +3 -1
  99. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +3 -1
  100. package/src/View/GridInfo/GridInfoPopup.js +4 -1
  101. package/src/View/Query/QueryViewPanel.js +1 -1
  102. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.d.ts +1 -1
  103. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +6 -8
  104. package/src/View/UIHelper.d.ts +2 -0
  105. package/src/View/UIHelper.js +10 -1
  106. package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
  107. package/src/agGrid/ActionColumnRenderer.js +20 -3
  108. package/src/agGrid/Adaptable.d.ts +20 -4
  109. package/src/agGrid/Adaptable.js +186 -55
  110. package/src/components/Dashboard/Dashboard.js +1 -1
  111. package/src/components/DropdownButton/index.js +1 -1
  112. package/src/components/ExpressionEditor/index.js +2 -1
  113. package/src/components/Loader/Loader.d.ts +7 -0
  114. package/src/components/Loader/Loader.js +13 -0
  115. package/src/components/Loader/index.d.ts +2 -0
  116. package/src/components/Loader/index.js +7 -0
  117. package/src/components/ProgressIndicator/ProgressIndicator.d.ts +2 -0
  118. package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
  119. package/src/metamodel/adaptable.metamodel.d.ts +74 -34
  120. package/src/metamodel/adaptable.metamodel.js +346 -116
  121. package/src/parser/src/types.d.ts +11 -11
  122. package/src/types.d.ts +4 -4
  123. package/version.d.ts +1 -1
  124. package/version.js +1 -1
  125. package/src/AdaptableOptions/DataChangeTrackingOptions.d.ts +0 -16
  126. package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
  127. package/src/Utilities/Interface/ProgressIndicator.js +0 -2
  128. package/src/View/Export/ProgressIndicator.d.ts +0 -6
  129. 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",
@@ -915,7 +961,7 @@ exports.ADAPTABLE_METAMODEL = {
915
961
  {
916
962
  "name": "dataChangeHistoryOptions",
917
963
  "kind": "REFERENCE",
918
- "description": "Options to manage the 'Data Change History Module', which provides an overview of all previous changes, giving the possibility to undo specific changes",
964
+ "description": "Options to manage Data Change History Module which provides an overview of all data changes",
919
965
  "uiLabel": "Data Change History Options",
920
966
  "isOptional": true,
921
967
  "gridInfo": "container",
@@ -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": "Addtional optional properties for Column (e.g. filterable, resizable)",
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 setable by User",
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",
@@ -4068,13 +4119,13 @@ exports.ADAPTABLE_METAMODEL = {
4068
4119
  {
4069
4120
  "name": "activateDataChangeHistory",
4070
4121
  "kind": "function",
4071
- "description": "Activates data change history tracking (or resumes it, if it is currently suspended)",
4122
+ "description": "Activates Data Change History tracking (or resumes it, if it is currently suspended)",
4072
4123
  "uiLabel": "Activate Data Change History"
4073
4124
  },
4074
4125
  {
4075
4126
  "name": "deactivateDataChangeHistory",
4076
4127
  "kind": "function",
4077
- "description": "Deactivates data change history tracking",
4128
+ "description": "Deactivates Data Change History tracking and flushes the cache",
4078
4129
  "uiLabel": "Deactivate Data Change History"
4079
4130
  },
4080
4131
  {
@@ -4086,7 +4137,7 @@ exports.ADAPTABLE_METAMODEL = {
4086
4137
  {
4087
4138
  "name": "getDataChangeHistoryMode",
4088
4139
  "kind": "function",
4089
- "description": "Retrieves current Data Change History mode",
4140
+ "description": "Retrieves current Data Change History mode: 'ACTIVE', 'INACTIVE', 'SUSPENDED'",
4090
4141
  "uiLabel": "Get Data Change History Mode"
4091
4142
  },
4092
4143
  {
@@ -4094,6 +4145,12 @@ exports.ADAPTABLE_METAMODEL = {
4094
4145
  "kind": "function",
4095
4146
  "description": "Suspends data change history tracking",
4096
4147
  "uiLabel": "Suspend Data Change History"
4148
+ },
4149
+ {
4150
+ "name": "undoDataChangeHistoryEntry",
4151
+ "kind": "function",
4152
+ "description": "Reverts the provided data change to its previous value",
4153
+ "uiLabel": "Undo Data Change History Entry"
4097
4154
  }
4098
4155
  ]
4099
4156
  },
@@ -4122,28 +4179,6 @@ exports.ADAPTABLE_METAMODEL = {
4122
4179
  }
4123
4180
  ]
4124
4181
  },
4125
- "DataChangeTrackingOptions": {
4126
- "name": "DataChangeTrackingOptions",
4127
- "kind": "Interface",
4128
- "description": "Options for tracking the data changes which are consumed in reactive expressions (Observable or Aggregation)",
4129
- "properties": [
4130
- {
4131
- "name": "dataChangeTrackingType",
4132
- "kind": "unknown",
4133
- "description": "Whether Data Changes are tracked 'Always', 'WhenRequired' or 'Never'",
4134
- "uiLabel": "Data Change Tracking Type",
4135
- "defaultValue": "WhenRequired"
4136
- },
4137
- {
4138
- "name": "maxTimeframeSize",
4139
- "kind": "number",
4140
- "description": "Maximum time (in milliseconds) to hold a Data Change Tracking Info (value is capped at 86400000 ~ 24 hours)",
4141
- "uiLabel": "Max Timeframe Size",
4142
- "isOptional": true,
4143
- "defaultValue": "28800000 (~ 8 hours)"
4144
- }
4145
- ]
4146
- },
4147
4182
  "DataSource": {
4148
4183
  "name": "DataSource",
4149
4184
  "kind": "Interface",
@@ -4263,6 +4298,13 @@ exports.ADAPTABLE_METAMODEL = {
4263
4298
  "kind": "Interface",
4264
4299
  "description": "Object passed into Adaptable Grid Api data management methods",
4265
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
+ },
4266
4308
  {
4267
4309
  "name": "callback",
4268
4310
  "kind": "unknown",
@@ -4273,7 +4315,7 @@ exports.ADAPTABLE_METAMODEL = {
4273
4315
  {
4274
4316
  "name": "runAsync",
4275
4317
  "kind": "boolean",
4276
- "description": "Whether data should be updated aysnchoronously",
4318
+ "description": "Whether data should be updated asynchronously",
4277
4319
  "uiLabel": "Run Async",
4278
4320
  "isOptional": true
4279
4321
  }
@@ -4923,54 +4965,54 @@ exports.ADAPTABLE_METAMODEL = {
4923
4965
  "ExpressionFunction": {
4924
4966
  "name": "ExpressionFunction",
4925
4967
  "kind": "Interface",
4926
- "description": "Defines a Function used in an Adaptable Expression",
4968
+ "description": "Defines an AdapTableQL Function used in an Adaptable Expression",
4927
4969
  "properties": [
4928
4970
  {
4929
4971
  "name": "description",
4930
4972
  "kind": "string",
4931
- "description": "What the function does",
4973
+ "description": "What the AdapTableQL Function does",
4932
4974
  "uiLabel": "Description",
4933
4975
  "isOptional": true
4934
4976
  },
4935
4977
  {
4936
4978
  "name": "examples",
4937
4979
  "kind": "unknown",
4938
- "description": "Examples that use the function",
4980
+ "description": "Examples that use the AdapTableQL Function",
4939
4981
  "uiLabel": "Examples",
4940
4982
  "isOptional": true
4941
4983
  },
4942
4984
  {
4943
4985
  "name": "handler",
4944
4986
  "kind": "REFERENCE",
4945
- "description": "Actual function called by the Expression (mandatory prop)",
4987
+ "description": "Actual AdapTableQL Function called by the Expression (mandatory prop)",
4946
4988
  "uiLabel": "Handler",
4947
4989
  "reference": "ExpressionFunctionHandler"
4948
4990
  },
4949
4991
  {
4950
4992
  "name": "hasEagerEvaluation",
4951
4993
  "kind": "boolean",
4952
- "description": "If TRUE, the expression is evaluated eagerly, without handling the inner AST nodes",
4994
+ "description": "Whether Expression is evaluated eagerly (without handling inner AST nodes)",
4953
4995
  "uiLabel": "Has Eager Evaluation",
4954
4996
  "isOptional": true
4955
4997
  },
4956
4998
  {
4957
4999
  "name": "isHiddenFromMenu",
4958
5000
  "kind": "boolean",
4959
- "description": "Removes entry from Expression Editor Function dropdown",
5001
+ "description": "Removes entry from Expression Editor's Functions dropdown",
4960
5002
  "uiLabel": "Is Hidden From Menu",
4961
5003
  "isOptional": true
4962
5004
  },
4963
5005
  {
4964
5006
  "name": "isPredicate",
4965
5007
  "kind": "boolean",
4966
- "description": "Whether function returns true - it so, then can be used as Query",
5008
+ "description": "Whether the AdapTableQL Function returns true, if so can be used as Query",
4967
5009
  "uiLabel": "Is Predicate",
4968
5010
  "isOptional": true
4969
5011
  },
4970
5012
  {
4971
5013
  "name": "signatures",
4972
5014
  "kind": "unknown",
4973
- "description": "How function should be called",
5015
+ "description": "How the AdapTableQL Function should be called",
4974
5016
  "uiLabel": "Signatures",
4975
5017
  "isOptional": true
4976
5018
  }
@@ -4979,12 +5021,12 @@ exports.ADAPTABLE_METAMODEL = {
4979
5021
  "ExpressionFunctionDocBlock": {
4980
5022
  "name": "ExpressionFunctionDocBlock",
4981
5023
  "kind": "TypeAlias",
4982
- "description": "Defines how an Expression Function is described in Expression Editor"
5024
+ "description": "Defines how an AdapTableQL Function is described in Expression Editor"
4983
5025
  },
4984
5026
  "ExpressionFunctionHandler": {
4985
5027
  "name": "ExpressionFunctionHandler",
4986
5028
  "kind": "TypeAlias",
4987
- "description": "The javascript function that is invoked by an Expression Function"
5029
+ "description": "The javascript function which is invoked by an AdapTableQL Function"
4988
5030
  },
4989
5031
  "FDC3Context": {
4990
5032
  "name": "FDC3Context",
@@ -5204,7 +5246,7 @@ exports.ADAPTABLE_METAMODEL = {
5204
5246
  {
5205
5247
  "name": "defaultDateColumnFilter",
5206
5248
  "kind": "unknown",
5207
- "description": "Default filter type for date Columns in Quick Filter",
5249
+ "description": "Default filter type for date Columns",
5208
5250
  "uiLabel": "Default Date Column Filter",
5209
5251
  "isOptional": true,
5210
5252
  "gridInfo": "item",
@@ -5222,7 +5264,7 @@ exports.ADAPTABLE_METAMODEL = {
5222
5264
  {
5223
5265
  "name": "defaultNumericColumnFilter",
5224
5266
  "kind": "unknown",
5225
- "description": "Default filter type for numeric Columns in Quick Filter",
5267
+ "description": "Default filter type for numeric Columns",
5226
5268
  "uiLabel": "Default Numeric Column Filter",
5227
5269
  "isOptional": true,
5228
5270
  "gridInfo": "item",
@@ -5231,7 +5273,7 @@ exports.ADAPTABLE_METAMODEL = {
5231
5273
  {
5232
5274
  "name": "defaultStringColumnFilter",
5233
5275
  "kind": "unknown",
5234
- "description": "Default filter type for string Columns in Quick Filter",
5276
+ "description": "Default filter type for string Columns",
5235
5277
  "uiLabel": "Default String Column Filter",
5236
5278
  "isOptional": true,
5237
5279
  "gridInfo": "item",
@@ -5240,7 +5282,7 @@ exports.ADAPTABLE_METAMODEL = {
5240
5282
  {
5241
5283
  "name": "enableFilterOnSpecialColumns",
5242
5284
  "kind": "boolean",
5243
- "description": "Allows filtering on Calculated, Action & FreeText columns",
5285
+ "description": "Allows filtering on Calculated & FreeText columns",
5244
5286
  "uiLabel": "Enable Filter On Special Columns",
5245
5287
  "isOptional": true,
5246
5288
  "gridInfo": "item",
@@ -5307,6 +5349,15 @@ exports.ADAPTABLE_METAMODEL = {
5307
5349
  "gridInfo": "item",
5308
5350
  "defaultValue": "'mouseenter'"
5309
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
+ },
5310
5361
  {
5311
5362
  "name": "sortColumnValuesInFilter",
5312
5363
  "kind": "boolean",
@@ -5438,6 +5489,7 @@ exports.ADAPTABLE_METAMODEL = {
5438
5489
  "description": "Style for 'Down' value changes",
5439
5490
  "uiLabel": "Down Change Style",
5440
5491
  "isOptional": true,
5492
+ "defaultValue": "Red BackColour",
5441
5493
  "reference": "AdaptableStyle"
5442
5494
  },
5443
5495
  {
@@ -5445,14 +5497,16 @@ exports.ADAPTABLE_METAMODEL = {
5445
5497
  "kind": "unknown",
5446
5498
  "description": "Duration of Flash - can be number (in ms) or 'always'",
5447
5499
  "uiLabel": "Flash Duration",
5448
- "isOptional": true
5500
+ "isOptional": true,
5501
+ "defaultValue": "500ms"
5449
5502
  },
5450
5503
  {
5451
5504
  "name": "FlashTarget",
5452
5505
  "kind": "unknown",
5453
5506
  "description": "Should a cell or whole row flash",
5454
5507
  "uiLabel": "Flash Target",
5455
- "isOptional": true
5508
+ "isOptional": true,
5509
+ "defaultValue": "'cell'"
5456
5510
  },
5457
5511
  {
5458
5512
  "name": "NeutralChangeStyle",
@@ -5460,6 +5514,7 @@ exports.ADAPTABLE_METAMODEL = {
5460
5514
  "description": "Style for 'Neutral' value changes",
5461
5515
  "uiLabel": "Neutral Change Style",
5462
5516
  "isOptional": true,
5517
+ "defaultValue": "Gray BackColour",
5463
5518
  "reference": "AdaptableStyle"
5464
5519
  },
5465
5520
  {
@@ -5468,6 +5523,7 @@ exports.ADAPTABLE_METAMODEL = {
5468
5523
  "description": "Style for 'Up' value changes",
5469
5524
  "uiLabel": "Up Change Style",
5470
5525
  "isOptional": true,
5526
+ "defaultValue": "Green BackColour",
5471
5527
  "reference": "AdaptableStyle"
5472
5528
  }
5473
5529
  ]
@@ -5765,6 +5821,14 @@ exports.ADAPTABLE_METAMODEL = {
5765
5821
  "uiLabel": "Default Value",
5766
5822
  "isOptional": true
5767
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
+ },
5768
5832
  {
5769
5833
  "name": "FreeTextStoredValues",
5770
5834
  "kind": "unknown",
@@ -5874,6 +5938,11 @@ exports.ADAPTABLE_METAMODEL = {
5874
5938
  }
5875
5939
  ]
5876
5940
  },
5941
+ "FreeTextColumnSettings": {
5942
+ "name": "FreeTextColumnSettings",
5943
+ "kind": "Interface",
5944
+ "description": "Set of optional properties that define a FreeText Columns behaviour"
5945
+ },
5877
5946
  "FreeTextColumnState": {
5878
5947
  "name": "FreeTextColumnState",
5879
5948
  "kind": "Interface",
@@ -5961,15 +6030,6 @@ exports.ADAPTABLE_METAMODEL = {
5961
6030
  "uiLabel": "Custom Sort Comparers",
5962
6031
  "isOptional": true
5963
6032
  },
5964
- {
5965
- "name": "dataChangeTrackingOptions",
5966
- "kind": "REFERENCE",
5967
- "description": "Settings for tracking data changes which are consumed in reactive expressions (Observable or Aggregation)",
5968
- "uiLabel": "Data Change Tracking Options",
5969
- "isOptional": true,
5970
- "defaultValue": "'When Required', FrameSize: 2880000",
5971
- "reference": "DataChangeTrackingOptions"
5972
- },
5973
6033
  {
5974
6034
  "name": "hideColumnWhenGrouped",
5975
6035
  "kind": "boolean",
@@ -6421,6 +6481,12 @@ exports.ADAPTABLE_METAMODEL = {
6421
6481
  "description": "Get keys for any open rows in Row Grouping",
6422
6482
  "uiLabel": "Get Expand Row Groups Keys"
6423
6483
  },
6484
+ {
6485
+ "name": "getFilteredData",
6486
+ "kind": "function",
6487
+ "description": "Retrieves filtered data from the grid",
6488
+ "uiLabel": "Get Filtered Data"
6489
+ },
6424
6490
  {
6425
6491
  "name": "getFirstRowNode",
6426
6492
  "kind": "function",
@@ -6439,6 +6505,18 @@ exports.ADAPTABLE_METAMODEL = {
6439
6505
  "description": "Retrieves Cell in given Row and Column",
6440
6506
  "uiLabel": "Get Grid Cell From Row Node"
6441
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
+ },
6442
6520
  {
6443
6521
  "name": "getGridState",
6444
6522
  "kind": "function",
@@ -6601,6 +6679,12 @@ exports.ADAPTABLE_METAMODEL = {
6601
6679
  "description": "Refresh Cells in AdapTable",
6602
6680
  "uiLabel": "Refresh Cells"
6603
6681
  },
6682
+ {
6683
+ "name": "refreshRow",
6684
+ "kind": "function",
6685
+ "description": "Forces a render of a row",
6686
+ "uiLabel": "Refresh Row"
6687
+ },
6604
6688
  {
6605
6689
  "name": "selectAll",
6606
6690
  "kind": "function",
@@ -6643,6 +6727,12 @@ exports.ADAPTABLE_METAMODEL = {
6643
6727
  "description": "Sorts AdapTable using given Column Sorts",
6644
6728
  "uiLabel": "Set Adaptable Sorting"
6645
6729
  },
6730
+ {
6731
+ "name": "setCellsValue",
6732
+ "kind": "function",
6733
+ "description": "Updates multiple cells",
6734
+ "uiLabel": "Set Cells Value"
6735
+ },
6646
6736
  {
6647
6737
  "name": "setCellValue",
6648
6738
  "kind": "function",
@@ -7492,7 +7582,7 @@ exports.ADAPTABLE_METAMODEL = {
7492
7582
  {
7493
7583
  "name": "createDefaultLayout",
7494
7584
  "kind": "boolean",
7495
- "description": "Whether a "Default Layout" will be created in addition to Layouts in Config (if none there, Default Layout is always created)",
7585
+ "description": "Whether a "Default Layout" will be created in addition to Layouts provided in Config",
7496
7586
  "uiLabel": "Create Default Layout",
7497
7587
  "isOptional": true,
7498
7588
  "gridInfo": "item",
@@ -8739,6 +8829,12 @@ exports.ADAPTABLE_METAMODEL = {
8739
8829
  "description": "Returns all Columns referenced in a Query",
8740
8830
  "uiLabel": "Get Columns From Expression"
8741
8831
  },
8832
+ {
8833
+ "name": "getModuleExpressionFunctionMap",
8834
+ "kind": "function",
8835
+ "description": "Returns the current Module Expression Map",
8836
+ "uiLabel": "Get Module Expression Function Map"
8837
+ },
8742
8838
  {
8743
8839
  "name": "getQueryableColumnIds",
8744
8840
  "kind": "function",
@@ -8810,6 +8906,15 @@ exports.ADAPTABLE_METAMODEL = {
8810
8906
  "defaultValue": "null (sets all)",
8811
8907
  "reference": "unknown"
8812
8908
  },
8909
+ {
8910
+ "name": "maxTimeframeSize",
8911
+ "kind": "number",
8912
+ "description": "Maximum time (in milliseconds) to hold a Data Change event in a trailing timeframe (see observableExpressionFunctions); value is capped at 86400000 (~24 hours) for performance reasons",
8913
+ "uiLabel": "Max Timeframe Size",
8914
+ "isOptional": true,
8915
+ "gridInfo": "item",
8916
+ "defaultValue": "28800000 (~8 hours)"
8917
+ },
8813
8918
  {
8814
8919
  "name": "moduleExpressionFunctions",
8815
8920
  "kind": "unknown",
@@ -8992,32 +9097,46 @@ exports.ADAPTABLE_METAMODEL = {
8992
9097
  "kind": "Interface",
8993
9098
  "description": "Provides meta data about a Row in Adaptable",
8994
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
+ },
8995
9107
  {
8996
9108
  "name": "isExpanded",
8997
9109
  "kind": "boolean",
8998
- "description": "Whether - if a Group Row - it is currently expanded",
9110
+ "description": "Is Row expanded (if a group row)",
8999
9111
  "uiLabel": "Is Expanded",
9000
9112
  "isOptional": true
9001
9113
  },
9002
9114
  {
9003
9115
  "name": "isGroup",
9004
9116
  "kind": "boolean",
9005
- "description": "Whether Row is a Row Group",
9117
+ "description": "Is Row grouped",
9006
9118
  "uiLabel": "Is Group",
9007
9119
  "isOptional": true
9008
9120
  },
9009
9121
  {
9010
9122
  "name": "isMaster",
9011
9123
  "kind": "boolean",
9012
- "description": "Whether Row is a Master Row (in a Master-Detail grid)",
9124
+ "description": "Is Row a Master Row (in a Master-Detail grid)",
9013
9125
  "uiLabel": "Is Master",
9014
9126
  "isOptional": true
9015
9127
  },
9016
9128
  {
9017
- "name": "level",
9129
+ "name": "isSelected",
9130
+ "kind": "boolean",
9131
+ "description": "Is Row selected",
9132
+ "uiLabel": "Is Selected",
9133
+ "isOptional": true
9134
+ },
9135
+ {
9136
+ "name": "rowGroupLevel",
9018
9137
  "kind": "number",
9019
9138
  "description": "What level the Row is (if Row Grouping is active)",
9020
- "uiLabel": "Level",
9139
+ "uiLabel": "Row Group Level",
9021
9140
  "isOptional": true
9022
9141
  }
9023
9142
  ]
@@ -9958,6 +10077,84 @@ exports.ADAPTABLE_METAMODEL = {
9958
10077
  }
9959
10078
  ]
9960
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
+ },
9961
10158
  "StateOptions": {
9962
10159
  "name": "StateOptions",
9963
10160
  "kind": "Interface",
@@ -10637,6 +10834,12 @@ exports.ADAPTABLE_METAMODEL = {
10637
10834
  "description": "Retrieves Color Palette currently being used",
10638
10835
  "uiLabel": "Get Color Palette"
10639
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
+ },
10640
10843
  {
10641
10844
  "name": "getEditableCellStyle",
10642
10845
  "kind": "function",
@@ -10655,6 +10858,12 @@ exports.ADAPTABLE_METAMODEL = {
10655
10858
  "description": "Retrieves actual Look Up Values from an EditLookUpItem",
10656
10859
  "uiLabel": "Get Edit Look Up Values For Edit Look Up Item"
10657
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
+ },
10658
10867
  {
10659
10868
  "name": "getPermittedValuesForColumn",
10660
10869
  "kind": "function",
@@ -10696,6 +10905,13 @@ exports.ADAPTABLE_METAMODEL = {
10696
10905
  "defaultValue": "null",
10697
10906
  "reference": "AdaptableIcon"
10698
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
+ },
10699
10915
  {
10700
10916
  "name": "colorPalette",
10701
10917
  "kind": "unknown",
@@ -10703,6 +10919,13 @@ exports.ADAPTABLE_METAMODEL = {
10703
10919
  "uiLabel": "Color Palette",
10704
10920
  "isOptional": true
10705
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
+ },
10706
10929
  {
10707
10930
  "name": "dateInputOptions",
10708
10931
  "kind": "REFERENCE",
@@ -10722,10 +10945,17 @@ exports.ADAPTABLE_METAMODEL = {
10722
10945
  {
10723
10946
  "name": "editLookUpItems",
10724
10947
  "kind": "unknown",
10725
- "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.",
10726
10949
  "uiLabel": "Edit Look Up Items",
10727
10950
  "isOptional": true
10728
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
+ },
10729
10959
  {
10730
10960
  "name": "permittedValues",
10731
10961
  "kind": "unknown",