diff --git a/assets/menu/menu.json b/assets/menu/menu.json index daedff1b4..5437d765e 100644 --- a/assets/menu/menu.json +++ b/assets/menu/menu.json @@ -66,10 +66,6 @@ "name": "AutoComplete", "to": "/autocomplete" }, - { - "name": "Calendar", - "to": "/calendar" - }, { "name": "CascadeSelect", "to": "/cascadeselect" @@ -78,17 +74,13 @@ "name": "Checkbox", "to": "/checkbox" }, - { - "name": "Chips", - "to": "/chips" - }, { "name": "ColorPicker", "to": "/colorpicker" }, { - "name": "Dropdown", - "to": "/dropdown" + "name": "DatePicker", + "to": "/datepicker" }, { "name": "Editor", @@ -119,8 +111,8 @@ "to": "/inputotp" }, { - "name": "InputSwitch", - "to": "/inputswitch" + "name": "InputChips", + "to": "/inputchips" }, { "name": "InputText", @@ -154,6 +146,10 @@ "name": "SelectButton", "to": "/selectbutton" }, + { + "name": "Select", + "to": "/select" + }, { "name": "Slider", "to": "/slider" @@ -166,6 +162,10 @@ "name": "ToggleButton", "to": "/togglebutton" }, + { + "name": "ToggleSwitch", + "to": "/toggleswitch" + }, { "name": "TreeSelect", "to": "/treeselect" @@ -303,12 +303,12 @@ "to": "/dynamicdialog" }, { - "name": "OverlayPanel", - "to": "/overlaypanel" + "name": "Popover", + "to": "/popover" }, { - "name": "Sidebar", - "to": "/sidebar" + "name": "Drawer", + "to": "/drawer" }, { "name": "Tooltip", diff --git a/components/landing/HeroSection.vue b/components/landing/HeroSection.vue index 5d6887a0a..0a4d2801f 100644 --- a/components/landing/HeroSection.vue +++ b/components/landing/HeroSection.vue @@ -28,14 +28,14 @@
Beneficiary - +
Account @@ -50,7 +50,7 @@ Date - +
@@ -59,7 +59,7 @@
- +
diff --git a/doc/calendar/TimeDoc.vue b/doc/calendar/TimeDoc.vue deleted file mode 100644 index 9677423aa..000000000 --- a/doc/calendar/TimeDoc.vue +++ /dev/null @@ -1,95 +0,0 @@ - - - diff --git a/doc/cdn/ComponentDoc.vue b/doc/cdn/ComponentDoc.vue index f6ce855e6..99cd80392 100644 --- a/doc/cdn/ComponentDoc.vue +++ b/doc/cdn/ComponentDoc.vue @@ -11,7 +11,7 @@ export default { return { code: { basic: ` - diff --git a/doc/calendar/YearPickerDoc.vue b/doc/datepicker/YearPickerDoc.vue similarity index 77% rename from doc/calendar/YearPickerDoc.vue rename to doc/datepicker/YearPickerDoc.vue index f1926788a..7f7731546 100644 --- a/doc/calendar/YearPickerDoc.vue +++ b/doc/datepicker/YearPickerDoc.vue @@ -3,7 +3,7 @@

Specifying view as year in addition to a suitable dateFormat enables the year picker.

- +
@@ -15,12 +15,12 @@ export default { date: null, code: { basic: ` - + `, options: ` @@ -37,7 +37,7 @@ export default { composition: ` diff --git a/doc/calendar/form/VeeValidateDoc.vue b/doc/datepicker/form/VeeValidateDoc.vue similarity index 89% rename from doc/calendar/form/VeeValidateDoc.vue rename to doc/datepicker/form/VeeValidateDoc.vue index b3b8d5044..11a6ff873 100644 --- a/doc/calendar/form/VeeValidateDoc.vue +++ b/doc/datepicker/form/VeeValidateDoc.vue @@ -5,7 +5,7 @@
- + {{ errorMessage || ' ' }}
@@ -152,7 +152,7 @@ export default { {{ selectedProduct.category }}
- + @@ -166,7 +166,7 @@ export default { - +
diff --git a/doc/sidebar/ImportDoc.vue b/doc/popover/ImportDoc.vue similarity index 87% rename from doc/sidebar/ImportDoc.vue rename to doc/popover/ImportDoc.vue index 0c809aef7..0506d4cdd 100644 --- a/doc/sidebar/ImportDoc.vue +++ b/doc/popover/ImportDoc.vue @@ -9,7 +9,7 @@ export default { return { code: { basic: ` -import Sidebar from 'primevue/sidebar'; +import Popover from 'primevue/popover'; ` } }; diff --git a/doc/overlaypanel/pt/PTImage.vue b/doc/popover/pt/PTImage.vue similarity index 100% rename from doc/overlaypanel/pt/PTImage.vue rename to doc/popover/pt/PTImage.vue diff --git a/doc/sidebar/pt/index.vue b/doc/popover/pt/index.vue similarity index 79% rename from doc/sidebar/pt/index.vue rename to doc/popover/pt/index.vue index 7485585fc..c5e3326d5 100644 --- a/doc/sidebar/pt/index.vue +++ b/doc/popover/pt/index.vue @@ -1,7 +1,7 @@ @@ -14,12 +14,12 @@ export default { return { code: { basic: ` - + @@ -22,12 +22,12 @@ export default { ], code: { basic: ` - + @@ -22,12 +22,12 @@ export default { ], code: { basic: ` - + - + `, options: ` @@ -109,7 +109,7 @@ export default { composition: ` diff --git a/doc/dropdown/FloatLabelDoc.vue b/doc/select/FloatLabelDoc.vue similarity index 82% rename from doc/dropdown/FloatLabelDoc.vue rename to doc/select/FloatLabelDoc.vue index c149d71af..c8a57f1b5 100644 --- a/doc/dropdown/FloatLabelDoc.vue +++ b/doc/select/FloatLabelDoc.vue @@ -4,7 +4,7 @@
- + `, @@ -34,7 +34,7 @@ export default { @@ -22,12 +22,12 @@ export default { ], code: { basic: ` - + `, options: ` @@ -29,7 +29,7 @@ export default { composition: ` diff --git a/doc/dropdown/TemplateDoc.vue b/doc/select/TemplateDoc.vue similarity index 90% rename from doc/dropdown/TemplateDoc.vue rename to doc/select/TemplateDoc.vue index 0ce1b7d21..ef9442245 100644 --- a/doc/dropdown/TemplateDoc.vue +++ b/doc/select/TemplateDoc.vue @@ -3,7 +3,7 @@

Options and the selected option display support templating with option and value respectively.

- +
@@ -43,7 +43,7 @@ export default { ], code: { basic: ` - + `, options: ` @@ -109,7 +109,7 @@ export default { composition: ` diff --git a/doc/dropdown/VirtualScrollDoc.vue b/doc/select/VirtualScrollDoc.vue similarity index 77% rename from doc/dropdown/VirtualScrollDoc.vue rename to doc/select/VirtualScrollDoc.vue index c844579d2..775ae0887 100644 --- a/doc/dropdown/VirtualScrollDoc.vue +++ b/doc/select/VirtualScrollDoc.vue @@ -2,11 +2,11 @@

VirtualScroller is used to render a long list of options efficiently like 100K records in this demo. The configuration is done with virtualScrollerOptions property, refer to the - VirtualScroller for more information about the available options as it is used internally by Dropdown. + VirtualScroller for more information about the available options as it is used internally by Select.

- + {{ errorMessage || ' ' }} @@ -57,7 +57,7 @@ export default {
- @@ -73,7 +73,7 @@ export default {
- @@ -130,7 +130,7 @@ export default {
- diff --git a/doc/dropdown/pt/PTImage.vue b/doc/select/pt/PTImage.vue similarity index 100% rename from doc/dropdown/pt/PTImage.vue rename to doc/select/pt/PTImage.vue diff --git a/doc/calendar/pt/index.vue b/doc/select/pt/index.vue similarity index 78% rename from doc/calendar/pt/index.vue rename to doc/select/pt/index.vue index 259fef8a9..bf9ccc9f7 100644 --- a/doc/calendar/pt/index.vue +++ b/doc/select/pt/index.vue @@ -1,7 +1,7 @@