@sumaris-net/ngx-components 2.12.16-rc4 → 2.12.16-rc5
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
CHANGED
|
@@ -869,4 +869,7 @@ enh: Environment: add useHash property to configure Angular router to use hash U
|
|
|
869
869
|
# 2.12.16
|
|
870
870
|
- fix(autocomplete): Reload items when `showAllOnFocus = true`
|
|
871
871
|
- fix(autocomplete): Use '??' operator, instead of `toBoolean()`, `toNumber()` etc.
|
|
872
|
-
- enh(
|
|
872
|
+
- enh(autocomplete): Add option 'applyImplicitValue' to config
|
|
873
|
+
- enh(pipe): add a `asBoolean` pipe, with an optional predicate function as option (e.g. to test any value)
|
|
874
|
+
- enh(account): Allow to change password, if auth token is `token` (will update the pubkey)
|
|
875
|
+
- enh(named-filter): Set default subscriptSizing to 'dynamic'
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ export interface InputElement extends FocusableElement {
|
|
|
16
16
|
}
|
|
17
17
|
export declare function isInputElement(object: any): object is InputElement;
|
|
18
18
|
export declare function asInputElement(object: ElementRef): InputElement | undefined;
|
|
19
|
-
export declare function tabindexComparator(a: InputElement, b: InputElement):
|
|
19
|
+
export declare function tabindexComparator(a: InputElement, b: InputElement): 0 | 1 | -1;
|
|
20
20
|
export interface CanGainFocusOptions {
|
|
21
21
|
minTabindex?: number;
|
|
22
22
|
maxTabindex?: number;
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
"TOKEN": "Crypto",
|
|
201
201
|
"BASIC_AND_TOKEN": "Basic and crypto"
|
|
202
202
|
},
|
|
203
|
-
"ENABLE_AUTH_API_TOKENS": "API > Enable
|
|
203
|
+
"ENABLE_AUTH_API_TOKENS": "API > Enable authentication tokens?",
|
|
204
204
|
"ENABLE_AUTH_API_TOKENS_SCOPE": "API > Enable rights on auth tokens",
|
|
205
205
|
"DEFAULT_AUTH_API_TOKEN_SCOPE": "API > Default right on new auth token"
|
|
206
206
|
}
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -388,7 +388,7 @@
|
|
|
388
388
|
"NETWORK_DIVIDER": "Paramètres réseau",
|
|
389
389
|
"PEER_URL": "Adresse du nœud réseau",
|
|
390
390
|
"BTN_CHANGE_PEER": "Voir les nœuds disponibles",
|
|
391
|
-
"BTN_DARK_MODE": "Mode sombre ?",
|
|
391
|
+
"BTN_DARK_MODE": "Mode sombre ? (expérimental)",
|
|
392
392
|
"BTN_SHOW_MORE_HELP": "Afficher plus de paramètres",
|
|
393
393
|
"BTN_CLEAR_CACHE": "Vider le cache",
|
|
394
394
|
"OFFLINE_MODE": "Forcer le mode hors-ligne ?",
|
|
@@ -584,7 +584,8 @@
|
|
|
584
584
|
"FIELD_INVALID": "Valeur non valide",
|
|
585
585
|
"FIELD_NOT_VALID_DECIMAL": "Valeur décimale attendue",
|
|
586
586
|
"FIELD_NOT_VALID_INTEGER": "Valeur entière attendue",
|
|
587
|
-
"FIELD_NOT_VALID_PRECISION": "Précision
|
|
587
|
+
"FIELD_NOT_VALID_PRECISION": "Précision minimale : {{precision}}",
|
|
588
|
+
"FIELD_NOT_VALID_PRECISION_COMPACT": "Precision min {{precision}}",
|
|
588
589
|
"FIELD_NOT_VALID_EMAIL": "Adresse email invalide",
|
|
589
590
|
"FIELD_NOT_VALID_DATE": "Date invalide",
|
|
590
591
|
"FIELD_NOT_VALID_DATE_AFTER": "Doit être postérieure à {{minDate}}",
|
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.12.16-
|
|
5
|
+
"version": "2.12.16-rc5",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
|
@@ -969,3 +969,17 @@ ion-toast {
|
|
|
969
969
|
ion-refresher.refresher-native {
|
|
970
970
|
z-index: 1000;
|
|
971
971
|
}
|
|
972
|
+
|
|
973
|
+
// --------------------------------------------------
|
|
974
|
+
// Named filter
|
|
975
|
+
// --------------------------------------------------
|
|
976
|
+
|
|
977
|
+
ion-toolbar app-named-filter-selector,
|
|
978
|
+
mat-toolbar app-named-filter-selector {
|
|
979
|
+
|
|
980
|
+
// Hide subscript wrapper (will hide hint)
|
|
981
|
+
.mat-mdc-form-field-subscript-wrapper {
|
|
982
|
+
display: none;
|
|
983
|
+
visibility: hidden;
|
|
984
|
+
}
|
|
985
|
+
}
|