monkey-style-guide-v2 0.0.79 → 0.0.81
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.
|
@@ -5708,12 +5708,10 @@ class MonkeyInputPhoneComponent {
|
|
|
5708
5708
|
this.stateChanges.next();
|
|
5709
5709
|
}
|
|
5710
5710
|
set value(value) {
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
this._onTouched(value);
|
|
5716
|
-
}
|
|
5711
|
+
this._value = value;
|
|
5712
|
+
this.formatValue(value);
|
|
5713
|
+
this._onChange(value);
|
|
5714
|
+
this._onTouched(value);
|
|
5717
5715
|
}
|
|
5718
5716
|
get value() {
|
|
5719
5717
|
return this._value;
|
|
@@ -6164,7 +6162,7 @@ class MonkeyInputUploadComponent {
|
|
|
6164
6162
|
<div class="progress-bar" [style.width.%]="progress"></div>
|
|
6165
6163
|
</div>
|
|
6166
6164
|
}
|
|
6167
|
-
`, isInline: true, styles: [":host{display:inline-flex;width:100%;min-width:0;cursor:pointer}:host .progress{position:absolute;left:0;bottom:0;right:0;height:
|
|
6165
|
+
`, isInline: true, styles: [":host{display:inline-flex;width:100%;min-width:0;cursor:pointer}:host .progress{position:absolute;left:0;bottom:0;right:0;height:4px;background-color:var(--mecx-color-gray-300);width:100%}:host .progress .progress-bar{background-color:var(--mecx-color-success-main);height:100%;transition:width .2s}:host:focus-visible,:host:focus{outline:none}:host .mecx-input-upload-value{font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:24px}:host .mecx-input-upload-value.has-value{color:var(--mecx-color-gray-900)}:host.mecx-input-upload-disabled .mecx-input-upload-value{color:var(--mecx-color-gray-400)!important}:host .file-input{display:none}\n"] }); }
|
|
6168
6166
|
}
|
|
6169
6167
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: MonkeyInputUploadComponent, decorators: [{
|
|
6170
6168
|
type: Component,
|
|
@@ -6196,7 +6194,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6196
6194
|
'[attr.tabindex]': 'disabled ? -1 : tabIndex',
|
|
6197
6195
|
'(focus)': '_onFocus()',
|
|
6198
6196
|
'(blur)': '_onBlur()'
|
|
6199
|
-
}, styles: [":host{display:inline-flex;width:100%;min-width:0;cursor:pointer}:host .progress{position:absolute;left:0;bottom:0;right:0;height:
|
|
6197
|
+
}, styles: [":host{display:inline-flex;width:100%;min-width:0;cursor:pointer}:host .progress{position:absolute;left:0;bottom:0;right:0;height:4px;background-color:var(--mecx-color-gray-300);width:100%}:host .progress .progress-bar{background-color:var(--mecx-color-success-main);height:100%;transition:width .2s}:host:focus-visible,:host:focus{outline:none}:host .mecx-input-upload-value{font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:24px}:host .mecx-input-upload-value.has-value{color:var(--mecx-color-gray-900)}:host.mecx-input-upload-disabled .mecx-input-upload-value{color:var(--mecx-color-gray-400)!important}:host .file-input{display:none}\n"] }]
|
|
6200
6198
|
}], ctorParameters: () => [], propDecorators: { fileInput: [{
|
|
6201
6199
|
type: ViewChild,
|
|
6202
6200
|
args: ['fileInput']
|