@tylertech/forge 3.3.3 → 3.3.4

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.
@@ -150,7 +150,10 @@ export class TextFieldAdapter extends BaseFieldAdapter {
150
150
  if (!this._inputElements.length) {
151
151
  return;
152
152
  }
153
- this._inputElements.forEach(el => (el.value = ''));
153
+ this._inputElements.forEach(el => {
154
+ el.value = '';
155
+ el.dispatchEvent(new Event('input'));
156
+ });
154
157
  this._inputElements[0].focus();
155
158
  }
156
159
  getAllSlotElements() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tylertech/forge",
3
3
  "description": "Tyler Forge™ Web Components library",
4
- "version": "3.3.3",
4
+ "version": "3.3.4",
5
5
  "author": "Tyler Technologies, Inc.",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {