cps-ui-kit 0.91.0 → 0.92.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/esm2020/lib/components/cps-input/cps-input.component.mjs +3 -1
- package/esm2020/lib/components/cps-textarea/cps-textarea.component.mjs +3 -1
- package/fesm2015/cps-ui-kit.mjs +4 -0
- package/fesm2015/cps-ui-kit.mjs.map +1 -1
- package/fesm2020/cps-ui-kit.mjs +4 -0
- package/fesm2020/cps-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/cps-ui-kit.mjs
CHANGED
|
@@ -562,6 +562,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
562
562
|
|
|
563
563
|
class CpsInputComponent {
|
|
564
564
|
set value(value) {
|
|
565
|
+
if (!value)
|
|
566
|
+
value = '';
|
|
565
567
|
this._value = value;
|
|
566
568
|
this.onChange(value);
|
|
567
569
|
}
|
|
@@ -6402,6 +6404,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
6402
6404
|
|
|
6403
6405
|
class CpsTextareaComponent {
|
|
6404
6406
|
set value(value) {
|
|
6407
|
+
if (!value)
|
|
6408
|
+
value = '';
|
|
6405
6409
|
this._value = value;
|
|
6406
6410
|
this.onChange(value);
|
|
6407
6411
|
}
|