monkey-style-guide 2.0.193 → 2.0.195
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/input-phone/input-phone.component.mjs +4 -2
- package/esm2020/lib/components/modal/modal.component.mjs +5 -5
- package/fesm2015/monkey-style-guide.mjs +7 -5
- package/fesm2015/monkey-style-guide.mjs.map +1 -1
- package/fesm2020/monkey-style-guide.mjs +7 -5
- package/fesm2020/monkey-style-guide.mjs.map +1 -1
- package/monkey-style-guide-2.0.195.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.193.tgz +0 -0
|
@@ -8809,7 +8809,9 @@ class MonkeyInputPhoneComponent {
|
|
|
8809
8809
|
const { maxLength } = MonkeyUtils.getPhoneHandle(event);
|
|
8810
8810
|
if (maxLength) {
|
|
8811
8811
|
this.maxLength = maxLength;
|
|
8812
|
-
|
|
8812
|
+
if (change) {
|
|
8813
|
+
this.onChangeValue();
|
|
8814
|
+
}
|
|
8813
8815
|
}
|
|
8814
8816
|
}
|
|
8815
8817
|
registerOnChange(fn) {
|
|
@@ -9940,9 +9942,9 @@ MonkeyModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
9940
9942
|
config?.size || 'md'
|
|
9941
9943
|
"
|
|
9942
9944
|
>
|
|
9943
|
-
<div class="header">
|
|
9945
|
+
<div class="header" *ngIf="config?.title || !config?.hideClose">
|
|
9944
9946
|
<span class="h4" *ngIf="config?.title">
|
|
9945
|
-
|
|
9947
|
+
{{ config?.title }}
|
|
9946
9948
|
</span>
|
|
9947
9949
|
<span class="close" (click)="_actionClose()" *ngIf="!config?.hideClose"> x </span>
|
|
9948
9950
|
</div>
|
|
@@ -10023,9 +10025,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
10023
10025
|
config?.size || 'md'
|
|
10024
10026
|
"
|
|
10025
10027
|
>
|
|
10026
|
-
<div class="header">
|
|
10028
|
+
<div class="header" *ngIf="config?.title || !config?.hideClose">
|
|
10027
10029
|
<span class="h4" *ngIf="config?.title">
|
|
10028
|
-
|
|
10030
|
+
{{ config?.title }}
|
|
10029
10031
|
</span>
|
|
10030
10032
|
<span class="close" (click)="_actionClose()" *ngIf="!config?.hideClose"> x </span>
|
|
10031
10033
|
</div>
|