@adaptabletools/adaptable 13.0.3 → 13.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 (55) hide show
  1. package/base.css +0 -7
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +203 -203
  4. package/index.css +0 -8
  5. package/index.css.map +1 -1
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/EntitlementOptions.d.ts +14 -1
  10. package/src/Api/ColumnApi.d.ts +1 -2
  11. package/src/Api/DashboardApi.d.ts +1 -1
  12. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +4 -3
  13. package/src/Api/Implementation/StyledColumnApiImpl.js +66 -35
  14. package/src/Api/PredicateApi.d.ts +1 -2
  15. package/src/Api/StyledColumnApi.d.ts +12 -3
  16. package/src/PredefinedConfig/GridState.d.ts +1 -1
  17. package/src/PredefinedConfig/StyledColumnState.d.ts +14 -0
  18. package/src/Redux/ActionsReducers/FreeTextColumnRedux.d.ts +1 -1
  19. package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +3 -3
  20. package/src/Strategy/FilterModule.js +0 -4
  21. package/src/Strategy/Interface/IModule.d.ts +1 -1
  22. package/src/Strategy/StyledColumnModule.js +13 -1
  23. package/src/Strategy/Utilities/Export/getExportColumnsViewItems.d.ts +1 -1
  24. package/src/Utilities/Services/EntitlementService.js +4 -1
  25. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -3
  26. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +4 -3
  27. package/src/View/Components/EntityRulesEditor/index.js +7 -14
  28. package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.d.ts +1 -2
  29. package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +1 -1
  30. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -5
  31. package/src/View/Components/PredicateEditor/PredicateEditor.d.ts +10 -0
  32. package/src/View/Components/PredicateEditor/PredicateEditor.js +44 -0
  33. package/src/View/Components/RangesComponent.d.ts +4 -3
  34. package/src/View/Components/RangesComponent.js +74 -53
  35. package/src/View/Layout/Wizard/LayoutWizard.js +1 -0
  36. package/src/View/Layout/Wizard/sections/FilterSection.d.ts +1 -0
  37. package/src/View/Layout/Wizard/sections/FilterSection.js +52 -3
  38. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  39. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +11 -2
  40. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +11 -7
  41. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +8 -0
  42. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +38 -0
  43. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.js +42 -15
  44. package/src/agGrid/Adaptable.js +23 -7
  45. package/src/agGrid/PercentBarRenderer.d.ts +2 -6
  46. package/src/agGrid/PercentBarRenderer.js +9 -10
  47. package/src/agGrid/agGridHelper.d.ts +2 -6
  48. package/src/agGrid/agGridHelper.js +2 -2
  49. package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -1
  50. package/src/components/EllipsisContainer/index.js +1 -1
  51. package/src/metamodel/adaptable.metamodel.d.ts +22 -0
  52. package/src/metamodel/adaptable.metamodel.js +1 -1
  53. package/src/types.d.ts +1 -1
  54. package/version.d.ts +1 -1
  55. package/version.js +1 -1
@@ -2389,6 +2389,17 @@ export declare const ADAPTABLE_METAMODEL: {
2389
2389
  defaultValue: string;
2390
2390
  }[];
2391
2391
  };
2392
+ DefaultAccessLevelContext: {
2393
+ name: string;
2394
+ kind: string;
2395
+ description: string;
2396
+ properties: {
2397
+ name: string;
2398
+ kind: string;
2399
+ description: string;
2400
+ uiLabel: string;
2401
+ }[];
2402
+ };
2392
2403
  DeletedActionRowInfo: {
2393
2404
  name: string;
2394
2405
  kind: string;
@@ -4816,6 +4827,7 @@ export declare const ADAPTABLE_METAMODEL: {
4816
4827
  uiLabel: string;
4817
4828
  isOptional: boolean;
4818
4829
  reference?: undefined;
4830
+ defaultValue?: undefined;
4819
4831
  } | {
4820
4832
  name: string;
4821
4833
  kind: string;
@@ -4823,6 +4835,7 @@ export declare const ADAPTABLE_METAMODEL: {
4823
4835
  uiLabel: string;
4824
4836
  isOptional?: undefined;
4825
4837
  reference?: undefined;
4838
+ defaultValue?: undefined;
4826
4839
  } | {
4827
4840
  name: string;
4828
4841
  kind: string;
@@ -4830,6 +4843,15 @@ export declare const ADAPTABLE_METAMODEL: {
4830
4843
  uiLabel: string;
4831
4844
  isOptional: boolean;
4832
4845
  reference: string;
4846
+ defaultValue?: undefined;
4847
+ } | {
4848
+ name: string;
4849
+ kind: string;
4850
+ description: string;
4851
+ uiLabel: string;
4852
+ isOptional: boolean;
4853
+ defaultValue: string;
4854
+ reference?: undefined;
4833
4855
  })[];
4834
4856
  };
4835
4857
  StyledColumnApi: {