@fynd-design-engineering/fynd-one-v2 3.4.61 → 3.4.63
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/accordians/dropdown.js +95 -1
- package/dist/accordians/index.js +391 -1
- package/dist/cms-listing/index.js +24 -1
- package/dist/filters/clear-search.js +32 -1
- package/dist/filters/konnect.js +165 -1
- package/dist/filters/show-count.js +66 -1
- package/dist/form/country-dropdown.css +160 -1
- package/dist/form/cs-gated-redirection.js +40 -1
- package/dist/form/download-file.js +70 -1
- package/dist/form/validation.css +1019 -1
- package/dist/form/validation.js +10611 -7
- package/dist/global/anchor-scroll.js +174 -1
- package/dist/global/auth.js +87 -1
- package/dist/global/chat.js +185 -1
- package/dist/global/console-links.js +89 -1
- package/dist/global/contact-popup.js +83 -2
- package/dist/global/css/in-page-embed.css +1043 -1
- package/dist/global/css/in-project-settings.css +173 -1
- package/dist/global/css/temp.css +89 -1
- package/dist/global/custom-bg-video.js +40 -1
- package/dist/global/footer-accordion.js +44 -1
- package/dist/global/lazy-loader.js +135 -1
- package/dist/global/loader.js +166 -2
- package/dist/global/media-card.js +166 -1
- package/dist/global/miscellaneous.js +136 -1
- package/dist/global/number-count.js +82 -1
- package/dist/global/popup-video.js +276 -1
- package/dist/global/progressive-scroll.js +222 -1
- package/dist/global/responsive-video.js +321 -1
- package/dist/global/style.css +1065 -1
- package/dist/global/video-card.js +50 -1
- package/dist/hacktimus/2025.js +177 -1
- package/dist/hacktimus/styles.css +91 -1
- package/dist/home/index.js +17 -1
- package/dist/marquee/index.js +3104 -1
- package/dist/marquee/marquee-swiper.js +36 -1
- package/dist/navigation/announcement/index.js +5169 -1
- package/dist/navigation/context-menu/index.js +31 -1
- package/dist/navigation/desktop/index.js +4603 -1
- package/dist/navigation/initialization.js +602 -1
- package/dist/navigation/main.js +4911 -1
- package/dist/navigation/mobile/index.js +286 -1
- package/dist/navigation/scroll/index.js +62 -1
- package/dist/navigation/secondary-navigation/index.js +437 -1
- package/dist/navigation/style.css +154 -1
- package/dist/navigation/temp.css +2 -0
- package/dist/navigation/theme.css +69 -1
- package/dist/navigation-v2/index.js +4990 -1
- package/dist/navigation-v2/styles.css +233 -1
- package/dist/others/feature-detail.js +75 -0
- package/dist/others/feature-detail.js.map +7 -0
- package/dist/others/geolocation.js +50 -1
- package/dist/others/hero-aniamtion.js +53 -1
- package/dist/others/hero-india-animation-2.js +70 -1
- package/dist/others/hero-india-animation.js +93 -1
- package/dist/others/home-solution-tab.js +115 -1
- package/dist/others/storefront-chat/index.js +487 -1
- package/dist/others/storefront-chat/styles.css +107 -1
- package/dist/playbook-2026/hero-reveal.js +47 -1
- package/dist/playbook-2026/index.js +536 -1
- package/dist/playbook-2026/styles.css +110 -1
- package/dist/posthog-and-ga/attributes.js +190 -1
- package/dist/posthog-and-ga/main.js +528 -1
- package/dist/progressive-scroll/index.js +147 -1
- package/dist/quick-fix/reload.js +22 -1
- package/dist/seo/schema.js +465 -1
- package/dist/slider/freescroll.js +34 -1
- package/dist/test/sample.js +15 -1
- package/dist/testimonials/index.js +2654 -1
- package/dist/timeline/index.js +160 -1
- package/dist/timeline/style.css +42 -1
- package/dist/tracking/custom-id.js +75 -1
- package/dist/tracking/fill-form-fields.js +238 -1
- package/dist/tracking/fill-form-fields.js.map +2 -2
- package/dist/tracking/form-tracker.js +146 -1
- package/dist/tracking/page-categories.js +20 -1
- package/dist/tracking/user-journey.js +839 -1
- package/dist/tracking/utm-links.js +194 -1
- package/dist/utils/sample.js +17 -1
- package/dist/validations/localhost.js +221 -1
- package/package.json +1 -1
|
@@ -1 +1,107 @@
|
|
|
1
|
-
|
|
1
|
+
/* src/others/storefront-chat/styles.css */
|
|
2
|
+
[fynd-storefront-chat=input] {
|
|
3
|
+
border: none;
|
|
4
|
+
outline: none;
|
|
5
|
+
width: 100%;
|
|
6
|
+
white-space: nowrap;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
pointer-events: auto;
|
|
9
|
+
}
|
|
10
|
+
[fynd-storefront-chat=input-container] {
|
|
11
|
+
transform: translate(0px, 100px);
|
|
12
|
+
}
|
|
13
|
+
[fynd-storefront-chat=window] {
|
|
14
|
+
position: absolute !important;
|
|
15
|
+
z-index: 5;
|
|
16
|
+
transform-origin: bottom center;
|
|
17
|
+
pointer-events: auto;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
transform: scale(0);
|
|
20
|
+
display: block;
|
|
21
|
+
}
|
|
22
|
+
[fynd-storefront-chat=window-overlay] {
|
|
23
|
+
pointer-events: auto;
|
|
24
|
+
opacity: 0;
|
|
25
|
+
display: none;
|
|
26
|
+
}
|
|
27
|
+
[fynd-storefront-chat=wrapper] {
|
|
28
|
+
pointer-events: none;
|
|
29
|
+
display: flex;
|
|
30
|
+
}
|
|
31
|
+
[fynd-storefront-chat=input-ghost] {
|
|
32
|
+
position: absolute;
|
|
33
|
+
visibility: hidden;
|
|
34
|
+
white-space: nowrap;
|
|
35
|
+
font-size: 16px;
|
|
36
|
+
font-family: sans-serif;
|
|
37
|
+
}
|
|
38
|
+
[fynd-storefront-chat=input]::placeholder {
|
|
39
|
+
color: white;
|
|
40
|
+
}
|
|
41
|
+
[fynd-storefront-chat=input]:focus {
|
|
42
|
+
box-shadow: 0 0 0 6px #00000020;
|
|
43
|
+
}
|
|
44
|
+
[fynd-storefront-chat=input],
|
|
45
|
+
[fynd-storefront-chat=input]::placeholder,
|
|
46
|
+
[fynd-storefront-chat=icon],
|
|
47
|
+
[fynd-storefront-chat=button] {
|
|
48
|
+
transition: all 0.4s ease;
|
|
49
|
+
}
|
|
50
|
+
[fynd-storefront-chat=button][fynd-storefront-chat-active=false] {
|
|
51
|
+
background-color: transparent;
|
|
52
|
+
color: #ffffff;
|
|
53
|
+
border: 1px solid #ffffffb3;
|
|
54
|
+
}
|
|
55
|
+
@media screen and (max-width: 479px) {
|
|
56
|
+
[fynd-storefront-chat=input] {
|
|
57
|
+
width: 80vw;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
#dynamicInput::placeholder {
|
|
61
|
+
color: red;
|
|
62
|
+
}
|
|
63
|
+
#placeholderText {
|
|
64
|
+
color: #A0A1A2;
|
|
65
|
+
pointer-events: none;
|
|
66
|
+
}
|
|
67
|
+
.chroma-text {
|
|
68
|
+
background-image:
|
|
69
|
+
linear-gradient(
|
|
70
|
+
90deg,
|
|
71
|
+
#000000 0,
|
|
72
|
+
#000000 33.33%,
|
|
73
|
+
#4E52F2 40%,
|
|
74
|
+
#DD9DFF 45%,
|
|
75
|
+
#E3A4A8 50%,
|
|
76
|
+
#50C0FE 55%,
|
|
77
|
+
#1E31FC 60%,
|
|
78
|
+
transparent 66.67%,
|
|
79
|
+
transparent);
|
|
80
|
+
background-size: 300% 100%;
|
|
81
|
+
background-position: 100% 0;
|
|
82
|
+
-webkit-background-clip: text;
|
|
83
|
+
background-clip: text;
|
|
84
|
+
-webkit-text-fill-color: transparent;
|
|
85
|
+
text-fill-color: transparent;
|
|
86
|
+
color: transparent;
|
|
87
|
+
}
|
|
88
|
+
.chroma-text[data-animate=true] {
|
|
89
|
+
animation: chroma-sweep 1.5s ease-in-out forwards;
|
|
90
|
+
filter: blur(1px);
|
|
91
|
+
}
|
|
92
|
+
@keyframes chroma-sweep {
|
|
93
|
+
0% {
|
|
94
|
+
background-position: 100% 0;
|
|
95
|
+
filter: blur(1px);
|
|
96
|
+
}
|
|
97
|
+
to {
|
|
98
|
+
background-position: 0 0;
|
|
99
|
+
filter: blur(0);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
@media screen and (max-width: 767px) {
|
|
103
|
+
[fynd-storefront-chat=wrapper] {
|
|
104
|
+
display: none;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
/*# sourceMappingURL=styles.css.map */
|
|
@@ -1 +1,47 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
(() => {
|
|
3
|
+
// bin/live-reload.js
|
|
4
|
+
if (window.location.hostname === "localhost" || window.location.hostname === "127.0.0.1") {
|
|
5
|
+
new EventSource(`${"http://localhost:3000"}/esbuild`).addEventListener(
|
|
6
|
+
"change",
|
|
7
|
+
() => location.reload()
|
|
8
|
+
);
|
|
9
|
+
} else {
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// src/playbook-2026/hero-reveal.ts
|
|
13
|
+
document.addEventListener("DOMContentLoaded", () => {
|
|
14
|
+
const gsap = window.gsap;
|
|
15
|
+
if (!gsap) {
|
|
16
|
+
console.error("ERROR: GSAP not loaded!");
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
const grid = document.querySelector("[playbook-desktop-grid]");
|
|
20
|
+
const cells = grid?.querySelectorAll("[playbook-cell]");
|
|
21
|
+
console.log(cells);
|
|
22
|
+
if (!cells) {
|
|
23
|
+
console.warn("No playbook-cell elements found");
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
gsap.set(cells, {
|
|
27
|
+
opacity: 0,
|
|
28
|
+
scale: 0.5
|
|
29
|
+
});
|
|
30
|
+
const tl = gsap.timeline();
|
|
31
|
+
cells.forEach((cell) => {
|
|
32
|
+
const randomDelay = Math.random() * 0.6;
|
|
33
|
+
tl.to(
|
|
34
|
+
cell,
|
|
35
|
+
{
|
|
36
|
+
duration: 0.8,
|
|
37
|
+
opacity: 1,
|
|
38
|
+
scale: 1,
|
|
39
|
+
ease: "power4.out"
|
|
40
|
+
},
|
|
41
|
+
randomDelay
|
|
42
|
+
);
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
console.log("Hero reveal animation loaded");
|
|
46
|
+
})();
|
|
47
|
+
//# sourceMappingURL=hero-reveal.js.map
|