@sumaris-net/ngx-components 18.18.0 → 18.18.2
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/services/local-settings.service.mjs +7 -2
- package/fesm2022/sumaris-net.ngx-components.mjs +6 -1
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/services/local-settings.service.d.ts +2 -0
- package/src/assets/manifest.json +1 -1
- package/src/theme/_ngx-components.scss +2 -2
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ export declare const SETTINGS_TRANSIENT_PROPERTIES: string[];
|
|
|
16
16
|
export interface LocalSettingsOptions {
|
|
17
17
|
serializeAsString?: boolean;
|
|
18
18
|
options: FormFieldDefinitionMap;
|
|
19
|
+
skipEmitChangeKeys?: (keyof LocalSettings | string)[];
|
|
19
20
|
}
|
|
20
21
|
export declare interface AddToPageHistoryOptions {
|
|
21
22
|
/**
|
|
@@ -56,6 +57,7 @@ export declare class LocalSettingsService extends StartableService<LocalSettings
|
|
|
56
57
|
private readonly defaultSettings;
|
|
57
58
|
private readonly _optionDefs;
|
|
58
59
|
private readonly _serializeAsString;
|
|
60
|
+
private readonly _skipEmitChangeKeys;
|
|
59
61
|
private _$storeLocallyEventEmitter;
|
|
60
62
|
readonly onChange: Subject<LocalSettings>;
|
|
61
63
|
readonly onStoredLocally: EventEmitter<LocalSettings>;
|
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": "18.18.
|
|
5
|
+
"version": "18.18.2",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
|
@@ -798,8 +798,8 @@ ion-item {
|
|
|
798
798
|
// --------------------------------------------------
|
|
799
799
|
|
|
800
800
|
ion-modal.stack-modal {
|
|
801
|
-
--box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4);
|
|
802
|
-
--backdrop-opacity: var(--ion-backdrop-opacity, 0.32);
|
|
801
|
+
--box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4) !important;
|
|
802
|
+
--backdrop-opacity: var(--ion-backdrop-opacity, 0.32) !important;
|
|
803
803
|
}
|
|
804
804
|
|
|
805
805
|
ion-modal.modal-large {
|