@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.
Files changed (35) hide show
  1. package/dist/components/hooks/use-scroll-direction-safe.d.ts +8 -0
  2. package/dist/components/hooks/use-scroll-direction-safe.d.ts.map +1 -0
  3. package/dist/components/hooks/use-scroll-direction-safe.js +75 -0
  4. package/dist/components/hooks/use-transition-compat.d.ts +12 -0
  5. package/dist/components/hooks/use-transition-compat.d.ts.map +1 -0
  6. package/dist/components/hooks/use-transition-compat.js +42 -0
  7. package/dist/components/hooks/use-transition-compat.test.d.ts +2 -0
  8. package/dist/components/hooks/use-transition-compat.test.d.ts.map +1 -0
  9. package/dist/components/hooks/use-transition-compat.test.js +179 -0
  10. package/dist/components/hooks/use-transition-shim.d.ts +7 -0
  11. package/dist/components/hooks/use-transition-shim.d.ts.map +1 -0
  12. package/dist/components/hooks/use-transition-shim.js +25 -0
  13. package/dist/components/ui/quantity-picker copy.d.ts +25 -0
  14. package/dist/components/ui/quantity-picker copy.d.ts.map +1 -0
  15. package/dist/components/ui/quantity-picker copy.js +125 -0
  16. package/dist/components/ui/quantity-pickerDEP.d.ts +23 -0
  17. package/dist/components/ui/quantity-pickerDEP.d.ts.map +1 -0
  18. package/dist/components/ui/quantity-pickerDEP.js +88 -0
  19. package/dist/components/ui/quantity-pickerDEPRECATED.d.ts +23 -0
  20. package/dist/components/ui/quantity-pickerDEPRECATED.d.ts.map +1 -0
  21. package/dist/components/ui/quantity-pickerDEPRECATED.js +88 -0
  22. package/dist/components/ui/wishlist-select.d.ts +54 -0
  23. package/dist/components/ui/wishlist-select.d.ts.map +1 -1
  24. package/dist/components/ui/wishlist-select.js +88 -12
  25. package/dist/components/ui/wishlist.d.ts +29 -1
  26. package/dist/components/ui/wishlist.d.ts.map +1 -1
  27. package/dist/components/ui/wishlist.js +57 -20
  28. package/dist/lib/state.d.ts +3 -0
  29. package/dist/lib/state.d.ts.map +1 -0
  30. package/dist/lib/state.js +9 -0
  31. package/dist/lib/variablesCart.util.d.ts.map +1 -1
  32. package/dist/lib/variablesCart.util.js +6 -6
  33. package/dist/lib/variablesCart.util.test.js +12 -3
  34. package/dist/styles.css +3 -11
  35. 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapcart/mobile-components",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "style": "dist/styles.css",