हम अपनी कंपनी में अपने फॉर्म-फील्ड-कंपोनेंट्स बनाने की कोशिश कर रहे हैं। हम इस तरह सामग्री डिजाइन के घटकों को लपेटने की कोशिश कर रहे हैं:
मैदान:
<mat-form-field>
<ng-content></ng-content>
<mat-hint align="start"><strong>{{hint}}</strong> </mat-hint>
<mat-hint align="end">{{message.value.length}} / 256</mat-hint>
<mat-error>This field is required</mat-error>
</mat-form-field>
पाठ बॉक्स:
<field hint="hint">
<input matInput
[placeholder]="placeholder"
[value]="value"
(change)="onChange($event)"
(keydown)="onKeydown($event)"
(keyup)="onKeyup($event)"
(keypress)="onKeypress($event)">
</field>
उपयोग:
<textbox value="test" hint="my hint"></textbox>
इसका परिणाम लगभग यही है:
<textbox placeholder="Personnummer/samordningsnummer" value="" ng-reflect-placeholder="Personnummer/samordningsnummer">
<field>
<mat-form-field class="mat-input-container mat-form-field>
<div class="mat-input-wrapper mat-form-field-wrapper">
<div class="mat-input-flex mat-form-field-flex">
<div class="mat-input-infix mat-form-field-infix">
<input _ngcontent-c4="" class="mat-input-element mat-form-field-autofill-control" matinput="" ng-reflect-placeholder="Personnummer/samordningsnummer" ng-reflect-value="" id="mat-input-2" placeholder="Personnummer/samordningsnummer" aria-invalid="false">
<span class="mat-input-placeholder-wrapper mat-form-field-placeholder-wrapper"></span>
</div>
</div>
<div class="mat-input-underline mat-form-field-underline">
<span class="mat-input-ripple mat-form-field-ripple"></span>
</div>
<div class="mat-input-subscript-wrapper mat-form-field-subscript-wrapper"></div>
</div>
</mat-form-field>
</field>
</textbox>
लेकिन मुझे कंसोल में "मैट-फॉर्म-फील्ड होना चाहिए, जिसमें एक MatFormFieldControl" होना चाहिए । मुझे लगता है कि यह मैट-फॉर्म-फील्ड के साथ करना है जिसमें सीधे मैटइन्पुट-फ़ील्ड नहीं है। लेकिन यह यह युक्त है, यह सिर्फ एनजी-कंटेंट प्रोजेक्शन को रोक रहा है।
यहाँ एक ब्लिट्ज है: https://stackblitz.com/edit/angular-xpvwzf