@adaptabletools/adaptable 13.0.0-canary.12 → 13.0.0-canary.14

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 (94) hide show
  1. package/base.css +1131 -732
  2. package/base.css.map +1 -0
  3. package/bundle.cjs.js +174 -157
  4. package/index.css +1132 -732
  5. package/index.css.map +1 -0
  6. package/package.json +5 -5
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +20 -3
  10. package/src/AdaptableOptions/LayoutOptions.d.ts +2 -1
  11. package/src/Api/AdaptableApi.d.ts +2 -0
  12. package/src/Api/FormatColumnApi.d.ts +2 -23
  13. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  14. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  15. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +1 -6
  16. package/src/Api/Implementation/FormatColumnApiImpl.js +13 -111
  17. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +19 -0
  18. package/src/Api/Implementation/StyledColumnApiImpl.js +134 -0
  19. package/src/Api/StyledColumnApi.d.ts +68 -0
  20. package/src/Api/StyledColumnApi.js +2 -0
  21. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  22. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  23. package/src/PredefinedConfig/Common/Types.d.ts +3 -3
  24. package/src/PredefinedConfig/Common/Types.js +1 -0
  25. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
  26. package/src/PredefinedConfig/StyledColumnState.d.ts +113 -0
  27. package/src/PredefinedConfig/StyledColumnState.js +2 -0
  28. package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +49 -0
  29. package/src/Redux/ActionsReducers/StyledColumnRedux.js +92 -0
  30. package/src/Redux/Store/AdaptableStore.js +7 -0
  31. package/src/Strategy/StyledColumnModule.d.ts +24 -0
  32. package/src/Strategy/StyledColumnModule.js +165 -0
  33. package/src/Strategy/Utilities/getScopeViewItems.js +1 -1
  34. package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
  35. package/src/Utilities/Constants/ModuleConstants.js +4 -1
  36. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  37. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -4
  38. package/src/Utilities/ObjectFactory.d.ts +3 -0
  39. package/src/Utilities/ObjectFactory.js +11 -3
  40. package/src/Utilities/Services/ModuleService.js +3 -1
  41. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  42. package/src/View/Components/RangesComponent.d.ts +1 -0
  43. package/src/View/Components/RangesComponent.js +12 -12
  44. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
  45. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  46. package/src/View/Components/StyleComponent.js +2 -2
  47. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -11
  48. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +21 -9
  49. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  50. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  51. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  52. package/src/View/Export/ExportViewPanel.d.ts +1 -1
  53. package/src/View/Filter/FilterSummary.d.ts +1 -1
  54. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  55. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +3 -3
  56. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +6 -315
  57. package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
  58. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  59. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  60. package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +7 -0
  61. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +77 -0
  62. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +9 -0
  63. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +65 -0
  64. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.d.ts +9 -0
  65. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.js +238 -0
  66. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +7 -0
  67. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +59 -0
  68. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  69. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -1
  70. package/src/agGrid/Adaptable.d.ts +2 -1
  71. package/src/agGrid/Adaptable.js +49 -35
  72. package/src/agGrid/FilterWrapper.js +58 -19
  73. package/src/agGrid/FloatingFilterWrapper.js +10 -12
  74. package/src/agGrid/PercentBarRenderer.d.ts +6 -2
  75. package/src/agGrid/PercentBarRenderer.js +10 -18
  76. package/src/agGrid/agGridHelper.d.ts +6 -2
  77. package/src/agGrid/agGridHelper.js +4 -2
  78. package/src/agGrid/createAgStatusPanelComponent.d.ts +1 -1
  79. package/src/agGrid/createAgStatusPanelComponent.js +17 -0
  80. package/src/components/Datepicker/index.d.ts +1 -1
  81. package/src/components/icons/brush.d.ts +3 -0
  82. package/src/components/icons/brush.js +7 -0
  83. package/src/components/icons/index.js +2 -0
  84. package/src/metamodel/adaptable.metamodel.d.ts +56 -20
  85. package/src/metamodel/adaptable.metamodel.js +1 -1
  86. package/src/types.d.ts +3 -1
  87. package/themes/dark.css +8 -4
  88. package/themes/dark.css.map +1 -0
  89. package/themes/light.css +4 -1
  90. package/themes/light.css.map +1 -0
  91. package/version.d.ts +1 -1
  92. package/version.js +1 -1
  93. package/src/AdaptableComponents.d.ts +0 -1
  94. package/src/AdaptableComponents.js +0 -5

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.