Cleanup unused props, fixed import
parent
fb5fa733fc
commit
4907ed932e
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexInputText v-model="value" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexInputText v-model="value" disabled placeholder="Disabled" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexInputText v-model="value" variant="filled" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexInputText v-model="value" type="text" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexInputText v-model="value" :invalid="!value" placeholder="Name" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<PlexInputText v-model="value2" type="text" placeholder="Normal" />
|
||||
<PlexInputText v-model="value3" type="text" size="large" placeholder="Large" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexSlider v-model="value" class="w-56" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexSlider v-model="value" class="w-56" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexSlider v-model="value" orientation="vertical" class="h-56" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexTextarea v-model="value" autoResize rows="5" cols="30" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexTextarea v-model="value" rows="5" cols="30" class="resize-none" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexTextarea v-model="value" rows="5" cols="30" disabled class="resize-none" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexTextarea v-model="value" rows="5" cols="30" variant="filled" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexInputText v-model="value" type="text" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="card flex justify-center">
|
||||
<PlexTextarea v-model="value" rows="5" cols="30" :invalid="!value" class="resize-none" placeholder="Address" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<PlexTextarea v-model="value2" placeholder="Normal" rows="3" />
|
||||
<PlexTextarea v-model="value3" size="large" placeholder="Large" rows="3" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { cn } from '@primeuix/utils/classnames';
|
||||
import { cn } from '@primeuix/utils';
|
||||
import { mergeProps } from 'vue';
|
||||
import BaseInputText from './BaseInputText.vue';
|
||||
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { cn } from '@primeuix/utils/classnames';
|
||||
import { cn } from '@primeuix/utils';
|
||||
import { getAttribute, getWindowScrollLeft, getWindowScrollTop, isRTL } from '@primeuix/utils/dom';
|
||||
import BaseSlider from './BaseSlider.vue';
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { cn } from '@primeuix/utils/classnames';
|
||||
import { cn } from '@primeuix/utils';
|
||||
import { mergeProps } from 'vue';
|
||||
import BaseTextarea from './BaseTextarea.vue';
|
||||
|
||||
|
|
Loading…
Reference in New Issue