@courtneyring/components-library 1.0.30 → 1.0.31

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.
Files changed (100) hide show
  1. package/dist/AccordionItem-BlVXPxrh.js +40 -0
  2. package/dist/ScrollTrigger-6HnikosL.js +1086 -0
  3. package/dist/animations/FadeIn.js +8 -7
  4. package/dist/assets/AccordionItem.css +1 -1
  5. package/dist/assets/Background.css +1 -1
  6. package/dist/assets/Banner.css +1 -1
  7. package/dist/assets/Button.css +1 -1
  8. package/dist/assets/ButtonGroup.css +1 -0
  9. package/dist/assets/Container.css +1 -1
  10. package/dist/assets/Countdown.css +1 -1
  11. package/dist/assets/Fifty.css +1 -1
  12. package/dist/assets/FloatingWordsHero.css +1 -0
  13. package/dist/assets/Footer.css +1 -1
  14. package/dist/assets/GenericOverlay.css +1 -1
  15. package/dist/assets/IconDetail.css +1 -1
  16. package/dist/assets/ImageTextBlock.css +1 -1
  17. package/dist/assets/List.css +1 -1
  18. package/dist/assets/Map.css +1 -0
  19. package/dist/assets/MenuButton.css +1 -1
  20. package/dist/assets/Navbar.css +1 -1
  21. package/dist/assets/Note.css +1 -1
  22. package/dist/assets/OverlayHero.css +1 -1
  23. package/dist/assets/PageContainer.css +1 -1
  24. package/dist/assets/PinnedImage.css +1 -1
  25. package/dist/assets/PromoGroup.css +1 -1
  26. package/dist/assets/RSVPEmbed.css +1 -1
  27. package/dist/assets/Schedule.css +1 -1
  28. package/dist/assets/TextBlock.css +1 -1
  29. package/dist/components/Accordion/Accordion.js +1 -1
  30. package/dist/components/Accordion/AccordionItem.js +2 -2
  31. package/dist/components/Background/Background.js +24 -22
  32. package/dist/components/Banner/Banner.js +16 -14
  33. package/dist/components/BorderedBackground/BorderedBackground.js +1 -1
  34. package/dist/components/Button/Button.js +34 -27
  35. package/dist/components/ButtonGroup/ButtonGroup.js +10 -0
  36. package/dist/components/Container/Container.js +18 -17
  37. package/dist/components/Countdown/Countdown.js +35 -23
  38. package/dist/components/Fifty/Fifty.js +41 -33
  39. package/dist/components/FloatingWordsHero/FloatingWordsHero.js +30 -0
  40. package/dist/components/Footer/Footer.js +9 -9
  41. package/dist/components/GenericOverlay/GenericOverlay.js +13 -13
  42. package/dist/components/GridGallery/GridGallery.js +1 -1
  43. package/dist/components/HorizontalScrollImages/HorizontalScrollImages.js +13 -12
  44. package/dist/components/IconDetail/IconDetail.js +8 -8
  45. package/dist/components/ImageTextBlock/ImageTextBlock.js +27 -25
  46. package/dist/components/List/List.js +15 -15
  47. package/dist/components/Map/Map.js +41 -0
  48. package/dist/components/Map/Map.stories.js +16 -0
  49. package/dist/components/MenuButton/MenuButton.js +21 -21
  50. package/dist/components/Navbar/Navbar.js +50 -43
  51. package/dist/components/Note/Note.js +26 -22
  52. package/dist/components/Overlay/Overlay.js +1 -1
  53. package/dist/components/OverlayHero/OverlayHero.js +5 -5
  54. package/dist/components/PageContainer/PageContainer.js +5 -5
  55. package/dist/components/ParallaxImageGrid/ParallaxImageGrid.js +4 -3
  56. package/dist/components/PinnedImage/PinnedImage.js +34 -33
  57. package/dist/components/PromoGroup/PromoGroup.js +98 -51
  58. package/dist/components/RSVPEmbed/RSVPEmbed.js +9 -8
  59. package/dist/components/Schedule/Schedule.js +10 -10
  60. package/dist/components/Spacer/Spacer.js +6 -0
  61. package/dist/components/TextBlock/TextBlock.js +18 -18
  62. package/dist/components/Timeline/Timeline.js +12 -11
  63. package/dist/components/Toolbar/Toolbar.js +43 -15
  64. package/dist/hooks/useActiveSection 2.js +27 -0
  65. package/dist/hooks/useFadeIn 2.js +52 -0
  66. package/dist/hooks/useFadeIn.js +17 -16
  67. package/dist/hooks/useNavColor 2.js +15 -0
  68. package/dist/hooks/useRepeatable 2.js +32 -0
  69. package/dist/hooks/useResize 2.js +19 -0
  70. package/dist/hooks/useResponsive 2.js +15 -0
  71. package/dist/hooks/useReveal 2.js +38 -0
  72. package/dist/hooks/useReveal.js +38 -0
  73. package/dist/hooks/useStagger 2.js +43 -0
  74. package/dist/hooks/useStagger.js +43 -0
  75. package/dist/{index-BIlioXmW.js → index-B2JRaoNz 2.js } +2 -1
  76. package/dist/index-B2JRaoNz.js +48 -0
  77. package/dist/index-BmTo-IS6.js +2018 -0
  78. package/dist/{index-BlCqcUwj.js → index-K0WrPJ_C.js} +1 -1
  79. package/dist/index.js +42 -46
  80. package/dist/index.modern-DPbS1w7M.js +1443 -0
  81. package/dist/presets/animations 3.js +19 -0
  82. package/dist/presets/animations.js +19 -0
  83. package/dist/utils/breakpoints 3.js +8 -0
  84. package/dist/utils/gsapSetup 3.js +8 -0
  85. package/dist/utils/gsapSetup.js +4 -3
  86. package/dist/utils/parse 3.js +12 -0
  87. package/dist/utils/parse.js +7 -7
  88. package/package.json +8 -4
  89. package/src/styles/_breakpoints.scss +107 -0
  90. package/src/styles/_colors.scss +50 -0
  91. package/src/styles/_fonts.scss +241 -0
  92. package/src/styles/_mixins.scss +114 -0
  93. package/src/styles/_sizes.scss +191 -0
  94. package/src/styles/globals.scss +77 -0
  95. package/src/styles/index.scss +1 -0
  96. package/src/styles/variables.module.scss +20 -0
  97. package/dist/AccordionItem-DuHzStoZ.js +0 -40
  98. package/dist/Particles-CKNJUrOc.js +0 -2789
  99. package/dist/ScrollTrigger-DDbij8gI.js +0 -3102
  100. package/dist/components/ParticleBackground/ParticleBackground.js +0 -31
