From af661fce3af877b1ab0f35338b09d9cf96b622a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Mon, 6 Jan 2025 15:53:22 +0300 Subject: [PATCH] Fix list demos --- src/views/uikit/listdoc.ts | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/src/views/uikit/listdoc.ts b/src/views/uikit/listdoc.ts index da5cc99..0e8e1d2 100644 --- a/src/views/uikit/listdoc.ts +++ b/src/views/uikit/listdoc.ts @@ -21,8 +21,8 @@ import { Product, ProductService } from '@/src/service/product.service';
- - + +
@@ -64,9 +64,9 @@ import { Product, ProductService } from '@/src/service/product.service';
- {{ item.price }} + $ {{ item.price }}
- + @@ -118,12 +118,12 @@ import { Product, ProductService } from '@/src/service/product.service';
- {{ item.price }} + $ {{ item.price }}
- +
@@ -137,7 +137,7 @@ import { Product, ProductService } from '@/src/service/product.service';
-
PickList
+
PickList
{{ item.name }} @@ -148,17 +148,23 @@ import { Product, ProductService } from '@/src/service/product.service';
-
OrderList
- - -
{{ city.name }}
+
OrderList
+ + + {{ option.name }} - +
`, + styles: ` + ::ng-deep { + .p-orderlist-list-container{ + width: 100%; + } + } + `, providers: [ProductService] }) export class ListDoc {