-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'primefaces:master' into fix/multiselect-selection-messa…
…ge-locale
- Loading branch information
Showing
153 changed files
with
3,928 additions
and
1,199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<template> | ||
<DocSectionText v-bind="$attrs" /> | ||
<DocPTViewer :docs="docs"> | ||
<Accordion value="0"> | ||
<AccordionPanel value="0"> | ||
<AccordionHeader>Header I</AccordionHeader> | ||
<AccordionContent> | ||
<p class="m-0"> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | ||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</AccordionContent> | ||
</AccordionPanel> | ||
<AccordionPanel value="1"> | ||
<AccordionHeader>Header II</AccordionHeader> | ||
<AccordionContent> | ||
<p class="m-0"> | ||
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim | ||
ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Consectetur, adipisci velit, sed quia non numquam eius modi. | ||
</p> | ||
</AccordionContent> | ||
</AccordionPanel> | ||
<AccordionPanel value="2"> | ||
<AccordionHeader>Header III</AccordionHeader> | ||
<AccordionContent> | ||
<p class="m-0"> | ||
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa | ||
qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus. | ||
</p> | ||
</AccordionContent> | ||
</AccordionPanel> | ||
</Accordion> | ||
</DocPTViewer> | ||
</template> | ||
|
||
<script> | ||
import { getPTOptions } from '@/components/doc/helpers'; | ||
export default { | ||
data() { | ||
return { | ||
docs: [ | ||
{ | ||
data: getPTOptions('Accordion'), | ||
key: 'Accordion' | ||
}, | ||
{ | ||
data: getPTOptions('AccordionPanel'), | ||
key: 'AccordionPanel' | ||
}, | ||
{ | ||
data: getPTOptions('AccordionHeader'), | ||
key: 'AccordionHeader' | ||
}, | ||
{ | ||
data: getPTOptions('AccordionContent'), | ||
key: 'AccordionContent' | ||
} | ||
] | ||
}; | ||
} | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<DocSectionText v-bind="$attrs" /> | ||
<DocPTViewer :docs="ptViewerDoc"> | ||
<Breadcrumb :home="home" :model="items" /> | ||
</DocPTViewer> | ||
</template> | ||
|
||
<script> | ||
import { getPTOptions } from '@/components/doc/helpers'; | ||
export default { | ||
data() { | ||
return { | ||
home: { | ||
icon: 'pi pi-home' | ||
}, | ||
items: [{ label: 'Electronics' }, { label: 'Computer', icon: 'pi pi-desktop' }, { label: 'Accessories' }, { label: 'Keyboard' }, { label: 'Wireless' }], | ||
ptViewerDoc: [ | ||
{ | ||
data: getPTOptions('Breadcrumb'), | ||
key: 'Breadcrumb' | ||
} | ||
] | ||
}; | ||
} | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.