@adaptabletools/adaptable 10.0.3 → 10.0.4-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/package.json +1 -1
  2. package/publishTimestamp.d.ts +1 -1
  3. package/publishTimestamp.js +1 -1
  4. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -4
  5. package/src/Api/CalculatedColumnApi.d.ts +15 -0
  6. package/src/Api/ColumnApi.d.ts +6 -0
  7. package/src/Api/Implementation/AlertApiImpl.js +5 -5
  8. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
  9. package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
  10. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  11. package/src/Api/Implementation/ColumnApiImpl.js +32 -35
  12. package/src/Api/Implementation/ExportApiImpl.js +4 -4
  13. package/src/Api/Implementation/FormatColumnApiImpl.js +1 -1
  14. package/src/Api/Implementation/FreeTextColumnApiImpl.js +7 -2
  15. package/src/Api/Implementation/GridApiImpl.js +8 -9
  16. package/src/Api/Implementation/InternalApiImpl.d.ts +1 -1
  17. package/src/Api/Implementation/InternalApiImpl.js +4 -4
  18. package/src/Api/Implementation/LayoutApiImpl.js +3 -3
  19. package/src/Api/Implementation/ScopeApiImpl.js +11 -11
  20. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -1
  21. package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -8
  22. package/src/Api/InternalApi.d.ts +1 -1
  23. package/src/Api/UserInterfaceApi.d.ts +3 -2
  24. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +33 -33
  25. package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
  26. package/src/PredefinedConfig/Common/AdaptablePredicate.js +3 -3
  27. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +3 -2
  28. package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
  29. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  30. package/src/Redux/Store/AdaptableStore.js +3 -3
  31. package/src/Strategy/AdaptableModuleBase.js +8 -8
  32. package/src/Strategy/AlertModule.js +12 -11
  33. package/src/Strategy/BulkUpdateModule.js +5 -5
  34. package/src/Strategy/CalculatedColumnModule.js +1 -1
  35. package/src/Strategy/CellSummaryModule.js +3 -3
  36. package/src/Strategy/ConditionalStyleModule.js +3 -3
  37. package/src/Strategy/CustomSortModule.js +2 -2
  38. package/src/Strategy/ExportModule.js +1 -1
  39. package/src/Strategy/FilterModule.js +4 -4
  40. package/src/Strategy/FormatColumnModule.js +5 -5
  41. package/src/Strategy/FreeTextColumnModule.js +1 -1
  42. package/src/Strategy/LayoutModule.js +3 -3
  43. package/src/Strategy/PlusMinusModule.js +8 -9
  44. package/src/Strategy/SmartEditModule.js +6 -6
  45. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
  46. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
  47. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  48. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
  49. package/src/Utilities/Helpers/PreviewHelper.js +2 -2
  50. package/src/Utilities/ObjectFactory.js +1 -1
  51. package/src/Utilities/Services/DataService.js +5 -5
  52. package/src/Utilities/Services/ReportService.js +11 -11
  53. package/src/Utilities/Services/ValidationService.js +4 -5
  54. package/src/View/Alert/AlertPopup.js +1 -1
  55. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
  56. package/src/View/BulkUpdate/BulkUpdatePopup.js +3 -3
  57. package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
  58. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
  59. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
  60. package/src/View/Components/ColumnSelector/index.js +2 -2
  61. package/src/View/Components/FilterForm/FilterForm.js +14 -14
  62. package/src/View/Components/FilterForm/QuickFilterForm.js +13 -13
  63. package/src/View/Components/NewScopeComponent.js +1 -1
  64. package/src/View/Components/PreviewResultsPanel.js +1 -1
  65. package/src/View/Components/RangesComponent.js +2 -2
  66. package/src/View/Components/Selectors/ColumnSelector.js +5 -5
  67. package/src/View/Components/Selectors/ColumnValueSelector.js +4 -4
  68. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +6 -6
  69. package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
  70. package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
  71. package/src/View/CustomSort/CustomSortEntityRow.js +2 -2
  72. package/src/View/CustomSort/CustomSortPopup.js +1 -1
  73. package/src/View/CustomSort/CustomSortSummary.js +3 -3
  74. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +3 -3
  75. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -3
  76. package/src/View/Filter/FilterSummary.js +2 -2
  77. package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
  78. package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
  79. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
  80. package/src/View/FreeTextColumn/FreeTextColumnPopup.js +1 -1
  81. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +2 -2
  82. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
  83. package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
  84. package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
  85. package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
  86. package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
  87. package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
  88. package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
  89. package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
  90. package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
  91. package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
  92. package/src/View/Query/QueryViewPanel.js +2 -2
  93. package/src/agGrid/Adaptable.js +57 -51
  94. package/src/agGrid/agGridHelper.js +32 -32
  95. package/src/agGrid/agGridMenuHelper.js +2 -2
  96. package/src/components/ExpressionEditor/index.js +7 -7
  97. package/src/metamodel/adaptable.metamodel.d.ts +51 -5
  98. package/src/metamodel/adaptable.metamodel.js +99 -30
  99. package/src/types.d.ts +1 -1
  100. package/version.d.ts +1 -1
  101. package/version.js +1 -1
