pull/3841/head
Tuğçe Küçükoğlu 2023-03-30 10:40:55 +03:00
parent 1fce27abb7
commit d19969fb9b
4 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,7 @@
<p>Colors are exported as CSS variables and used with the standard <i>var</i> syntax such as <i>var(--text-color)</i>. Following is the list of general variables used in a theme.</p>
</DocSectionText>
<div className="doc-tablewrapper">
<div class="doc-tablewrapper">
<table class="doc-table">
<thead>
<tr>

View File

@ -3,7 +3,7 @@
<p>A floating label appears on top of the input field when focused.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<span className="p-float-label">
<span class="p-float-label">
<label for="ssn">SSN</label>
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
</span>
@ -18,14 +18,14 @@ export default {
value: '',
code: {
basic: `
<span className="p-float-label">
<span class="p-float-label">
<label for="ssn">SSN</label>
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
</span>`,
options: `
<template>
<div class="card flex justify-content-center">
<span className="p-float-label">
<span class="p-float-label">
<label for="ssn">SSN</label>
<InputMask id="ssn" v-model="value" mask="999-99-9999" placeholder="999-99-9999" />
</span>
@ -45,7 +45,7 @@ export default {
composition: `
<template>
<div class="card flex justify-content-center">
<span className="p-float-label">
<span class="p-float-label">
<label for="ssn">SSN</label>
<InputMask id="ssn" v-model="val2" mask="999-99-9999" placeholder="999-99-9999" />
</span>

View File

@ -18,7 +18,7 @@ export default {
<InputText type="text" v-model="value" />`,
options: `
<template>
<div className="card flex justify-content-center">
<div class="card flex justify-content-center">
<InputText type="text" v-model="value" />
</div>
</template>
@ -35,7 +35,7 @@ export default {
`,
composition: `
<template>
<div className="card flex justify-content-center">
<div class="card flex justify-content-center">
<InputText type="text" v-model="value" />
</div>
</template>

View File

@ -1,6 +1,6 @@
<template>
<div className="doc-main">
<div className="doc-intro">
<div class="doc-main">
<div class="doc-intro">
<h1>{{ header }} API</h1>
<p>{{ description }}</p>
</div>