@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.
Files changed (103) hide show
  1. package/agGrid.d.ts +4 -0
  2. package/agGrid.js +4 -0
  3. package/base.css +2 -0
  4. package/base.css.map +1 -1
  5. package/bundle.cjs.js +162 -161
  6. package/index.css +4 -0
  7. package/index.css.map +1 -1
  8. package/package.json +1 -1
  9. package/publishTimestamp.d.ts +1 -1
  10. package/publishTimestamp.js +1 -1
  11. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +12 -1
  12. package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
  13. package/src/AdaptableOptions/ChartingOptions.d.ts +44 -39
  14. package/src/AdaptableOptions/DataImportOptions.d.ts +67 -0
  15. package/src/AdaptableOptions/DataImportOptions.js +2 -0
  16. package/src/AdaptableOptions/MenuOptions.d.ts +147 -8
  17. package/src/AdaptableOptions/MenuOptions.js +75 -0
  18. package/src/Api/AdaptableApi.d.ts +5 -0
  19. package/src/Api/DataImportApi.d.ts +9 -0
  20. package/src/Api/DataImportApi.js +2 -0
  21. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  22. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  23. package/src/Api/Implementation/DataImportApiImpl.d.ts +10 -0
  24. package/src/Api/Implementation/DataImportApiImpl.js +14 -0
  25. package/src/Api/Implementation/ExpressionApiImpl.js +1 -1
  26. package/src/Api/Implementation/OptionsApiImpl.d.ts +1 -0
  27. package/src/Api/Implementation/OptionsApiImpl.js +3 -0
  28. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +5 -1
  29. package/src/Api/Implementation/UserInterfaceApiImpl.js +22 -0
  30. package/src/Api/Internal/ChartingInternalApi.js +15 -15
  31. package/src/Api/Internal/DataImportInternalApi.d.ts +4 -0
  32. package/src/Api/Internal/DataImportInternalApi.js +53 -0
  33. package/src/Api/OptionsApi.d.ts +5 -0
  34. package/src/Api/UserInterfaceApi.d.ts +14 -0
  35. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  36. package/src/PredefinedConfig/Common/Menu.d.ts +1 -6
  37. package/src/PredefinedConfig/Common/Types.d.ts +4 -4
  38. package/src/PredefinedConfig/Common/Types.js +2 -0
  39. package/src/Strategy/ChartingModule.js +1 -1
  40. package/src/Strategy/DataImportModule.d.ts +11 -0
  41. package/src/Strategy/DataImportModule.js +36 -0
  42. package/src/Strategy/Fdc3Module.js +3 -2
  43. package/src/Strategy/LayoutModule.js +1 -0
  44. package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
  45. package/src/Utilities/Constants/ModuleConstants.js +4 -1
  46. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -0
  47. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  48. package/src/Utilities/Helpers/AdaptableHelper.js +2 -0
  49. package/src/Utilities/Interface/MessagePopups.d.ts +2 -2
  50. package/src/Utilities/Services/ModuleService.js +2 -0
  51. package/src/View/AdaptableViewFactory.js +2 -0
  52. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.js +1 -1
  53. package/src/View/Components/ExternalRenderer.d.ts +1 -0
  54. package/src/View/Components/ExternalRenderer.js +2 -1
  55. package/src/View/Components/Panels/PanelWithImage.js +3 -3
  56. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +1 -1
  57. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +4 -1
  58. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +3 -0
  59. package/src/View/Components/Popups/WindowPopups/WindowPopups.d.ts +1 -0
  60. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +14 -4
  61. package/src/View/DataImport/DataImportPopup.d.ts +6 -0
  62. package/src/View/DataImport/DataImportPopup.js +32 -0
  63. package/src/View/DataImport/DataImportWizard/DataImportWizard.d.ts +8 -0
  64. package/src/View/DataImport/DataImportWizard/DataImportWizard.js +176 -0
  65. package/src/View/DataImport/DataImportWizard/index.d.ts +1 -0
  66. package/src/View/DataImport/DataImportWizard/index.js +4 -0
  67. package/src/View/DataImport/DataImportWizard/sections/DataPreview.d.ts +10 -0
  68. package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +154 -0
  69. package/src/View/DataImport/DataImportWizard/sections/ImportSection.d.ts +9 -0
  70. package/src/View/DataImport/DataImportWizard/sections/ImportSection.js +24 -0
  71. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadFileSection.d.ts +8 -0
  72. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadFileSection.js +11 -0
  73. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadSection.d.ts +13 -0
  74. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadSection.js +23 -0
  75. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadTextSection.d.ts +8 -0
  76. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadTextSection.js +13 -0
  77. package/src/View/DataImport/DataImportWizard/sections/UploadSection/index.d.ts +1 -0
  78. package/src/View/DataImport/DataImportWizard/sections/UploadSection/index.js +4 -0
  79. package/src/View/DataImport/DataImportWizard/sections/ValidationSection.d.ts +11 -0
  80. package/src/View/DataImport/DataImportWizard/sections/ValidationSection.js +35 -0
  81. package/src/View/DataImport/systemFileHandlers.d.ts +3 -0
  82. package/src/View/DataImport/systemFileHandlers.js +44 -0
  83. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -0
  84. package/src/View/Wizard/OnePageWizards.d.ts +1 -0
  85. package/src/View/Wizard/OnePageWizards.js +2 -2
  86. package/src/agGrid/agGridHelper.js +2 -0
  87. package/src/agGrid/agGridMenuHelper.d.ts +20 -9
  88. package/src/agGrid/agGridMenuHelper.js +288 -133
  89. package/src/components/FileDroppable/index.d.ts +2 -1
  90. package/src/components/FileDroppable/index.js +8 -7
  91. package/src/components/icons/import.d.ts +3 -0
  92. package/src/components/icons/import.js +7 -0
  93. package/src/components/icons/index.js +2 -0
  94. package/src/metamodel/adaptable.metamodel.d.ts +171 -2
  95. package/src/metamodel/adaptable.metamodel.js +1 -1
  96. package/src/parser/src/index.d.ts +2 -2
  97. package/src/parser/src/index.js +4 -4
  98. package/src/parser/src/tokenizer.d.ts +1 -1
  99. package/src/parser/src/tokenizer.js +14 -6
  100. package/src/parser/src/types.d.ts +2 -2
  101. package/src/types.d.ts +5 -4
  102. package/version.d.ts +1 -1
  103. 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?: undefined;
2606
+ isOpt: boolean;
2515
2607
  } | {
2516
2608
  name: string;
2517
2609
  kind: string;
2518
2610
  desc: string;
2519
- isOpt: boolean;
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;