@@ -765,6 +765,11 @@ export declare const ADAPTABLE_METAMODEL: {
765
765
  uiLabel: string;
766
766
  }[];
767
767
  };
768
+ BulkUpdatePermittedValues: {
769
+ name: string;
770
+ kind: string;
771
+ description: string;
772
+ };
768
773
  ButtonStyle: {
769
774
  name: string;
770
775
  kind: string;
@@ -1189,6 +1194,11 @@ export declare const ADAPTABLE_METAMODEL: {
1189
1194
  uiLabel: string;
1190
1195
  }[];
1191
1196
  };
1197
+ CustomSortPermittedValues: {
1198
+ name: string;
1199
+ kind: string;
1200
+ description: string;
1201
+ };
1192
1202
  CustomSortState: {
1193
1203
  name: string;
1194
1204
  kind: string;
@@ -1401,8 +1411,15 @@ export declare const ADAPTABLE_METAMODEL: {
1401
1411
  kind: string;
1402
1412
  description: string;
1403
1413
  uiLabel: string;
1404
- isOptional?: undefined;
1405
1414
  reference?: undefined;
1415
+ isOptional?: undefined;
1416
+ } | {
1417
+ name: string;
1418
+ kind: string;
1419
+ description: string;
1420
+ uiLabel: string;
1421
+ reference: string;
1422
+ isOptional?: undefined;
1406
1423
  } | {
1407
1424
  name: string;
1408
1425
  kind: string;
@@ -1522,6 +1539,11 @@ export declare const ADAPTABLE_METAMODEL: {
1522
1539
  defaultValue: string;
1523
1540
  }[];
1524
1541
  };
1542
+ EditLookUpPermittedValues: {
1543
+ name: string;
1544
+ kind: string;
1545
+ description: string;
1546
+ };
1525
1547
  EditOptions: {
1526
1548
  name: string;
1527
1549
  kind: string;
@@ -1807,6 +1829,18 @@ export declare const ADAPTABLE_METAMODEL: {
1807
1829
  defaultValue?: undefined;
1808
1830
  })[];
1809
1831
  };
1832
+ FilterPermittedValues: {
1833
+ name: string;
1834
+ kind: string;
1835
+ description: string;
1836
+ properties: {
1837
+ name: string;
1838
+ kind: string;
1839
+ description: string;
1840
+ uiLabel: string;
1841
+ isOptional: boolean;
1842
+ }[];
1843
+ };
1810
1844
  FilterState: {
1811
1845
  name: string;
1812
1846
  kind: string;
@@ -2149,22 +2183,22 @@ export declare const ADAPTABLE_METAMODEL: {
2149
2183
  kind: string;
2150
2184
  description: string;
2151
2185
  uiLabel: string;
2186
+ reference: string;
2152
2187
  isOptional?: undefined;
2153
- reference?: undefined;
2154
2188
  } | {
2155
2189
  name: string;
2156
2190
  kind: string;
2157
2191
  description: string;
2158
2192
  uiLabel: string;
2159
- isOptional: boolean;
2160
2193
  reference?: undefined;
2194
+ isOptional?: undefined;
2161
2195
  } | {
2162
2196
  name: string;
2163
2197
  kind: string;
2164
2198
  description: string;
2165
2199
  uiLabel: string;
2166
- reference: string;
2167
- isOptional?: undefined;
2200
+ isOptional: boolean;
2201
+ reference?: undefined;
2168
2202
  })[];
2169
2203
  };
