@govtechsg/sgds-web-component 3.3.1 → 3.3.2-rc.0
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/components/Checkbox/index.umd.js +3 -1
- package/components/Checkbox/index.umd.js.map +1 -1
- package/components/ComboBox/index.umd.js +3 -1
- package/components/ComboBox/index.umd.js.map +1 -1
- package/components/Datepicker/index.umd.js +3 -1
- package/components/Datepicker/index.umd.js.map +1 -1
- package/components/FileUpload/index.umd.js +3 -1
- package/components/FileUpload/index.umd.js.map +1 -1
- package/components/Input/index.umd.js +3 -1
- package/components/Input/index.umd.js.map +1 -1
- package/components/QuantityToggle/index.umd.js +3 -1
- package/components/QuantityToggle/index.umd.js.map +1 -1
- package/components/Radio/index.umd.js +3 -1
- package/components/Radio/index.umd.js.map +1 -1
- package/components/Select/index.umd.js +3 -1
- package/components/Select/index.umd.js.map +1 -1
- package/components/Textarea/index.umd.js +3 -1
- package/components/Textarea/index.umd.js.map +1 -1
- package/components/index.umd.js +3 -1
- package/components/index.umd.js.map +1 -1
- package/index.umd.js +3 -1
- package/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/react/utils/validatorMixin.cjs.js +3 -1
- package/react/utils/validatorMixin.cjs.js.map +1 -1
- package/react/utils/validatorMixin.js +3 -1
- package/react/utils/validatorMixin.js.map +1 -1
- package/utils/validatorMixin.js +3 -1
- package/utils/validatorMixin.js.map +1 -1
|
@@ -4762,8 +4762,10 @@
|
|
|
4762
4762
|
this._isTouched = false;
|
|
4763
4763
|
}
|
|
4764
4764
|
connectedCallback() {
|
|
4765
|
+
var _a;
|
|
4765
4766
|
super.connectedCallback();
|
|
4766
|
-
this.inputValidationController = new InputValidationController(this);
|
|
4767
|
+
(_a = this.inputValidationController) !== null && _a !== void 0 ? _a : (this.inputValidationController = new InputValidationController(this));
|
|
4768
|
+
console.log("TESTING: HOW MANY TIMES IS CONNECTEDCALLBACK CALLED IN REACT");
|
|
4767
4769
|
}
|
|
4768
4770
|
async firstUpdated(changedProperties) {
|
|
4769
4771
|
super.firstUpdated(changedProperties);
|