@adaptabletools/adaptable 16.0.0-canary.2 → 16.0.0-canary.3
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/base.css +31 -31
- package/base.css.map +1 -1
- package/bundle.cjs.js +155 -155
- package/index.css +39 -39
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -1
- package/src/AdaptableOptions/ActionRowOptions.d.ts +8 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +6 -2
- package/src/AdaptableOptions/FilterOptions.d.ts +1 -0
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +7 -7
- package/src/AdaptableOptions/GroupingOptions.d.ts +0 -13
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +1 -1
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +5 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +15 -5
- package/src/Api/ColumnApi.d.ts +18 -7
- package/src/Api/DataChangeHistoryApi.d.ts +6 -0
- package/src/Api/EventApi.d.ts +19 -6
- package/src/Api/Events/ChexboxColumnClicked.d.ts +1 -0
- package/src/Api/Events/ScheduleTriggered.d.ts +11 -0
- package/src/Api/Events/ScheduleTriggered.js +2 -0
- package/src/Api/Implementation/ActionRowApiImpl.js +7 -5
- package/src/Api/Implementation/ChartingApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ChartingApiImpl.js +4 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -1
- package/src/Api/Implementation/ColumnApiImpl.js +22 -3
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +3 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +5 -5
- package/src/Api/Implementation/PredicateApiImpl.js +8 -8
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +4 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +5 -0
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +0 -3
- package/src/Api/Implementation/StyledColumnApiImpl.js +0 -26
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +5 -4
- package/src/Api/Implementation/UserInterfaceApiImpl.js +5 -0
- package/src/Api/Internal/AdaptableInternalApi.js +2 -2
- package/src/Api/Internal/AlertInternalApi.js +7 -2
- package/src/Api/Internal/FilterInternalApi.js +8 -4
- package/src/Api/Internal/FormatColumnInternalApi.js +11 -13
- package/src/Api/Internal/ScheduleInternalApi.d.ts +8 -0
- package/src/Api/Internal/ScheduleInternalApi.js +20 -0
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +5 -2
- package/src/Api/Internal/StyledColumnInternalApi.js +29 -2
- package/src/Api/Internal/UserInterfaceInternalApi.d.ts +5 -0
- package/src/Api/Internal/UserInterfaceInternalApi.js +18 -0
- package/src/Api/OptionsApi.d.ts +1 -1
- package/src/Api/PredicateApi.d.ts +5 -5
- package/src/Api/StyledColumnApi.d.ts +0 -14
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +7 -7
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +8 -15
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +65 -41
- package/src/PredefinedConfig/Common/Types.d.ts +1 -1
- package/src/PredefinedConfig/StyledColumnState.d.ts +3 -2
- package/src/PredefinedConfig/TeamSharingState.d.ts +1 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +5 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +17 -3
- package/src/Redux/Store/AdaptableStore.js +1 -2
- package/src/Strategy/AdaptableModuleBase.d.ts +6 -6
- package/src/Strategy/FlashingCellModule.js +6 -2
- package/src/Strategy/Interface/IModule.d.ts +2 -2
- package/src/Strategy/ScheduleModule.js +3 -2
- package/src/Strategy/StyledColumnModule.js +24 -15
- package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -2
- package/src/Utilities/MenuItem.d.ts +4 -4
- package/src/Utilities/Services/MetamodelService.js +5 -1
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/Utilities/Services/QueryLanguageService.js +1 -1
- package/src/Utilities/Services/RowEditService.js +1 -1
- package/src/Utilities/Services/TeamSharingService.d.ts +2 -0
- package/src/Utilities/Services/TeamSharingService.js +60 -3
- package/src/Utilities/Services/ValidationService.js +6 -2
- package/src/View/Charting/useChartingElements.js +1 -1
- package/src/View/Components/AdaptableButton/index.d.ts +3 -0
- package/src/View/Components/AdaptableButton/index.js +18 -0
- package/src/View/Components/AdaptableIconComponent/index.d.ts +7 -0
- package/src/View/Components/AdaptableIconComponent/index.js +16 -0
- package/src/View/Components/AdaptableIconComponent/useCustomIcon.d.ts +2 -0
- package/src/View/Components/AdaptableIconComponent/useCustomIcon.js +12 -0
- package/src/{components → View/Components}/Badge/index.d.ts +1 -1
- package/src/{components → View/Components}/Badge/index.js +1 -1
- package/src/View/Components/FilterForm/FilterForm.js +1 -1
- package/src/View/Components/FilterForm/ListBoxMenu.js +2 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +3 -2
- package/src/View/Components/Panels/PanelWithButton.d.ts +2 -2
- package/src/View/Components/Panels/PanelWithImage.d.ts +3 -3
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +2 -3
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/PredicateEditor/PredicateEditor.js +4 -4
- package/src/View/Dashboard/CustomToolbarWrapper.js +2 -2
- package/src/View/Dashboard/Dashboard.js +3 -3
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -0
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +13 -7
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +7 -1
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +1 -1
- package/src/View/DataChangeHistory/buildActionColumnButton.js +9 -2
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +1 -5
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +2 -9
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +0 -1
- package/src/View/UIHelper.d.ts +2 -2
- package/src/agGrid/ActionColumnRenderer.d.ts +0 -2
- package/src/agGrid/ActionColumnRenderer.js +20 -5
- package/src/agGrid/Adaptable.d.ts +5 -2
- package/src/agGrid/Adaptable.js +61 -25
- package/src/agGrid/BadgeRenderer.js +19 -20
- package/src/agGrid/CheckboxRenderer.js +1 -1
- package/src/agGrid/agGridHelper.js +2 -0
- package/src/agGrid/agGridMenuHelper.js +11 -4
- package/src/agGrid/attachAddaptableColumnTypes.d.ts +1 -0
- package/src/agGrid/attachAddaptableColumnTypes.js +5 -4
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
- package/src/components/Icon/index.d.ts +11 -0
- package/src/components/{AdaptableIconComponent → Icon}/index.js +10 -10
- package/src/components/IconSelector/IconSelector.js +3 -3
- package/src/components/SimpleButton/index.js +10 -10
- package/src/components/Toggle/Toggle.d.ts +2 -2
- package/src/components/Toggle/Toggle.js +2 -2
- package/src/components/icons/index.d.ts +4 -4
- package/src/components/icons/index.js +6 -6
- package/src/metamodel/adaptable.metamodel.d.ts +72 -31
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +6 -5
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/View/Components/AdaptableViewIcon/index.d.ts +0 -10
- package/src/View/Components/AdaptableViewIcon/index.js +0 -18
- package/src/components/AdaptableIconComponent/index.d.ts +0 -11
|
@@ -327,27 +327,27 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
327
327
|
desc: string;
|
|
328
328
|
}[];
|
|
329
329
|
};
|
|
330
|
-
|
|
330
|
+
AdaptableCustomIcon: {
|
|
331
331
|
name: string;
|
|
332
332
|
kind: string;
|
|
333
333
|
desc: string;
|
|
334
|
+
props: {
|
|
335
|
+
name: string;
|
|
336
|
+
kind: string;
|
|
337
|
+
desc: string;
|
|
338
|
+
}[];
|
|
334
339
|
};
|
|
335
|
-
|
|
340
|
+
AdaptableDashboardToolbar: {
|
|
336
341
|
name: string;
|
|
337
342
|
kind: string;
|
|
338
343
|
desc: string;
|
|
339
344
|
};
|
|
340
|
-
|
|
345
|
+
AdaptableDataChangeHistoryAction: {
|
|
341
346
|
name: string;
|
|
342
347
|
kind: string;
|
|
343
348
|
desc: string;
|
|
344
|
-
props: {
|
|
345
|
-
name: string;
|
|
346
|
-
kind: string;
|
|
347
|
-
desc: string;
|
|
348
|
-
}[];
|
|
349
349
|
};
|
|
350
|
-
|
|
350
|
+
AdaptableElementIcon: {
|
|
351
351
|
name: string;
|
|
352
352
|
kind: string;
|
|
353
353
|
desc: string;
|
|
@@ -470,27 +470,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
470
470
|
kind: string;
|
|
471
471
|
desc: string;
|
|
472
472
|
};
|
|
473
|
-
AdaptableInternalIcon: {
|
|
474
|
-
name: string;
|
|
475
|
-
kind: string;
|
|
476
|
-
desc: string;
|
|
477
|
-
props: ({
|
|
478
|
-
name: string;
|
|
479
|
-
kind: string;
|
|
480
|
-
desc: string;
|
|
481
|
-
isOpt?: undefined;
|
|
482
|
-
} | {
|
|
483
|
-
name: string;
|
|
484
|
-
kind: string;
|
|
485
|
-
desc: string;
|
|
486
|
-
isOpt: boolean;
|
|
487
|
-
})[];
|
|
488
|
-
};
|
|
489
|
-
AdaptableInternalIconName: {
|
|
490
|
-
name: string;
|
|
491
|
-
kind: string;
|
|
492
|
-
desc: string;
|
|
493
|
-
};
|
|
494
473
|
AdaptableLoadStateFunction: {
|
|
495
474
|
name: string;
|
|
496
475
|
kind: string;
|
|
@@ -920,6 +899,27 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
920
899
|
isOpt: boolean;
|
|
921
900
|
}[];
|
|
922
901
|
};
|
|
902
|
+
AdaptableSystemIcon: {
|
|
903
|
+
name: string;
|
|
904
|
+
kind: string;
|
|
905
|
+
desc: string;
|
|
906
|
+
props: ({
|
|
907
|
+
name: string;
|
|
908
|
+
kind: string;
|
|
909
|
+
desc: string;
|
|
910
|
+
isOpt?: undefined;
|
|
911
|
+
} | {
|
|
912
|
+
name: string;
|
|
913
|
+
kind: string;
|
|
914
|
+
desc: string;
|
|
915
|
+
isOpt: boolean;
|
|
916
|
+
})[];
|
|
917
|
+
};
|
|
918
|
+
AdaptableSystemIconName: {
|
|
919
|
+
name: string;
|
|
920
|
+
kind: string;
|
|
921
|
+
desc: string;
|
|
922
|
+
};
|
|
923
923
|
AdaptableTheme: {
|
|
924
924
|
name: string;
|
|
925
925
|
kind: string;
|
|
@@ -1928,6 +1928,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1928
1928
|
kind: string;
|
|
1929
1929
|
desc: string;
|
|
1930
1930
|
};
|
|
1931
|
+
CustomIcon: {
|
|
1932
|
+
name: string;
|
|
1933
|
+
kind: string;
|
|
1934
|
+
desc: string;
|
|
1935
|
+
props: ({
|
|
1936
|
+
name: string;
|
|
1937
|
+
kind: string;
|
|
1938
|
+
desc: string;
|
|
1939
|
+
ref: string;
|
|
1940
|
+
} | {
|
|
1941
|
+
name: string;
|
|
1942
|
+
kind: string;
|
|
1943
|
+
desc: string;
|
|
1944
|
+
ref?: undefined;
|
|
1945
|
+
})[];
|
|
1946
|
+
};
|
|
1931
1947
|
CustomQueryVariableContext: {
|
|
1932
1948
|
name: string;
|
|
1933
1949
|
kind: string;
|
|
@@ -3933,7 +3949,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3933
3949
|
ref: string;
|
|
3934
3950
|
}[];
|
|
3935
3951
|
};
|
|
3936
|
-
|
|
3952
|
+
PredicateDefHandlerContext: {
|
|
3937
3953
|
name: string;
|
|
3938
3954
|
kind: string;
|
|
3939
3955
|
desc: string;
|
|
@@ -3942,11 +3958,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3942
3958
|
kind: string;
|
|
3943
3959
|
desc: string;
|
|
3944
3960
|
ref: string;
|
|
3961
|
+
isOpt?: undefined;
|
|
3945
3962
|
} | {
|
|
3946
3963
|
name: string;
|
|
3947
3964
|
kind: string;
|
|
3948
3965
|
desc: string;
|
|
3949
3966
|
ref?: undefined;
|
|
3967
|
+
isOpt?: undefined;
|
|
3968
|
+
} | {
|
|
3969
|
+
name: string;
|
|
3970
|
+
kind: string;
|
|
3971
|
+
desc: string;
|
|
3972
|
+
isOpt: boolean;
|
|
3973
|
+
ref?: undefined;
|
|
3950
3974
|
})[];
|
|
3951
3975
|
};
|
|
3952
3976
|
PredicateDefInput: {
|
|
@@ -4302,6 +4326,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4302
4326
|
desc: string;
|
|
4303
4327
|
}[];
|
|
4304
4328
|
};
|
|
4329
|
+
SetPrimaryKeyValueContext: {
|
|
4330
|
+
name: string;
|
|
4331
|
+
kind: string;
|
|
4332
|
+
desc: string;
|
|
4333
|
+
props: {
|
|
4334
|
+
name: string;
|
|
4335
|
+
kind: string;
|
|
4336
|
+
desc: string;
|
|
4337
|
+
}[];
|
|
4338
|
+
};
|
|
4305
4339
|
SettingsPanelOptions: {
|
|
4306
4340
|
name: string;
|
|
4307
4341
|
kind: string;
|
|
@@ -4678,6 +4712,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4678
4712
|
defVal: string;
|
|
4679
4713
|
isOpt?: undefined;
|
|
4680
4714
|
gridInfo?: undefined;
|
|
4715
|
+
} | {
|
|
4716
|
+
name: string;
|
|
4717
|
+
kind: string;
|
|
4718
|
+
desc: string;
|
|
4719
|
+
isOpt: boolean;
|
|
4720
|
+
defVal: string;
|
|
4721
|
+
gridInfo?: undefined;
|
|
4681
4722
|
} | {
|
|
4682
4723
|
name: string;
|
|
4683
4724
|
kind: string;
|