2170
2204
  GridDataChangedInfo: {
@@ -2581,6 +2615,18 @@ export declare const ADAPTABLE_METAMODEL: {
2581
2615
  kind: string;
2582
2616
  description: string;
2583
2617
  };
2618
+ PermittedValues: {
2619
+ name: string;
2620
+ kind: string;
2621
+ description: string;
2622
+ properties: {
2623
+ name: string;
2624
+ kind: string;
2625
+ description: string;
2626
+ uiLabel: string;
2627
+ isOptional: boolean;
2628
+ }[];
2629
+ };
2584
2630
  PluginsApi: {
2585
2631
  name: string;
2586
2632
  kind: string;
@@ -480,27 +480,27 @@ exports.ADAPTABLE_METAMODEL = {
480
480
  "description": "Defines an Adaptable Column - created at run-time based on vendor grid column definition",
481
481
  "properties": [
482
482
  {
483
- "name": "Aggregatable",
483
+ "name": "aggregatable",
484
484
  "kind": "boolean",
485
485
  "description": "Is Column able to display aggregations (e.g. 'sum') when grouped",
486
486
  "uiLabel": "Aggregatable"
487
487
  },
488
488
  {
489
- "name": "AggregationFunction",
489
+ "name": "aggregationFunction",
490
490
  "kind": "string",
491
491
  "description": "Custom aggregation function for the Column",
492
492
  "uiLabel": "Aggregation Function",
493
493
  "isOptional": true
494
494
  },
495
495
  {
496
- "name": "AvailableAggregationFunctions",
496
+ "name": "availableAggregationFunctions",
497
497
  "kind": "unknown",
498
498
  "description": "Available aggregations for the Column",
499
499
  "uiLabel": "Available Aggregation Functions",
500
500
  "isOptional": true
501
501
  },
502
502
  {
503
- "name": "ColumnGroup",
503
+ "name": "columnGroup",
504
504
  "kind": "REFERENCE",
505
505
  "description": "The parent column group, if the column belongs to one",
506
506
  "uiLabel": "Column Group",
@@ -508,98 +508,98 @@ exports.ADAPTABLE_METAMODEL = {
508
508
  "reference": "unknown"
509
509
  },
510
510
  {
511
- "name": "Filterable",
511
+ "name": "filterable",
512
512
  "kind": "boolean",
513
513
  "description": "Is Column able to be filtered",
514
514
  "uiLabel": "Filterable"
515
515
  },
516
516
  {
517
- "name": "Flex",
517
+ "name": "flex",
518
518
  "kind": "number",
519
519
  "description": "Flex details of the column",
520
520
  "uiLabel": "Flex",
521
521
  "isOptional": true
522
522
  },
523
523
  {
524
- "name": "Groupable",
524
+ "name": "groupable",
525
525
  "kind": "boolean",
526
526
  "description": "Can Column form a Row Group",
527
527
  "uiLabel": "Groupable"
528
528
  },
529
529
  {
530
- "name": "Hideable",
530
+ "name": "hideable",
531
531
  "kind": "boolean",
532
532
  "description": "Can Column be removed from the grid",
533
533
  "uiLabel": "Hideable"
534
534
  },
535
535
  {
536
- "name": "IsExcludedFromQuickSearch",
536
+ "name": "isExcludedFromQuickSearch",
537
537
  "kind": "boolean",
538
538
  "description": "Has colummn been excluded from Quick Search results",
539
539
  "uiLabel": "Is Excluded From Quick Search"
540
540
  },
541
541
  {
542
- "name": "IsFixed",
542
+ "name": "isFixed",
543
543
  "kind": "boolean",
544
544
  "description": "Is Column pinned or locked into position",
545
545
  "uiLabel": "Is Fixed"
546
546
  },
547
547
  {
548
- "name": "IsGrouped",
548
+ "name": "isGrouped",
549
549
  "kind": "boolean",
550
550
  "description": "Is Column currently grouped",
551
551
  "uiLabel": "Is Grouped"
552
552
  },
553
553
  {
554
- "name": "IsPrimaryKey",
554
+ "name": "isPrimaryKey",
555
555
  "kind": "boolean",
556
556
  "description": "Is this the Primary Key column",
557
557
  "uiLabel": "Is Primary Key"
558
558
  },
559
559
  {
560
- "name": "IsSparkline",
560
+ "name": "isSparkline",
561
561
  "kind": "boolean",
562
562
  "description": "Is it a Sparkline Column",
563
563
  "uiLabel": "Is Sparkline"
564
564
  },
565
565
  {
566
- "name": "Moveable",
566
+ "name": "moveable",
567
567
  "kind": "boolean",
568
568
  "description": "Can Column be moved at run-time to a new position",
569
569
  "uiLabel": "Moveable"
570
570
  },
571
571
  {
572
- "name": "Pivotable",
572
+ "name": "pivotable",
573
573
  "kind": "boolean",
574
574
  "description": "Can Column be used in a Pivot Grid",
575
575
  "uiLabel": "Pivotable"
576
576
  },
577
577
  {
578
- "name": "Queryable",
578
+ "name": "queryable",
579
579
  "kind": "boolean",
580
580
  "description": "Can the Column be in included in Queries / Expressions",
581
581
  "uiLabel": "Queryable"
582
582
  },
583
583
  {
584
- "name": "ReadOnly",
584
+ "name": "readOnly",
585
585
  "kind": "boolean",
586
586
  "description": "Is column editable",
587
587
  "uiLabel": "Read Only"
588
588
  },
589
589
  {
590
- "name": "Sortable",
590
+ "name": "sortable",
591
591
  "kind": "boolean",
592
592
  "description": "Is Column sortable",
593
593
  "uiLabel": "Sortable"
594
594
  },
595
595
  {
596
- "name": "Visible",
596
+ "name": "visible",
597
597
  "kind": "boolean",
598
598
  "description": "Is Column currently visible",
599
599
  "uiLabel": "Visible"
600
600
  },
601
601
  {
602
- "name": "Width",
602
+ "name": "width",
603
603
  "kind": "number",
604
604
  "description": "Column width",
605
605
  "uiLabel": "Width",
@@ -613,19 +613,19 @@ exports.ADAPTABLE_METAMODEL = {
613
613
  "description": "Base class for Adaptable Column containing most important properties",
614
614
  "properties": [
615
615
  {
616
- "name": "ColumnId",
616
+ "name": "columnId",
617
617
  "kind": "string",
618
618
  "description": "Name of Column in underlying grid (e.g. field or colId)",
619
619
  "uiLabel": "Column Id"
620
620
  },
621
621
  {
622
- "name": "DataType",
622
+ "name": "dataType",
623
623
  "kind": "unknown",
624
624
  "description": "DataType of the column",
625
625
  "uiLabel": "Data Type"
626
626
  },
627
627
  {
628
- "name": "FriendlyName",
628
+ "name": "friendlyName",
629
629
  "kind": "string",
630
630
  "description": "How Column is referred to in Adaptable UI; 'Caption' or 'Header' property in underlying grid",
631
631
  "uiLabel": "Friendly Name"
@@ -2087,6 +2087,11 @@ exports.ADAPTABLE_METAMODEL = {
2087
2087
  }
2088
2088
  ]
2089
2089
  },
2090
+ "BulkUpdatePermittedValues": {
2091
+ "name": "BulkUpdatePermittedValues",
2092
+ "kind": "Interface",
2093
+ "description": "User to define permitted values when updating cells via bulk update"
2094
+ },
2090
2095
  "ButtonStyle": {
2091
2096
  "name": "ButtonStyle",
2092
2097
  "kind": "Interface",
@@ -2212,12 +2217,30 @@ exports.ADAPTABLE_METAMODEL = {
2212
2217
  "description": "Returns all the references in the AdaptableState of the given CalculatedColumn",
2213
2218
  "uiLabel": "Get Calculated Column Module References"
2214
2219
  },
2220
+ {
2221
+ "name": "getCalculatedColumnsReferencingColumnId",
2222
+ "kind": "function",
2223
+ "description": "Returns all Calculated Columns whose Expression contains the ColumnId",
2224
+ "uiLabel": "Get Calculated Columns Referencing Column Id"
2225
+ },
2215
2226
  {
2216
2227
  "name": "getCalculatedColumnState",
2217
2228
  "kind": "function",
2218
2229
  "description": "Retrieves Calculated Column section from Adaptable State",
2219
2230
  "uiLabel": "Get Calculated Column State"
2220
2231
  },
2232
+ {
2233
+ "name": "getReferencedColumnIdsForCalculatedColumn",
2234
+ "kind": "function",
2235
+ "description": "Gets any ColumnIds referenced in a Calculated Column",
2236
+ "uiLabel": "Get Referenced Column Ids For Calculated Column"
2237
+ },
2238
+ {
2239
+ "name": "getReferencedColumnIdsForCalculatedColumnId",
2240
+ "kind": "function",
2241
+ "description": "Gets any ColumnIds referenced in a Calculated Column",
2242
+ "uiLabel": "Get Referenced Column Ids For Calculated Column Id"
2243
+ },
2221
2244
  {
2222
2245
  "name": "showCalculatedColumnPopup",
2223
2246
  "kind": "function",
@@ -2752,6 +2775,12 @@ exports.ADAPTABLE_METAMODEL = {
2752
2775
  "description": "Is Column a Calculated Column",
2753
2776
  "uiLabel": "Is Calculated Column"
2754
2777
  },
2778
+ {
2779
+ "name": "isColumnReferencedInExpression",
2780
+ "kind": "function",
2781
+ "description": "Checks if a column is referenced in a given Expression",
2782
+ "uiLabel": "Is Column Referenced In Expression"
2783
+ },
2755
2784
  {
2756
2785
  "name": "isDateColumn",
2757
2786
  "kind": "function",
@@ -3507,6 +3536,11 @@ exports.ADAPTABLE_METAMODEL = {
3507
3536
  }
3508
3537
  ]
3509
3538
  },
3539
+ "CustomSortPermittedValues": {
3540
+ "name": "CustomSortPermittedValues",
3541
+ "kind": "Interface",
3542
+ "description": "Custom column values for custom sort."
3543
+ },
3510
3544
  "CustomSortState": {
3511
3545
  "name": "CustomSortState",
3512
3546
  "kind": "Interface",
@@ -4064,10 +4098,11 @@ exports.ADAPTABLE_METAMODEL = {
4064
4098
  "uiLabel": "Changed At"
4065
4099
  },
4066
4100
  {
4067
- "name": "columnId",
4068
- "kind": "string",
4069
- "description": "Id of the Column in which the cell is situated",
4070
- "uiLabel": "Column Id"
4101
+ "name": "column",
4102
+ "kind": "REFERENCE",
4103
+ "description": "Column in which cell is situated",
4104
+ "uiLabel": "Column",
4105
+ "reference": "AdaptableColumn"
4071
4106
  },
4072
4107
  {
4073
4108
  "name": "newValue",
@@ -4390,6 +4425,11 @@ exports.ADAPTABLE_METAMODEL = {
4390
4425
  }
4391
4426
  ]
4392
4427
  },
4428
+ "EditLookUpPermittedValues": {
4429
+ "name": "EditLookUpPermittedValues",
4430
+ "kind": "Interface",
4431
+ "description": "Used to define permitted values for inline column editor"
4432
+ },
4393
4433
  "EditOptions": {
4394
4434
  "name": "EditOptions",
4395
4435
  "kind": "Interface",
@@ -5403,6 +5443,20 @@ exports.ADAPTABLE_METAMODEL = {
5403
5443
  }
5404
5444
  ]
5405
5445
  },
5446
+ "FilterPermittedValues": {
5447
+ "name": "FilterPermittedValues",
5448
+ "kind": "Interface",
5449
+ "description": "Used to define values inside the floating filter and floating filter (quick filter)",
5450
+ "properties": [
5451
+ {
5452
+ "name": "suppressClientSideFiltering",
5453
+ "kind": "boolean",
5454
+ "description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
5455
+ "uiLabel": "Suppress Client Side Filtering",
5456
+ "isOptional": true
5457
+ }
5458
+ ]
5459
+ },
5406
5460
  "FilterState": {
5407
5461
  "name": "FilterState",
5408
5462
  "kind": "Interface",
@@ -6789,10 +6843,11 @@ exports.ADAPTABLE_METAMODEL = {
6789
6843
  "description": "Defines a Cell in Adaptable - every cell is an intersection of a Column Id and a Primary Key Value",
6790
6844
  "properties": [
6791
6845
  {
6792
- "name": "columnId",
6793
- "kind": "string",
6846
+ "name": "column",
6847
+ "kind": "REFERENCE",
6794
6848
  "description": "Column in which cell is situtated",
6795
- "uiLabel": "Column Id"
6849
+ "uiLabel": "Column",
6850
+ "reference": "AdaptableColumn"
6796
6851
  },
6797
6852
  {
6798
6853
  "name": "displayValue",
@@ -8252,6 +8307,20 @@ exports.ADAPTABLE_METAMODEL = {
8252
8307
  "kind": "Interface",
8253
8308
  "description": "Internal State used by AdapTable for managing the OpenFin plugin"
8254
8309
  },
8310
+ "PermittedValues": {
8311
+ "name": "PermittedValues",
8312
+ "kind": "Interface",
8313
+ "description": "Permitted/possible values, when column values can be selected (e.g. sort, bulk-update)",
8314
+ "properties": [
8315
+ {
8316
+ "name": "values",
8317
+ "kind": "unknown",
8318
+ "description": "Values to display: either hardcoded list or a function",
8319
+ "uiLabel": "Values",
8320
+ "isOptional": true
8321
+ }
8322
+ ]
8323
+ },
8255
8324
  "PluginsApi": {
8256
8325
  "name": "PluginsApi",
8257
8326
  "kind": "Interface",
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, ActionColumnSettings, } from './AdaptableOptions/UserInterfaceOptions';
26
+ export type { UserInterfaceOptions, CellValuesList, ActionColumnButtonContext, ActionColumn, ActionColumnSettings, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, } 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';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "10.0.3";
1
+ declare const _default: "10.0.4-canary.0";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '10.0.3'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '10.0.4-canary.0'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version