@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/doc/changelog.md +2 -0
- package/esm2022/src/app/shared/pipes/property.pipes.mjs +4 -4
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.mjs +5 -4
- package/esm2022/src/app/shared/upload-file/upload-file.component.mjs +7 -5
- package/fesm2022/sumaris-net.ngx-components.mjs +13 -10
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/pipes/property.pipes.d.ts +3 -3
- package/src/app/shared/upload-file/upload-file.component.d.ts +1 -0
- package/src/theme/_ngx-components.table.scss +2 -2
package/package.json
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|