@sumaris-net/ngx-components 18.23.62 → 18.23.64
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/build.md +3 -5
- package/doc/changelog.md +3 -0
- package/esm2022/src/app/core/home/home.mjs +3 -3
- package/esm2022/src/app/core/menu/menu.model.mjs +2 -1
- package/esm2022/src/app/shared/functions.mjs +58 -16
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +5 -2
- package/esm2022/src/app/shared/pipes/string.pipes.mjs +15 -2
- package/esm2022/src/app/social/feed/feed.component.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +79 -20
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/menu/menu.model.d.ts +2 -0
- package/src/app/shared/functions.d.ts +26 -2
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/app/shared/pipes/pipes.module.d.ts +1 -1
- package/src/app/shared/pipes/string.pipes.d.ts +5 -0
- package/src/assets/i18n/en-US.json +4 -1
- package/src/assets/i18n/en.json +4 -1
- package/src/assets/i18n/fr.json +4 -1
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -12,6 +12,7 @@ export interface IMenuItem extends IconRef {
|
|
|
12
12
|
parent?: IMenuItem;
|
|
13
13
|
children?: IMenuItem[];
|
|
14
14
|
title: string;
|
|
15
|
+
tooltip?: string;
|
|
15
16
|
path?: string;
|
|
16
17
|
badge?: string | number;
|
|
17
18
|
badgeColor?: PredefinedColors;
|
|
@@ -56,6 +57,7 @@ export declare class MenuItem extends Entity<MenuItem> implements IMenuItem, ITr
|
|
|
56
57
|
};
|
|
57
58
|
$badge: BehaviorSubject<string | number>;
|
|
58
59
|
$badgeColor: BehaviorSubject<PredefinedColors>;
|
|
60
|
+
tooltip?: string;
|
|
59
61
|
path?: string;
|
|
60
62
|
pathParams?: {
|
|
61
63
|
[key: string]: string;
|
|
@@ -66,8 +66,32 @@ export declare function removeDiacritics(text: string): string;
|
|
|
66
66
|
export declare function suggestFromStringArray(values: string[], searchText: any, opts?: {
|
|
67
67
|
anySearch?: boolean;
|
|
68
68
|
}): string[];
|
|
69
|
-
export
|
|
70
|
-
|
|
69
|
+
export interface JoinOptions {
|
|
70
|
+
separator?: string;
|
|
71
|
+
omitEmptyStrings?: boolean;
|
|
72
|
+
trimResults?: boolean;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Joins the values of the specified properties from an object into a single string, using a specified separator
|
|
76
|
+
* and optional configurations for trimming and omitting empty strings.
|
|
77
|
+
*
|
|
78
|
+
* @param {T} obj The object containing the properties to be joined.
|
|
79
|
+
* @param {string[]} properties An array of strings representing the property paths to be accessed and joined.
|
|
80
|
+
* @param {string | JoinOptions} [separatorOrOpts] A string separator or an object defining additional options
|
|
81
|
+
* for joining, such as the separator, whether to trim results, and whether to omit empty strings.
|
|
82
|
+
* @return {string | undefined} A string formed by joining the selected property values, or undefined if no valid
|
|
83
|
+
* values are found after processing.
|
|
84
|
+
*/
|
|
85
|
+
export declare function joinPropertiesPath<T = any>(obj: T, properties: string[], separatorOrOpts?: string | JoinOptions): string | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* Joins the specified properties of an object into a single string using a given separator or options.
|
|
88
|
+
*
|
|
89
|
+
* @param {T} obj The object containing the properties to join.
|
|
90
|
+
* @param {K[]} keys An array of keys representing the properties to retrieve and join.
|
|
91
|
+
* @param {string | JoinOptions} [separatorOrOpts] A string to use as the separator or an options object specifying configuration for the join operation.
|
|
92
|
+
* @return {string | undefined} A string containing the joined property values, or undefined if the object is not provided.
|
|
93
|
+
*/
|
|
94
|
+
export declare function joinProperties<T = any, K extends keyof T = any>(obj: T, keys: K[], separatorOrOpts?: string | JoinOptions): string | undefined;
|
|
71
95
|
/**
|
|
72
96
|
* Generic comparison between two values.
|
|
73
97
|
*
|
|
@@ -18,7 +18,7 @@ export interface InputElement extends FocusableElement {
|
|
|
18
18
|
}
|
|
19
19
|
export declare function isInputElement(object: any): object is InputElement;
|
|
20
20
|
export declare function asInputElement<T = any>(object: ElementRef<T>): InputElement | undefined;
|
|
21
|
-
export declare function tabindexComparator(a: InputElement, b: InputElement):
|
|
21
|
+
export declare function tabindexComparator(a: InputElement, b: InputElement): 0 | 1 | -1;
|
|
22
22
|
export interface CanGainFocusOptions {
|
|
23
23
|
minTabindex?: number;
|
|
24
24
|
maxTabindex?: number;
|
|
@@ -31,6 +31,6 @@ import * as i29 from "@ionic/angular";
|
|
|
31
31
|
import * as i30 from "@ngx-translate/core";
|
|
32
32
|
export declare class SharedPipesModule {
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedPipesModule, never>;
|
|
34
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i1.ValueFormatPipe, typeof i2.DateFormatPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i5.DateFromPipe, typeof i6.DateFromNowPipe, typeof i7.LatLongFormatPipe, typeof i7.LatitudeFormatPipe, typeof i7.LongitudeFormatPipe, typeof i8.HighlightPipe, typeof i9.NumberFormatPipe, typeof i10.FileSizePipe, typeof i11.MathAbsPipe, typeof i11.OddPipe, typeof i11.EvenPipe, typeof i11.RoundPipe, typeof i12.NotEmptyArrayPipe, typeof i12.EmptyArrayPipe, typeof i12.ArrayLengthPipe, typeof i12.ArrayFirstPipe, typeof i12.ArrayLastPipe, typeof i12.ArrayPluckPipe, typeof i12.ArrayIncludesPipe, typeof i12.ArrayFilterPipe, typeof i12.ArrayJoinPipe, typeof i12.ArrayDistinctPipe, typeof i12.ArraySortPipe, typeof i12.ArrayFindByPropertyPipe, typeof i12.SplitArrayInChunksPipe, typeof i12.ArrayMapPipe, typeof i12.ArraySlicePipe, typeof i13.MapGetPipe, typeof i13.MapKeysPipe, typeof i13.MapValuesPipe, typeof i14.IsNilOrBlankPipe, typeof i14.IsNotNilOrBlankPipe, typeof i14.IsNilOrNaNPipe, typeof i14.IsNotNilOrNaNPipe, typeof i14.IsNotNilPipe, typeof i14.IsNilPipe, typeof i15.IsValidDatePipe, typeof i14.ToStringPipe, typeof i14.CapitalizePipe, typeof i14.StrLengthPipe, typeof i14.StrIncludesPipe, typeof i14.StrReplacePipe, typeof i14.TruncHtmlPipe, typeof i14.TruncTextPipe, typeof i16.AppendQueryParamsPipePipe, typeof i1.BooleanFormatPipe, typeof i1.MapToPipe, typeof i17.TranslateContextPipe, typeof i17.TranslatablePipe, typeof i18.NgInitDirective, typeof i19.FormErrorPipe, typeof i19.FormErrorTranslatePipe, typeof i19.FormGetPipe, typeof i19.FormGetControlPipe, typeof i19.FormGetArrayPipe, typeof i19.FormGetGroupPipe, typeof i19.FormGetValuePipe, typeof i20.MatColorPipe, typeof i21.AsAnyPipe, typeof i21.AsArrayPipe, typeof i21.AsObservablePipe, typeof i21.AsFloatLabelTypePipe, typeof i22.MaskitoPlaceholderPipe, typeof i23.IsSelectedPipe, typeof i23.IsNotEmptySelectionPipe, typeof i23.IsEmptySelectionPipe, typeof i23.SelectionLengthPipe, typeof i23.IsMultipleSelectionPipe, typeof i23.IsSingleSelectionPipe, typeof i24.BadgeNumberPipe, typeof i21.AsBooleanPipe, typeof i25.SafeHtmlPipe, typeof i25.SafeStylePipe, typeof i25.NoHtmlPipe, typeof i25.TruncateHtmlPipe, typeof i26.DisplayWithPipe, typeof i27.FirstTruePipe, typeof i27.FirstFalsePipe, typeof i27.FirstPipe, typeof i27.MapPipe], [typeof i28.CommonModule, typeof i29.IonicModule, typeof i30.TranslateModule], [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i1.ValueFormatPipe, typeof i2.DateFormatPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i5.DateFromPipe, typeof i6.DateFromNowPipe, typeof i7.LatLongFormatPipe, typeof i7.LatitudeFormatPipe, typeof i7.LongitudeFormatPipe, typeof i8.HighlightPipe, typeof i9.NumberFormatPipe, typeof i10.FileSizePipe, typeof i11.MathAbsPipe, typeof i11.OddPipe, typeof i11.EvenPipe, typeof i11.RoundPipe, typeof i12.NotEmptyArrayPipe, typeof i12.EmptyArrayPipe, typeof i12.ArrayLengthPipe, typeof i12.ArrayFirstPipe, typeof i12.ArrayLastPipe, typeof i12.ArrayPluckPipe, typeof i12.ArrayIncludesPipe, typeof i12.ArrayFilterPipe, typeof i12.ArrayJoinPipe, typeof i12.ArrayDistinctPipe, typeof i12.ArraySortPipe, typeof i12.ArrayFindByPropertyPipe, typeof i12.SplitArrayInChunksPipe, typeof i12.ArrayMapPipe, typeof i12.ArraySlicePipe, typeof i13.MapGetPipe, typeof i13.MapKeysPipe, typeof i13.MapValuesPipe, typeof i14.IsNilOrBlankPipe, typeof i14.IsNotNilOrBlankPipe, typeof i14.IsNilOrNaNPipe, typeof i14.IsNotNilOrNaNPipe, typeof i14.IsNotNilPipe, typeof i14.IsNilPipe, typeof i15.IsValidDatePipe, typeof i14.ToStringPipe, typeof i14.CapitalizePipe, typeof i14.StrLengthPipe, typeof i14.StrIncludesPipe, typeof i14.StrReplacePipe, typeof i14.TruncHtmlPipe, typeof i14.TruncTextPipe, typeof i16.AppendQueryParamsPipePipe, typeof i1.BooleanFormatPipe, typeof i1.MapToPipe, typeof i17.TranslateContextPipe, typeof i17.TranslatablePipe, typeof i18.NgInitDirective, typeof i19.FormErrorPipe, typeof i19.FormErrorTranslatePipe, typeof i19.FormGetPipe, typeof i19.FormGetControlPipe, typeof i19.FormGetArrayPipe, typeof i19.FormGetGroupPipe, typeof i19.FormGetValuePipe, typeof i20.MatColorPipe, typeof i21.AsAnyPipe, typeof i21.AsArrayPipe, typeof i21.AsObservablePipe, typeof i21.AsFloatLabelTypePipe, typeof i22.MaskitoPlaceholderPipe, typeof i23.IsSelectedPipe, typeof i23.IsNotEmptySelectionPipe, typeof i23.IsEmptySelectionPipe, typeof i23.SelectionLengthPipe, typeof i23.IsMultipleSelectionPipe, typeof i23.IsSingleSelectionPipe, typeof i24.BadgeNumberPipe, typeof i21.AsBooleanPipe, typeof i25.SafeHtmlPipe, typeof i25.SafeStylePipe, typeof i25.NoHtmlPipe, typeof i25.TruncateHtmlPipe, typeof i26.DisplayWithPipe, typeof i27.FirstTruePipe, typeof i27.FirstFalsePipe, typeof i27.FirstPipe, typeof i27.MapPipe]>;
|
|
34
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i1.ValueFormatPipe, typeof i2.DateFormatPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i5.DateFromPipe, typeof i6.DateFromNowPipe, typeof i7.LatLongFormatPipe, typeof i7.LatitudeFormatPipe, typeof i7.LongitudeFormatPipe, typeof i8.HighlightPipe, typeof i9.NumberFormatPipe, typeof i10.FileSizePipe, typeof i11.MathAbsPipe, typeof i11.OddPipe, typeof i11.EvenPipe, typeof i11.RoundPipe, typeof i12.NotEmptyArrayPipe, typeof i12.EmptyArrayPipe, typeof i12.ArrayLengthPipe, typeof i12.ArrayFirstPipe, typeof i12.ArrayLastPipe, typeof i12.ArrayPluckPipe, typeof i12.ArrayIncludesPipe, typeof i12.ArrayFilterPipe, typeof i12.ArrayJoinPipe, typeof i12.ArrayDistinctPipe, typeof i12.ArraySortPipe, typeof i12.ArrayFindByPropertyPipe, typeof i12.SplitArrayInChunksPipe, typeof i12.ArrayMapPipe, typeof i12.ArraySlicePipe, typeof i13.MapGetPipe, typeof i13.MapKeysPipe, typeof i13.MapValuesPipe, typeof i14.IsNilOrBlankPipe, typeof i14.IsNotNilOrBlankPipe, typeof i14.IsNilOrNaNPipe, typeof i14.IsNotNilOrNaNPipe, typeof i14.IsNotNilPipe, typeof i14.IsNilPipe, typeof i15.IsValidDatePipe, typeof i14.ToStringPipe, typeof i14.CapitalizePipe, typeof i14.ChangeCaseToUnderscorePipe, typeof i14.StrLengthPipe, typeof i14.StrIncludesPipe, typeof i14.StrReplacePipe, typeof i14.TruncHtmlPipe, typeof i14.TruncTextPipe, typeof i16.AppendQueryParamsPipePipe, typeof i1.BooleanFormatPipe, typeof i1.MapToPipe, typeof i17.TranslateContextPipe, typeof i17.TranslatablePipe, typeof i18.NgInitDirective, typeof i19.FormErrorPipe, typeof i19.FormErrorTranslatePipe, typeof i19.FormGetPipe, typeof i19.FormGetControlPipe, typeof i19.FormGetArrayPipe, typeof i19.FormGetGroupPipe, typeof i19.FormGetValuePipe, typeof i20.MatColorPipe, typeof i21.AsAnyPipe, typeof i21.AsArrayPipe, typeof i21.AsObservablePipe, typeof i21.AsFloatLabelTypePipe, typeof i22.MaskitoPlaceholderPipe, typeof i23.IsSelectedPipe, typeof i23.IsNotEmptySelectionPipe, typeof i23.IsEmptySelectionPipe, typeof i23.SelectionLengthPipe, typeof i23.IsMultipleSelectionPipe, typeof i23.IsSingleSelectionPipe, typeof i24.BadgeNumberPipe, typeof i21.AsBooleanPipe, typeof i25.SafeHtmlPipe, typeof i25.SafeStylePipe, typeof i25.NoHtmlPipe, typeof i25.TruncateHtmlPipe, typeof i26.DisplayWithPipe, typeof i27.FirstTruePipe, typeof i27.FirstFalsePipe, typeof i27.FirstPipe, typeof i27.MapPipe], [typeof i28.CommonModule, typeof i29.IonicModule, typeof i30.TranslateModule], [typeof i1.PropertyGetPipe, typeof i1.PropertyFormatPipe, typeof i1.ValueFormatPipe, typeof i2.DateFormatPipe, typeof i3.DateDiffDurationPipe, typeof i4.DurationPipe, typeof i5.DateFromPipe, typeof i6.DateFromNowPipe, typeof i7.LatLongFormatPipe, typeof i7.LatitudeFormatPipe, typeof i7.LongitudeFormatPipe, typeof i8.HighlightPipe, typeof i9.NumberFormatPipe, typeof i10.FileSizePipe, typeof i11.MathAbsPipe, typeof i11.OddPipe, typeof i11.EvenPipe, typeof i11.RoundPipe, typeof i12.NotEmptyArrayPipe, typeof i12.EmptyArrayPipe, typeof i12.ArrayLengthPipe, typeof i12.ArrayFirstPipe, typeof i12.ArrayLastPipe, typeof i12.ArrayPluckPipe, typeof i12.ArrayIncludesPipe, typeof i12.ArrayFilterPipe, typeof i12.ArrayJoinPipe, typeof i12.ArrayDistinctPipe, typeof i12.ArraySortPipe, typeof i12.ArrayFindByPropertyPipe, typeof i12.SplitArrayInChunksPipe, typeof i12.ArrayMapPipe, typeof i12.ArraySlicePipe, typeof i13.MapGetPipe, typeof i13.MapKeysPipe, typeof i13.MapValuesPipe, typeof i14.IsNilOrBlankPipe, typeof i14.IsNotNilOrBlankPipe, typeof i14.IsNilOrNaNPipe, typeof i14.IsNotNilOrNaNPipe, typeof i14.IsNotNilPipe, typeof i14.IsNilPipe, typeof i15.IsValidDatePipe, typeof i14.ToStringPipe, typeof i14.CapitalizePipe, typeof i14.ChangeCaseToUnderscorePipe, typeof i14.StrLengthPipe, typeof i14.StrIncludesPipe, typeof i14.StrReplacePipe, typeof i14.TruncHtmlPipe, typeof i14.TruncTextPipe, typeof i16.AppendQueryParamsPipePipe, typeof i1.BooleanFormatPipe, typeof i1.MapToPipe, typeof i17.TranslateContextPipe, typeof i17.TranslatablePipe, typeof i18.NgInitDirective, typeof i19.FormErrorPipe, typeof i19.FormErrorTranslatePipe, typeof i19.FormGetPipe, typeof i19.FormGetControlPipe, typeof i19.FormGetArrayPipe, typeof i19.FormGetGroupPipe, typeof i19.FormGetValuePipe, typeof i20.MatColorPipe, typeof i21.AsAnyPipe, typeof i21.AsArrayPipe, typeof i21.AsObservablePipe, typeof i21.AsFloatLabelTypePipe, typeof i22.MaskitoPlaceholderPipe, typeof i23.IsSelectedPipe, typeof i23.IsNotEmptySelectionPipe, typeof i23.IsEmptySelectionPipe, typeof i23.SelectionLengthPipe, typeof i23.IsMultipleSelectionPipe, typeof i23.IsSingleSelectionPipe, typeof i24.BadgeNumberPipe, typeof i21.AsBooleanPipe, typeof i25.SafeHtmlPipe, typeof i25.SafeStylePipe, typeof i25.NoHtmlPipe, typeof i25.TruncateHtmlPipe, typeof i26.DisplayWithPipe, typeof i27.FirstTruePipe, typeof i27.FirstFalsePipe, typeof i27.FirstPipe, typeof i27.MapPipe]>;
|
|
35
35
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedPipesModule>;
|
|
36
36
|
}
|
|
@@ -60,6 +60,11 @@ export declare class TruncTextPipe implements PipeTransform {
|
|
|
60
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruncTextPipe, never>;
|
|
61
61
|
static ɵpipe: i0.ɵɵPipeDeclaration<TruncTextPipe, "truncText", false>;
|
|
62
62
|
}
|
|
63
|
+
export declare class ChangeCaseToUnderscorePipe implements PipeTransform {
|
|
64
|
+
transform(value: string): string;
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChangeCaseToUnderscorePipe, never>;
|
|
66
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ChangeCaseToUnderscorePipe, "changeCaseToUnderscore", false>;
|
|
67
|
+
}
|
|
63
68
|
export declare class TruncHtmlPipe implements PipeTransform {
|
|
64
69
|
transform(input: string, size?: number, ellipsis?: boolean, ellipsisText?: string): any;
|
|
65
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruncHtmlPipe, never>;
|
|
@@ -274,7 +274,6 @@
|
|
|
274
274
|
"BTN_DISCONNECT": "Disconnect this account",
|
|
275
275
|
"BTN_MY_ACCOUNT": "My account",
|
|
276
276
|
"BTN_REGISTER": "Register",
|
|
277
|
-
"BTN_CHAT": "Chat",
|
|
278
277
|
"BTN_DARK_MODE": "Dark or light theme",
|
|
279
278
|
"SHOW_AT": "Show at",
|
|
280
279
|
"LEGAL_INFORMATION": "Legal information",
|
|
@@ -594,6 +593,10 @@
|
|
|
594
593
|
"SHOW_ALL_FEED": "Show all",
|
|
595
594
|
"EDIT_TITLE": "Edit post"
|
|
596
595
|
},
|
|
596
|
+
"CHATBOT": {
|
|
597
|
+
"BTN_NEED_HELP": "Need help?",
|
|
598
|
+
"OPEN_TOOLTIP": "AI Assistant"
|
|
599
|
+
},
|
|
597
600
|
"ERROR": {
|
|
598
601
|
"LOAD_USER_EVENTS_ERROR": "Error while loading notifications",
|
|
599
602
|
"COUNT_USER_EVENT_ERROR": "Error while counting notifications",
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -274,7 +274,6 @@
|
|
|
274
274
|
"BTN_DISCONNECT": "Disconnect this account",
|
|
275
275
|
"BTN_MY_ACCOUNT": "My account",
|
|
276
276
|
"BTN_REGISTER": "Register",
|
|
277
|
-
"BTN_CHAT": "Chat",
|
|
278
277
|
"BTN_DARK_MODE": "Dark or light theme",
|
|
279
278
|
"SHOW_AT": "Show at",
|
|
280
279
|
"LEGAL_INFORMATION": "Legal information",
|
|
@@ -594,6 +593,10 @@
|
|
|
594
593
|
"SHOW_ALL_FEED": "Show all",
|
|
595
594
|
"EDIT_TITLE": "Edit post"
|
|
596
595
|
},
|
|
596
|
+
"CHATBOT": {
|
|
597
|
+
"BTN_NEED_HELP": "Need help?",
|
|
598
|
+
"OPEN_TOOLTIP": "AI Assistant"
|
|
599
|
+
},
|
|
597
600
|
"ERROR": {
|
|
598
601
|
"LOAD_USER_EVENTS_ERROR": "Error while loading notifications",
|
|
599
602
|
"COUNT_USER_EVENT_ERROR": "Error while counting notifications",
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -274,7 +274,6 @@
|
|
|
274
274
|
"BTN_DISCONNECT": "Déconnecter ce compte",
|
|
275
275
|
"BTN_MY_ACCOUNT": "Mon compte",
|
|
276
276
|
"BTN_REGISTER": "S'inscrire",
|
|
277
|
-
"BTN_CHAT": "Discussion",
|
|
278
277
|
"BTN_DARK_MODE": "Thème (sombre ou clair)",
|
|
279
278
|
"SHOW_AT": "Consulté le ",
|
|
280
279
|
"LEGAL_INFORMATION": "Informations légales",
|
|
@@ -596,6 +595,10 @@
|
|
|
596
595
|
"SHOW_ALL_FEED": "Voir tout",
|
|
597
596
|
"EDIT_TITLE": "Modifier l'article"
|
|
598
597
|
},
|
|
598
|
+
"CHATBOT": {
|
|
599
|
+
"BTN_NEED_HELP": "Besoin d'aide ?",
|
|
600
|
+
"OPEN_TOOLTIP": "Assistant IA"
|
|
601
|
+
},
|
|
599
602
|
"ERROR": {
|
|
600
603
|
"LOAD_USER_EVENTS_ERROR": "Erreur de chargement des notifications",
|
|
601
604
|
"COUNT_USER_EVENT_ERROR": "Erreur de comptage des notifications",
|
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.64",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|