@tapcart/mobile-components 0.2.2 → 0.2.4

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/styles.css CHANGED
@@ -854,24 +854,10 @@ video {
854
854
  --tw-translate-y: -50%;
855
855
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
856
856
  }
857
- .rotate-0 {
858
- --tw-rotate: 0deg;
859
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
860
- }
861
857
  .rotate-90 {
862
858
  --tw-rotate: 90deg;
863
859
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
864
860
  }
865
- .scale-0 {
866
- --tw-scale-x: 0;
867
- --tw-scale-y: 0;
868
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
869
- }
870
- .scale-100 {
871
- --tw-scale-x: 1;
872
- --tw-scale-y: 1;
873
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
874
- }
875
861
  @keyframes pulse {
876
862
 
877
863
  50% {
@@ -881,15 +867,6 @@ video {
881
867
  .animate-pulse {
882
868
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
883
869
  }
884
- @keyframes spin {
885
-
886
- to {
887
- transform: rotate(360deg);
888
- }
889
- }
890
- .animate-spin {
891
- animation: spin 1s linear infinite;
892
- }
893
870
  .cursor-pointer {
894
871
  cursor: pointer;
895
872
  }
@@ -1751,24 +1728,6 @@ video {
1751
1728
  .data-\[state\=open\]\:slide-in-from-top-full[data-state=open] {
1752
1729
  --tw-enter-translate-y: -100%;
1753
1730
  }
1754
- .dark\:-rotate-90:is(.dark *) {
1755
- --tw-rotate: -90deg;
1756
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1757
- }
1758
- .dark\:rotate-0:is(.dark *) {
1759
- --tw-rotate: 0deg;
1760
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1761
- }
1762
- .dark\:scale-0:is(.dark *) {
1763
- --tw-scale-x: 0;
1764
- --tw-scale-y: 0;
1765
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1766
- }
1767
- .dark\:scale-100:is(.dark *) {
1768
- --tw-scale-x: 1;
1769
- --tw-scale-y: 1;
1770
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1771
- }
1772
1731
  @media (min-width: 640px) {
1773
1732
 
1774
1733
  .sm\:bottom-0 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapcart/mobile-components",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -19,6 +19,9 @@
19
19
  "build:ts": "tsup",
20
20
  "build": "pnpm run build:ts && pnpm run build:styles"
21
21
  },
22
+ "peerDependencies": {
23
+ "react": "^17.0.2"
24
+ },
22
25
  "devDependencies": {
23
26
  "@types/react": "^18.2.0",
24
27
  "@types/react-dom": "^18.2.0",
@@ -26,11 +29,11 @@
26
29
  "eslint": "^7.32.0",
27
30
  "eslint-config-custom": "workspace:*",
28
31
  "postcss": "^8.4.24",
29
- "react": "^17.0.2",
30
32
  "tailwindcss": "^3.3.2",
31
33
  "tsconfig": "workspace:*",
32
34
  "tsup": "^8.1.0",
33
- "typescript": "^4.5.2"
35
+ "typescript": "^4.5.2",
36
+ "postcss-cli": "^11.0.0"
34
37
  },
35
38
  "dependencies": {
36
39
  "@radix-ui/react-accordion": "^1.1.2",
@@ -44,13 +47,10 @@
44
47
  "@radix-ui/react-toast": "^1.1.5",
45
48
  "@radix-ui/react-toggle": "^1.0.3",
46
49
  "@radix-ui/react-toggle-group": "^1.0.4",
47
- "@tabler/icons-react": "^3.2.0",
48
50
  "class-variance-authority": "^0.6.0",
49
51
  "clsx": "^1.2.1",
50
52
  "embla-carousel-react": "^8.0.2",
51
53
  "lucide-react": "^0.248.0",
52
- "next-themes": "^0.2.1",
53
- "postcss-cli": "^11.0.0",
54
54
  "tailwind-merge": "^1.13.2",
55
55
  "tailwindcss-animate": "^1.0.6"
56
56
  }