@tapcart/mobile-components 0.2.4 → 0.2.8

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 (116) hide show
  1. package/dist/components/hooks/use-infinite-scroll.d.ts +25 -0
  2. package/dist/components/hooks/use-infinite-scroll.d.ts.map +1 -0
  3. package/dist/components/hooks/use-infinite-scroll.js +48 -0
  4. package/dist/components/ui/accordion.d.ts +8 -0
  5. package/dist/components/ui/accordion.d.ts.map +1 -0
  6. package/dist/components/ui/accordion.js +34 -0
  7. package/dist/components/ui/alert-dialog.d.ts +21 -0
  8. package/dist/components/ui/alert-dialog.d.ts.map +1 -0
  9. package/dist/components/ui/alert-dialog.js +62 -0
  10. package/dist/components/ui/aspect-ratio.d.ts +5 -0
  11. package/dist/components/ui/aspect-ratio.d.ts.map +1 -0
  12. package/dist/components/ui/aspect-ratio.js +4 -0
  13. package/dist/components/ui/badge.d.ts +13 -0
  14. package/dist/components/ui/badge.d.ts.map +1 -0
  15. package/dist/components/ui/badge.js +34 -0
  16. package/dist/components/ui/button.d.ts +14 -0
  17. package/dist/components/ui/button.d.ts.map +1 -0
  18. package/dist/components/ui/button.js +56 -0
  19. package/dist/components/ui/carousel.d.ts +19 -0
  20. package/dist/components/ui/carousel.d.ts.map +1 -0
  21. package/dist/components/ui/carousel.js +112 -0
  22. package/dist/components/ui/checkbox.d.ts +18 -0
  23. package/dist/components/ui/checkbox.d.ts.map +1 -0
  24. package/dist/components/ui/checkbox.js +38 -0
  25. package/dist/components/ui/chip.d.ts +28 -0
  26. package/dist/components/ui/chip.d.ts.map +1 -0
  27. package/dist/components/ui/chip.js +66 -0
  28. package/dist/components/ui/container.d.ts +10 -0
  29. package/dist/components/ui/container.d.ts.map +1 -0
  30. package/dist/components/ui/container.js +26 -0
  31. package/dist/components/ui/drawer.d.ts +37 -0
  32. package/dist/components/ui/drawer.d.ts.map +1 -0
  33. package/dist/components/ui/drawer.js +63 -0
  34. package/dist/components/ui/favorite.d.ts +13 -0
  35. package/dist/components/ui/favorite.d.ts.map +1 -0
  36. package/dist/components/ui/favorite.js +35 -0
  37. package/dist/components/ui/grid.d.ts +14 -0
  38. package/dist/components/ui/grid.d.ts.map +1 -0
  39. package/dist/components/ui/grid.js +33 -0
  40. package/dist/components/ui/icon.d.ts +13 -0
  41. package/dist/components/ui/icon.d.ts.map +1 -0
  42. package/dist/components/ui/icon.js +50 -0
  43. package/dist/components/ui/input.d.ts +17 -0
  44. package/dist/components/ui/input.d.ts.map +1 -0
  45. package/dist/components/ui/input.js +35 -0
  46. package/dist/components/ui/label.d.ts +6 -0
  47. package/dist/components/ui/label.d.ts.map +1 -0
  48. package/dist/components/ui/label.js +24 -0
  49. package/dist/components/ui/money.d.ts +12 -0
  50. package/dist/components/ui/money.d.ts.map +1 -0
  51. package/dist/components/ui/money.js +30 -0
  52. package/dist/components/ui/price.d.ts +13 -0
  53. package/dist/components/ui/price.d.ts.map +1 -0
  54. package/dist/components/ui/price.js +9 -0
  55. package/dist/components/ui/product-card.d.ts +68 -0
  56. package/dist/components/ui/product-card.d.ts.map +1 -0
  57. package/dist/components/ui/product-card.js +132 -0
  58. package/dist/components/ui/product-grid.d.ts +14 -0
  59. package/dist/components/ui/product-grid.d.ts.map +1 -0
  60. package/dist/components/ui/product-grid.js +22 -0
  61. package/dist/components/ui/radio-group.d.ts +21 -0
  62. package/dist/components/ui/radio-group.d.ts.map +1 -0
  63. package/dist/components/ui/radio-group.js +47 -0
  64. package/dist/components/ui/scroll-area.d.ts +9 -0
  65. package/dist/components/ui/scroll-area.d.ts.map +1 -0
  66. package/dist/components/ui/scroll-area.js +29 -0
  67. package/dist/components/ui/selectors.d.ts +30 -0
  68. package/dist/components/ui/selectors.d.ts.map +1 -0
  69. package/dist/components/ui/selectors.js +45 -0
  70. package/dist/components/ui/separator.d.ts +5 -0
  71. package/dist/components/ui/separator.d.ts.map +1 -0
  72. package/dist/components/ui/separator.js +22 -0
  73. package/dist/components/ui/skeleton.d.ts +13 -0
  74. package/dist/components/ui/skeleton.d.ts.map +1 -0
  75. package/dist/components/ui/skeleton.js +33 -0
  76. package/dist/components/ui/switch.d.ts +5 -0
  77. package/dist/components/ui/switch.d.ts.map +1 -0
  78. package/dist/components/ui/switch.js +22 -0
  79. package/dist/components/ui/tabs.d.ts +13 -0
  80. package/dist/components/ui/tabs.d.ts.map +1 -0
  81. package/dist/components/ui/tabs.js +96 -0
  82. package/dist/components/ui/text.d.ts +10 -0
  83. package/dist/components/ui/text.d.ts.map +1 -0
  84. package/dist/components/ui/text.js +33 -0
  85. package/dist/components/ui/toast.d.ts +20 -0
  86. package/dist/components/ui/toast.d.ts.map +1 -0
  87. package/dist/components/ui/toast.js +98 -0
  88. package/dist/components/ui/toaster.d.ts +6 -0
  89. package/dist/components/ui/toaster.d.ts.map +1 -0
  90. package/dist/components/ui/toaster.js +22 -0
  91. package/dist/components/ui/toggle-group.d.ts +13 -0
  92. package/dist/components/ui/toggle-group.d.ts.map +1 -0
  93. package/dist/components/ui/toggle-group.js +36 -0
  94. package/dist/components/ui/toggle.d.ts +13 -0
  95. package/dist/components/ui/toggle.d.ts.map +1 -0
  96. package/dist/components/ui/toggle.js +40 -0
  97. package/dist/components/ui/use-toast.d.ts +45 -0
  98. package/dist/components/ui/use-toast.d.ts.map +1 -0
  99. package/dist/components/ui/use-toast.js +112 -0
  100. package/dist/components/ui/video.d.ts +8 -0
  101. package/dist/components/ui/video.d.ts.map +1 -0
  102. package/dist/components/ui/video.js +22 -0
  103. package/dist/components/ui/wishlist.d.ts +12 -0
  104. package/dist/components/ui/wishlist.d.ts.map +1 -0
  105. package/dist/components/ui/wishlist.js +23 -0
  106. package/dist/index.d.ts +36 -0
  107. package/dist/index.d.ts.map +1 -0
  108. package/dist/index.js +36 -0
  109. package/dist/lib/utils.d.ts +6 -0
  110. package/dist/lib/utils.d.ts.map +1 -0
  111. package/dist/lib/utils.js +25 -0
  112. package/dist/styles.css +425 -142
  113. package/package.json +19 -9
  114. package/dist/index.d.mts +0 -221
  115. package/dist/index.mjs +0 -999
  116. package/dist/index.mjs.map +0 -1
