@sumaris-net/ngx-components 18.23.50 → 18.23.53
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 +3 -0
- package/esm2022/src/app/admin/users/users.mjs +3 -3
- package/esm2022/src/app/core/account/new-token.form.mjs +3 -3
- package/esm2022/src/app/core/account/token.table.mjs +3 -3
- package/esm2022/src/app/core/form/array/testing/form-array.test.mjs +3 -3
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +3 -3
- package/esm2022/src/app/core/form/entity/editor.class.mjs +1 -1
- package/esm2022/src/app/core/form/entity/entity-editor.class.mjs +4 -1
- package/esm2022/src/app/core/form/list/list.form.mjs +3 -3
- package/esm2022/src/app/core/form/properties/properties.form.mjs +3 -3
- package/esm2022/src/app/core/form/properties/properties.table.mjs +3 -3
- package/esm2022/src/app/core/form/text-popover/text-popover.component.mjs +3 -3
- package/esm2022/src/app/core/home/home.mjs +3 -3
- package/esm2022/src/app/core/menu/menu.component.mjs +3 -3
- package/esm2022/src/app/core/settings/settings.page.mjs +3 -3
- package/esm2022/src/app/core/table/column/actions-column.component.mjs +3 -3
- package/esm2022/src/app/core/table/column/nav-actions-column.component.mjs +3 -3
- package/esm2022/src/app/core/table/testing/table.testing.mjs +3 -3
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +3 -3
- package/esm2022/src/app/shared/constants.mjs +2 -2
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +3 -3
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +3 -3
- package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +3 -3
- package/esm2022/src/app/shared/material/chips/material.chips.mjs +3 -3
- package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +3 -3
- package/esm2022/src/app/shared/storage/storage-explorer.component.mjs +3 -3
- package/esm2022/src/app/social/feed/feed.component.mjs +5 -5
- package/esm2022/src/app/social/job/progression/job-progression.icon.mjs +3 -3
- package/esm2022/src/app/social/job/progression/job-progression.list.mjs +3 -3
- package/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +3 -3
- package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +3 -3
- package/esm2022/src/app/social/user-event/notification/user-event-notification.modal.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +35 -32
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/entity/editor.class.d.ts +1 -0
- package/src/app/core/form/entity/entity-editor.class.d.ts +5 -0
- package/src/app/core/form/text-popover/text-popover.component.d.ts +1 -1
- package/src/app/shared/constants.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -76,6 +76,7 @@ export declare abstract class AppEditor<T = any, ID = number, O = any> extends A
|
|
|
76
76
|
protected saveIfDirtyAndConfirm(event?: Event, opts?: {
|
|
77
77
|
emitEvent?: boolean;
|
|
78
78
|
confirmed?: boolean;
|
|
79
|
+
[key: string]: any;
|
|
79
80
|
}): Promise<boolean>;
|
|
80
81
|
protected saveDirtyChildren(): Promise<boolean>;
|
|
81
82
|
protected showToast(opts: ShowToastOptions): Promise<void>;
|
|
@@ -128,6 +128,11 @@ export declare abstract class AppEntityEditor<T extends Entity<T, ID>, S extends
|
|
|
128
128
|
save(event?: Event, opts?: SO & {
|
|
129
129
|
openTabIndex?: number;
|
|
130
130
|
}): Promise<boolean>;
|
|
131
|
+
protected saveIfDirtyAndConfirm(event?: Event, opts?: SO & {
|
|
132
|
+
emitEvent?: boolean;
|
|
133
|
+
confirmed?: boolean;
|
|
134
|
+
openTabIndex?: number;
|
|
135
|
+
}): Promise<boolean>;
|
|
131
136
|
/**
|
|
132
137
|
* Save data (if dirty and valid), and return it. Otherwise, return nil value.
|
|
133
138
|
*/
|
|
@@ -64,7 +64,7 @@ export declare class TextPopover implements OnInit, AfterViewInit, OnDestroy, Te
|
|
|
64
64
|
get enabled(): boolean;
|
|
65
65
|
get valid(): boolean;
|
|
66
66
|
get value(): any;
|
|
67
|
-
|
|
67
|
+
showTooltip: boolean;
|
|
68
68
|
constructor(popoverController: PopoverController, translate: TranslateService);
|
|
69
69
|
ngOnInit(): void;
|
|
70
70
|
ngAfterViewInit(): void;
|
|
@@ -12,4 +12,4 @@ export declare const PLUS_PLACEHOLDER_CHAR_REGEXP_GLOBAL: RegExp;
|
|
|
12
12
|
export declare const KEYBOARD_HIDE_DELAY_MS = 250;
|
|
13
13
|
export declare const DEFAULT_JOIN_PROPERTIES_SEPARATOR: string;
|
|
14
14
|
export declare const DEFAULT_JOIN_ARRAY_VALUES_SEPARATOR: string;
|
|
15
|
-
export declare const
|
|
15
|
+
export declare const APP_SHOW_TOOLTIP: InjectionToken<boolean>;
|
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.23.
|
|
5
|
+
"version": "18.23.53",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|