@adaptabletools/adaptable 16.0.10-canary.0 → 16.1.0-canary.1
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/agGrid.d.ts +4 -0
- package/agGrid.js +4 -0
- package/base.css +2 -0
- package/base.css.map +1 -1
- package/bundle.cjs.js +162 -161
- package/index.css +4 -0
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +12 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
- package/src/AdaptableOptions/ChartingOptions.d.ts +44 -39
- package/src/AdaptableOptions/DataImportOptions.d.ts +67 -0
- package/src/AdaptableOptions/DataImportOptions.js +2 -0
- package/src/AdaptableOptions/MenuOptions.d.ts +147 -8
- package/src/AdaptableOptions/MenuOptions.js +75 -0
- package/src/Api/AdaptableApi.d.ts +5 -0
- package/src/Api/DataImportApi.d.ts +9 -0
- package/src/Api/DataImportApi.js +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/DataImportApiImpl.d.ts +10 -0
- package/src/Api/Implementation/DataImportApiImpl.js +14 -0
- package/src/Api/Implementation/ExpressionApiImpl.js +1 -1
- package/src/Api/Implementation/OptionsApiImpl.d.ts +1 -0
- package/src/Api/Implementation/OptionsApiImpl.js +3 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +5 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.js +22 -0
- package/src/Api/Internal/ChartingInternalApi.js +15 -15
- package/src/Api/Internal/DataImportInternalApi.d.ts +4 -0
- package/src/Api/Internal/DataImportInternalApi.js +53 -0
- package/src/Api/OptionsApi.d.ts +5 -0
- package/src/Api/UserInterfaceApi.d.ts +14 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +1 -6
- package/src/PredefinedConfig/Common/Types.d.ts +4 -4
- package/src/PredefinedConfig/Common/Types.js +2 -0
- package/src/Strategy/ChartingModule.js +1 -1
- package/src/Strategy/DataImportModule.d.ts +11 -0
- package/src/Strategy/DataImportModule.js +36 -0
- package/src/Strategy/Fdc3Module.js +3 -2
- package/src/Strategy/LayoutModule.js +1 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
- package/src/Utilities/Constants/ModuleConstants.js +4 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -0
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -0
- package/src/Utilities/Interface/MessagePopups.d.ts +2 -2
- package/src/Utilities/Services/ModuleService.js +2 -0
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.js +1 -1
- package/src/View/Components/ExternalRenderer.d.ts +1 -0
- package/src/View/Components/ExternalRenderer.js +2 -1
- package/src/View/Components/Panels/PanelWithImage.js +3 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +4 -1
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +3 -0
- package/src/View/Components/Popups/WindowPopups/WindowPopups.d.ts +1 -0
- package/src/View/Components/Popups/WindowPopups/WindowPopups.js +14 -4
- package/src/View/DataImport/DataImportPopup.d.ts +6 -0
- package/src/View/DataImport/DataImportPopup.js +32 -0
- package/src/View/DataImport/DataImportWizard/DataImportWizard.d.ts +8 -0
- package/src/View/DataImport/DataImportWizard/DataImportWizard.js +176 -0
- package/src/View/DataImport/DataImportWizard/index.d.ts +1 -0
- package/src/View/DataImport/DataImportWizard/index.js +4 -0
- package/src/View/DataImport/DataImportWizard/sections/DataPreview.d.ts +10 -0
- package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +154 -0
- package/src/View/DataImport/DataImportWizard/sections/ImportSection.d.ts +9 -0
- package/src/View/DataImport/DataImportWizard/sections/ImportSection.js +24 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadFileSection.d.ts +8 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadFileSection.js +11 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadSection.d.ts +13 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadSection.js +23 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadTextSection.d.ts +8 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadTextSection.js +13 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/index.d.ts +1 -0
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/index.js +4 -0
- package/src/View/DataImport/DataImportWizard/sections/ValidationSection.d.ts +11 -0
- package/src/View/DataImport/DataImportWizard/sections/ValidationSection.js +35 -0
- package/src/View/DataImport/systemFileHandlers.d.ts +3 -0
- package/src/View/DataImport/systemFileHandlers.js +44 -0
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -0
- package/src/View/Wizard/OnePageWizards.d.ts +1 -0
- package/src/View/Wizard/OnePageWizards.js +2 -2
- package/src/agGrid/agGridHelper.js +2 -0
- package/src/agGrid/agGridMenuHelper.d.ts +20 -9
- package/src/agGrid/agGridMenuHelper.js +288 -133
- package/src/components/FileDroppable/index.d.ts +2 -1
- package/src/components/FileDroppable/index.js +8 -7
- package/src/components/icons/import.d.ts +3 -0
- package/src/components/icons/import.js +7 -0
- package/src/components/icons/index.js +2 -0
- package/src/metamodel/adaptable.metamodel.d.ts +171 -2
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/index.d.ts +2 -2
- package/src/parser/src/index.js +4 -4
- package/src/parser/src/tokenizer.d.ts +1 -1
- package/src/parser/src/tokenizer.js +14 -6
- package/src/parser/src/types.d.ts +2 -2
- package/src/types.d.ts +5 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -46,6 +46,7 @@ const chart_1 = tslib_1.__importDefault(require("./chart"));
|
|
|
46
46
|
const application_1 = tslib_1.__importDefault(require("./application"));
|
|
47
47
|
const bulk_update_1 = tslib_1.__importDefault(require("./bulk-update"));
|
|
48
48
|
const import_export_1 = tslib_1.__importDefault(require("./import-export"));
|
|
49
|
+
const import_1 = tslib_1.__importDefault(require("./import"));
|
|
49
50
|
const calculated_column_1 = tslib_1.__importDefault(require("./calculated-column"));
|
|
50
51
|
const cell_summary_1 = tslib_1.__importDefault(require("./cell-summary"));
|
|
51
52
|
const column_chooser_1 = tslib_1.__importDefault(require("./column-chooser"));
|
|
@@ -236,6 +237,7 @@ exports.allIcons = {
|
|
|
236
237
|
'sort-desc': sort_desc_1.default,
|
|
237
238
|
logout: logout_1.default,
|
|
238
239
|
'import-export': import_export_1.default,
|
|
240
|
+
import: import_1.default,
|
|
239
241
|
paperclip: attach_file_1.default,
|
|
240
242
|
info: info_1.default,
|
|
241
243
|
'cloud-upload': cloud_upload_1.default,
|
|
@@ -911,6 +911,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
911
911
|
kind: string;
|
|
912
912
|
desc: string;
|
|
913
913
|
};
|
|
914
|
+
AdaptableSystemMenuItem: {
|
|
915
|
+
name: string;
|
|
916
|
+
kind: string;
|
|
917
|
+
desc: string;
|
|
918
|
+
};
|
|
914
919
|
AdaptableTheme: {
|
|
915
920
|
name: string;
|
|
916
921
|
kind: string;
|
|
@@ -971,6 +976,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
971
976
|
ref?: undefined;
|
|
972
977
|
})[];
|
|
973
978
|
};
|
|
979
|
+
AgGridMenuItem: {
|
|
980
|
+
name: string;
|
|
981
|
+
kind: string;
|
|
982
|
+
desc: string;
|
|
983
|
+
};
|
|
974
984
|
AlertButton: {
|
|
975
985
|
name: string;
|
|
976
986
|
kind: string;
|
|
@@ -1784,6 +1794,36 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1784
1794
|
isOpt?: undefined;
|
|
1785
1795
|
})[];
|
|
1786
1796
|
};
|
|
1797
|
+
CustomColumnMenuContext: {
|
|
1798
|
+
name: string;
|
|
1799
|
+
kind: string;
|
|
1800
|
+
desc: string;
|
|
1801
|
+
props: {
|
|
1802
|
+
name: string;
|
|
1803
|
+
kind: string;
|
|
1804
|
+
desc: string;
|
|
1805
|
+
}[];
|
|
1806
|
+
};
|
|
1807
|
+
CustomColumnMenuItem: {
|
|
1808
|
+
name: string;
|
|
1809
|
+
kind: string;
|
|
1810
|
+
desc: string;
|
|
1811
|
+
};
|
|
1812
|
+
CustomContextMenuContext: {
|
|
1813
|
+
name: string;
|
|
1814
|
+
kind: string;
|
|
1815
|
+
desc: string;
|
|
1816
|
+
props: {
|
|
1817
|
+
name: string;
|
|
1818
|
+
kind: string;
|
|
1819
|
+
desc: string;
|
|
1820
|
+
}[];
|
|
1821
|
+
};
|
|
1822
|
+
CustomContextMenuItem: {
|
|
1823
|
+
name: string;
|
|
1824
|
+
kind: string;
|
|
1825
|
+
desc: string;
|
|
1826
|
+
};
|
|
1787
1827
|
CustomDestination: {
|
|
1788
1828
|
name: string;
|
|
1789
1829
|
kind: string;
|
|
@@ -2065,6 +2105,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2065
2105
|
ref: string;
|
|
2066
2106
|
}[];
|
|
2067
2107
|
};
|
|
2108
|
+
CustomWindowConfig: {
|
|
2109
|
+
name: string;
|
|
2110
|
+
kind: string;
|
|
2111
|
+
desc: string;
|
|
2112
|
+
};
|
|
2068
2113
|
DashboardButtonContext: {
|
|
2069
2114
|
name: string;
|
|
2070
2115
|
kind: string;
|
|
@@ -2216,6 +2261,53 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2216
2261
|
kind: string;
|
|
2217
2262
|
desc: string;
|
|
2218
2263
|
};
|
|
2264
|
+
DataImportApplyImportContext: {
|
|
2265
|
+
name: string;
|
|
2266
|
+
kind: string;
|
|
2267
|
+
desc: string;
|
|
2268
|
+
props: {
|
|
2269
|
+
name: string;
|
|
2270
|
+
kind: string;
|
|
2271
|
+
desc: string;
|
|
2272
|
+
}[];
|
|
2273
|
+
};
|
|
2274
|
+
DataImportFileHandler: {
|
|
2275
|
+
name: string;
|
|
2276
|
+
kind: string;
|
|
2277
|
+
desc: string;
|
|
2278
|
+
props: ({
|
|
2279
|
+
name: string;
|
|
2280
|
+
kind: string;
|
|
2281
|
+
desc: string;
|
|
2282
|
+
isOpt: boolean;
|
|
2283
|
+
} | {
|
|
2284
|
+
name: string;
|
|
2285
|
+
kind: string;
|
|
2286
|
+
desc: string;
|
|
2287
|
+
isOpt?: undefined;
|
|
2288
|
+
})[];
|
|
2289
|
+
};
|
|
2290
|
+
DataImportOptions: {
|
|
2291
|
+
name: string;
|
|
2292
|
+
kind: string;
|
|
2293
|
+
desc: string;
|
|
2294
|
+
props: {
|
|
2295
|
+
name: string;
|
|
2296
|
+
kind: string;
|
|
2297
|
+
desc: string;
|
|
2298
|
+
isOpt: boolean;
|
|
2299
|
+
}[];
|
|
2300
|
+
};
|
|
2301
|
+
DataImportValidateContext: {
|
|
2302
|
+
name: string;
|
|
2303
|
+
kind: string;
|
|
2304
|
+
desc: string;
|
|
2305
|
+
props: {
|
|
2306
|
+
name: string;
|
|
2307
|
+
kind: string;
|
|
2308
|
+
desc: string;
|
|
2309
|
+
}[];
|
|
2310
|
+
};
|
|
2219
2311
|
DataSet: {
|
|
2220
2312
|
name: string;
|
|
2221
2313
|
kind: string;
|
|
@@ -2511,12 +2603,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2511
2603
|
name: string;
|
|
2512
2604
|
kind: string;
|
|
2513
2605
|
desc: string;
|
|
2514
|
-
isOpt
|
|
2606
|
+
isOpt: boolean;
|
|
2515
2607
|
} | {
|
|
2516
2608
|
name: string;
|
|
2517
2609
|
kind: string;
|
|
2518
2610
|
desc: string;
|
|
2519
|
-
isOpt
|
|
2611
|
+
isOpt?: undefined;
|
|
2520
2612
|
})[];
|
|
2521
2613
|
};
|
|
2522
2614
|
ExpressionFunction: {
|
|
@@ -2604,6 +2696,35 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2604
2696
|
noCode?: undefined;
|
|
2605
2697
|
})[];
|
|
2606
2698
|
};
|
|
2699
|
+
ExternalChartingContext: {
|
|
2700
|
+
name: string;
|
|
2701
|
+
kind: string;
|
|
2702
|
+
desc: string;
|
|
2703
|
+
props: ({
|
|
2704
|
+
name: string;
|
|
2705
|
+
kind: string;
|
|
2706
|
+
desc: string;
|
|
2707
|
+
isOpt?: undefined;
|
|
2708
|
+
ref?: undefined;
|
|
2709
|
+
} | {
|
|
2710
|
+
name: string;
|
|
2711
|
+
kind: string;
|
|
2712
|
+
desc: string;
|
|
2713
|
+
isOpt: boolean;
|
|
2714
|
+
ref: string;
|
|
2715
|
+
})[];
|
|
2716
|
+
};
|
|
2717
|
+
ExternalChartingOptions: {
|
|
2718
|
+
name: string;
|
|
2719
|
+
kind: string;
|
|
2720
|
+
desc: string;
|
|
2721
|
+
props: {
|
|
2722
|
+
name: string;
|
|
2723
|
+
kind: string;
|
|
2724
|
+
desc: string;
|
|
2725
|
+
isOpt: boolean;
|
|
2726
|
+
}[];
|
|
2727
|
+
};
|
|
2607
2728
|
ExternalReport: {
|
|
2608
2729
|
name: string;
|
|
2609
2730
|
kind: string;
|
|
@@ -4820,6 +4941,54 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4820
4941
|
desc: string;
|
|
4821
4942
|
}[];
|
|
4822
4943
|
};
|
|
4944
|
+
UserColumnMenuItem: {
|
|
4945
|
+
name: string;
|
|
4946
|
+
kind: string;
|
|
4947
|
+
desc: string;
|
|
4948
|
+
props: ({
|
|
4949
|
+
name: string;
|
|
4950
|
+
kind: string;
|
|
4951
|
+
desc: string;
|
|
4952
|
+
isOpt: boolean;
|
|
4953
|
+
ref?: undefined;
|
|
4954
|
+
} | {
|
|
4955
|
+
name: string;
|
|
4956
|
+
kind: string;
|
|
4957
|
+
desc: string;
|
|
4958
|
+
isOpt: boolean;
|
|
4959
|
+
ref: string;
|
|
4960
|
+
} | {
|
|
4961
|
+
name: string;
|
|
4962
|
+
kind: string;
|
|
4963
|
+
desc: string;
|
|
4964
|
+
isOpt?: undefined;
|
|
4965
|
+
ref?: undefined;
|
|
4966
|
+
})[];
|
|
4967
|
+
};
|
|
4968
|
+
UserContextMenuItem: {
|
|
4969
|
+
name: string;
|
|
4970
|
+
kind: string;
|
|
4971
|
+
desc: string;
|
|
4972
|
+
props: ({
|
|
4973
|
+
name: string;
|
|
4974
|
+
kind: string;
|
|
4975
|
+
desc: string;
|
|
4976
|
+
isOpt: boolean;
|
|
4977
|
+
ref?: undefined;
|
|
4978
|
+
} | {
|
|
4979
|
+
name: string;
|
|
4980
|
+
kind: string;
|
|
4981
|
+
desc: string;
|
|
4982
|
+
isOpt: boolean;
|
|
4983
|
+
ref: string;
|
|
4984
|
+
} | {
|
|
4985
|
+
name: string;
|
|
4986
|
+
kind: string;
|
|
4987
|
+
desc: string;
|
|
4988
|
+
isOpt?: undefined;
|
|
4989
|
+
ref?: undefined;
|
|
4990
|
+
})[];
|
|
4991
|
+
};
|
|
4823
4992
|
UserInterfaceOptions: {
|
|
4824
4993
|
name: string;
|
|
4825
4994
|
kind: string;
|