iszolea-ui 1.2.81 → 1.2.82

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.
@@ -16,6 +16,7 @@ export interface IFileImporterOptions {
16
16
  updateTableButtonText?: string;
17
17
  createTableModeText?: string;
18
18
  updateTableModeText?: string;
19
+ tableSelectorProperties?: DevExpress.ui.dxSelectBox.Properties;
19
20
  }
20
21
  export declare enum ImportFileMode {
21
22
  CreateNewTable = 0,
@@ -23,6 +24,7 @@ export declare enum ImportFileMode {
23
24
  }
24
25
  export declare class FileImporter extends EventEmitter {
25
26
  static readonly TABLE_UPDATED_EVENT = "file-importer-table-updated-event";
27
+ static readonly TABLE_CREATED_EVENT = "file-importer-table-created-event";
26
28
  private readonly $container;
27
29
  private readonly fileUploadUrl;
28
30
  private readonly title;
@@ -43,6 +45,7 @@ export declare class FileImporter extends EventEmitter {
43
45
  private rowsCounterContainer;
44
46
  private rowsCounter;
45
47
  private mode;
48
+ private readonly tableSelectorProperties;
46
49
  constructor(options: IFileImporterOptions);
47
50
  show(): void;
48
51
  dispose(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iszolea-ui",
3
- "version": "1.2.81",
3
+ "version": "1.2.82",
4
4
  "description": "Common scripts and styles for Iszolea projects",
5
5
  "main": "dist/js/index.js",
6
6
  "types": "dist/types/index.d.ts",