@sumaris-net/ngx-components 2.8.1-beta4 → 2.8.1-beta5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "2.8.1-beta4",
4
+ "version": "2.8.1-beta5",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -11,7 +11,7 @@ export declare class PropertyGetPipe implements PipeTransform {
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<PropertyGetPipe, never>;
12
12
  static ɵpipe: i0.ɵɵPipeDeclaration<PropertyGetPipe, "propertyGet", false>;
13
13
  }
14
- declare abstract class AbstractValuePipe {
14
+ declare abstract class AbstractValueFormatPipe {
15
15
  private dateFormat;
16
16
  private translate;
17
17
  private _i18nYes;
@@ -21,14 +21,14 @@ declare abstract class AbstractValuePipe {
21
21
  get i18nNo(): string;
22
22
  protected valueToString(value: any, definition?: FormFieldDefinition): string;
23
23
  }
24
- export declare class PropertyFormatPipe extends AbstractValuePipe implements PipeTransform {
24
+ export declare class PropertyFormatPipe extends AbstractValueFormatPipe implements PipeTransform {
25
25
  constructor(dateFormat: DateFormatService, translate: TranslateService);
26
26
  transform(obj: any, keyOrDefinition: string | FormFieldDefinition): string | Promise<string>;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<PropertyFormatPipe, never>;
28
28
  static ɵpipe: i0.ɵɵPipeDeclaration<PropertyFormatPipe, "propertyFormat", false>;
29
29
  static ɵprov: i0.ɵɵInjectableDeclaration<PropertyFormatPipe>;
30
30
  }
31
- export declare class ValueFormatPipe extends AbstractValuePipe implements PipeTransform {
31
+ export declare class ValueFormatPipe extends AbstractValueFormatPipe implements PipeTransform {
32
32
  constructor(dateFormat: DateFormatService, translate: TranslateService);
33
33
  transform(value: any, definition: FormFieldDefinition): string | Promise<string>;
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<ValueFormatPipe, never>;
@@ -14,6 +14,7 @@ export declare class UploadFileComponent {
14
14
  deleteFn: FileDeleteFn<any>;
15
15
  maxParallelUpload: number;
16
16
  files: UploadFile<any>[];
17
+ uploading: boolean;
17
18
  get processingFiles(): UploadFile<any>[];
18
19
  get processedFiles(): UploadFile<any>[];
19
20
  get processingFilesCount(): number;
@@ -25,8 +25,8 @@
25
25
  --mat-table-row-item-outline-color: var(--ion-border-color);
26
26
  --mat-table-row-item-label-text-size: 14px;
27
27
  --mat-table-row-item-label-text-tracking: normal;
28
- --mat-row-height: #{$app-table-row-height};
29
- --mat-row-max-height: #{$app-table-row-max-height};
28
+ --mat-row-height: #{$app-table-row-height} !important;
29
+ --mat-row-max-height: #{$app-table-row-max-height} !important;
30
30
  --mat-cell-horizontal-padding: #{$app-table-cell-horizontal-padding};
31
31
  --mat-cell-padding-top: calc(var(--mat-row-height) / 2 - var(--mat-table-row-item-label-text-size, 14px));
32
32