@fynd-design-engineering/fynd-one-v2 3.2.2 → 3.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.
@@ -1 +1 @@
1
- "use strict";(()=>{function t(){document.querySelectorAll('a[href="#footer-form"]').forEach(e=>{let n=e;n.href="/contact-us"})}document.addEventListener("DOMContentLoaded",t);document.readyState==="loading"?document.addEventListener("DOMContentLoaded",t):t();document.addEventListener("DOMContentLoaded",()=>{document.querySelectorAll("p > a > em").forEach(e=>{e.setAttribute("richtext-button","primary")})});})();
1
+ "use strict";(()=>{function o(){document.querySelectorAll('a[href="#footer-form"]').forEach(t=>{let e=t;e.href="/contact-us"})}document.addEventListener("DOMContentLoaded",o);document.readyState==="loading"?document.addEventListener("DOMContentLoaded",o):o();document.addEventListener("DOMContentLoaded",()=>{document.querySelectorAll("p > a > em").forEach(t=>{t.setAttribute("richtext-button","primary")})});document.addEventListener("DOMContentLoaded",()=>{setTimeout(()=>{function n(){let e=new URLSearchParams(window.location.search);e.set("referrer_domain",window.location.hostname),e.set("referrer_page",window.location.pathname),document.querySelectorAll('[href*="console.fynd.com"]').forEach(r=>{let a=new URL(r.href);e.forEach((c,s)=>{a.searchParams.set(s,c)}),r.href=a.toString()})}n()},100)});})();
@@ -0,0 +1 @@
1
+ "use strict";(()=>{document.addEventListener("DOMContentLoaded",()=>{let t=window.gsap;if(!t){console.error("GSAP is not loaded. Please ensure the GSAP CDN is included.");return}let n=document.querySelector('[data-popup-video="wrapper"]'),o=document.querySelector('[data-popup-video="content"]'),i=document.querySelector('[data-popup-video="overlay"]'),s=document.querySelectorAll('[data-popup-video-trigger="open"]'),c=document.querySelectorAll('[data-popup-video-trigger="close"]');if(n||console.error('Missing [data-popup-video="wrapper"] element.'),o||console.error('Missing [data-popup-video="content"] element.'),i||console.error('Missing [data-popup-video="overlay"] element.'),s.length||console.warn('No [data-popup-video="open-trigger"] elements found.'),c.length||console.warn('No [data-popup-video="close-trigger"] elements found.'),!n||!o||!i)return;t.set(n,{display:"none"}),t.set([i,o],{opacity:0}),t.set(o,{scale:.9});function p(){if(!o)return;let e=o.querySelector('video[data-popup-video="injected"]');if(e){try{e.pause(),e.removeAttribute("src"),e.querySelectorAll("source").forEach(r=>r.remove()),e.load()}catch{}e.remove()}}function f(e,r){let a=!!(e&&e.trim()),v=!!(r&&r.trim());if(!a&&!v)return console.error("openVideoModal requires at least one of linkMP4 or linkWebm."),null;let d=document.createElement("video");if(d.setAttribute("data-popup-video","injected"),d.setAttribute("playsinline",""),d.setAttribute("controls",""),d.setAttribute("autoplay",""),v){let l=document.createElement("source");l.src=r.trim(),l.type="video/webm",d.appendChild(l)}if(a){let l=document.createElement("source");l.src=e.trim(),l.type="video/mp4",d.appendChild(l)}return d}function u(e,r){if(!n||!o||!i){console.error("Modal elements missing. Cannot open modal.");return}p();let a=f(e,r);a&&(o.appendChild(a),t.set([i,o],{opacity:0}),t.set(o,{scale:.9}),t.set(n,{display:"flex"}),t.to(i,{opacity:1,duration:.3,ease:"power2.out"}),t.to(o,{opacity:1,scale:1,duration:.35,delay:.3,ease:"power2.out"}),console.log("Video modal opened."))}function m(){if(!n||!o||!i){console.error("Modal elements missing. Cannot close modal.");return}t.timeline({defaults:{ease:"power2.inOut"},onComplete:()=>{p(),t.set(n,{display:"none"}),console.log("Video modal closed.")}}).to(o,{opacity:0,scale:.9,duration:.25},0).to(i,{opacity:0,duration:.25},0)}s.forEach(e=>e.addEventListener("click",()=>{if(!n){console.error("Wrapper not found. Cannot open modal.");return}let r=e.getAttribute("data-video-mp4"),a=e.getAttribute("data-video-webm");u(r,a)})),c.forEach(e=>e.addEventListener("click",()=>{if(!n){console.error("Wrapper not found. Cannot close modal.");return}m()})),window.openVideoModal=u,window.closeVideoModal=m});})();
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../bin/live-reload.js", "../../src/global/popup-video.ts"],
4
+ "sourcesContent": ["// Only enable live reload when running on localhost\nif (\n window.location.hostname === \"localhost\" ||\n window.location.hostname === \"127.0.0.1\"\n) {\n new EventSource(`${SERVE_ORIGIN}/esbuild`).addEventListener(\"change\", () =>\n location.reload()\n );\n} else {\n console.log(\"Live reload disabled: not running on localhost\");\n}\n", "// Smooth video modal with GSAP\n// Assumes GSAP is loaded via CDN and available as a global `gsap`\n\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n const gsap = (window as any).gsap;\n if (!gsap) {\n console.error(\"GSAP is not loaded. Please ensure the GSAP CDN is included.\");\n return;\n }\n \n const wrapper = document.querySelector<HTMLElement>('[data-popup-video=\"wrapper\"]');\n const content = document.querySelector<HTMLElement>('[data-popup-video=\"content\"]');\n const overlay = document.querySelector<HTMLElement>('[data-popup-video=\"overlay\"]');\n \n const openTriggers = document.querySelectorAll<HTMLElement>('[data-popup-video-trigger=\"open\"]');\n const closeTriggers = document.querySelectorAll<HTMLElement>('[data-popup-video-trigger=\"close\"]');\n \n if (!wrapper) console.error('Missing [data-popup-video=\"wrapper\"] element.');\n if (!content) console.error('Missing [data-popup-video=\"content\"] element.');\n if (!overlay) console.error('Missing [data-popup-video=\"overlay\"] element.');\n if (!openTriggers.length) console.warn('No [data-popup-video=\"open-trigger\"] elements found.');\n if (!closeTriggers.length) console.warn('No [data-popup-video=\"close-trigger\"] elements found.');\n \n if (!wrapper || !content || !overlay) return;\n \n // Initial state\n gsap.set(wrapper, { display: \"none\" });\n gsap.set([overlay, content], { opacity: 0 });\n gsap.set(content, { scale: 0.9 });\n \n // Utility: remove any existing injected video\n function removeInjectedVideo(): void {\n if (!content) return;\n const existing = content.querySelector<HTMLVideoElement>('video[data-popup-video=\"injected\"]');\n if (existing) {\n try {\n existing.pause();\n // Fully release sources (helps some browsers stop network activity)\n existing.removeAttribute(\"src\");\n existing.querySelectorAll(\"source\").forEach((s) => s.remove());\n existing.load();\n } catch {}\n existing.remove();\n }\n }\n \n // Utility: create the video element (at least one src required)\n function createVideoElement(linkMP4?: string | null, linkWebm?: string | null): HTMLVideoElement | null {\n const hasMP4 = !!(linkMP4 && linkMP4.trim());\n const hasWebm = !!(linkWebm && linkWebm.trim());\n \n if (!hasMP4 && !hasWebm) {\n console.error(\"openVideoModal requires at least one of linkMP4 or linkWebm.\");\n return null;\n }\n \n const video = document.createElement(\"video\");\n video.setAttribute('data-popup-video', 'injected');\n video.setAttribute(\"playsinline\", \"\");\n video.setAttribute(\"controls\", \"\");\n video.setAttribute(\"autoplay\", \"\");\n // You can uncomment the next line if you want silent autoplay by default\n // video.muted = true;\n \n if (hasWebm) {\n const s = document.createElement(\"source\");\n s.src = linkWebm!.trim();\n s.type = \"video/webm\";\n video.appendChild(s);\n }\n \n if (hasMP4) {\n const s = document.createElement(\"source\");\n s.src = linkMP4!.trim();\n s.type = \"video/mp4\";\n video.appendChild(s);\n }\n \n return video;\n }\n \n function openVideoModal(linkMP4?: string | null, linkWebm?: string | null): void {\n if (!wrapper || !content || !overlay) {\n console.error(\"Modal elements missing. Cannot open modal.\");\n return;\n }\n \n // Inject/replace the video BEFORE animations begin\n removeInjectedVideo();\n const videoEl = createVideoElement(linkMP4, linkWebm);\n if (!videoEl) return; // do not open if no valid sources provided\n content.appendChild(videoEl);\n \n // Reset starting state on each open\n gsap.set([overlay, content], { opacity: 0 });\n gsap.set(content, { scale: 0.9 });\n \n // Show wrapper\n gsap.set(wrapper, { display: \"flex\" });\n \n // Animate overlay in\n gsap.to(overlay, {\n opacity: 1,\n duration: 0.3,\n ease: \"power2.out\",\n });\n \n // Animate content in with 0.2s delay\n gsap.to(content, {\n opacity: 1,\n scale: 1,\n duration: 0.35,\n delay: 0.3,\n ease: \"power2.out\",\n });\n \n console.log(\"Video modal opened.\");\n }\n \n function closeVideoModal(): void {\n if (!wrapper || !content || !overlay) {\n console.error(\"Modal elements missing. Cannot close modal.\");\n return;\n }\n \n // Reverse: fade/scale content down and fade overlay out\n const tl = gsap.timeline({\n defaults: { ease: \"power2.inOut\" },\n onComplete: () => {\n // Remove injected video after animation completes\n removeInjectedVideo();\n \n gsap.set(wrapper, { display: \"none\" });\n console.log(\"Video modal closed.\");\n },\n });\n \n tl.to(content, { opacity: 0, scale: 0.9, duration: 0.25 }, 0).to(overlay, { opacity: 0, duration: 0.25 }, 0);\n }\n \n // Bind triggers\n openTriggers.forEach((el) =>\n el.addEventListener(\"click\", () => {\n if (!wrapper) {\n console.error(\"Wrapper not found. Cannot open modal.\");\n return;\n }\n const mp4 = el.getAttribute(\"data-video-mp4\");\n const webm = el.getAttribute(\"data-video-webm\");\n openVideoModal(mp4, webm);\n })\n );\n \n closeTriggers.forEach((el) =>\n el.addEventListener(\"click\", () => {\n if (!wrapper) {\n console.error(\"Wrapper not found. Cannot close modal.\");\n return;\n }\n closeVideoModal();\n })\n );\n \n // Expose to window if you want to call manually\n (window as any).openVideoModal = openVideoModal;\n (window as any).closeVideoModal = closeVideoModal;\n });"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/navigation/theme.css"],
4
- "sourcesContent": ["/* Background */\n[style-nav-bg=\"transparent\"] {\n background-color: transparent;\n}\n[style-nav-bg=\"white\"] {\n background-color: #fff;\n backdrop-filter: blur(50px);\n /* background-color: white; */\n}\n[style-nav-bg=\"white-blur\"] {\n background-color: rgba(255, 255, 255, 0.8);\n backdrop-filter: blur(50px);\n}\n\n/* Logo */\n[style-nav-logo=\"black\"] {\n color: black;\n}\n[style-nav-logo=\"white\"] {\n color: white;\n}\n\n/* Links */\n[style-nav-link=\"black\"] {\n color: black;\n}\n[style-nav-link=\"white\"] {\n color: #A0A1A2;\n}\n[style-nav-link=\"white\"]:hover {\n color: white !important;\n }\n\n/* Tertiary Button */\n[style-nav-tertiary-button=\"black\"] {\n color: black;\n}\n\n[style-nav-tertiary-button=\"white\"] {\n color: white !important;\n}\n[style-nav-tertiary-button=\"white\"]:hover {\n opacity: 0.8;\n}\n\n/* Secondary Button */\n[style-nav-secondary-button=\"black\"]{\n color: black;\n border-color: #0000001f !important;\n}\n[style-nav-secondary-button=\"white\"] {\n color: white !important;\n border-color: #ffffff38 !important;\n}\n\n/* Primary Button */\n[style-nav-primary-button=\"black\"] {\n background-color : #141414;\n color: #ffffff !important;\n}\n[style-nav-primary-button=\"white\"] {\n background-color : #ffffff;\n color: #141414 !important;\n}\n[style-nav-primary-button=\"white\"]:hover {\n background-color: #fff;\n opacity: 0.8;\n}\n\n/* Nav toggle */\n[style-nav-toggle=\"black\"] {\n color: black;\n background-color: #fff;\n}\n[style-nav-toggle=\"white\"] {\n color: white;\n}\n\n/* Body */\n[style-body-bg=\"white\"] {\n background-color: white;\n}\n[style-body-bg=\"black\"] {\n background-color: #0e0e0e;\n}"],
5
- "mappings": ";AACA,CAAC;AACC,oBAAkB;AACpB;AACA,CAAC;AACG,oBAAkB;AAClB,mBAAiB,KAAK;AAE1B;AACA,CAAC;AACC,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,mBAAiB,KAAK;AACxB;AAGA,CAAC;AACC,SAAO;AACT;AACA,CAAC;AACC,SAAO;AACT;AAGA,CAAC;AACC,SAAO;AACT;AACA,CAAC;AACC,SAAO;AACT;AACA,CAAC,qBAAuB;AACpB,SAAO;AACT;AAGF,CAAC;AACC,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACT;AACA,CAAC,gCAAkC;AACjC,WAAS;AACX;AAGA,CAAC;AACG,SAAO;AACP,gBAAc;AAClB;AACA,CAAC;AACC,SAAO;AACP,gBAAc;AAChB;AAGA,CAAC;AACG,oBAAmB;AACnB,SAAO;AACX;AACA,CAAC;AACG,oBAAmB;AACnB,SAAO;AACX;AACA,CAAC,+BAAiC;AAC9B,oBAAkB;AAClB,WAAS;AACb;AAGA,CAAC;AACG,SAAO;AACP,oBAAkB;AACtB;AACA,CAAC;AACG,SAAO;AACX;AAGA,CAAC;AACG,oBAAkB;AACtB;AACA,CAAC;AACG,oBAAkB;AACtB;",
4
+ "sourcesContent": ["/* Background */\n[style-nav-bg=\"transparent\"] {\n background-color: transparent;\n}\n[style-nav-bg=\"white\"] {\n background-color: #fff;\n backdrop-filter: blur(50px);\n /* background-color: white; */\n}\n[style-nav-bg=\"white-blur\"] {\n background-color: rgba(255, 255, 255, 0.8);\n backdrop-filter: blur(50px);\n}\n\n/* Logo */\n[style-nav-logo=\"black\"] {\n color: black;\n}\n[style-nav-logo=\"white\"] {\n color: white;\n}\n\n/* Links */\n[style-nav-link=\"black\"] {\n color: black;\n}\n[style-nav-link=\"white\"] {\n color: #A0A1A2;\n}\n[style-nav-link=\"white\"]:hover {\n color: white !important;\n }\n\n/* Tertiary Button */\n[style-nav-tertiary-button=\"black\"] {\n color: black;\n}\n\n[style-nav-tertiary-button=\"white\"] {\n color: white !important;\n}\n[style-nav-tertiary-button=\"white\"]:hover {\n opacity: 0.8;\n}\n\n/* Secondary Button */\n[style-nav-secondary-button=\"black\"]{\n color: black;\n border-color: #0000001f !important;\n}\n[style-nav-secondary-button=\"white\"] {\n color: white !important;\n border-color: #ffffff38 !important;\n}\n\n/* Primary Button */\n[style-nav-primary-button=\"black\"] {\n background-color : #141414;\n color: #ffffff !important;\n}\n[style-nav-primary-button=\"white\"] {\n background-color : #ffffff;\n color: #141414 !important;\n}\n[style-nav-primary-button=\"white\"]:hover {\n background-color: #fff;\n opacity: 0.8;\n}\n\n/* Nav toggle */\n[style-nav-toggle=\"black\"] {\n color: black;\n}\n[style-nav-toggle=\"white\"] {\n color: white;\n}\n\n/* Body */\n[style-body-bg=\"white\"] {\n background-color: white;\n}\n[style-body-bg=\"black\"] {\n background-color: #0e0e0e;\n}"],
5
+ "mappings": ";AACA,CAAC;AACC,oBAAkB;AACpB;AACA,CAAC;AACG,oBAAkB;AAClB,mBAAiB,KAAK;AAE1B;AACA,CAAC;AACC,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,mBAAiB,KAAK;AACxB;AAGA,CAAC;AACC,SAAO;AACT;AACA,CAAC;AACC,SAAO;AACT;AAGA,CAAC;AACC,SAAO;AACT;AACA,CAAC;AACC,SAAO;AACT;AACA,CAAC,qBAAuB;AACpB,SAAO;AACT;AAGF,CAAC;AACC,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACT;AACA,CAAC,gCAAkC;AACjC,WAAS;AACX;AAGA,CAAC;AACG,SAAO;AACP,gBAAc;AAClB;AACA,CAAC;AACC,SAAO;AACP,gBAAc;AAChB;AAGA,CAAC;AACG,oBAAmB;AACnB,SAAO;AACX;AACA,CAAC;AACG,oBAAmB;AACnB,SAAO;AACX;AACA,CAAC,+BAAiC;AAC9B,oBAAkB;AAClB,WAAS;AACb;AAGA,CAAC;AACG,SAAO;AACX;AACA,CAAC;AACG,SAAO;AACX;AAGA,CAAC;AACG,oBAAkB;AACtB;AACA,CAAC;AACG,oBAAkB;AACtB;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fynd-design-engineering/fynd-one-v2",
3
- "version": "3.2.2",
3
+ "version": "3.2.4",
4
4
  "description": "Updated CDN for fynd.com",
5
5
  "homepage": "https://github.com/Fynd-Design-Engineering/Fynd-Utils/blob/main/README.md",
6
6
  "license": "ISC",