@@ -0,0 +1,38 @@
1
+ import { useRef as g, useEffect as d } from "react";
2
+ import { g as r } from "../index-BmTo-IS6.js";
3
+ import { S as s } from "../ScrollTrigger-6HnikosL.js";
4
+ function h(o = {}) {
5
+ const t = g(null);
6
+ return d(() => {
7
+ const e = t.current;
8
+ if (!e) return;
9
+ const {
10
+ from: c = { opacity: 0, y: 30 },
11
+ to: n = { opacity: 1, y: 0, duration: 0.6, ease: "power2.out" },
12
+ start: i = "top 85%",
13
+ once: f = !0,
14
+ delay: a = 0
15
+ } = o, l = window.matchMedia(
16
+ "(prefers-reduced-motion: reduce)"
17
+ ).matches, u = r.context(() => {
18
+ if (l) {
19
+ r.set(e, n);
20
+ return;
21
+ }
22
+ r.fromTo(e, c, {
23
+ ...n,
24
+ delay: a,
25
+ scrollTrigger: {
26
+ trigger: o.trigger ?? e,
27
+ start: i,
28
+ toggleActions: f ? "play none none none" : "play none none reverse",
29
+ onEnter: () => console.log("ScrollTrigger fired for:", e)
30
+ }
31
+ });
32
+ });
33
+ return window.addEventListener("load", () => s.refresh()), setTimeout(() => s.refresh(), 500), () => u.revert();
34
+ }, []), t;
35
+ }
36
+ export {
37
+ h as useReveal
38
+ };
@@ -0,0 +1,43 @@
1
+ import { useRef as g, useEffect as l } from "react";
2
+ import { g as e } from "../index-BmTo-IS6.js";
3
+ function y(c, i = {}, n = {}, r = !0) {
4
+ const o = g(null);
5
+ return l(() => {
6
+ if (!r) return;
7
+ const t = o.current;
8
+ if (!t) return;
9
+ const u = window.matchMedia(
10
+ "(prefers-reduced-motion: reduce)"
11
+ ).matches, { scrollTrigger: a, ...f } = n, p = e.context(() => {
12
+ const s = e.utils.toArray(c, t);
13
+ if (u) {
14
+ e.set(s, { opacity: 1, y: 0, scale: 1 });
15
+ return;
16
+ }
17
+ e.fromTo(
18
+ s,
19
+ { opacity: 0, y: 20, scale: 0.98, ...i },
20
+ {
21
+ opacity: 1,
22
+ y: 0,
23
+ scale: 1,
24
+ stagger: 0.1,
25
+ duration: 0.5,
26
+ ease: "power2.out",
27
+ ...f,
28
+ scrollTrigger: {
29
+ trigger: t,
30
+ // ← always keep el as trigger
31
+ start: "top 85%",
32
+ ...a
33
+ // ← merge in start/other overrides on top
34
+ }
35
+ }
36
+ );
37
+ }, t);
38
+ return () => p.revert();
39
+ }, [r]), o;
40
+ }
41
+ export {
42
+ y as useStagger
43
+ };
@@ -0,0 +1,43 @@
1
+ import { useRef as g, useEffect as l } from "react";
2
+ import { g as e } from "../index-BmTo-IS6.js";
3
+ function y(c, i = {}, n = {}, r = !0) {
4
+ const o = g(null);
5
+ return l(() => {
6
+ if (!r) return;
7
+ const t = o.current;
8
+ if (!t) return;
9
+ const u = window.matchMedia(
10
+ "(prefers-reduced-motion: reduce)"
11
+ ).matches, { scrollTrigger: a, ...f } = n, p = e.context(() => {
12
+ const s = e.utils.toArray(c, t);
13
+ if (u) {
14
+ e.set(s, { opacity: 1, y: 0, scale: 1 });
15
+ return;
16
+ }
17
+ e.fromTo(
18
+ s,
19
+ { opacity: 0, y: 20, scale: 0.98, ...i },
20
+ {
21
+ opacity: 1,
22
+ y: 0,
23
+ scale: 1,
24
+ stagger: 0.1,
25
+ duration: 0.5,
26
+ ease: "power2.out",
27
+ ...f,
28
+ scrollTrigger: {
29
+ trigger: t,
30
+ // ← always keep el as trigger
31
+ start: "top 85%",
32
+ ...a
33
+ // ← merge in start/other overrides on top
34
+ }
35
+ }
36
+ );
37
+ }, t);
38
+ return () => p.revert();
39
+ }, [r]), o;
40
+ }
41
+ export {
42
+ y as useStagger
43
+ };
@@ -43,5 +43,6 @@ function p() {
43
43
  var l = p();
44
44
  const m = /* @__PURE__ */ c(l);
45
45
  export {
46
- m as c
46
+ m as c,
47
+ c as g
47
48
  };
@@ -0,0 +1,48 @@
1
+ function c(e) {
2
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
3
+ }
4
+ var o = { exports: {} };
5
+ /*!
6
+ Copyright (c) 2018 Jed Watson.
7
+ Licensed under the MIT License (MIT), see
8
+ http://jedwatson.github.io/classnames
9
+ */
10
+ var i;
11
+ function p() {
12
+ return i || (i = 1, (function(e) {
13
+ (function() {
14
+ var u = {}.hasOwnProperty;
15
+ function s() {
16
+ for (var t = "", r = 0; r < arguments.length; r++) {
17
+ var n = arguments[r];
18
+ n && (t = a(t, f(n)));
19
+ }
20
+ return t;
21
+ }
22
+ function f(t) {
23
+ if (typeof t == "string" || typeof t == "number")
24
+ return t;
25
+ if (typeof t != "object")
26
+ return "";
27
+ if (Array.isArray(t))
28
+ return s.apply(null, t);
29
+ if (t.toString !== Object.prototype.toString && !t.toString.toString().includes("[native code]"))
30
+ return t.toString();
31
+ var r = "";
32
+ for (var n in t)
33
+ u.call(t, n) && t[n] && (r = a(r, n));
34
+ return r;
35
+ }
36
+ function a(t, r) {
37
+ return r ? t ? t + " " + r : t + r : t;
38
+ }
39
+ e.exports ? (s.default = s, e.exports = s) : window.classNames = s;
40
+ })();
41
+ })(o)), o.exports;
42
+ }
43
+ var l = p();
44
+ const m = /* @__PURE__ */ c(l);
45
+ export {
46
+ m as c,
47
+ c as g
48
+ };