monkey-style-guide-v2 0.0.75 → 0.0.76
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.
|
@@ -6033,7 +6033,7 @@ class MonkeyInputUploadComponent {
|
|
|
6033
6033
|
{ provide: MonkeyFormFieldControl, useExisting: MonkeyInputUploadComponent }
|
|
6034
6034
|
], viewQueries: [{ propertyName: "fileInput", first: true, predicate: ["fileInput"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
6035
6035
|
<div class="mecx-input-upload-value" [class.has-value]="value">
|
|
6036
|
-
{{ value?.fileName || placeholder }}
|
|
6036
|
+
{{ value?.filename || value?.fileName || placeholder }}
|
|
6037
6037
|
</div>
|
|
6038
6038
|
<input
|
|
6039
6039
|
(change)="onFileSelected($event)"
|
|
@@ -6053,7 +6053,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6053
6053
|
type: Component,
|
|
6054
6054
|
args: [{ selector: 'monkey-input-upload', imports: [], template: `
|
|
6055
6055
|
<div class="mecx-input-upload-value" [class.has-value]="value">
|
|
6056
|
-
{{ value?.fileName || placeholder }}
|
|
6056
|
+
{{ value?.filename || value?.fileName || placeholder }}
|
|
6057
6057
|
</div>
|
|
6058
6058
|
<input
|
|
6059
6059
|
(change)="onFileSelected($event)"
|