File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ export abstract class IgcInputBaseComponent extends FormAssociatedRequiredMixin(
115115 }
116116
117117 protected abstract renderInput ( ) : TemplateResult ;
118- protected abstract renderFileParts ( ) : TemplateResult | typeof nothing ;
119118
120119 protected renderValidatorContainer ( ) : TemplateResult {
121120 return IgcValidationContainerComponent . create ( this ) ;
@@ -130,6 +129,10 @@ export abstract class IgcInputBaseComponent extends FormAssociatedRequiredMixin(
130129 } ;
131130 }
132131
132+ protected renderFileParts ( ) : TemplateResult | typeof nothing {
133+ return nothing ;
134+ }
135+
133136 /** Sets the text selection range of the control */
134137 public setSelectionRange (
135138 start : number ,
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ export default class IgcInputComponent extends IgcInputBaseComponent {
304304 this . _validate ( ) ;
305305 }
306306
307- protected renderFileParts ( ) {
307+ protected override renderFileParts ( ) {
308308 if ( this . type !== 'file' ) return nothing ;
309309
310310 return html `
Original file line number Diff line number Diff line change @@ -210,10 +210,6 @@ export default class IgcMaskInputComponent extends IgcMaskInputBaseComponent {
210210 this . value = this . parser . parse ( this . maskedValue ) ;
211211 }
212212
213- protected override renderFileParts ( ) : typeof nothing {
214- return nothing ;
215- }
216-
217213 protected override renderInput ( ) {
218214 return html `
219215 < input
You can’t perform that action at this time.
0 commit comments