@esfaenza/flow-builder 20.3.35 → 20.3.37
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/index.d.ts
CHANGED
|
@@ -5152,7 +5152,12 @@ declare class ValueEditorComponent {
|
|
|
5152
5152
|
readonly isStructureTarget: _angular_core.Signal<boolean>;
|
|
5153
5153
|
readonly literalInputType: _angular_core.Signal<string>;
|
|
5154
5154
|
readonly literalText: _angular_core.Signal<string>;
|
|
5155
|
-
|
|
5155
|
+
/**
|
|
5156
|
+
* Il valore booleano come testo per il `<select>` a tre stati: `''` = nessun valore, altrimenti
|
|
5157
|
+
* `'true'` / `'false'`. `isValued` e non `=== true`: `booleanValue: false` **e'** un valore, e
|
|
5158
|
+
* confonderlo con l'assenza e' esattamente il difetto che il tri-stato risolve.
|
|
5159
|
+
*/
|
|
5160
|
+
readonly booleanText: _angular_core.Signal<string>;
|
|
5156
5161
|
/** Il fuso dichiarato nel valore data: `Z`, un offset, oppure niente = ora locale (§4.2). */
|
|
5157
5162
|
readonly dateIsUtc: _angular_core.Signal<boolean>;
|
|
5158
5163
|
private static readonly ZONE_PATTERN;
|
|
@@ -5174,7 +5179,8 @@ declare class ValueEditorComponent {
|
|
|
5174
5179
|
* scrivere una stringa vuota: un `enumValue: ''` sarebbe un campo valorizzato con niente.
|
|
5175
5180
|
*/
|
|
5176
5181
|
onEnumChange(name: string | undefined): void;
|
|
5177
|
-
|
|
5182
|
+
/** `''` toglie il campo: «non impostato» e' l'assenza, non un terzo valore da scrivere (§2). */
|
|
5183
|
+
onBooleanTextChange(raw: string): void;
|
|
5178
5184
|
private withDateZone;
|
|
5179
5185
|
/**
|
|
5180
5186
|
* Cambia il fuso **dichiarato**, non l'istante: `09:00Z` e `09:00` sono le nove in due fusi
|