@adaptabletools/adaptable 10.0.0-canary.3 → 10.0.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 +77 -29
- package/index.css +89 -31
- package/package.json +1 -5
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +12 -2
- package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +14 -7
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
- package/src/AdaptableOptions/QueryLanguageOptions.d.ts +7 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +89 -4
- package/src/Api/AlertApi.d.ts +1 -1
- package/src/Api/ColumnApi.d.ts +33 -0
- package/src/Api/ConfigApi.d.ts +8 -0
- package/src/Api/DataChangeHistoryApi.d.ts +10 -4
- package/src/Api/GridApi.d.ts +34 -8
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
- package/src/Api/Implementation/AlertApiImpl.js +11 -4
- package/src/Api/Implementation/ColumnApiImpl.d.ts +7 -0
- package/src/Api/Implementation/ColumnApiImpl.js +37 -1
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ConfigApiImpl.js +28 -17
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +3 -0
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +2 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +9 -0
- package/src/Api/Implementation/GridApiImpl.js +17 -1
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -0
- package/src/Api/Implementation/InternalApiImpl.js +16 -0
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +2 -0
- package/src/Api/Implementation/QueryLanguageApiImpl.js +3 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +11 -8
- package/src/Api/Implementation/UserInterfaceApiImpl.js +57 -80
- package/src/Api/InternalApi.d.ts +2 -0
- package/src/Api/QueryLanguageApi.d.ts +5 -0
- package/src/Api/UserInterfaceApi.d.ts +14 -5
- package/src/PredefinedConfig/AlertState.d.ts +10 -0
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +4 -37
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +16 -15
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
- package/src/{AdaptableOptions/DataChangeTrackingOptions.js → PredefinedConfig/Common/SpecialColumnSettings.js} +0 -0
- package/src/PredefinedConfig/FilterState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +10 -0
- package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
- package/src/PredefinedConfig/SystemState.d.ts +4 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -6
- package/src/Redux/ActionsReducers/SystemRedux.js +11 -11
- package/src/Redux/Store/AdaptableReduxMerger.js +7 -1
- package/src/Redux/Store/AdaptableStore.js +12 -0
- package/src/Strategy/AlertModule.js +1 -1
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/ExportModule.d.ts +0 -2
- package/src/Strategy/ExportModule.js +58 -61
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -4
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +11 -5
- package/src/Utilities/Helpers/DateHelper.d.ts +8 -2
- package/src/Utilities/Helpers/DateHelper.js +42 -20
- package/src/Utilities/ObjectFactory.d.ts +1 -1
- package/src/Utilities/ObjectFactory.js +13 -1
- package/src/Utilities/Services/AlertService.d.ts +1 -0
- package/src/Utilities/Services/AlertService.js +5 -0
- package/src/Utilities/Services/DataService.d.ts +0 -4
- package/src/Utilities/Services/DataService.js +2 -18
- package/src/Utilities/Services/Interface/IAlertService.d.ts +2 -1
- package/src/Utilities/Services/Interface/IDataService.d.ts +0 -2
- package/src/Utilities/Services/Interface/ILicenseService.d.ts +2 -1
- package/src/Utilities/Services/LicenseService.d.ts +2 -2
- package/src/Utilities/Services/MetamodelService.js +1 -0
- package/src/Utilities/Services/ModuleService.js +31 -24
- package/src/Utilities/Services/ReportService.js +1 -1
- package/src/Utilities/Services/TeamSharingService.d.ts +1 -0
- package/src/Utilities/Services/TeamSharingService.js +4 -2
- package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
- package/src/Utilities/runIfNotResolvedIn.js +23 -0
- package/src/View/AdaptableView.js +1 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.js +4 -2
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
- package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
- package/src/View/Components/FilterForm/FilterForm.js +44 -23
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +3 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +14 -5
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
- package/src/View/Components/FilterForm/QuickFilterForm.js +64 -23
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
- package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
- package/src/View/Components/Selectors/ColumnValueSelector.js +45 -13
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +42 -32
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.d.ts +5 -1
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +8 -5
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +3 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +3 -1
- package/src/View/GridInfo/GridInfoPopup.js +4 -1
- package/src/View/Query/QueryViewPanel.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +6 -8
- package/src/View/UIHelper.d.ts +2 -0
- package/src/View/UIHelper.js +10 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
- package/src/agGrid/ActionColumnRenderer.js +20 -3
- package/src/agGrid/Adaptable.d.ts +20 -4
- package/src/agGrid/Adaptable.js +186 -55
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/DropdownButton/index.js +1 -1
- package/src/components/ExpressionEditor/index.js +2 -1
- package/src/components/Loader/Loader.d.ts +7 -0
- package/src/components/Loader/Loader.js +13 -0
- package/src/components/Loader/index.d.ts +2 -0
- package/src/components/Loader/index.js +7 -0
- package/src/components/ProgressIndicator/ProgressIndicator.d.ts +2 -0
- package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
- package/src/metamodel/adaptable.metamodel.d.ts +74 -34
- package/src/metamodel/adaptable.metamodel.js +346 -116
- package/src/parser/src/types.d.ts +11 -11
- package/src/types.d.ts +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/DataChangeTrackingOptions.d.ts +0 -16
- package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
- package/src/Utilities/Interface/ProgressIndicator.js +0 -2
- package/src/View/Export/ProgressIndicator.d.ts +0 -6
- package/src/View/Export/ProgressIndicator.js +0 -25
|
@@ -14,12 +14,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
14
14
|
description: string;
|
|
15
15
|
uiLabel: string;
|
|
16
16
|
isOptional?: undefined;
|
|
17
|
+
reference?: undefined;
|
|
17
18
|
} | {
|
|
18
19
|
name: string;
|
|
19
20
|
kind: string;
|
|
20
21
|
description: string;
|
|
21
22
|
uiLabel: string;
|
|
22
23
|
isOptional: boolean;
|
|
24
|
+
reference: string;
|
|
25
|
+
} | {
|
|
26
|
+
name: string;
|
|
27
|
+
kind: string;
|
|
28
|
+
description: string;
|
|
29
|
+
uiLabel: string;
|
|
30
|
+
isOptional: boolean;
|
|
31
|
+
reference?: undefined;
|
|
23
32
|
})[];
|
|
24
33
|
};
|
|
25
34
|
ActionColumnButtonContext: {
|
|
@@ -40,6 +49,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
40
49
|
reference?: undefined;
|
|
41
50
|
})[];
|
|
42
51
|
};
|
|
52
|
+
ActionColumnSettings: {
|
|
53
|
+
name: string;
|
|
54
|
+
kind: string;
|
|
55
|
+
description: string;
|
|
56
|
+
properties: ({
|
|
57
|
+
name: string;
|
|
58
|
+
kind: string;
|
|
59
|
+
description: string;
|
|
60
|
+
uiLabel: string;
|
|
61
|
+
isOptional: boolean;
|
|
62
|
+
defaultValue: string;
|
|
63
|
+
} | {
|
|
64
|
+
name: string;
|
|
65
|
+
kind: string;
|
|
66
|
+
description: string;
|
|
67
|
+
uiLabel: string;
|
|
68
|
+
isOptional: boolean;
|
|
69
|
+
defaultValue?: undefined;
|
|
70
|
+
})[];
|
|
71
|
+
};
|
|
43
72
|
ActionHandler: {
|
|
44
73
|
name: string;
|
|
45
74
|
kind: string;
|
|
@@ -804,14 +833,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
804
833
|
description: string;
|
|
805
834
|
uiLabel: string;
|
|
806
835
|
isOptional: boolean;
|
|
807
|
-
defaultValue
|
|
836
|
+
defaultValue?: undefined;
|
|
808
837
|
} | {
|
|
809
838
|
name: string;
|
|
810
839
|
kind: string;
|
|
811
840
|
description: string;
|
|
812
841
|
uiLabel: string;
|
|
813
842
|
isOptional: boolean;
|
|
814
|
-
defaultValue
|
|
843
|
+
defaultValue: string;
|
|
815
844
|
})[];
|
|
816
845
|
};
|
|
817
846
|
CalculatedColumnState: {
|
|
@@ -905,6 +934,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
905
934
|
kind: string;
|
|
906
935
|
description: string;
|
|
907
936
|
};
|
|
937
|
+
CellValuesList: {
|
|
938
|
+
name: string;
|
|
939
|
+
kind: string;
|
|
940
|
+
description: string;
|
|
941
|
+
};
|
|
908
942
|
ChartApi: {
|
|
909
943
|
name: string;
|
|
910
944
|
kind: string;
|
|
@@ -1410,26 +1444,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1410
1444
|
defaultValue: string;
|
|
1411
1445
|
}[];
|
|
1412
1446
|
};
|
|
1413
|
-
DataChangeTrackingOptions: {
|
|
1414
|
-
name: string;
|
|
1415
|
-
kind: string;
|
|
1416
|
-
description: string;
|
|
1417
|
-
properties: ({
|
|
1418
|
-
name: string;
|
|
1419
|
-
kind: string;
|
|
1420
|
-
description: string;
|
|
1421
|
-
uiLabel: string;
|
|
1422
|
-
defaultValue: string;
|
|
1423
|
-
isOptional?: undefined;
|
|
1424
|
-
} | {
|
|
1425
|
-
name: string;
|
|
1426
|
-
kind: string;
|
|
1427
|
-
description: string;
|
|
1428
|
-
uiLabel: string;
|
|
1429
|
-
isOptional: boolean;
|
|
1430
|
-
defaultValue: string;
|
|
1431
|
-
})[];
|
|
1432
|
-
};
|
|
1433
1447
|
DataSource: {
|
|
1434
1448
|
name: string;
|
|
1435
1449
|
kind: string;
|
|
@@ -1863,6 +1877,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1863
1877
|
description: string;
|
|
1864
1878
|
uiLabel: string;
|
|
1865
1879
|
isOptional: boolean;
|
|
1880
|
+
defaultValue: string;
|
|
1866
1881
|
reference: string;
|
|
1867
1882
|
} | {
|
|
1868
1883
|
name: string;
|
|
@@ -1870,6 +1885,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1870
1885
|
description: string;
|
|
1871
1886
|
uiLabel: string;
|
|
1872
1887
|
isOptional: boolean;
|
|
1888
|
+
defaultValue: string;
|
|
1873
1889
|
reference?: undefined;
|
|
1874
1890
|
})[];
|
|
1875
1891
|
};
|
|
@@ -1945,6 +1961,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1945
1961
|
uiLabel: string;
|
|
1946
1962
|
isOptional?: undefined;
|
|
1947
1963
|
defaultValue?: undefined;
|
|
1964
|
+
reference?: undefined;
|
|
1948
1965
|
} | {
|
|
1949
1966
|
name: string;
|
|
1950
1967
|
kind: string;
|
|
@@ -1952,12 +1969,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1952
1969
|
uiLabel: string;
|
|
1953
1970
|
isOptional: boolean;
|
|
1954
1971
|
defaultValue: string;
|
|
1972
|
+
reference?: undefined;
|
|
1973
|
+
} | {
|
|
1974
|
+
name: string;
|
|
1975
|
+
kind: string;
|
|
1976
|
+
description: string;
|
|
1977
|
+
uiLabel: string;
|
|
1978
|
+
isOptional: boolean;
|
|
1979
|
+
defaultValue?: undefined;
|
|
1980
|
+
reference?: undefined;
|
|
1955
1981
|
} | {
|
|
1956
1982
|
name: string;
|
|
1957
1983
|
kind: string;
|
|
1958
1984
|
description: string;
|
|
1959
1985
|
uiLabel: string;
|
|
1960
1986
|
isOptional: boolean;
|
|
1987
|
+
reference: string;
|
|
1961
1988
|
defaultValue?: undefined;
|
|
1962
1989
|
})[];
|
|
1963
1990
|
};
|
|
@@ -1972,6 +1999,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1972
1999
|
uiLabel: string;
|
|
1973
2000
|
}[];
|
|
1974
2001
|
};
|
|
2002
|
+
FreeTextColumnSettings: {
|
|
2003
|
+
name: string;
|
|
2004
|
+
kind: string;
|
|
2005
|
+
description: string;
|
|
2006
|
+
};
|
|
1975
2007
|
FreeTextColumnState: {
|
|
1976
2008
|
name: string;
|
|
1977
2009
|
kind: string;
|
|
@@ -2007,7 +2039,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2007
2039
|
isOptional: boolean;
|
|
2008
2040
|
defaultValue: string;
|
|
2009
2041
|
gridInfo?: undefined;
|
|
2010
|
-
reference?: undefined;
|
|
2011
2042
|
} | {
|
|
2012
2043
|
name: string;
|
|
2013
2044
|
kind: string;
|
|
@@ -2016,7 +2047,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2016
2047
|
isOptional: boolean;
|
|
2017
2048
|
gridInfo: string;
|
|
2018
2049
|
defaultValue: string;
|
|
2019
|
-
reference?: undefined;
|
|
2020
2050
|
} | {
|
|
2021
2051
|
name: string;
|
|
2022
2052
|
kind: string;
|
|
@@ -2025,16 +2055,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2025
2055
|
isOptional: boolean;
|
|
2026
2056
|
defaultValue?: undefined;
|
|
2027
2057
|
gridInfo?: undefined;
|
|
2028
|
-
reference?: undefined;
|
|
2029
|
-
} | {
|
|
2030
|
-
name: string;
|
|
2031
|
-
kind: string;
|
|
2032
|
-
description: string;
|
|
2033
|
-
uiLabel: string;
|
|
2034
|
-
isOptional: boolean;
|
|
2035
|
-
defaultValue: string;
|
|
2036
|
-
reference: string;
|
|
2037
|
-
gridInfo?: undefined;
|
|
2038
2058
|
})[];
|
|
2039
2059
|
};
|
|
2040
2060
|
Glue42Api: {
|
|
@@ -3055,6 +3075,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3055
3075
|
isOptional: boolean;
|
|
3056
3076
|
}[];
|
|
3057
3077
|
};
|
|
3078
|
+
SpecialColumnSettings: {
|
|
3079
|
+
name: string;
|
|
3080
|
+
kind: string;
|
|
3081
|
+
description: string;
|
|
3082
|
+
properties: ({
|
|
3083
|
+
name: string;
|
|
3084
|
+
kind: string;
|
|
3085
|
+
description: string;
|
|
3086
|
+
uiLabel: string;
|
|
3087
|
+
isOptional: boolean;
|
|
3088
|
+
defaultValue: string;
|
|
3089
|
+
} | {
|
|
3090
|
+
name: string;
|
|
3091
|
+
kind: string;
|
|
3092
|
+
description: string;
|
|
3093
|
+
uiLabel: string;
|
|
3094
|
+
isOptional: boolean;
|
|
3095
|
+
defaultValue?: undefined;
|
|
3096
|
+
})[];
|
|
3097
|
+
};
|
|
3058
3098
|
StateOptions: {
|
|
3059
3099
|
name: string;
|
|
3060
3100
|
kind: string;
|