@adobe-commerce/elsie 1.3.1-alpha01 → 1.3.1-alpha02
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -241,10 +241,15 @@
|
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.dropin-cart-item__price,
|
|
244
|
+
.dropin-cart-item__footer div,
|
|
244
245
|
.dropin-cart-item__attributes div {
|
|
245
246
|
margin-top: var(--group-spacing);
|
|
246
247
|
}
|
|
247
248
|
|
|
249
|
+
.dropin-cart-item__footer p {
|
|
250
|
+
margin-top: 0;
|
|
251
|
+
}
|
|
252
|
+
|
|
248
253
|
.dropin-cart-item__quantity:not(.dropin-cart-item__quantity--edit) {
|
|
249
254
|
display: none;
|
|
250
255
|
}
|
|
@@ -301,10 +306,6 @@
|
|
|
301
306
|
grid-row: 5 / 10;
|
|
302
307
|
}
|
|
303
308
|
|
|
304
|
-
.dropin-cart-item__title--edit {
|
|
305
|
-
grid-column: 2 / 5;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
309
|
.dropin-cart-item__total:not(.dropin-cart-item__total--edit) {
|
|
309
310
|
grid-auto-rows: min-content;
|
|
310
311
|
grid-column: 4 / 5;
|
|
@@ -62,7 +62,6 @@ const lazyIcons = {
|
|
|
62
62
|
Coupon: lazy(() => import('@adobe-commerce/elsie/icons/Coupon.svg')),
|
|
63
63
|
Gift: lazy(() => import('@adobe-commerce/elsie/icons/Gift.svg')),
|
|
64
64
|
GiftCard: lazy(() => import('@adobe-commerce/elsie/icons/GiftCard.svg')),
|
|
65
|
-
Edit: lazy(() => import('@adobe-commerce/elsie/icons/Edit.svg')),
|
|
66
65
|
};
|
|
67
66
|
|
|
68
67
|
export interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'size'> {
|
package/src/icons/index.ts
CHANGED
package/src/icons/Edit.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-edit-2"><path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"></path></svg>
|