@hanzo/commerce 7.1.14 → 7.1.17

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.
@@ -139,7 +139,7 @@ const AddToCartWidget: React.FC<{
139
139
  </Button>
140
140
  <div className={cn(
141
141
  'grow-0 shrink-0 flex items-center cursor-default xs:px-2',
142
- priSmaller ? 'text-xs' : 'text-sm',
142
+ priSmaller || ghost ? 'text-xs' : 'text-sm',
143
143
  digitClx
144
144
  )}>
145
145
  {item.quantity}{ghost ? '' : ' in Bag'}
@@ -43,9 +43,10 @@ const CartLineItem: React.FC<{
43
43
  return (
44
44
  <div
45
45
  className={cn(
46
- 'flex flex-col justify-start items-start text-sm font-sans border border-transparent p-[4px]',
47
- selected ? 'border-foreground rounded-sm' : '',
48
- (itemClicked && !selected ? 'cursor-pointer hover:!border-muted-2' : 'cursor-default '),
46
+ 'flex flex-col justify-start items-start text-sm font-sans',
47
+ 'border border-background rounded-sm p-1',
48
+ selected ? 'border-foreground' : '',
49
+ (itemClicked && !selected ? 'cursor-pointer hover:!border-muted-3' : 'cursor-default '),
49
50
  className
50
51
  )}
51
52
  onClick={() => {itemClicked && itemClicked(item)}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanzo/commerce",
3
- "version": "7.1.14",
3
+ "version": "7.1.17",
4
4
  "description": "e-commerce framework.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",