@sumaris-net/ngx-components 0.25.16 → 0.25.17

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": "0.25.16",
4
+ "version": "0.25.17",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -45,8 +45,8 @@ export declare abstract class Entity<T extends Entity<T, ID, AO, FO>, ID = numbe
45
45
  */
46
46
  export declare function isInstanceOf<T>(obj: any, constructor: new (...args: any[]) => T): obj is T;
47
47
  export declare abstract class EntityUtils {
48
- static isNotEmpty<T extends IEntity<any> | any>(obj: any | T, checkedAttribute: keyof T): boolean;
49
- static isEmpty(obj: any | IEntity<any>, checkedAttribute: string): boolean;
48
+ static isNotEmpty<T extends IEntity<any> | any>(obj: T, checkedAttribute: keyof T): boolean;
49
+ static isEmpty<T extends IEntity<any> | any>(obj: T, checkedAttribute: keyof T): boolean;
50
50
  static equals<T extends IEntity<any> | any>(o1: T, o2: T, checkAttribute?: keyof T): boolean;
51
51
  static getPropertyByPath(obj: any | IEntity<any>, path: string): any;
52
52
  static getArrayAsMap<T = any>(source?: ObjectMapEntry<T>[]): ObjectMap<T>;
@@ -142,6 +142,12 @@ form.form-container {
142
142
  color: $app-form-color-disabled !important;
143
143
  }
144
144
 
145
+ .mat-form-field-disabled {
146
+ .mat-form-field-infix{
147
+ min-height: 41px;
148
+ }
149
+ }
150
+
145
151
  mat-form-field,
146
152
  mat-autocomplete-field,
147
153
  app-form-field {