Skip to content

Commit e6ac329

Browse files
committed
fix: correct formatting and remove trailing newlines in documentation files
1 parent bc41862 commit e6ac329

File tree

5 files changed

+14
-17
lines changed

5 files changed

+14
-17
lines changed

docs/advanced/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ This section covers advanced usage and features of the FormKit PrimeVue integrat
88
- [Nuxt](nuxt.md): Guide to using the Nuxt module for seamless integration with Nuxt projects.
99
- [Plugins](plugins.md): Extend and enhance functionality with available plugins.
1010
- [Schema](schema.md): Advanced schema usage, tips, and best practices for dynamic and complex forms.
11-
- [I18n](i18n.md): Internationalization support for Output components.
11+
- [I18n](i18n.md): Internationalization support for Output components.

docs/component/PrimeAutoComplete.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,3 @@ const schema = [
6262
| separators | array | Separators for multiple values |
6363

6464
See [PrimeVue AutoComplete docs](https://primevue.org/autocomplete/) for more details.
65-

docs/component/PrimeCascadeSelect.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const options = [
1717
name: 'Australia',
1818
code: 'AU',
1919
states: [
20-
{ name: 'New South Wales', cities: [ { cname: 'Sydney', code: 'A-SY' } ] },
20+
{ name: 'New South Wales', cities: [{ cname: 'Sydney', code: 'A-SY' }] },
2121
],
2222
},
2323
// ...more countries
@@ -48,7 +48,7 @@ const schema = [
4848
name: 'Australia',
4949
code: 'AU',
5050
states: [
51-
{ name: 'New South Wales', cities: [ { cname: 'Sydney', code: 'A-SY' } ] },
51+
{ name: 'New South Wales', cities: [{ cname: 'Sydney', code: 'A-SY' }] },
5252
],
5353
},
5454
// ...more countries
@@ -77,4 +77,3 @@ const schema = [
7777
| size | string | Input size |
7878

7979
See [PrimeVue CascadeSelect docs](https://primevue.org/cascadeselect/) for more details.
80-

docs/guide/outputs.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@ Below is a list of all supported PrimeVue output components. Click on a componen
3939
- [PrimeOutputNumber](../component/PrimeOutputNumber.md) ([Live Example](https://formkit-primevue.netlify.app/outputs/outputnumber))
4040
- [PrimeOutputReference](../component/PrimeOutputReference.md) ([Live Example](https://formkit-primevue.netlify.app/outputs/outputreference))
4141
- [PrimeOutputText](../component/PrimeOutputText.md) ([Live Example](https://formkit-primevue.netlify.app/outputs/outputtext))
42-

docs/guide/prefix.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ Icons are rendered in an i-Tag and requires a class and text in a span-Tag.
2222

2323
```ts
2424
const schema
25-
= [
26-
{
27-
$formkit: 'primeOutputBoolean',
28-
name: 'falseValue',
29-
label: 'False',
30-
prefix: 'prefix',
31-
iconPrefix: 'pi pi-check',
32-
suffix: 'suffix',
33-
iconSuffix: 'pi pi-times',
34-
}
35-
]
25+
= [
26+
{
27+
$formkit: 'primeOutputBoolean',
28+
name: 'falseValue',
29+
label: 'False',
30+
prefix: 'prefix',
31+
iconPrefix: 'pi pi-check',
32+
suffix: 'suffix',
33+
iconSuffix: 'pi pi-times',
34+
}
35+
]
3636
```

0 commit comments

Comments
 (0)