package/dist/styles.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
2
+ ! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
3
3
  *//*
4
4
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
5
5
  2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
@@ -26,20 +26,17 @@
26
26
  4. Use the user's configured `sans` font-family by default.
27
27
  5. Use the user's configured `sans` font-feature-settings by default.
28
28
  6. Use the user's configured `sans` font-variation-settings by default.
29
- 7. Disable tap highlights on iOS
30
29
  */
31
30
 
32
- html,
33
- :host {
31
+ html {
34
32
  line-height: 1.5; /* 1 */
35
33
  -webkit-text-size-adjust: 100%; /* 2 */
36
34
  -moz-tab-size: 4; /* 3 */
37
35
  -o-tab-size: 4;
38
36
  tab-size: 4; /* 3 */
39
- font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
37
+ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
40
38
  font-feature-settings: normal; /* 5 */
41
39
  font-variation-settings: normal; /* 6 */
42
- -webkit-tap-highlight-color: transparent; /* 7 */
43
40
  }
44
41
 
45
42
  /*
@@ -106,10 +103,8 @@ strong {
106
103
  }
107
104
 
108
105
  /*
109
- 1. Use the user's configured `mono` font-family by default.
110
- 2. Use the user's configured `mono` font-feature-settings by default.
111
- 3. Use the user's configured `mono` font-variation-settings by default.
112
- 4. Correct the odd `em` font sizing in all browsers.
106
+ 1. Use the user's configured `mono` font family by default.
107
+ 2. Correct the odd `em` font sizing in all browsers.
113
108
  */
114
109
 
115
110
  code,
@@ -117,9 +112,7 @@ kbd,
117
112
  samp,
118
113
  pre {
119
114
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
120
- font-feature-settings: normal; /* 2 */
121
- font-variation-settings: normal; /* 3 */
122
- font-size: 1em; /* 4 */
115
+ font-size: 1em; /* 2 */
123
116
  }
124
117
 
125
118
  /*
@@ -179,7 +172,6 @@ textarea {
179
172
  font-size: 100%; /* 1 */
180
173
  font-weight: inherit; /* 1 */
181
174
  line-height: inherit; /* 1 */
182
- letter-spacing: inherit; /* 1 */
183
175
  color: inherit; /* 1 */
184
176
  margin: 0; /* 2 */
185
177
  padding: 0; /* 3 */
@@ -200,9 +192,9 @@ select {
200
192
  */
201
193
 
202
194
  button,
203
- input:where([type='button']),
204
- input:where([type='reset']),
205
- input:where([type='submit']) {
195
+ [type='button'],
196
+ [type='reset'],
197
+ [type='submit'] {
206
198
  -webkit-appearance: button; /* 1 */
207
199
  background-color: transparent; /* 2 */
208
200
  background-image: none; /* 2 */
@@ -433,6 +425,8 @@ video {
433
425
 
434
426
  --radius: 0.5rem;
435
427
 
428
+ --coreFonts-sfpro-roboto: "-apple-system", "Roboto", "sans-serif";
429
+
436
430
  --coreColors-pageColor: #ffffff;
437
431
  --coreColors-shadow: #000000;
438
432
  --coreColors-brandColorPrimary: #000000;
@@ -475,6 +469,9 @@ video {
475
469
  --stateColors-warning: #ffaf02ff;
476
470
  --stateColors-skeleton: #e3e3e3ff;
477
471
 
472
+ --productBadging-fill: #000000;
473
+ --productBadging-text: #fefefe;
474
+
478
475
  --productImage-aspectRatio: "2:3";
479
476
  --productImage-scaling: cover;
480
477
  --productImage-isCustom: "false";
@@ -558,10 +555,6 @@ video {
558
555
  --tw-backdrop-opacity: ;
559
556
  --tw-backdrop-saturate: ;
560
557
  --tw-backdrop-sepia: ;
561
- --tw-contain-size: ;
562
- --tw-contain-layout: ;
563
- --tw-contain-paint: ;
564
- --tw-contain-style: ;
565
558
  }
566
559
 
567
560
  ::backdrop {
@@ -612,10 +605,6 @@ video {
612
605
  --tw-backdrop-opacity: ;
613
606
  --tw-backdrop-saturate: ;
614
607
  --tw-backdrop-sepia: ;
615
- --tw-contain-size: ;
616
- --tw-contain-layout: ;
617
- --tw-contain-paint: ;
618
- --tw-contain-style: ;
619
608
  }
620
609
  .container {
621
610
  width: 100%;
@@ -647,12 +636,6 @@ video {
647
636
  .pointer-events-auto {
648
637
  pointer-events: auto;
649
638
  }
650
- .\!visible {
651
- visibility: visible !important;
652
- }
653
- .visible {
654
- visibility: visible;
655
- }
656
639
  .fixed {
657
640
  position: fixed;
658
641
  }
@@ -665,6 +648,10 @@ video {
665
648
  .inset-0 {
666
649
  inset: 0px;
667
650
  }
651
+ .inset-x-0 {
652
+ left: 0px;
653
+ right: 0px;
654
+ }
668
655
  .-bottom-12 {
669
656
  bottom: -3rem;
670
657
  }
@@ -677,12 +664,30 @@ video {
677
664
  .-top-12 {
678
665
  top: -3rem;
679
666
  }
667
+ .bottom-0 {
668
+ bottom: 0px;
669
+ }
670
+ .bottom-10 {
671
+ bottom: 2.5rem;
672
+ }
673
+ .end-4 {
674
+ inset-inline-end: 1rem;
675
+ }
676
+ .left-0 {
677
+ left: 0px;
678
+ }
680
679
  .left-1\/2 {
681
680
  left: 50%;
682
681
  }
682
+ .left-2 {
683
+ left: 0.5rem;
684
+ }
683
685
  .left-\[50\%\] {
684
686
  left: 50%;
685
687
  }
688
+ .right-0 {
689
+ right: 0px;
690
+ }
686
691
  .right-2 {
687
692
  right: 0.5rem;
688
693
  }
@@ -695,9 +700,15 @@ video {
695
700
  .top-1\/2 {
696
701
  top: 50%;
697
702
  }
703
+ .top-10 {
704
+ top: 2.5rem;
705
+ }
698
706
  .top-2 {
699
707
  top: 0.5rem;
700
708
  }
709
+ .top-\[18px\] {
710
+ top: 18px;
711
+ }
701
712
  .top-\[50\%\] {
702
713
  top: 50%;
703
714
  }
@@ -710,6 +721,27 @@ video {
710
721
  .z-\[100\] {
711
722
  z-index: 100;
712
723
  }
724
+ .col-span-2 {
725
+ grid-column: span 2 / span 2;
726
+ }
727
+ .col-start-1 {
728
+ grid-column-start: 1;
729
+ }
730
+ .row-start-1 {
731
+ grid-row-start: 1;
732
+ }
733
+ .mx-4 {
734
+ margin-left: 1rem;
735
+ margin-right: 1rem;
736
+ }
737
+ .mx-auto {
738
+ margin-left: auto;
739
+ margin-right: auto;
740
+ }
741
+ .my-0 {
742
+ margin-top: 0px;
743
+ margin-bottom: 0px;
744
+ }
713
745
  .my-3 {
714
746
  margin-top: 0.75rem;
715
747
  margin-bottom: 0.75rem;
@@ -720,8 +752,8 @@ video {
720
752
  .-mt-4 {
721
753
  margin-top: -1rem;
722
754
  }
723
- .mb-4 {
724
- margin-bottom: 1rem;
755
+ .mb-2 {
756
+ margin-bottom: 0.5rem;
725
757
  }
726
758
  .ml-2 {
727
759
  margin-left: 0.5rem;
@@ -732,9 +764,21 @@ video {
732
764
  .mt-2 {
733
765
  margin-top: 0.5rem;
734
766
  }
767
+ .mt-auto {
768
+ margin-top: auto;
769
+ }
770
+ .line-clamp-2 {
771
+ overflow: hidden;
772
+ display: -webkit-box;
773
+ -webkit-box-orient: vertical;
774
+ -webkit-line-clamp: 2;
775
+ }
735
776
  .block {
736
777
  display: block;
737
778
  }
779
+ .inline {
780
+ display: inline;
781
+ }
738
782
  .flex {
739
783
  display: flex;
740
784
  }
@@ -744,6 +788,15 @@ video {
744
788
  .grid {
745
789
  display: grid;
746
790
  }
791
+ .aspect-\[2\/3\] {
792
+ aspect-ratio: 2/3;
793
+ }
794
+ .aspect-\[4\/5\] {
795
+ aspect-ratio: 4/5;
796
+ }
797
+ .aspect-square {
798
+ aspect-ratio: 1 / 1;
799
+ }
747
800
  .h-10 {
748
801
  height: 2.5rem;
749
802
  }
@@ -768,6 +821,9 @@ video {
768
821
  .h-6 {
769
822
  height: 1.5rem;
770
823
  }
824
+ .h-64 {
825
+ height: 16rem;
826
+ }
771
827
  .h-8 {
772
828
  height: 2rem;
773
829
  }
@@ -777,18 +833,39 @@ video {
777
833
  .h-\[1px\] {
778
834
  height: 1px;
779
835
  }
836
+ .h-\[2px\] {
837
+ height: 2px;
838
+ }
839
+ .h-\[42px\] {
840
+ height: 42px;
841
+ }
842
+ .h-\[4px\] {
843
+ height: 4px;
844
+ }
845
+ .h-auto {
846
+ height: auto;
847
+ }
780
848
  .h-full {
781
849
  height: 100%;
782
850
  }
783
851
  .max-h-screen {
784
852
  max-height: 100vh;
785
853
  }
854
+ .w-1\/2 {
855
+ width: 50%;
856
+ }
786
857
  .w-10 {
787
858
  width: 2.5rem;
788
859
  }
789
860
  .w-11 {
790
861
  width: 2.75rem;
791
862
  }
863
+ .w-14 {
864
+ width: 3.5rem;
865
+ }
866
+ .w-16 {
867
+ width: 4rem;
868
+ }
792
869
  .w-2 {
793
870
  width: 0.5rem;
794
871
  }
@@ -801,12 +878,18 @@ video {
801
878
  .w-5 {
802
879
  width: 1.25rem;
803
880
  }
881
+ .w-6 {
882
+ width: 1.5rem;
883
+ }
804
884
  .w-8 {
805
885
  width: 2rem;
806
886
  }
807
887
  .w-\[1px\] {
808
888
  width: 1px;
809
889
  }
890
+ .w-\[40px\] {
891
+ width: 40px;
892
+ }
810
893
  .w-auto {
811
894
  width: auto;
812
895
  }
@@ -826,6 +909,9 @@ video {
826
909
  .flex-1 {
827
910
  flex: 1 1 0%;
828
911
  }
912
+ .flex-shrink-0 {
913
+ flex-shrink: 0;
914
+ }
829
915
  .shrink-0 {
830
916
  flex-shrink: 0;
831
917
  }
@@ -867,6 +953,15 @@ video {
867
953
  .animate-pulse {
868
954
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
869
955
  }
956
+ @keyframes spin {
957
+
958
+ to {
959
+ transform: rotate(360deg);
960
+ }
961
+ }
962
+ .animate-spin {
963
+ animation: spin 1s linear infinite;
964
+ }
870
965
  .cursor-pointer {
871
966
  cursor: pointer;
872
967
  }
@@ -878,6 +973,9 @@ video {
878
973
  -moz-user-select: none;
879
974
  user-select: none;
880
975
  }
976
+ .resize {
977
+ resize: both;
978
+ }
881
979
  .grid-cols-1 {
882
980
  grid-template-columns: repeat(1, minmax(0, 1fr));
883
981
  }
@@ -890,6 +988,9 @@ video {
890
988
  .grid-cols-4 {
891
989
  grid-template-columns: repeat(4, minmax(0, 1fr));
892
990
  }
991
+ .grid-cols-\[auto\2c auto\2c 1fr\] {
992
+ grid-template-columns: auto auto 1fr;
993
+ }
893
994
  .flex-row {
894
995
  flex-direction: row;
895
996
  }
@@ -899,9 +1000,21 @@ video {
899
1000
  .flex-col-reverse {
900
1001
  flex-direction: column-reverse;
901
1002
  }
1003
+ .flex-wrap {
1004
+ flex-wrap: wrap;
1005
+ }
1006
+ .items-start {
1007
+ align-items: flex-start;
1008
+ }
902
1009
  .items-center {
903
1010
  align-items: center;
904
1011
  }
1012
+ .justify-start {
1013
+ justify-content: flex-start;
1014
+ }
1015
+ .justify-end {
1016
+ justify-content: flex-end;
1017
+ }
905
1018
  .justify-center {
906
1019
  justify-content: center;
907
1020
  }
@@ -911,6 +1024,9 @@ video {
911
1024
  .gap-1 {
912
1025
  gap: 0.25rem;
913
1026
  }
1027
+ .gap-2 {
1028
+ gap: 0.5rem;
1029
+ }
914
1030
  .gap-4 {
915
1031
  gap: 1rem;
916
1032
  }
@@ -921,38 +1037,48 @@ video {
921
1037
  .gap-y-\[7px\] {
922
1038
  row-gap: 7px;
923
1039
  }
924
- .space-x-2 > :not([hidden]) ~ :not([hidden]) {
925
- --tw-space-x-reverse: 0;
926
- margin-right: calc(0.5rem * var(--tw-space-x-reverse));
927
- margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
928
- }
929
- .space-x-4 > :not([hidden]) ~ :not([hidden]) {
930
- --tw-space-x-reverse: 0;
931
- margin-right: calc(1rem * var(--tw-space-x-reverse));
932
- margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
1040
+ .space-y-1 > :not([hidden]) ~ :not([hidden]) {
1041
+ --tw-space-y-reverse: 0;
1042
+ margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
1043
+ margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
933
1044
  }
934
1045
  .space-y-2 > :not([hidden]) ~ :not([hidden]) {
935
1046
  --tw-space-y-reverse: 0;
936
1047
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
937
1048
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
938
1049
  }
1050
+ .self-start {
1051
+ align-self: flex-start;
1052
+ }
939
1053
  .overflow-hidden {
940
1054
  overflow: hidden;
941
1055
  }
1056
+ .overflow-scroll {
1057
+ overflow: scroll;
1058
+ }
942
1059
  .overflow-x-auto {
943
1060
  overflow-x: auto;
944
1061
  }
1062
+ .overscroll-y-none {
1063
+ overscroll-behavior-y: none;
1064
+ }
945
1065
  .truncate {
946
1066
  overflow: hidden;
947
1067
  text-overflow: ellipsis;
948
1068
  white-space: nowrap;
949
1069
  }
1070
+ .text-ellipsis {
1071
+ text-overflow: ellipsis;
1072
+ }
950
1073
  .whitespace-nowrap {
951
1074
  white-space: nowrap;
952
1075
  }
953
1076
  .rounded {
954
1077
  border-radius: 0.25rem;
955
1078
  }
1079
+ .rounded-\[4px\] {
1080
+ border-radius: 4px;
1081
+ }
956
1082
  .rounded-\[inherit\] {
957
1083
  border-radius: inherit;
958
1084
  }
@@ -965,10 +1091,29 @@ video {
965
1091
  .rounded-none {
966
1092
  border-radius: 0px;
967
1093
  }
1094
+ .rounded-sm {
1095
+ border-radius: calc(var(--radius) - 4px);
1096
+ }
968
1097
  .rounded-b-lg {
969
1098
  border-bottom-right-radius: var(--radius);
970
1099
  border-bottom-left-radius: var(--radius);
971
1100
  }
1101
+ .rounded-t-2xl {
1102
+ border-top-left-radius: 1rem;
1103
+ border-top-right-radius: 1rem;
1104
+ }
1105
+ .rounded-bl {
1106
+ border-bottom-left-radius: 0.25rem;
1107
+ }
1108
+ .rounded-br {
1109
+ border-bottom-right-radius: 0.25rem;
1110
+ }
1111
+ .rounded-tl {
1112
+ border-top-left-radius: 0.25rem;
1113
+ }
1114
+ .rounded-tr {
1115
+ border-top-right-radius: 0.25rem;
1116
+ }
972
1117
  .border {
973
1118
  border-width: 1px;
974
1119
  }
@@ -991,9 +1136,6 @@ video {
991
1136
  .border-coreColors-dividingLines {
992
1137
  border-color: var(--coreColors-dividingLines);
993
1138
  }
994
- .border-destructive {
995
- border-color: hsl(var(--destructive));
996
- }
997
1139
  .border-input {
998
1140
  border-color: hsl(var(--input));
999
1141
  }
@@ -1028,27 +1170,40 @@ video {
1028
1170
  .bg-buttonColors-secondaryFill {
1029
1171
  background-color: var(--buttonColors-secondaryFill);
1030
1172
  }
1173
+ .bg-coreColors-brandColorPrimary {
1174
+ background-color: var(--coreColors-brandColorPrimary);
1175
+ }
1176
+ .bg-coreColors-dividingLines {
1177
+ background-color: var(--coreColors-dividingLines);
1178
+ }
1031
1179
  .bg-coreColors-inputBackground {
1032
1180
  background-color: var(--coreColors-inputBackground);
1033
1181
  }
1182
+ .bg-coreColors-modalBackground {
1183
+ background-color: var(--coreColors-modalBackground);
1184
+ }
1034
1185
  .bg-coreColors-pageColor {
1035
1186
  background-color: var(--coreColors-pageColor);
1036
1187
  }
1037
- .bg-destructive {
1038
- background-color: hsl(var(--destructive));
1039
- }
1040
- .bg-muted {
1041
- background-color: hsl(var(--muted));
1042
- }
1043
- .bg-primary {
1044
- background-color: hsl(var(--primary));
1188
+ .bg-neutral-100 {
1189
+ --tw-bg-opacity: 1;
1190
+ background-color: rgb(245 245 245 / var(--tw-bg-opacity));
1045
1191
  }
1046
- .bg-secondary {
1047
- background-color: hsl(var(--secondary));
1192
+ .bg-productBadging-fill {
1193
+ background-color: var(--productBadging-fill);
1048
1194
  }
1049
1195
  .bg-stateColors-error {
1050
1196
  background-color: var(--stateColors-error);
1051
1197
  }
1198
+ .bg-stateColors-skeleton {
1199
+ background-color: var(--stateColors-skeleton);
1200
+ }
1201
+ .bg-stateColors-success {
1202
+ background-color: var(--stateColors-success);
1203
+ }
1204
+ .bg-stateColors-warning {
1205
+ background-color: var(--stateColors-warning);
1206
+ }
1052
1207
  .bg-transparent {
1053
1208
  background-color: transparent;
1054
1209
  }
@@ -1056,12 +1211,41 @@ video {
1056
1211
  --tw-bg-opacity: 1;
1057
1212
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1058
1213
  }
1214
+ .bg-\[linear-gradient\(270deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
1215
+ background-image: linear-gradient(270deg,#ffffff00 0%,#FFF 100%);
1216
+ }
1217
+ .bg-\[linear-gradient\(90deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
1218
+ background-image: linear-gradient(90deg,#ffffff00 0%,#FFF 100%);
1219
+ }
1220
+ .bg-fade-left {
1221
+ background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
1222
+ }
1223
+ .bg-fade-right {
1224
+ background-image: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
1225
+ }
1226
+ .fill-current {
1227
+ fill: currentColor;
1228
+ }
1229
+ .object-contain {
1230
+ -o-object-fit: contain;
1231
+ object-fit: contain;
1232
+ }
1233
+ .object-cover {
1234
+ -o-object-fit: cover;
1235
+ object-fit: cover;
1236
+ }
1237
+ .p-0 {
1238
+ padding: 0px;
1239
+ }
1059
1240
  .p-1 {
1060
1241
  padding: 0.25rem;
1061
1242
  }
1062
1243
  .p-2 {
1063
1244
  padding: 0.5rem;
1064
1245
  }
1246
+ .p-3 {
1247
+ padding: 0.75rem;
1248
+ }
1065
1249
  .p-4 {
1066
1250
  padding: 1rem;
1067
1251
  }
@@ -1071,6 +1255,10 @@ video {
1071
1255
  .p-\[1px\] {
1072
1256
  padding: 1px;
1073
1257
  }
1258
+ .px-1 {
1259
+ padding-left: 0.25rem;
1260
+ padding-right: 0.25rem;
1261
+ }
1074
1262
  .px-2 {
1075
1263
  padding-left: 0.5rem;
1076
1264
  padding-right: 0.5rem;
@@ -1099,13 +1287,13 @@ video {
1099
1287
  padding-left: 16px;
1100
1288
  padding-right: 16px;
1101
1289
  }
1102
- .py-0 {
1103
- padding-top: 0px;
1104
- padding-bottom: 0px;
1290
+ .py-1 {
1291
+ padding-top: 0.25rem;
1292
+ padding-bottom: 0.25rem;
1105
1293
  }
1106
- .py-0\.5 {
1107
- padding-top: 0.125rem;
1108
- padding-bottom: 0.125rem;
1294
+ .py-2 {
1295
+ padding-top: 0.5rem;
1296
+ padding-bottom: 0.5rem;
1109
1297
  }
1110
1298
  .py-3 {
1111
1299
  padding-top: 0.75rem;
@@ -1121,15 +1309,21 @@ video {
1121
1309
  .pb-4 {
1122
1310
  padding-bottom: 1rem;
1123
1311
  }
1312
+ .pb-8 {
1313
+ padding-bottom: 2rem;
1314
+ }
1124
1315
  .pl-4 {
1125
1316
  padding-left: 1rem;
1126
1317
  }
1127
- .pr-8 {
1128
- padding-right: 2rem;
1318
+ .pr-4 {
1319
+ padding-right: 1rem;
1129
1320
  }
1130
1321
  .pt-0 {
1131
1322
  padding-top: 0px;
1132
1323
  }
1324
+ .pt-12 {
1325
+ padding-top: 3rem;
1326
+ }
1133
1327
  .pt-4 {
1134
1328
  padding-top: 1rem;
1135
1329
  }
@@ -1139,9 +1333,8 @@ video {
1139
1333
  .text-center {
1140
1334
  text-align: center;
1141
1335
  }
1142
- .text-2xl {
1143
- font-size: 1.5rem;
1144
- line-height: 2rem;
1336
+ .font-sfpro-roboto {
1337
+ font-family: var(--coreFonts-sfpro-roboto);
1145
1338
  }
1146
1339
  .text-\[10px\] {
1147
1340
  font-size: 10px;
@@ -1149,9 +1342,14 @@ video {
1149
1342
  .text-\[12px\] {
1150
1343
  font-size: 12px;
1151
1344
  }
1152
- .text-base {
1153
- font-size: 1rem;
1154
- line-height: 1.5rem;
1345
+ .text-\[15px\] {
1346
+ font-size: 15px;
1347
+ }
1348
+ .text-\[18px\] {
1349
+ font-size: 18px;
1350
+ }
1351
+ .text-\[23px\] {
1352
+ font-size: 23px;
1155
1353
  }
1156
1354
  .text-lg {
1157
1355
  font-size: 1.125rem;
@@ -1161,10 +1359,6 @@ video {
1161
1359
  font-size: 0.875rem;
1162
1360
  line-height: 1.25rem;
1163
1361
  }
1164
- .text-xl {
1165
- font-size: 1.25rem;
1166
- line-height: 1.75rem;
1167
- }
1168
1362
  .text-xs {
1169
1363
  font-size: 0.75rem;
1170
1364
  line-height: 1rem;
@@ -1178,20 +1372,20 @@ video {
1178
1372
  .font-semibold {
1179
1373
  font-weight: 600;
1180
1374
  }
1181
- .leading-none {
1182
- line-height: 1;
1375
+ .uppercase {
1376
+ text-transform: uppercase;
1183
1377
  }
1184
- .text-\[\#121212\] {
1185
- --tw-text-opacity: 1;
1186
- color: rgb(18 18 18 / var(--tw-text-opacity));
1378
+ .leading-\[130\%\] {
1379
+ line-height: 130%;
1187
1380
  }
1188
- .text-\[\#727272\] {
1189
- --tw-text-opacity: 1;
1190
- color: rgb(114 114 114 / var(--tw-text-opacity));
1381
+ .leading-\[160\%\] {
1382
+ line-height: 160%;
1191
1383
  }
1192
- .text-black {
1193
- --tw-text-opacity: 1;
1194
- color: rgb(0 0 0 / var(--tw-text-opacity));
1384
+ .leading-\[24px\] {
1385
+ line-height: 24px;
1386
+ }
1387
+ .leading-none {
1388
+ line-height: 1;
1195
1389
  }
1196
1390
  .text-buttonColors-destructiveText {
1197
1391
  color: var(--buttonColors-destructiveText);
@@ -1223,12 +1417,18 @@ video {
1223
1417
  .text-buttonColors-secondaryFill {
1224
1418
  color: var(--buttonColors-secondaryFill);
1225
1419
  }
1420
+ .text-buttonColors-secondaryOutline {
1421
+ color: var(--buttonColors-secondaryOutline);
1422
+ }
1226
1423
  .text-buttonColors-secondaryOutlineColor {
1227
1424
  color: var(--buttonColors-secondaryOutlineColor);
1228
1425
  }
1229
1426
  .text-buttonColors-secondaryOutlineEnabled {
1230
1427
  color: var(--buttonColors-secondaryOutlineEnabled);
1231
1428
  }
1429
+ .text-buttonColors-secondaryShadow {
1430
+ color: var(--buttonColors-secondaryShadow);
1431
+ }
1232
1432
  .text-buttonColors-secondaryShadowEnabled {
1233
1433
  color: var(--buttonColors-secondaryShadowEnabled);
1234
1434
  }
@@ -1271,11 +1471,8 @@ video {
1271
1471
  .text-coreColors-tabBar {
1272
1472
  color: var(--coreColors-tabBar);
1273
1473
  }
1274
- .text-destructive-foreground {
1275
- color: hsl(var(--destructive-foreground));
1276
- }
1277
- .text-foreground {
1278
- color: hsl(var(--foreground));
1474
+ .text-current {
1475
+ color: currentColor;
1279
1476
  }
1280
1477
  .text-foreground\/50 {
1281
1478
  color: hsl(var(--foreground) / 0.5);
@@ -1283,14 +1480,8 @@ video {
1283
1480
  .text-muted-foreground {
1284
1481
  color: hsl(var(--muted-foreground));
1285
1482
  }
1286
- .text-primary {
1287
- color: hsl(var(--primary));
1288
- }
1289
- .text-primary-foreground {
1290
- color: hsl(var(--primary-foreground));
1291
- }
1292
- .text-secondary-foreground {
1293
- color: hsl(var(--secondary-foreground));
1483
+ .text-productBadging-text {
1484
+ color: var(--productBadging-text);
1294
1485
  }
1295
1486
  .text-stateColors-disabled {
1296
1487
  color: var(--stateColors-disabled);
@@ -1326,7 +1517,7 @@ video {
1326
1517
  color: var(--textColors-priceText);
1327
1518
  }
1328
1519
  .text-textColors-primaryColor {
1329
- color: var(--textColors-primaryColor);
1520
+ color: var(--textColors-primaryColor, #121212ff);
1330
1521
  }
1331
1522
  .text-textColors-productTitle {
1332
1523
  color: var(--textColors-productTitle);
@@ -1335,11 +1526,14 @@ video {
1335
1526
  color: var(--textColors-salePriceText);
1336
1527
  }
1337
1528
  .text-textColors-secondaryColor {
1338
- color: var(--textColors-secondaryColor);
1529
+ color: var(--textColors-secondaryColor, #727272ff);
1339
1530
  }
1340
1531
  .text-textColors-strikethroughPriceText {
1341
1532
  color: var(--textColors-strikethroughPriceText);
1342
1533
  }
1534
+ .line-through {
1535
+ text-decoration-line: line-through;
1536
+ }
1343
1537
  .underline-offset-4 {
1344
1538
  text-underline-offset: 4px;
1345
1539
  }
@@ -1349,17 +1543,48 @@ video {
1349
1543
  .opacity-100 {
1350
1544
  opacity: 1;
1351
1545
  }
1352
- .opacity-90 {
1353
- opacity: 0.9;
1546
+ .shadow-\[0_0_6px_0_rgba\(17\2c 17\2c 17\2c 0\.16\)\] {
1547
+ --tw-shadow: 0 0 6px 0 rgba(17,17,17,0.16);
1548
+ --tw-shadow-colored: 0 0 6px 0 var(--tw-shadow-color);
1549
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1354
1550
  }
1355
1551
  .shadow-lg {
1356
1552
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1357
1553
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1358
1554
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1359
1555
  }
1556
+ .shadow-buttonColors-primaryShadow {
1557
+ --tw-shadow-color: var(--buttonColors-primaryShadow);
1558
+ --tw-shadow: var(--tw-shadow-colored);
1559
+ }
1560
+ .shadow-buttonColors-secondaryShadow {
1561
+ --tw-shadow-color: var(--buttonColors-secondaryShadow);
1562
+ --tw-shadow: var(--tw-shadow-colored);
1563
+ }
1360
1564
  .outline {
1361
1565
  outline-style: solid;
1362
1566
  }
1567
+ .outline-0 {
1568
+ outline-width: 0px;
1569
+ }
1570
+ .outline-1 {
1571
+ outline-width: 1px;
1572
+ }
1573
+ .outline-buttonColors-primaryOutline {
1574
+ outline-color: var(--buttonColors-primaryOutline);
1575
+ }
1576
+ .outline-buttonColors-secondaryOutline {
1577
+ outline-color: var(--buttonColors-secondaryOutline);
1578
+ }
1579
+ .outline-coreColors-brandColorPrimary {
1580
+ outline-color: var(--coreColors-brandColorPrimary);
1581
+ }
1582
+ .outline-coreColors-dividingLines {
1583
+ outline-color: var(--coreColors-dividingLines);
1584
+ }
1585
+ .outline-input {
1586
+ outline-color: hsl(var(--input));
1587
+ }
1363
1588
  .ring-0 {
1364
1589
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1365
1590
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
@@ -1394,6 +1619,9 @@ video {
1394
1619
  .duration-200 {
1395
1620
  transition-duration: 200ms;
1396
1621
  }
1622
+ .duration-300 {
1623
+ transition-duration: 300ms;
1624
+ }
1397
1625
  @keyframes enter {
1398
1626
 
1399
1627
  from {
@@ -1411,6 +1639,9 @@ video {
1411
1639
  .duration-200 {
1412
1640
  animation-duration: 200ms;
1413
1641
  }
1642
+ .duration-300 {
1643
+ animation-duration: 300ms;
1644
+ }
1414
1645
  /* Hide scrollbar for Chrome, Safari and Opera */
1415
1646
  .no-scrollbar *::-webkit-scrollbar {
1416
1647
  display: none;
@@ -1447,10 +1678,10 @@ video {
1447
1678
  color: var(--stateColors-error);
1448
1679
  }
1449
1680
  .placeholder\:text-textColors-secondaryColor::-moz-placeholder {
1450
- color: var(--textColors-secondaryColor);
1681
+ color: var(--textColors-secondaryColor, #727272ff);
1451
1682
  }
1452
1683
  .placeholder\:text-textColors-secondaryColor::placeholder {
1453
- color: var(--textColors-secondaryColor);
1684
+ color: var(--textColors-secondaryColor, #727272ff);
1454
1685
  }
1455
1686
  .placeholder-shown\:p-4:-moz-placeholder-shown {
1456
1687
  padding: 1rem;
@@ -1461,21 +1692,12 @@ video {
1461
1692
  .hover\:bg-accent:hover {
1462
1693
  background-color: hsl(var(--accent));
1463
1694
  }
1464
- .hover\:bg-destructive\/80:hover {
1465
- background-color: hsl(var(--destructive) / 0.8);
1466
- }
1467
1695
  .hover\:bg-muted:hover {
1468
1696
  background-color: hsl(var(--muted));
1469
1697
  }
1470
- .hover\:bg-primary\/80:hover {
1471
- background-color: hsl(var(--primary) / 0.8);
1472
- }
1473
1698
  .hover\:bg-secondary:hover {
1474
1699
  background-color: hsl(var(--secondary));
1475
1700
  }
1476
- .hover\:bg-secondary\/80:hover {
1477
- background-color: hsl(var(--secondary) / 0.8);
1478
- }
1479
1701
  .hover\:text-accent-foreground:hover {
1480
1702
  color: hsl(var(--accent-foreground));
1481
1703
  }
@@ -1538,6 +1760,9 @@ video {
1538
1760
  .active\:opacity-70:active {
1539
1761
  opacity: 0.7;
1540
1762
  }
1763
+ .active\:outline-coreColors-brandColorPrimary:active {
1764
+ outline-color: var(--coreColors-brandColorPrimary);
1765
+ }
1541
1766
  .disabled\:pointer-events-none:disabled {
1542
1767
  pointer-events: none;
1543
1768
  }
@@ -1553,6 +1778,9 @@ video {
1553
1778
  .disabled\:bg-stateColors-disabled:disabled {
1554
1779
  background-color: var(--stateColors-disabled);
1555
1780
  }
1781
+ .disabled\:bg-transparent:disabled {
1782
+ background-color: transparent;
1783
+ }
1556
1784
  .disabled\:text-stateColors-disabled:disabled {
1557
1785
  color: var(--stateColors-disabled);
1558
1786
  }
@@ -1562,6 +1790,9 @@ video {
1562
1790
  .group:hover .group-hover\:opacity-100 {
1563
1791
  opacity: 1;
1564
1792
  }
1793
+ .group:disabled .group-disabled\:text-stateColors-disabled {
1794
+ color: var(--stateColors-disabled);
1795
+ }
1565
1796
  .group.destructive .group-\[\.destructive\]\:border-muted\/40 {
1566
1797
  border-color: hsl(var(--muted) / 0.4);
1567
1798
  }
@@ -1662,12 +1893,18 @@ video {
1662
1893
  .data-\[icon\=true\]\:pr-10[data-icon=true] {
1663
1894
  padding-right: 2.5rem;
1664
1895
  }
1896
+ .data-\[error\=true\]\:text-stateColors-error[data-error=true] {
1897
+ color: var(--stateColors-error);
1898
+ }
1665
1899
  .data-\[state\=on\]\:text-accent-foreground[data-state=on] {
1666
1900
  color: hsl(var(--accent-foreground));
1667
1901
  }
1668
1902
  .data-\[swipe\=move\]\:transition-none[data-swipe=move] {
1669
1903
  transition-property: none;
1670
1904
  }
1905
+ .data-\[state\=open\]\:duration-500[data-state=open] {
1906
+ transition-duration: 500ms;
1907
+ }
1671
1908
  .data-\[state\=open\]\:animate-in[data-state=open] {
1672
1909
  animation-name: enter;
1673
1910
  animation-duration: 150ms;
@@ -1698,9 +1935,6 @@ video {
1698
1935
  .data-\[state\=closed\]\:fade-out-0[data-state=closed] {
1699
1936
  --tw-exit-opacity: 0;
1700
1937
  }
1701
- .data-\[state\=closed\]\:fade-out-80[data-state=closed] {
1702
- --tw-exit-opacity: 0.8;
1703
- }
1704
1938
  .data-\[state\=open\]\:fade-in-0[data-state=open] {
1705
1939
  --tw-enter-opacity: 0;
1706
1940
  }
@@ -1713,12 +1947,12 @@ video {
1713
1947
  .data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed] {
1714
1948
  --tw-exit-translate-x: -50%;
1715
1949
  }
1716
- .data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed] {
1717
- --tw-exit-translate-x: 100%;
1718
- }
1719
1950
  .data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed] {
1720
1951
  --tw-exit-translate-y: -48%;
1721
1952
  }
1953
+ .data-\[state\=closed\]\:slide-out-to-top-full[data-state=closed] {
1954
+ --tw-exit-translate-y: -100%;
1955
+ }
1722
1956
  .data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open] {
1723
1957
  --tw-enter-translate-x: -50%;
1724
1958
  }
@@ -1728,20 +1962,15 @@ video {
1728
1962
  .data-\[state\=open\]\:slide-in-from-top-full[data-state=open] {
1729
1963
  --tw-enter-translate-y: -100%;
1730
1964
  }
1965
+ .data-\[state\=open\]\:duration-500[data-state=open] {
1966
+ animation-duration: 500ms;
1967
+ }
1968
+ :is(.dark .dark\:bg-neutral-900) {
1969
+ --tw-bg-opacity: 1;
1970
+ background-color: rgb(23 23 23 / var(--tw-bg-opacity));
1971
+ }
1731
1972
  @media (min-width: 640px) {
1732
1973
 
1733
- .sm\:bottom-0 {
1734
- bottom: 0px;
1735
- }
1736
-
1737
- .sm\:right-0 {
1738
- right: 0px;
1739
- }
1740
-
1741
- .sm\:top-auto {
1742
- top: auto;
1743
- }
1744
-
1745
1974
  .sm\:mt-0 {
1746
1975
  margin-top: 0px;
1747
1976
  }
@@ -1750,10 +1979,6 @@ video {
1750
1979
  flex-direction: row;
1751
1980
  }
1752
1981
 
1753
- .sm\:flex-col {
1754
- flex-direction: column;
1755
- }
1756
-
1757
1982
  .sm\:justify-end {
1758
1983
  justify-content: flex-end;
1759
1984
  }
@@ -1771,21 +1996,79 @@ video {
1771
1996
  .sm\:text-left {
1772
1997
  text-align: left;
1773
1998
  }
1774
-
1775
- .data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state=open] {
1776
- --tw-enter-translate-y: 100%;
1777
- }
1778
1999
  }
1779
- @media (min-width: 768px) {
2000
+ @media (min-width: 1024px) {
1780
2001
 
1781
- .md\:max-w-\[420px\] {
1782
- max-width: 420px;
2002
+ .lg\:grid-cols-3 {
2003
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1783
2004
  }
1784
2005
  }
1785
2006
  .\[\&\+label\]\:text-stateColors-error+label {
1786
2007
  color: var(--stateColors-error);
1787
2008
  }
1788
- .\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
2009
+ .\[\&\>div\>button\]\:border-coreColors-brandColorPrimary>div>button {
2010
+ border-color: var(--coreColors-brandColorPrimary);
2011
+ }
2012
+ .\[\&\>p\]\:text-black>p {
2013
+ --tw-text-opacity: 1;
2014
+ color: rgb(0 0 0 / var(--tw-text-opacity));
2015
+ }
2016
+ .\[\&\>p\]\:text-buttonColors-primaryText>p {
2017
+ color: var(--buttonColors-primaryText);
2018
+ }
2019
+ .\[\&\>p\]\:text-buttonColors-secondaryText>p {
2020
+ color: var(--buttonColors-secondaryText);
2021
+ }
2022
+ .\[\&\>p\]\:text-coreColors-pageColor>p {
2023
+ color: var(--coreColors-pageColor);
2024
+ }
2025
+ .\[\&\>p\]\:text-stateColors-disabled>p {
2026
+ color: var(--stateColors-disabled);
2027
+ }
2028
+ .\[\&\>p\]\:text-textColors-primaryColor>p {
2029
+ color: var(--textColors-primaryColor, #121212ff);
2030
+ }
2031
+ .\[\&\>p\]\:text-textColors-secondaryColor>p {
2032
+ color: var(--textColors-secondaryColor, #727272ff);
2033
+ }
2034
+ .\[\&\>p\]\:\!line-through>p {
2035
+ text-decoration-line: line-through !important;
2036
+ }
2037
+ .hover\:\[\&\>p\]\:text-accent-foreground>p:hover {
2038
+ color: hsl(var(--accent-foreground));
2039
+ }
2040
+ .\[\&\[data-state\=open\]_svg\]\:rotate-180[data-state=open] svg {
1789
2041
  --tw-rotate: 180deg;
1790
2042
  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));
1791
2043
  }
2044
+ .\[\&_\*\]\:text-coreColors-pageColor * {
2045
+ color: var(--coreColors-pageColor);
2046
+ }
2047
+ .\[\&_\*\]\:text-textColors-primaryColor * {
2048
+ color: var(--textColors-primaryColor, #121212ff);
2049
+ }
2050
+ .\[\&_p\]\:text-stateColors-disabled p {
2051
+ color: var(--stateColors-disabled);
2052
+ }
2053
+ .\[\&_svg\]\:text-black svg {
2054
+ --tw-text-opacity: 1;
2055
+ color: rgb(0 0 0 / var(--tw-text-opacity));
2056
+ }
2057
+ .\[\&_svg\]\:text-buttonColors-primaryText svg {
2058
+ color: var(--buttonColors-primaryText);
2059
+ }
2060
+ .\[\&_svg\]\:text-buttonColors-secondaryText svg {
2061
+ color: var(--buttonColors-secondaryText);
2062
+ }
2063
+ .\[\&_svg\]\:text-coreColors-pageColor svg {
2064
+ color: var(--coreColors-pageColor);
2065
+ }
2066
+ .\[\&_svg\]\:text-textColors-primaryColor svg {
2067
+ color: var(--textColors-primaryColor, #121212ff);
2068
+ }
2069
+ .hover\:\[\&_svg\]\:text-accent-foreground svg:hover {
2070
+ color: hsl(var(--accent-foreground));
2071
+ }
2072
+ .active\:\[\&_svg\]\:text-stateColors-favorites svg:active {
2073
+ color: var(--stateColors-favorites);
2074
+ }