diff --git a/components/lib/themes/primeone/base/picklist/index.js b/components/lib/themes/primeone/base/picklist/index.js
index 76d51145f..1d61eb2f2 100644
--- a/components/lib/themes/primeone/base/picklist/index.js
+++ b/components/lib/themes/primeone/base/picklist/index.js
@@ -15,5 +15,9 @@ export default {
.p-picklist-list-wrapper {
flex: 1 1 50%;
}
+
+.p-picklist .p-listbox {
+ height: 100%;
+}
`
};
diff --git a/doc/orderlist/BasicDoc.vue b/doc/orderlist/BasicDoc.vue
index 1ea1d9476..42329316b 100644
--- a/doc/orderlist/BasicDoc.vue
+++ b/doc/orderlist/BasicDoc.vue
@@ -3,7 +3,7 @@
OrderList requires an array as its value bound with the v-model directive and item template for its content.
-
+
{{ item.name }}
@@ -21,7 +21,7 @@ export default {
products: null,
code: {
basic: `
-
+
{{ item.name }}
@@ -30,7 +30,7 @@ export default {
options: `
-
+
{{ item.name }}
@@ -55,7 +55,7 @@ export default {
composition: `
-
+
{{ item.name }}
diff --git a/doc/orderlist/TemplateDoc.vue b/doc/orderlist/TemplateDoc.vue
index b642c3c1c..668e83656 100644
--- a/doc/orderlist/TemplateDoc.vue
+++ b/doc/orderlist/TemplateDoc.vue
@@ -3,16 +3,15 @@
For custom content support define an item template that gets the item instance as a parameter. In addition header slot is provided for further customization.
-
- List of Products
+
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
${{ item.price }}
@@ -31,19 +30,18 @@ export default {
products: null,
code: {
basic: `
-
- List of Products
+
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
-
$ {{ item.price }}
+
\${{ item.price }}
@@ -51,19 +49,18 @@ export default {
options: `
-
- List of Products
+
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
-
$ {{ item.price }}
+
\${{ item.price }}
@@ -87,19 +84,18 @@ export default {
composition: `
-
- List of Products
+
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
-
$ {{ item.price }}
+
\${{ item.price }}
diff --git a/doc/picklist/BasicDoc.vue b/doc/picklist/BasicDoc.vue
index 2562724dd..492dd8ad3 100644
--- a/doc/picklist/BasicDoc.vue
+++ b/doc/picklist/BasicDoc.vue
@@ -3,7 +3,7 @@
PickList requires a multidimensional array as its value bound with the v-model directive and a template for its content that gets the item instance and the index via slotProps.
-
+
{{ item.name }}
@@ -21,7 +21,7 @@ export default {
products: null,
code: {
basic: `
-
+
{{ item.name }}
@@ -30,7 +30,7 @@ export default {
options: `
-
+
{{ item.name }}
@@ -55,7 +55,7 @@ export default {
composition: `
-
+
{{ item.name }}
diff --git a/doc/picklist/TemplateDoc.vue b/doc/picklist/TemplateDoc.vue
index 20e8b4990..1867f1ab1 100644
--- a/doc/picklist/TemplateDoc.vue
+++ b/doc/picklist/TemplateDoc.vue
@@ -3,17 +3,15 @@
For custom content support define an item template that gets the item instance as a parameter. In addition sourceheader and targetheader slots are provided for further customization.
-
- Available
- Selected
+
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
${{ item.price }}
@@ -33,20 +31,18 @@ export default {
products: null,
code: {
basic: `
-
- Available
- Selected
+
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
-
$ {{ item.price }}
+
\${{ item.price }}
@@ -54,20 +50,18 @@ export default {
options: `
-
- Available
- Selected
+
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
-
$ {{ item.price }}
+
\${{ item.price }}
@@ -92,19 +86,17 @@ export default {
- Available
- Selected
-
-
-
-
{{ item.name }}
-
-
-
{{ item.category }}
+
+
+
+
{{ item.name }}
+
+
+ {{ item.category }}
-
$ {{ item.price }}
+
\${{ item.price }}