@adaptabletools/adaptable-cjs 23.0.0-canary.0 → 23.0.0-canary.2

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 (59) hide show
  1. package/index.css +88 -67
  2. package/package.json +1 -1
  3. package/src/AdaptableOptions/ColumnMenuOptions.d.ts +3 -3
  4. package/src/AdaptableOptions/ContextMenuOptions.d.ts +3 -3
  5. package/src/AdaptableState/LayoutState.d.ts +5 -4
  6. package/src/AdaptableState/StyledColumnState.d.ts +7 -16
  7. package/src/AdaptableState/StyledColumnState.js +10 -0
  8. package/src/Strategy/ExportModule.js +13 -1
  9. package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +1 -1
  10. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +1 -1
  11. package/src/View/Alert/Wizard/AlertWizard.js +2 -2
  12. package/src/View/Components/ColumnFilter/AdaptableColumnFilter.d.ts +3 -1
  13. package/src/View/Components/ColumnFilter/AdaptableColumnFilter.js +9 -2
  14. package/src/View/Components/ColumnFilter/ColumnFilter.d.ts +2 -1
  15. package/src/View/Components/ColumnFilter/ColumnFilter.js +3 -2
  16. package/src/View/Components/ColumnFilter/columnFilterLocation.d.ts +2 -0
  17. package/src/View/Components/ColumnFilter/columnFilterLocation.js +5 -0
  18. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  19. package/src/View/Export/Wizard/ExportPopupWizardRouter.js +10 -1
  20. package/src/View/Export/Wizard/ScheduledReportSettings.d.ts +3 -1
  21. package/src/View/Export/Wizard/ScheduledReportSettings.js +8 -1
  22. package/src/View/Export/Wizard/ScheduledReportWizard.js +8 -3
  23. package/src/View/Export/Wizard/isReportScheduledSettingsValid.d.ts +1 -1
  24. package/src/View/Export/Wizard/isReportScheduledSettingsValid.js +3 -0
  25. package/src/View/Layout/Wizard/LayoutWizard.js +7 -2
  26. package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
  27. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +6 -2
  28. package/src/View/renderWithAdaptableContext.js +1 -1
  29. package/src/agGrid/AdaptableAgGrid.js +2 -2
  30. package/src/agGrid/AdaptableFrameworkComponent.d.ts +25 -3
  31. package/src/agGrid/AgGridFilterAdapter.js +3 -1
  32. package/src/components/Combobox/index.js +1 -1
  33. package/src/components/Datepicker/index.js +4 -4
  34. package/src/components/NewDropdownButton/index.js +1 -1
  35. package/src/components/NewSelect/index.js +2 -2
  36. package/src/components/NewTooltip/index.js +1 -1
  37. package/src/components/ui/button.js +1 -1
  38. package/src/components/ui/calendar.d.ts +1 -1
  39. package/src/components/ui/calendar.js +2 -2
  40. package/src/components/ui/combobox.js +3 -3
  41. package/src/components/ui/dropdown-menu.js +1 -1
  42. package/src/components/ui/input-group.d.ts +1 -1
  43. package/src/components/ui/input-group.js +4 -4
  44. package/src/components/ui/input.js +1 -1
  45. package/src/components/ui/popover.js +1 -1
  46. package/src/components/ui/select.js +1 -1
  47. package/src/components/ui/textarea.js +1 -1
  48. package/src/components/ui/tooltip.js +1 -1
  49. package/src/env.js +2 -2
  50. package/src/layout-manager/src/LayoutManagerModel.d.ts +2 -2
  51. package/src/layout-manager/src/index.js +5 -4
  52. package/src/layout-manager/src/normalizeLayoutModel.js +5 -1
  53. package/src/layout-manager/src/rowGroupDisplayType.d.ts +6 -0
  54. package/src/layout-manager/src/rowGroupDisplayType.js +29 -0
  55. package/src/metamodel/adaptable.metamodel.d.ts +12 -24
  56. package/src/metamodel/adaptable.metamodel.js +1 -1
  57. package/src/types.d.ts +1 -1
  58. package/themes/dark.css +10 -2
  59. package/tsconfig.cjs.tsbuildinfo +1 -1
