bit-ng-library 12.0.2 → 12.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.
@@ -1,6 +1,6 @@
1
- import { OnInit, EventEmitter, ChangeDetectorRef } from "@angular/core";
2
- import { FileUploader } from "ng2-file-upload";
3
- import { GeneralUtils } from "../../services/general-utils.service";
1
+ import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
2
+ import { FileUploader } from 'ng2-file-upload';
3
+ import { GeneralUtils } from '../../services';
4
4
  export declare class BitNGUploadComponent implements OnInit {
5
5
  private generalUtils;
6
6
  private changeDetector;
@@ -14,6 +14,7 @@ export declare class BitNGUploadComponent implements OnInit {
14
14
  hasProgressBar: boolean;
15
15
  sizeDropZone: number;
16
16
  sizeQueue: number;
17
+ inputAccept?: string;
17
18
  onSuccess: EventEmitter<any>;
18
19
  onError: EventEmitter<any>;
19
20
  fileInput: any;
@@ -26,19 +27,19 @@ export declare class BitNGUploadComponent implements OnInit {
26
27
  stopLoading(): void;
27
28
  /** Sube todos los ficheros en cola al servidor */
28
29
  uploadAll(): void;
29
- /** Elimina la cola de ficheros y deselecciona el fichero que pudiera estar seleccionado en el single input file */
30
+ /** Elimina la cola de ficheros y des-selecciona el fichero que pudiera estar seleccionado en el single input file */
30
31
  removeQueue(): void;
31
32
  /** Cancela la subida de ficheros al servidor */
32
33
  cancelQueue(): void;
33
34
  /** Sube un fichero al servidor de manera individual */
34
35
  uploadFile(item: any): void;
35
- /** Elimina de la cola un fichero en concreto y en el caso de que coincida con el seleccionado en el single input file, tambien
36
- * lo deselecciona
36
+ /** Elimina de la cola un fichero en concreto y en el caso de que coincida con el seleccionado en el single input file, también
37
+ * lo des-selecciona
37
38
  */
38
39
  removeFile(item: any): void;
39
40
  /** Cancela la subida de un fichero de manera individual */
40
41
  cancelFile(item: any): void;
41
- /** Deselecciona el fichero seleccionado en el input file */
42
+ /** Des-selecciona el fichero seleccionado en el input file */
42
43
  removeInputFile(): void;
43
44
  /** Evento que se dispara cuando arrastran un fichero a la zona de drag&drop */
44
45
  fileOverBase(e: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bit-ng-library",
3
- "version": "12.0.2",
3
+ "version": "12.0.3",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },