1
+ # 6.9.4 (master)
2
+
3
+ - Fix: #636
4
+ - Fix: Added ` editable ` props to initial props state.
5
+
1
6
# 6.9.3 (master)
7
+
2
8
- introduced ` SubmitOptions ` and ` SubmitHooks ` models.
3
9
4
10
# 6.9.2 (master)
11
+
5
12
- deprecated ` checkSVKValidationPlugin `
6
13
7
14
# 6.9.1 (master)
15
+
8
16
- introduced ` validate() ` input types.
9
17
- introduced ` ValidateOptions ` & ` ValidateOptionsInterface ` models.
10
18
11
19
# 6.9.0 (master)
20
+
12
21
- Validator types improvements.
13
22
- introduced ` ValidationPlugin ` , ` ExtendPlugin ` and ` ValidationPluginConfig ` models.
14
23
- mandatory ` package ` prop when defining Validation Plugins.
15
24
- deprecated ` allowRequired ` option (SVK).
16
25
- Fix: ` showErrors() ` deep disabled when validating field.
17
26
18
27
# 6.8.3 (master)
28
+
19
29
- Fix: deprecated field ` showAsyncErrors() ` , use ` showErrors() ` .
20
30
- FIx: field import in ` FormInterface `
21
31
22
32
# 6.8.2 (master)
33
+
23
34
- Fix: call ` invalidate() ` with ` deep ` argument.
24
35
25
36
# 6.8.1 (master)
37
+
26
38
- Fix: call ` invalidate() ` with ` async ` argument.
27
39
28
40
# 6.8.0 (master)
41
+
29
42
- Field ` invalidate() ` methods arguments updated, introduced ` deep ` .
30
43
31
44
# 6.7.5 (master)
45
+
32
46
- better handling of ` deep ` argument for ` showErrors() ` & ` invalidate() ` methods.
33
47
- removed ` mixed ` mode warning
34
48
35
49
# 6.7.4 (master)
50
+
36
51
- Fix: extend hooks and handlers on form instance using set()
37
52
38
53
# 6.7.3 (master)
54
+
39
55
- Fix: reset validation action for mobx strict mode
40
56
41
57
# 6.7.2 (master)
58
+
42
59
- Fix: mobx strict mode for hooks and handlers
43
60
44
61
# 6.7.1 (master)
62
+
45
63
- Fix: #632 observable hooks and handlers
46
64
47
65
# 6.7.0 (master)
66
+
48
67
- Feat: introduced ` class ` /` classes ` props to handle ` Field ` extension in Fields Definitions.
49
68
50
69
# 6.6.1 (master)
70
+
51
71
- Fix: added missing bind method to field interface
52
72
53
73
# 6.6.0 (master)
74
+
54
75
- Introduced ZOD validation driver
55
76
- Added SVK support for array of objects
56
77
- Fix: #404
57
78
58
79
# 6.5.0 (master)
80
+
59
81
- Deprecatad: ` setHooks() ` & ` getHooks() ` methods.
60
82
- Handle ` set()/get() ` for ` hooks ` and ` handlers `
61
83
62
84
# 6.4.0 (master)
85
+
63
86
- Feat: ability to define or override hooks after initialization.
64
87
- Feat: Introduced ` setHooks() ` & ` getHooks() ` methods.
65
88
66
89
# 6.3.7 (master)
90
+
67
91
- Fix: handle ` onSubmit ` hook return promise
68
92
69
93
# 6.3.6 (master)
94
+
70
95
- Fix: composer ` error() ` method.
71
96
- Fix: default models/interfaces have now named exports.
72
97
- Fix: check event w/ ` isEvent() ` to call ` preventDefault() ` for native support.
73
98
74
99
# 6.3.5 (master)
100
+
75
101
- Fix: ` parseCheckArray ` checks for ` incremental ` field status.
76
102
- Updated ` semantic-release `
77
103
78
104
# 6.3.4 (master)
105
+
79
106
- Fix: ` isEmptyArray ` reimplemented in ` isArrayFromStruct ` util function;
80
107
- Removed lodash ` _.isArray() ` with ` Array.isArray() `
81
108
- Introduced ` struct ` prop in ` makeField ` method.
82
109
83
110
# 6.3.3 (master)
111
+
84
112
- Fix: ` get('value') ` retrieve empty array removed by ` update() `
85
113
- Fix: ` composer ` returned in ` validate/submit ` instead of single methods.
86
114
87
115
# 6.3.2 (master)
116
+
88
117
- Fix: ` preserveDeletedFieldsValues ` on ` add() ` action to handle ` fields ` prop.
89
118
90
119
# 6.3.1 (master)
120
+
91
121
- Introduced field ` computed ` prop. To handle nested array fields computed values.
92
122
93
123
# 6.3.0 (master)
124
+
94
125
- Introduced Forms Composer
95
126
- Introduced Functional Computed Field Props
96
127
- Introduced ` strictSelect ` and ` strictSet ` form options.
97
128
- Form option ` strictUpdate ` behavior changed (now applied on ` update() ` action).
98
129
- Field prop ` validators ` does not accept anymore a single function, an array of functions is needed.
99
130
100
131
# 6.2.3 (master)
132
+
101
133
- Introduced ` applyInputConverterOnInit ` , ` applyInputConverterOnSet ` , ` applyInputConverterOnUpdate ` form options.
102
134
- Introduced ` converter ` function applied on ` set value ` .
103
135
- Fix: ` input ` function removed from ` set value ` .
104
136
105
137
# 6.2.2 (master)
138
+
106
139
- Fix: mobx cycle detected in computation (get() strict mode)
107
140
108
141
# 6.2.1 (master) - DEPRECATED
142
+
109
143
- Refactored set value with input function
110
144
- Deprecated input function on ` initial ` and ` default ` props.
111
145
- Fix: input function applied 2 times when using ` set() `
112
146
113
147
# 6.2.0 (master)
148
+
114
149
- Feat: #433 (File input append mode)
115
150
116
151
# 6.1.1 (master)
152
+
117
153
- Fix: #624 (defaults() helpers)
118
154
119
155
# 6.1.0 (master)
156
+
120
157
- Introduced ` fallbackValue ` and ` retrieveNullifiedEmptyStrings ` form options.
121
158
- Fix: ` get() ` strict mode improved
122
159
- Fix: default type file value;
123
160
124
161
# 6.0.0 (master)
162
+
125
163
- stable typescript release
126
164
127
165
# 5.10.1 (next)
166
+
128
167
- ` set() ` will apply ` input ` function also to ` initial ` and ` default ` props.
129
168
- Fix: #519
130
169
131
170
# 5.10.0 (next)
171
+
132
172
- Introduced Field ` trim() ` method.
133
173
- Introduced ` validateTrimmedValue ` form option.
134
174
- Introduced ` resetValidationBeforeValidate ` form option.
138
178
- Updated Issue: #283
139
179
140
180
# 5.9.1 (next)
181
+
141
182
- Fix: using ` autoTrimValue ` option will not trigger ` onChange ` Event Hook
142
183
143
184
# 5.9.0 (next)
181
222
# 5.5.0 (next)
182
223
183
224
- Updated add()/del()/update() actions to handle ` changed ` field prop.
184
- (not triggering anymore ` onChange ` when using add(), use ` onAdd ` /` onDel ` hooks instead).
225
+ (not triggering anymore ` onChange ` when using add(), use ` onAdd ` /` onDel ` hooks instead).
185
226
- Updated ` changed ` computed prop behavior for nested fields and Event Hooks triggering.
186
227
- Events Hooks now are triggered also from actions if not used Event Handlers.
187
228
- fix: #585 #531
@@ -205,15 +246,19 @@ fix: #371 #399 #408
205
246
# 5.3.2 (next)
206
247
207
248
- fix: Support ` validatedWith ` with nested property of a field's value
249
+
208
250
# 5.3.1 (next)
209
251
210
252
- fix: cannot change disabled prop on fields
253
+
211
254
# 5.3.0 (next)
212
255
213
256
- nested fields trigger onchange hook on container
257
+
214
258
# 5.2.0 (next)
215
259
216
260
- trigger onChange hook on add/del
261
+
217
262
# 5.1.0 (next)
218
263
219
264
- Form level onChange hook
0 commit comments