Update KeyFilter doc

pull/6537/head
Cagatay Civici 2024-10-04 22:49:22 +03:00
parent e7f1944c6d
commit 99ec7dce3a
5 changed files with 8 additions and 8 deletions

View File

@ -35209,7 +35209,7 @@
} }
}, },
"keyfilter": { "keyfilter": {
"description": "KeyFilter is a built-in feature of InputText to restrict user input based on a regular expression.\n\n[Live Demo](https://primevue.org/keyfilter)", "description": "A keyfilter is a directive used to block individual keystrokes based on a pattern.\n\n[Live Demo](https://primevue.org/keyfilter)",
"interfaces": { "interfaces": {
"description": "Defines the custom interfaces used by the module.", "description": "Defines the custom interfaces used by the module.",
"eventDescription": "Defines the custom events used by the component's emit.", "eventDescription": "Defines the custom events used by the component's emit.",
@ -35447,7 +35447,7 @@
} }
}, },
"keyfilterstyle": { "keyfilterstyle": {
"description": "KeyFilter is a built-in feature of InputText to restrict user input based on a regular expression.\n\n[Live Demo](https://primevue.org/keyfilter)", "description": "A keyfilter is a directive used to block individual keystrokes based on a pattern.\n\n[Live Demo](https://primevue.org/keyfilter)",
"interfaces": { "interfaces": {
"description": "Defines the custom interfaces used by the module.", "description": "Defines the custom interfaces used by the module.",
"eventDescription": "Defines the custom events used by the component's emit.", "eventDescription": "Defines the custom events used by the component's emit.",

View File

@ -1,5 +1,5 @@
<template> <template>
<DocSectionText id="accessibility" label="Accessibility" v-bind="$attrs"> <DocSectionText id="accessibility" label="Accessibility" v-bind="$attrs">
<p>Refer to <PrimeVueNuxtLink to="/inputtext">InputText</PrimeVueNuxtLink> accessibility documentation for the InputText of the component.</p> <p>KeyFilter is a directive and do not require any accessibility features.</p>
</DocSectionText> </DocSectionText>
</template> </template>

View File

@ -1,5 +1,5 @@
<template> <template>
<DocComponent title="Vue KeyFilter Component" header="KeyFilter" description="KeyFilter is a built-in feature of InputText to restrict user input based on a regular expression." :componentDocs="docs" :apiDocs="['KeyFilter']" /> <DocComponent title="Vue KeyFilter Component" header="KeyFilter" description="A keyfilter is a directive used to block individual keystrokes based on a pattern." :componentDocs="docs" :apiDocs="['KeyFilter']" />
</template> </template>
<script> <script>

View File

@ -1,6 +1,6 @@
/** /**
* *
* KeyFilter is a built-in feature of InputText to restrict user input based on a regular expression. * A keyfilter is a directive used to block individual keystrokes based on a pattern.
* *
* [Live Demo](https://primevue.org/keyfilter) * [Live Demo](https://primevue.org/keyfilter)
* *
@ -141,7 +141,7 @@ export interface KeyFilterDirectiveBinding extends Omit<DirectiveBinding, 'modif
/** /**
* **PrimeVue - KeyFilter** * **PrimeVue - KeyFilter**
* *
* _KeyFilter is a built-in feature of InputText to restrict user input based on a regular expression._ * _A keyfilter is a directive used to block individual keystrokes based on a pattern._
* *
* [Live Demo](https://www.primevue.org/keyfilter/) * [Live Demo](https://www.primevue.org/keyfilter/)
* --- --- * --- ---

View File

@ -1,6 +1,6 @@
/** /**
* *
* KeyFilter is a built-in feature of InputText to restrict user input based on a regular expression. * A keyfilter is a directive used to block individual keystrokes based on a pattern.
* *
* [Live Demo](https://primevue.org/keyfilter) * [Live Demo](https://primevue.org/keyfilter)
* *