anegis-webflow-new 6.3.0 → 6.3.2
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.js +13 -13
- package/package.json +2 -1
- package/src/index.ts +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anegis-webflow-new",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.2",
|
|
4
4
|
"description": "Webflow development project for Anegis",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/ANEGIS/anegis-webflow-new#readme",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@finsweet/ts-utils": "^0.40.0",
|
|
45
|
+
"free-email-domains": "^1.9.23",
|
|
45
46
|
"gsap": "^3.14.2"
|
|
46
47
|
},
|
|
47
48
|
"engines": {
|
package/src/index.ts
CHANGED
|
@@ -2,28 +2,29 @@ import { initChallengeList } from '$utils/challengeList';
|
|
|
2
2
|
import { greetUser } from '$utils/greet';
|
|
3
3
|
|
|
4
4
|
import { initBlobAnimation } from './animations/BlobAnimation';
|
|
5
|
-
import { initCMSFlow } from './animations/CMSFlow';
|
|
6
5
|
import { initCircleArrowAnimation } from './animations/CircleArrowAnimation';
|
|
6
|
+
import { initCMSFlow } from './animations/CMSFlow';
|
|
7
7
|
import { initDecorAnimation } from './animations/DecorAnimation';
|
|
8
8
|
import { initMarquee, initMarqueeScroll } from './animations/Marquee';
|
|
9
9
|
import { initScrollLine } from './animations/ScrollLine';
|
|
10
10
|
import { initSectionHeaderAnimation } from './animations/SectionHeaderAnimation';
|
|
11
|
-
import { initTimelineAnimation } from './animations/TimelineAnimation';
|
|
12
11
|
import { initSmoothScroll } from './animations/SmoothScroll';
|
|
12
|
+
import { initTimelineAnimation } from './animations/TimelineAnimation';
|
|
13
13
|
import { initAccessibleButtons } from './components/buttons/AccessibleButtons';
|
|
14
|
-
import { initCustomCursor } from './components/cursor/CustomCursor';
|
|
15
14
|
import { initFaqCards } from './components/cards/FaqCards';
|
|
16
15
|
import { initProductCards } from './components/cards/ProductCards';
|
|
16
|
+
import { initCustomCursor } from './components/cursor/CustomCursor';
|
|
17
17
|
import { initAccessibleDropdown } from './components/dropdown/AccessibleDropdown';
|
|
18
18
|
import { initCaseStudyFilters } from './components/filters/CaseStudyFilters';
|
|
19
19
|
import { initSearchFilter } from './components/filters/SearchFilter';
|
|
20
|
+
import { initEbookDownload } from './components/forms/EbookDownload';
|
|
21
|
+
import { initEmailValidation } from './components/forms/EmailValidation';
|
|
22
|
+
import { initNipValidation } from './components/forms/NipValidation';
|
|
20
23
|
import { initNavAccessibility } from './components/layout/NavAccessibility';
|
|
21
24
|
import { initSmartNav } from './components/layout/SmartNav';
|
|
22
25
|
import { initLexicon } from './components/lexicon/Lexicon';
|
|
23
26
|
import { initMegaMenuAccordion } from './components/menu/MegaMenuAccordion';
|
|
24
27
|
import { initMobileNavScroll } from './components/menu/MobileNavScroll';
|
|
25
|
-
import { initEbookDownload } from './components/forms/EbookDownload';
|
|
26
|
-
import { initNipValidation } from './components/forms/NipValidation';
|
|
27
28
|
import { initFormModal } from './components/modal/FormModal';
|
|
28
29
|
import { initProductsModal } from './components/modal/ProductsModal';
|
|
29
30
|
import { initDockSliders } from './components/sliders/DockSlider';
|
|
@@ -48,6 +49,7 @@ window.Webflow.push(() => {
|
|
|
48
49
|
initFaqCards();
|
|
49
50
|
initProductCards();
|
|
50
51
|
initEbookDownload();
|
|
52
|
+
initEmailValidation();
|
|
51
53
|
initNipValidation();
|
|
52
54
|
initFormModal();
|
|
53
55
|
initProductsModal();
|
|
@@ -72,4 +74,3 @@ window.Webflow.push(() => {
|
|
|
72
74
|
initCaseStudyFilters();
|
|
73
75
|
initLexicon();
|
|
74
76
|
});
|
|
75
|
-
|