package/src/types.d.ts CHANGED
@@ -215,7 +215,7 @@ export type { SharedEntity, AdaptableSharedEntity, CustomSharedEntity, TeamShari
215
215
  export type { AdaptableTheme, ThemeState } from './AdaptableState/ThemeState';
216
216
  export type { ToolPanelState, AdaptableToolPanelDefinition, ToolPanelVisibilityMode, } from './AdaptableState/ToolPanelState';
217
217
  export type { UserInterfaceState } from './AdaptableState/UserInterfaceState';
218
- export type { AdaptableFrameworkComponent, AngularFrameworkComponent, ReactFrameworkComponent, VueFrameworkComponent, CustomRenderFunction, CustomRenderContext, } from './agGrid/AdaptableFrameworkComponent';
218
+ export type { AdaptableFrameworkComponent, AdaptableMenuItemParams, AdaptableReactMenuItemProps, AngularFrameworkComponent, MenuItemFrameworkComponent, ReactFrameworkComponent, ReactMenuItemFrameworkComponent, VueFrameworkComponent, CustomRenderFunction, CustomRenderContext, } from './agGrid/AdaptableFrameworkComponent';
219
219
  export type { Fdc3Options, GridDataContextMapping, ActionColumnDefaultConfiguration, ResolveContextDataContext, RaiseIntentConfig, BroadcastConfig, HandleFdc3IntentContext, HandleFdc3Context, Fdc3ButtonContext, Fdc3AdaptableButton, HandleFdc3IntentResolutionContext, UIControlConfig, Fdc3IntentOptions, Fdc3ContextOptions, RaiseIntentConfiguration, BroadcastConfiguration, FDC3ActionColumn, } from './AdaptableOptions/Fdc3Options';
220
220
  export type { CommentState, CommentThread, AdaptableComment } from './AdaptableState/CommentState';
221
221
  export type { UpgradeConfig } from '../agGrid';
package/themes/dark.css CHANGED
@@ -15,10 +15,12 @@
15
15
  --ab-cmp-input--disabled__background: #232323; /* #b6b7b8 */
16
16
 
17
17
  --ab-color-defaultbackground: #3e444c;
18
- --ab-color-background: var(--ab-color-defaultbackground, #3e444c);
19
18
  --ab-color-text-on-defaultbackground: #e2e2e2;
19
+ /* Inputs/comboboxes: panel gray, not app chrome black */
20
+ --ab-color-input-background: var(--ab-color-defaultbackground);
20
21
 
21
22
  --ab-color-primary: #262d2f;
23
+ --ab-color-primary-foreground: var(--ab-color-text-on-primary);
22
24
  --ab-color-primarylight: #3d3e3f;
23
25
  --ab-color-primarydark: #1c2021;
24
26
  --ab-color-text-on-primary: #e2e2e2; /* F2F2F2 */
@@ -44,6 +46,12 @@
44
46
 
45
47
  --ab-cmp-checkbox__border-color: var(--ab-color-text-on-primary);
46
48
  --ab-cmp-checkbox--checked__border-color: var(--ab-color-accent);
49
+
50
+ /* Tabs: darker strip, lighter active tab + panel (inactive vs active was too similar) */
51
+ --ab-cmp-tabs-strip__background: var(--ab-color-primary);
52
+ --ab-cmp-tabs-active__background: var(--ab-color-defaultbackground);
53
+ --ab-cmp-tabs-inactive__opacity: 0.78;
54
+ --ab-cmp-tabs-inactive-separator__color: #555;
47
55
  }
48
56
 
49
57
  .ab--theme-dark input.ab-Input[type='number']::-webkit-outer-spin-button,.ab--theme-dark input.ab-Input[type='number']::-webkit-inner-spin-button {
@@ -63,7 +71,7 @@ as our dark theme is anyways applied on the document element.
63
71
  .ab--theme-dark {
64
72
  --ab-color-input-foreground: var(--ab-color-text-on-primary);
65
73
  --ab-cmp-input__color: var(--ab-color-input-foreground);
66
- --ab-cmp-input__background: var(--ab-color-input-background);
74
+ --ab-cmp-input__background: var(--ab-color-defaultbackground);
67
75
  --ab-cmp-input--disabled__background: var(--ab-color-primarylight);
68
76
  --ab-cmp-field-wrap__background: var(--ab-color-defaultbackground);
69
77
  }