@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
package/src/types.d.ts CHANGED
@@ -80,6 +80,7 @@ export type { ScopeApi } from './Api/ScopeApi';
80
80
  export type { ShortcutApi } from './Api/ShortcutApi';
81
81
  export type { SmartEditApi } from './Api/SmartEditApi';
82
82
  export type { StatusBarApi } from './Api/StatusBarApi';
83
+ export type { StyledColumnApi } from './Api/StyledColumnApi';
83
84
  export type { SystemStatusApi } from './Api/SystemStatusApi';
84
85
  export type { TeamSharingApi } from './Api/TeamSharingApi';
85
86
  export type { ThemeApi } from './Api/ThemeApi';
@@ -152,7 +153,8 @@ export type { CustomSort, CustomSortState } from './PredefinedConfig/CustomSortS
152
153
  export type { DashboardState, DashboardTab, AdaptableCoordinate, } from './PredefinedConfig/DashboardState';
153
154
  export type { ExportState, Report, ReportData, ReportSchedule, SystemReportName, SystemReportNames, ReportRowScope, ReportColumnScope, } from './PredefinedConfig/ExportState';
154
155
  export type { ColumnFilter, ColumnFilterPredicate, SystemFilterPredicateIds, SystemFilterPredicateId, } from './PredefinedConfig/Common/ColumnFilter';
155
- export type { FormatColumn, ColumnStyle, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, FormatColumnState, } from './PredefinedConfig/FormatColumnState';
156
+ export type { FormatColumn, FormatColumnState } from './PredefinedConfig/FormatColumnState';
157
+ export type { StyledColumn, StyledColumnState, PercentBarStyle, GradientStyle, CellColorRange, ColumnComparison, CellTextOptions, CellTextOption, } from './PredefinedConfig/StyledColumnState';
156
158
  export type { FreeTextColumn, FreeTextColumnState, FreeTextStoredValue, FreeTextColumnSettings, } from './PredefinedConfig/FreeTextColumnState';
157
159
  export type { StatusBarState, AdaptableStatusBar } from './PredefinedConfig/StatusBarState';
158
160
  export type { Glue42Report, Glue42Schedule, Glue42State } from './PredefinedConfig/Glue42State';
package/themes/dark.css CHANGED
@@ -10,7 +10,11 @@ html.ab--theme-dark {
10
10
  --ab-color-text-on-primary: #e2e2e2;
11
11
  --ab-dashboard__border: #555;
12
12
  --ab-cmp-dropdownbutton-list-separator__border: 1px solid #555;
13
- --ab-gridheader--filtered__background: var(--ab-color-defaultbackground); }
14
- html.ab--theme-dark input[type='number'].ab-Input::-webkit-outer-spin-button,
15
- html.ab--theme-dark input[type='number'].ab-Input::-webkit-inner-spin-button {
16
- background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="20" viewBox="4 0 18 18" version="1.1"><path fill="%23f7f7f7" d="M7 10l5 5 5-5z" transform="translate(0, 2)"/><path fill="%23f7f7f7" d="M7 14l5-5 5 5z" transform="translate(0, -6)"/></svg>') no-repeat center center; }
13
+ --ab-gridheader--filtered__background: var(--ab-color-defaultbackground);
14
+ }
15
+ html.ab--theme-dark input[type=number].ab-Input::-webkit-outer-spin-button,
16
+ html.ab--theme-dark input[type=number].ab-Input::-webkit-inner-spin-button {
17
+ background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="20" viewBox="4 0 18 18" version="1.1"><path fill="%23f7f7f7" d="M7 10l5 5 5-5z" transform="translate(0, 2)"/><path fill="%23f7f7f7" d="M7 14l5-5 5 5z" transform="translate(0, -6)"/></svg>') no-repeat center center;
18
+ }
19
+
20
+ /*# sourceMappingURL=dark.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/themes/dark.scss","dark.css"],"names":[],"mappings":"AAAA;EACE,yCAAA;EACA,uBAAA;EAEA,6CAAA;EAEA,qCAAA;EACA,6CAAA;EAEA,2BAAA;EACA,gCAAA;EACA,+BAAA;EACA,mCAAA;EAQA,4BAAA;EACA,8DAAA;EAEA,wEAAA;ACVF;ADYE;;EAEE,yTAAA;ACVJ","file":"dark.css"}
package/themes/light.css CHANGED
@@ -1,2 +1,5 @@
1
1
  html.ab--theme-light {
2
- --ab-theme-loaded: light; }
2
+ --ab-theme-loaded: light;
3
+ }
4
+
5
+ /*# sourceMappingURL=light.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/themes/light.scss","light.css"],"names":[],"mappings":"AAAA;EACE,wBAAA;ACCF","file":"light.css"}
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "13.0.0-canary.12";
1
+ declare const _default: "13.0.0-canary.14";
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 = '13.0.0-canary.12'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '13.0.0-canary.14'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
@@ -1 +0,0 @@
1
- export { AdaptableToolPanelAgGridComponent } from './View/Components/ToolPanel/AdaptableToolPanel';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AdaptableToolPanelAgGridComponent = void 0;
4
- var AdaptableToolPanel_1 = require("./View/Components/ToolPanel/AdaptableToolPanel");
5
- Object.defineProperty(exports, "AdaptableToolPanelAgGridComponent", { enumerable: true, get: function () { return AdaptableToolPanel_1.AdaptableToolPanelAgGridComponent; } });