@tapcart/mobile-components 0.9.0 → 0.9.2
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/dist/components/hooks/use-scroll-direction-safe.d.ts +8 -0
- package/dist/components/hooks/use-scroll-direction-safe.d.ts.map +1 -0
- package/dist/components/hooks/use-scroll-direction-safe.js +75 -0
- package/dist/components/hooks/use-transition-compat.d.ts +12 -0
- package/dist/components/hooks/use-transition-compat.d.ts.map +1 -0
- package/dist/components/hooks/use-transition-compat.js +42 -0
- package/dist/components/hooks/use-transition-compat.test.d.ts +2 -0
- package/dist/components/hooks/use-transition-compat.test.d.ts.map +1 -0
- package/dist/components/hooks/use-transition-compat.test.js +179 -0
- package/dist/components/hooks/use-transition-shim.d.ts +7 -0
- package/dist/components/hooks/use-transition-shim.d.ts.map +1 -0
- package/dist/components/hooks/use-transition-shim.js +25 -0
- package/dist/components/ui/quantity-picker copy.d.ts +25 -0
- package/dist/components/ui/quantity-picker copy.d.ts.map +1 -0
- package/dist/components/ui/quantity-picker copy.js +125 -0
- package/dist/components/ui/quantity-pickerDEP.d.ts +23 -0
- package/dist/components/ui/quantity-pickerDEP.d.ts.map +1 -0
- package/dist/components/ui/quantity-pickerDEP.js +88 -0
- package/dist/components/ui/quantity-pickerDEPRECATED.d.ts +23 -0
- package/dist/components/ui/quantity-pickerDEPRECATED.d.ts.map +1 -0
- package/dist/components/ui/quantity-pickerDEPRECATED.js +88 -0
- package/dist/components/ui/wishlist-select.d.ts +54 -0
- package/dist/components/ui/wishlist-select.d.ts.map +1 -1
- package/dist/components/ui/wishlist-select.js +88 -12
- package/dist/components/ui/wishlist.d.ts +29 -1
- package/dist/components/ui/wishlist.d.ts.map +1 -1
- package/dist/components/ui/wishlist.js +57 -20
- package/dist/lib/state.d.ts +3 -0
- package/dist/lib/state.d.ts.map +1 -0
- package/dist/lib/state.js +9 -0
- package/dist/lib/variablesCart.util.d.ts.map +1 -1
- package/dist/lib/variablesCart.util.js +6 -6
- package/dist/lib/variablesCart.util.test.js +12 -3
- package/dist/styles.css +3 -11
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1088,9 +1088,6 @@ video {
|
|
|
1088
1088
|
.h-screen {
|
|
1089
1089
|
height: 100vh;
|
|
1090
1090
|
}
|
|
1091
|
-
.max-h-\[200px\] {
|
|
1092
|
-
max-height: 200px;
|
|
1093
|
-
}
|
|
1094
1091
|
.max-h-\[240px\] {
|
|
1095
1092
|
max-height: 240px;
|
|
1096
1093
|
}
|
|
@@ -1429,6 +1426,9 @@ video {
|
|
|
1429
1426
|
.grid-cols-\[auto_1fr_auto\] {
|
|
1430
1427
|
grid-template-columns: auto 1fr auto;
|
|
1431
1428
|
}
|
|
1429
|
+
.grid-rows-2 {
|
|
1430
|
+
grid-template-rows: repeat(2, minmax(0, 1fr));
|
|
1431
|
+
}
|
|
1432
1432
|
.flex-row {
|
|
1433
1433
|
flex-direction: row;
|
|
1434
1434
|
}
|
|
@@ -2555,14 +2555,6 @@ body::-webkit-scrollbar {
|
|
|
2555
2555
|
font-weight: 500;
|
|
2556
2556
|
}
|
|
2557
2557
|
|
|
2558
|
-
.placeholder\:text-coreColors-brandColorPrimary::-moz-placeholder {
|
|
2559
|
-
color: var(--coreColors-brandColorPrimary);
|
|
2560
|
-
}
|
|
2561
|
-
|
|
2562
|
-
.placeholder\:text-coreColors-brandColorPrimary::placeholder {
|
|
2563
|
-
color: var(--coreColors-brandColorPrimary);
|
|
2564
|
-
}
|
|
2565
|
-
|
|
2566
2558
|
.placeholder\:text-stateColors-error::-moz-placeholder {
|
|
2567
2559
|
color: var(--stateColors-error);
|
|
2568
2560
|
}
|