anegis-webflow-new 6.3.1 → 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 +9 -9
- package/package.json +1 -1
- package/src/index.ts +6 -8
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -2,29 +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 { initEmailValidation } from './components/forms/EmailValidation';
|
|
27
|
-
import { initNipValidation } from './components/forms/NipValidation';
|
|
28
28
|
import { initFormModal } from './components/modal/FormModal';
|
|
29
29
|
import { initProductsModal } from './components/modal/ProductsModal';
|
|
30
30
|
import { initDockSliders } from './components/sliders/DockSlider';
|
|
@@ -74,5 +74,3 @@ window.Webflow.push(() => {
|
|
|
74
74
|
initCaseStudyFilters();
|
|
75
75
|
initLexicon();
|
|
76
76
|
});
|
|
77
|
-
|
|
78
|
-
|