@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/bundles/sumaris-net.ngx-components.umd.js +286 -262
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/services/model/entity.model.js +1 -1
- package/esm2015/src/app/shared/material/autocomplete/testing/autocomplete.test.js +2 -2
- package/fesm2015/sumaris-net.ngx-components.js +273 -258
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/services/model/entity.model.d.ts +2 -2
- package/src/theme/_ngx-components.scss +6 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -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:
|
|
49
|
-
static isEmpty
|
|
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 {
|