@sumaris-net/ngx-components 2.18.0-alpha7 → 2.18.0-alpha9
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/esm2022/src/app/core/form/properties/properties.form.mjs +5 -5
- package/esm2022/src/app/core/form/properties/testing/properties-form.test.mjs +3 -3
- package/esm2022/src/app/core/settings/settings.page.mjs +5 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +10 -8
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/properties/properties.form.d.ts +2 -2
- package/src/app/core/settings/settings.page.d.ts +7 -6
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -34,7 +34,7 @@ export declare class AppPropertiesForm<T = Property> extends AppForm<T[]> implem
|
|
|
34
34
|
appearance: MatFormFieldAppearance;
|
|
35
35
|
subscriptSizing: SubscriptSizing;
|
|
36
36
|
showHintKey: boolean;
|
|
37
|
-
|
|
37
|
+
hintKeyPrefix: string;
|
|
38
38
|
showMoreButton: boolean;
|
|
39
39
|
showMoreButtonTitle: string;
|
|
40
40
|
showAddButton: boolean;
|
|
@@ -58,7 +58,7 @@ export declare class AppPropertiesForm<T = Property> extends AppForm<T[]> implem
|
|
|
58
58
|
protected markForCheck(): void;
|
|
59
59
|
protected isEmptyProperty(obj: Property): boolean;
|
|
60
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppPropertiesForm<any>, [null, null, null, null, null, { optional: true; }]>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppPropertiesForm<any>, "app-properties-form", never, { "formArrayName": { "alias": "formArrayName"; "required": false; }; "formArray": { "alias": "formArray"; "required": false; }; "options": { "alias": "options"; "required": false; }; "chipColor": { "alias": "chipColor"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "subscriptSizing": { "alias": "subscriptSizing"; "required": false; }; "showHintKey": { "alias": "showHintKey"; "required": false; }; "
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppPropertiesForm<any>, "app-properties-form", never, { "formArrayName": { "alias": "formArrayName"; "required": false; }; "formArray": { "alias": "formArray"; "required": false; }; "options": { "alias": "options"; "required": false; }; "chipColor": { "alias": "chipColor"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "subscriptSizing": { "alias": "subscriptSizing"; "required": false; }; "showHintKey": { "alias": "showHintKey"; "required": false; }; "hintKeyPrefix": { "alias": "hintKeyPrefix"; "required": false; }; "showMoreButton": { "alias": "showMoreButton"; "required": false; }; "showMoreButtonTitle": { "alias": "showMoreButtonTitle"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "definitions": { "alias": "definitions"; "required": false; }; }, {}, never, never, false, never>;
|
|
62
62
|
static ngAcceptInputType_mobile: unknown;
|
|
63
63
|
static ngAcceptInputType_showHintKey: unknown;
|
|
64
64
|
static ngAcceptInputType_showMoreButton: unknown;
|
|
@@ -29,12 +29,13 @@ export declare class SettingsPage extends AppForm<LocalSettings> implements OnIn
|
|
|
29
29
|
network: NetworkService;
|
|
30
30
|
locales: LocaleConfig[];
|
|
31
31
|
private data;
|
|
32
|
-
mobile: boolean;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
32
|
+
protected mobile: boolean;
|
|
33
|
+
protected isAdmin: boolean;
|
|
34
|
+
protected saving: boolean;
|
|
35
|
+
protected usageModes: UsageMode[];
|
|
36
|
+
protected menuItems: IMenuItem[];
|
|
37
|
+
protected propertyDefinitions: FormFieldDefinition[];
|
|
38
|
+
protected latLongFormats: string[];
|
|
38
39
|
get accountInheritance(): boolean;
|
|
39
40
|
get isLogin(): boolean;
|
|
40
41
|
get propertiesFormArray(): UntypedFormArray;
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "2.18.0-
|
|
5
|
+
"version": "2.18.0-alpha9",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|