@adaptabletools/adaptable 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.
- package/index.css +88 -67
- package/package.json +1 -1
- package/src/AdaptableOptions/ColumnMenuOptions.d.ts +3 -3
- package/src/AdaptableOptions/ContextMenuOptions.d.ts +3 -3
- package/src/AdaptableState/LayoutState.d.ts +5 -4
- package/src/AdaptableState/StyledColumnState.d.ts +7 -16
- package/src/AdaptableState/StyledColumnState.js +9 -1
- package/src/Strategy/ExportModule.js +13 -1
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +2 -2
- package/src/View/Alert/Wizard/AlertWizard.js +3 -3
- package/src/View/Components/ColumnFilter/AdaptableColumnFilter.d.ts +3 -1
- package/src/View/Components/ColumnFilter/AdaptableColumnFilter.js +7 -1
- package/src/View/Components/ColumnFilter/ColumnFilter.d.ts +2 -1
- package/src/View/Components/ColumnFilter/ColumnFilter.js +3 -2
- package/src/View/Components/ColumnFilter/columnFilterLocation.d.ts +2 -0
- package/src/View/Components/ColumnFilter/columnFilterLocation.js +1 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
- package/src/View/Export/Wizard/ExportPopupWizardRouter.js +10 -1
- package/src/View/Export/Wizard/ScheduledReportSettings.d.ts +3 -1
- package/src/View/Export/Wizard/ScheduledReportSettings.js +8 -1
- package/src/View/Export/Wizard/ScheduledReportWizard.js +8 -3
- package/src/View/Export/Wizard/isReportScheduledSettingsValid.d.ts +1 -1
- package/src/View/Export/Wizard/isReportScheduledSettingsValid.js +3 -0
- package/src/View/Layout/Wizard/LayoutWizard.js +7 -2
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +6 -2
- package/src/View/renderWithAdaptableContext.js +1 -1
- package/src/agGrid/AdaptableAgGrid.js +2 -2
- package/src/agGrid/AdaptableFrameworkComponent.d.ts +25 -3
- package/src/agGrid/AgGridFilterAdapter.js +3 -1
- package/src/components/Combobox/index.js +1 -1
- package/src/components/Datepicker/index.js +4 -4
- package/src/components/NewDropdownButton/index.js +1 -1
- package/src/components/NewSelect/index.js +2 -2
- package/src/components/NewTooltip/index.js +1 -1
- package/src/components/ui/button.js +1 -1
- package/src/components/ui/calendar.d.ts +1 -1
- package/src/components/ui/calendar.js +2 -2
- package/src/components/ui/combobox.js +3 -3
- package/src/components/ui/dropdown-menu.js +1 -1
- package/src/components/ui/input-group.d.ts +1 -1
- package/src/components/ui/input-group.js +4 -4
- package/src/components/ui/input.js +1 -1
- package/src/components/ui/popover.js +1 -1
- package/src/components/ui/select.js +1 -1
- package/src/components/ui/textarea.js +1 -1
- package/src/components/ui/tooltip.js +1 -1
- package/src/env.js +2 -2
- package/src/layout-manager/src/LayoutManagerModel.d.ts +2 -2
- package/src/layout-manager/src/index.js +5 -4
- package/src/layout-manager/src/normalizeLayoutModel.js +5 -1
- package/src/layout-manager/src/rowGroupDisplayType.d.ts +6 -0
- package/src/layout-manager/src/rowGroupDisplayType.js +24 -0
- package/src/metamodel/adaptable.metamodel.d.ts +12 -24
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/themes/dark.css +10 -2
- package/tsconfig.esm.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-
|
|
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
|
}
|