Skip to content

Commit 66dde67

Browse files
chore: version 4.5.5 released
1 parent 38f1334 commit 66dde67

23 files changed

Lines changed: 403 additions & 267 deletions

File tree

apps/showcase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "showcase",
3-
"version": "4.5.4",
3+
"version": "4.5.5",
44
"author": "PrimeTek Informatics",
55
"description": "",
66
"homepage": "https://primevue.org/",

apps/showcase/server/assets/llms/components.json

Lines changed: 107 additions & 59 deletions
Large diffs are not rendered by default.

apps/showcase/server/assets/llms/components/checkbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const onFormSubmit = ({ valid }) => {
222222

223223
## Group
224224

225-
Multiple checkboxes can be grouped together.
225+
Multiple checkboxes can be grouped by binding each one to the same model. Alternatively, a CheckboxGroup wrapper can be used to group checkboxes. In this case, the v-model should be defined on the CheckboxGroup , not on the individual checkboxes. When a Checkbox is inside a CheckboxGroup, it reads and writes the group's value instead of its own.
226226

227227
```vue
228228
<div class="card flex flex-wrap justify-center gap-4">

apps/showcase/server/assets/llms/components/inputtext.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ const value3 = ref(null);
419419
| aria-valuenow | Numberish | - | Defines the current value for a range widget. |
420420
| aria-valuetext | string | - | Defines the human readable text alternative of aria-valuenow for a range widget. |
421421
| innerHTML | string | - | |
422-
| class | any | - | |
422+
| class | ClassValue | - | |
423423
| style | StyleValue | - | |
424424
| accesskey | string | - | |
425425
| contenteditable | Booleanish \| "inherit" \| "plaintext-only" | - | |
@@ -464,7 +464,7 @@ const value3 = ref(null);
464464
| part | string | - | |
465465
| accept | string | - | |
466466
| alt | string | - | |
467-
| autocomplete | string | - | |
467+
| autocomplete | InputAutoCompleteAttribute | - | |
468468
| autofocus | Booleanish | - | |
469469
| capture | boolean \| "user" \| "environment" | - | |
470470
| checked | any[] \| Set<any> \| Booleanish | - | |

apps/showcase/server/assets/llms/components/password.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ const value = ref(null);
549549
| aria-valuenow | Numberish | - | Defines the current value for a range widget. |
550550
| aria-valuetext | string | - | Defines the human readable text alternative of aria-valuenow for a range widget. |
551551
| innerHTML | string | - | |
552-
| class | any | - | |
552+
| class | ClassValue | - | |
553553
| style | StyleValue | - | |
554554
| accesskey | string | - | |
555555
| contenteditable | Booleanish \| "inherit" \| "plaintext-only" | - | |
@@ -594,7 +594,7 @@ const value = ref(null);
594594
| part | string | - | |
595595
| accept | string | - | |
596596
| alt | string | - | |
597-
| autocomplete | string | - | |
597+
| autocomplete | InputAutoCompleteAttribute | - | |
598598
| capture | boolean \| "user" \| "environment" | - | |
599599
| checked | any[] \| Set<any> \| Booleanish | - | |
600600
| crossorigin | string | - | |

apps/showcase/server/assets/llms/components/textarea.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ const value3 = ref(null);
397397
| aria-valuenow | Numberish | - | Defines the current value for a range widget. |
398398
| aria-valuetext | string | - | Defines the human readable text alternative of aria-valuenow for a range widget. |
399399
| innerHTML | string | - | |
400-
| class | any | - | |
400+
| class | ClassValue | - | |
401401
| style | StyleValue | - | |
402402
| accesskey | string | - | |
403403
| contenteditable | Booleanish \| "inherit" \| "plaintext-only" | - | |

0 commit comments

Comments
 (0)