@harshit-wander/component-lib 1.1.0 → 1.1.1

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/index.cjs CHANGED
@@ -2807,6 +2807,94 @@ var TripsCategorySection = react.forwardRef(
2807
2807
  }
2808
2808
  );
2809
2809
  TripsCategorySection.displayName = "TripsCategorySection";
2810
+ var UCT_VIDEO_DEFAULT = "https://wanderon-video.gumlet.io/upcoming-community-trips-a.mp4";
2811
+ var UCT_POSTER_DEFAULT = "https://wanderon-images.gumlet.io/uct-thumbnail.jpg?updatedAt=1739361886945";
2812
+ var UctMobileBanner = react.forwardRef(
2813
+ ({
2814
+ href,
2815
+ videoUrl = UCT_VIDEO_DEFAULT,
2816
+ posterUrl = UCT_POSTER_DEFAULT,
2817
+ LinkComponent,
2818
+ className,
2819
+ ...rest
2820
+ }, ref) => {
2821
+ const Link = LinkComponent ?? "a";
2822
+ return /* @__PURE__ */ jsxRuntime.jsx(
2823
+ Link,
2824
+ {
2825
+ ref,
2826
+ href,
2827
+ className: cn(
2828
+ "flex justify-center no-underline outline-none select-none [-webkit-tap-highlight-color:transparent]",
2829
+ className
2830
+ ),
2831
+ ...rest,
2832
+ children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative w-full mx-4", children: [
2833
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute top-[-15px] left-[10px] w-[51px] h-[50px] rounded-full z-[6] [box-shadow:0px_4px_10px_0px_rgba(254,230,11,0.2)]", children: /* @__PURE__ */ jsxRuntime.jsx(
2834
+ "video",
2835
+ {
2836
+ src: videoUrl,
2837
+ poster: posterUrl,
2838
+ muted: true,
2839
+ loop: true,
2840
+ autoPlay: true,
2841
+ playsInline: true,
2842
+ className: "w-full h-full object-cover rounded-full"
2843
+ }
2844
+ ) }),
2845
+ /* @__PURE__ */ jsxRuntime.jsxs(
2846
+ "div",
2847
+ {
2848
+ className: "relative flex items-center justify-between overflow-hidden h-[60px] pl-[70px] pr-[10px] py-[10px] rounded-xl cursor-pointer",
2849
+ style: {
2850
+ background: "linear-gradient(90deg, #015f74 0%, #02b3da 100%)",
2851
+ boxShadow: "0px 4px 4px 0px rgba(1, 95, 116, 0.3) inset"
2852
+ },
2853
+ children: [
2854
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-[#f5fdff] text-base font-medium leading-7 font-[inherit]", children: "Upcoming Community Trips" }),
2855
+ /* @__PURE__ */ jsxRuntime.jsx(
2856
+ "span",
2857
+ {
2858
+ "aria-hidden": "true",
2859
+ className: "inline-flex",
2860
+ style: { animation: "uct-move-arrow 1.5s infinite" },
2861
+ children: /* @__PURE__ */ jsxRuntime.jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx(
2862
+ "path",
2863
+ {
2864
+ d: "M13 6L19 12L13 18M5 6L11 12L5 18",
2865
+ stroke: "white",
2866
+ strokeWidth: "1.5",
2867
+ strokeLinecap: "round",
2868
+ strokeLinejoin: "round"
2869
+ }
2870
+ ) })
2871
+ }
2872
+ ),
2873
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-[300px] h-[250px] pointer-events-none", children: [
2874
+ /* @__PURE__ */ jsxRuntime.jsx(
2875
+ "div",
2876
+ {
2877
+ className: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 rounded-full border border-[#ababab] w-0 h-0",
2878
+ style: { animation: "uct-pulse-one 2s infinite 0s ease-in-out" }
2879
+ }
2880
+ ),
2881
+ /* @__PURE__ */ jsxRuntime.jsx(
2882
+ "div",
2883
+ {
2884
+ className: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 rounded-full border border-[#ababab] w-0 h-0",
2885
+ style: { animation: "uct-pulse-two 2s infinite 1s ease-in-out" }
2886
+ }
2887
+ )
2888
+ ] })
2889
+ ]
2890
+ }
2891
+ )
2892
+ ] })
2893
+ }
2894
+ );
2895
+ }
2896
+ );
2897
+ UctMobileBanner.displayName = "UctMobileBanner";
2810
2898
  var ValuesSection = react.forwardRef(
2811
2899
  ({ heading: heading2, subheading, values, singleOpen = false, className, ...rest }, ref) => {
2812
2900
  const [openIndex, setOpenIndex] = react.useState(null);
@@ -3028,6 +3116,7 @@ exports.TestimonialsCarousel = TestimonialsCarousel;
3028
3116
  exports.TextSection = TextSection;
3029
3117
  exports.TripCategoryCard = TripCategoryCard;
3030
3118
  exports.TripsCategorySection = TripsCategorySection;
3119
+ exports.UctMobileBanner = UctMobileBanner;
3031
3120
  exports.ValuesSection = ValuesSection;
3032
3121
  exports.WarriorCard = WarriorCard;
3033
3122
  exports.WarriorsSection = WarriorsSection;