@adaptabletools/adaptable 12.1.5 → 12.1.6

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 (35) hide show
  1. package/bundle.cjs.js +94 -94
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableInterfaces/IAdaptable.d.ts +10 -4
  6. package/src/AdaptableOptions/FilterOptions.d.ts +7 -0
  7. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +31 -24
  8. package/src/Api/ColumnApi.d.ts +1 -1
  9. package/src/Api/FilterApi.d.ts +6 -0
  10. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -1
  11. package/src/Api/Implementation/ColumnApiImpl.js +3 -2
  12. package/src/Api/Implementation/DataSetApiImpl.js +1 -1
  13. package/src/Api/Implementation/FilterApiImpl.d.ts +1 -0
  14. package/src/Api/Implementation/FilterApiImpl.js +7 -1
  15. package/src/Api/Implementation/GridApiImpl.js +4 -4
  16. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -1
  17. package/src/Api/Implementation/LayoutApiImpl.js +4 -3
  18. package/src/Api/Implementation/QueryApiImpl.js +1 -1
  19. package/src/Api/Implementation/TeamSharingApiImpl.js +1 -1
  20. package/src/Api/LayoutApi.d.ts +1 -1
  21. package/src/PredefinedConfig/Common/AdaptableColumn.js +3 -2
  22. package/src/Redux/Store/AdaptableStore.js +10 -10
  23. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  24. package/src/Utilities/Extensions/ArrayExtensions.js +6 -0
  25. package/src/View/Components/FilterForm/FilterForm.js +2 -1
  26. package/src/View/Components/FilterForm/QuickFilterForm.js +2 -1
  27. package/src/agGrid/Adaptable.d.ts +1 -0
  28. package/src/agGrid/Adaptable.js +5 -2
  29. package/src/components/ProgressIndicator/ProgressIndicator.js +10 -12
  30. package/src/metamodel/adaptable.metamodel.d.ts +74 -6
  31. package/src/metamodel/adaptable.metamodel.js +1 -1
  32. package/src/parser/src/types.d.ts +1 -1
  33. package/src/types.d.ts +1 -1
  34. package/version.d.ts +1 -1
  35. package/version.js +1 -1
@@ -1142,6 +1142,23 @@ export declare const ADAPTABLE_METAMODEL: {
1142
1142
  name: string;
1143
1143
  kind: string;
1144
1144
  description: string;
1145
+ properties: {
1146
+ name: string;
1147
+ kind: string;
1148
+ description: string;
1149
+ uiLabel: string;
1150
+ }[];
1151
+ };
1152
+ BulkUpdatePermittedValuesContext: {
1153
+ name: string;
1154
+ kind: string;
1155
+ description: string;
1156
+ properties: {
1157
+ name: string;
1158
+ kind: string;
1159
+ description: string;
1160
+ uiLabel: string;
1161
+ }[];
1145
1162
  };
1146
1163
  ButtonStyle: {
1147
1164
  name: string;
@@ -1379,11 +1396,6 @@ export declare const ADAPTABLE_METAMODEL: {
1379
1396
  kind: string;
1380
1397
  description: string;
1381
1398
  };
1382
- CellValuesList: {
1383
- name: string;
1384
- kind: string;
1385
- description: string;
1386
- };
1387
1399
  ChartDefinition: {
1388
1400
  name: string;
1389
1401
  kind: string;
@@ -1987,6 +1999,12 @@ export declare const ADAPTABLE_METAMODEL: {
1987
1999
  name: string;
1988
2000
  kind: string;
1989
2001
  description: string;
2002
+ properties: {
2003
+ name: string;
2004
+ kind: string;
2005
+ description: string;
2006
+ uiLabel: string;
2007
+ }[];
1990
2008
  };
1991
2009
  CustomSortState: {
1992
2010
  name: string;
@@ -2398,10 +2416,30 @@ export declare const ADAPTABLE_METAMODEL: {
2398
2416
  reference?: undefined;
2399
2417
  })[];
2400
2418
  };
2419
+ EditLookUpContext: {
2420
+ name: string;
2421
+ kind: string;
2422
+ description: string;
2423
+ properties: {
2424
+ name: string;
2425
+ kind: string;
2426
+ description: string;
2427
+ uiLabel: string;
2428
+ isOptional: boolean;
2429
+ reference: string;
2430
+ }[];
2431
+ };
2401
2432
  EditLookUpPermittedValues: {
2402
2433
  name: string;
2403
2434
  kind: string;
2404
2435
  description: string;
2436
+ properties: {
2437
+ name: string;
2438
+ kind: string;
2439
+ description: string;
2440
+ uiLabel: string;
2441
+ isOptional: boolean;
2442
+ }[];
2405
2443
  };
2406
2444
  EditOptions: {
2407
2445
  name: string;
@@ -2757,13 +2795,31 @@ export declare const ADAPTABLE_METAMODEL: {
2757
2795
  name: string;
2758
2796
  kind: string;
2759
2797
  description: string;
2760
- properties: {
2798
+ properties: ({
2761
2799
  name: string;
2762
2800
  kind: string;
2763
2801
  description: string;
2764
2802
  uiLabel: string;
2765
2803
  isOptional: boolean;
2766
2804
  defaultValue: string;
2805
+ } | {
2806
+ name: string;
2807
+ kind: string;
2808
+ description: string;
2809
+ uiLabel: string;
2810
+ isOptional?: undefined;
2811
+ defaultValue?: undefined;
2812
+ })[];
2813
+ };
2814
+ FilterPermittedValuesContext: {
2815
+ name: string;
2816
+ kind: string;
2817
+ description: string;
2818
+ properties: {
2819
+ name: string;
2820
+ kind: string;
2821
+ description: string;
2822
+ uiLabel: string;
2767
2823
  }[];
2768
2824
  };
2769
2825
  FinanceApi: {
@@ -3821,6 +3877,18 @@ export declare const ADAPTABLE_METAMODEL: {
3821
3877
  isOptional: boolean;
3822
3878
  }[];
3823
3879
  };
3880
+ PermittedValuesContext: {
3881
+ name: string;
3882
+ kind: string;
3883
+ description: string;
3884
+ properties: {
3885
+ name: string;
3886
+ kind: string;
3887
+ description: string;
3888
+ uiLabel: string;
3889
+ reference: string;
3890
+ }[];
3891
+ };
3824
3892
  PluginsApi: {
3825
3893
  name: string;
3826
3894
  kind: string;