@adobe-commerce/elsie 1.3.0-beta1 → 1.3.1-alpha01
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe-commerce/elsie",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1-alpha01",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"description": "Domain Package SDK",
|
|
6
6
|
"engines": {
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@adobe-commerce/event-bus": "~1.0.0",
|
|
30
|
-
"@adobe-commerce/fetch-graphql": "~1.
|
|
31
|
-
"@adobe-commerce/recaptcha": "~1.0.
|
|
30
|
+
"@adobe-commerce/fetch-graphql": "~1.0.0",
|
|
31
|
+
"@adobe-commerce/recaptcha": "~1.0.0",
|
|
32
32
|
"@adobe-commerce/storefront-design": "~1.0.0",
|
|
33
|
-
"@dropins/build-tools": "~1.0.
|
|
33
|
+
"@dropins/build-tools": "~1.0.0",
|
|
34
34
|
"preact": "~10.22.1",
|
|
35
35
|
"vite-plugin-banner": "^0.8.0"
|
|
36
36
|
},
|
|
@@ -241,15 +241,10 @@
|
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.dropin-cart-item__price,
|
|
244
|
-
.dropin-cart-item__footer div,
|
|
245
244
|
.dropin-cart-item__attributes div {
|
|
246
245
|
margin-top: var(--group-spacing);
|
|
247
246
|
}
|
|
248
247
|
|
|
249
|
-
.dropin-cart-item__footer p {
|
|
250
|
-
margin-top: 0;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
248
|
.dropin-cart-item__quantity:not(.dropin-cart-item__quantity--edit) {
|
|
254
249
|
display: none;
|
|
255
250
|
}
|
|
@@ -62,6 +62,7 @@ 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')),
|
|
65
66
|
};
|
|
66
67
|
|
|
67
68
|
export interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'size'> {
|
|
@@ -0,0 +1 @@
|
|
|
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>
|
package/src/icons/index.ts
CHANGED