glade_forms 3.1.1
glade_forms: ^3.1.1 copied to clipboard
A universal way to define form validators with support of translations.
3.1.1 #
- Add typedefs
IntInputandBooleanInput - Fix GladeModelDebugInfo colors in DarkMode.
3.1.0 #
- updated dependencies
3.0.1 #
3.0.0 #
Breaking release
- [Add]: Add
allowBlankparameter toisEmptystring validator. - [Add]: Add
IntInputas a specialized variant of GladeInput - [Add]: Support skipping particular validation with
shouldValidatecallback. - [Breaking]: The
resetToPuremethod on both GladeInput and GladeModel has been renamed tosetAsNewPure. This change better reflects the method's behavior of setting a new pure state rather than resetting to the original state. - [Add]: New
resetToPuremethod added to both GladeInput and GladeModel. This method truly resets the input(s) to their initial value(s) and marks them as pure.
2.3.0 #
- RETRACTED version, should be 3.0.0
2.2.0 #
- [Add]: Add
resetToPureon model level.
2.1.0 #
- [Add]: Add
defaultTranslateErroron model level.
2.0.1 #
- [Fix]: Fix
isUri()to handle URL corectly
2.0.0 #
- [Breaking]: TextEditingController is no more created automatically. When TextEditingController is used, input's behavior is slightly changed. See README.md for full info.
- [Breaking]: GladeInput's controller is now private. Use factory constructors to create input.
- [Breaking]:
Extraparameter removed - [Breaking]:
dependenciesare no longer passed intoonChangeand in validator. - [Breaking]: GladeInput is no longer ChangeNotifier
- [Add]: onDependencyChange - callback is called when any (or multiple with groupEdit()) dependency was udpated.
- Improvement: GladeModelDebugInfo now colorize String values to visualize whitespace.
1.6.0 #
- Improvement: GladeModelDebugInfo is more colorful and polished.
- Improvement: Support deep collection equality when comparing
valueandinitialValue. - [Feat]:
allInputsgetter to support "dynamic" model's inputs validation.
1.5.0 #
- [Feat]: Add
updateWhenNotNullto support shorthand syntax for Widgets with nullable type parameter.
1.4.0 #
- [Feat]: Support non-data-holding inputs to enable "view" inputs.
- [Feat]: Add the
shouldTriggerOnChangeparameter toupdateValueso one can opt-out fromonChangecallback being triggered. - [Fix]: Export
ChangesInfo.
1.3.2 #
- [Fix]:
GladeInputnow preserves selection. (Before, a cursor jumped at the end.)
1.3.1 #
- [Fix]: Fixed
GladeInput.createassert to allow null forvalueandinitialValuewhen input's type is nullable.
1.3.0 #
- [Fix]: When using
GladeInput.create, passing onlyvalueended up in UI vs model not being synced. Now that's fixed. - [Breaking]: StringInput only works with
Stringnow.
1.2.1 #
- [Fix]: Value passed to factory constructor is not reflected in TextController.
1.2.0 #
- [Feat]: Add
GladeFormListenerwidget allowing to listen for model's changes - [Feat]: Add
groupEdit()method in GladeModel allows to update multiple inputs at once.- Works great with
GladeFormListener
- Works great with
- [Feat]: Add
valueTransformin GladeInput. Transform value before it is assigned into value.- Firstly
stringToTypeConverteris called if needed, thenvalueTransform.
- Firstly
- [Feat]: Add
updateValue(T value)as shorthand for inputs when field is not TextField. - [Feat]: Add
resetToPuremethod allowing to reset input into pure state. - [Fix]: Conversion error does not update model's stats and formatted errors.
1.1.2 #
- Fix links in readme
1.1.1 #
- Improve Readme
1.1.0 #
- [Feat]: Add
onChange- support for listening changes and potentially update other inputs based on change
- [Feat]: GladeInput exports TextEditingController now for connecting it with FormField properly
- [Breaking]: StringInput is now alias. Use
GladeInput.stringInputto create string variant
1.0.1 #
- Fix example
1.0.0 #
- Initial version.