@morphika/andami 0.5.7 → 0.5.8

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.
@@ -11,13 +11,14 @@ import {
11
11
  TypographyEditor,
12
12
  ColorsEditor,
13
13
  LinksButtonsEditor,
14
+ CursorEditor,
14
15
  } from "../../../components/admin/styles";
15
16
 
16
17
  // ============================================
17
18
  // Tab definitions
18
19
  // ============================================
19
20
 
20
- type TabId = "grid" | "typography" | "colors" | "buttons";
21
+ type TabId = "grid" | "typography" | "colors" | "buttons" | "cursor";
21
22
 
22
23
  function TabIcon({ id, size = 15 }: { id: TabId; size?: number }) {
23
24
  const props = { width: size, height: size, viewBox: "0 0 24 24", fill: "none" as const, stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round" as const, strokeLinejoin: "round" as const };
@@ -56,6 +57,12 @@ function TabIcon({ id, size = 15 }: { id: TabId; size?: number }) {
56
57
  <line x1="8" y1="12" x2="16" y2="12" />
57
58
  </svg>
58
59
  );
60
+ case "cursor":
61
+ return (
62
+ <svg {...props}>
63
+ <path d="M5 3l6 16 2-7 7-2z" />
64
+ </svg>
65
+ );
59
66
  }
60
67
  }
61
68
 
@@ -64,6 +71,7 @@ const TABS: { id: TabId; label: string }[] = [
64
71
  { id: "typography", label: "Typography" },
65
72
  { id: "colors", label: "Colors" },
66
73
  { id: "buttons", label: "Buttons & Links" },
74
+ { id: "cursor", label: "Mouse" },
67
75
  ];
68
76
 
69
77
  // ============================================
@@ -238,6 +246,14 @@ export default function AdminStylesPage() {
238
246
  saving={saving === "links"}
239
247
  />
240
248
  )}
249
+
250
+ {activeTab === "cursor" && (
251
+ <CursorEditor
252
+ cursor={styles?.cursor}
253
+ onSave={(data) => saveSection("cursor", data)}
254
+ saving={saving === "cursor"}
255
+ />
256
+ )}
241
257
  </div>
242
258
  );
243
259
  }
@@ -137,6 +137,11 @@ export async function GET() {
137
137
  secondary_text: styles.button_secondary_text || "#ffffff",
138
138
  border_radius: styles.button_border_radius || "8px",
139
139
  },
140
+ cursor: {
141
+ color: styles.cursor_color || "#3580f9",
142
+ opacity: typeof styles.cursor_opacity === "number" ? styles.cursor_opacity : 100,
143
+ show_labels: !!styles.cursor_show_labels,
144
+ },
140
145
  disable_scroll_animations_mobile: styles.disable_scroll_animations_mobile ?? false,
141
146
  };
142
147
 
@@ -176,7 +181,7 @@ export async function POST(request: NextRequest) {
176
181
  );
177
182
  }
178
183
 
179
- const validSections = ["grid", "fonts", "typography", "colors", "links"];
184
+ const validSections = ["grid", "fonts", "typography", "colors", "links", "cursor", "animations"];
180
185
  if (!validSections.includes(section)) {
181
186
  return NextResponse.json(
182
187
  { error: `Invalid section: ${section}` },
@@ -286,6 +291,18 @@ export async function POST(request: NextRequest) {
286
291
  }
287
292
  break;
288
293
  }
294
+
295
+ case "cursor": {
296
+ if (data.cursor_color !== undefined) patch.cursor_color = String(data.cursor_color);
297
+ if (data.cursor_opacity !== undefined) {
298
+ const n = Number(data.cursor_opacity);
299
+ patch.cursor_opacity = Number.isFinite(n) ? Math.max(0, Math.min(100, n)) : 100;
300
+ }
301
+ if (data.cursor_show_labels !== undefined) {
302
+ patch.cursor_show_labels = !!data.cursor_show_labels;
303
+ }
304
+ break;
305
+ }
289
306
  }
290
307
 
291
308
  // Ensure the document exists
@@ -70,6 +70,11 @@ export async function GET() {
70
70
  secondary_text: raw.button_secondary_text || "#ffffff",
71
71
  border_radius: raw.button_border_radius || "8px",
72
72
  },
73
+ cursor: {
74
+ color: raw.cursor_color || "#3580f9",
75
+ opacity: typeof raw.cursor_opacity === "number" ? raw.cursor_opacity : 100,
76
+ show_labels: !!raw.cursor_show_labels,
77
+ },
73
78
  disable_scroll_animations_mobile: raw.disable_scroll_animations_mobile ?? false,
74
79
  };
75
80
 
@@ -0,0 +1,108 @@
1
+ "use client";
2
+
3
+ import { useState, useEffect } from "react";
4
+ import type { CursorSettings } from "../../../lib/sanity/types";
5
+ import { Section, SaveButton, ColorField } from "./shared";
6
+
7
+ export function CursorEditor({
8
+ cursor,
9
+ onSave,
10
+ saving,
11
+ }: {
12
+ cursor?: CursorSettings;
13
+ onSave: (data: Record<string, unknown>) => void;
14
+ saving: boolean;
15
+ }) {
16
+ const [local, setLocal] = useState({
17
+ cursor_color: cursor?.color || "#3580f9",
18
+ cursor_opacity: typeof cursor?.opacity === "number" ? cursor.opacity : 100,
19
+ cursor_show_labels: !!cursor?.show_labels,
20
+ });
21
+
22
+ useEffect(() => {
23
+ setLocal({
24
+ cursor_color: cursor?.color || "#3580f9",
25
+ cursor_opacity: typeof cursor?.opacity === "number" ? cursor.opacity : 100,
26
+ cursor_show_labels: !!cursor?.show_labels,
27
+ });
28
+ }, [cursor]);
29
+
30
+ const previewAlpha = Math.max(0, Math.min(100, local.cursor_opacity)) / 100;
31
+
32
+ return (
33
+ <Section
34
+ title="Mouse Cursor"
35
+ description="Custom cursor that replaces the system pointer on the public site. Activated globally via site.config.ts → features.customCursor."
36
+ >
37
+ <div className="grid grid-cols-2 gap-6 mb-6">
38
+ <ColorField
39
+ label="Cursor Color"
40
+ value={local.cursor_color}
41
+ onChange={(v) => setLocal({ ...local, cursor_color: v })}
42
+ />
43
+
44
+ <div>
45
+ <label className="text-xs text-neutral-500 block mb-1">
46
+ Opacity — {local.cursor_opacity}%
47
+ </label>
48
+ <input
49
+ type="range"
50
+ min={0}
51
+ max={100}
52
+ step={1}
53
+ value={local.cursor_opacity}
54
+ onChange={(e) =>
55
+ setLocal({ ...local, cursor_opacity: Number(e.target.value) })
56
+ }
57
+ className="w-full accent-[#3580f9]"
58
+ />
59
+ </div>
60
+ </div>
61
+
62
+ <label className="flex items-start gap-3 mb-6 cursor-pointer">
63
+ <input
64
+ type="checkbox"
65
+ checked={local.cursor_show_labels}
66
+ onChange={(e) =>
67
+ setLocal({ ...local, cursor_show_labels: e.target.checked })
68
+ }
69
+ className="mt-0.5 accent-[#3580f9]"
70
+ />
71
+ <div>
72
+ <span className="text-sm text-neutral-800 block">Show hover labels</span>
73
+ <span className="text-xs text-neutral-500 block mt-0.5">
74
+ Adds <em>Zoom</em> on images, <em>Play</em> on videos, and <em>View</em> on links when hovered.
75
+ </span>
76
+ </div>
77
+ </label>
78
+
79
+ {/* Preview */}
80
+ <div className="mb-5 p-6 rounded-lg bg-neutral-900 flex items-center justify-center gap-6">
81
+ <span className="text-xs text-neutral-400">Preview:</span>
82
+ <div
83
+ className="rounded-full border-[1.5px] flex items-center justify-center"
84
+ style={{
85
+ width: local.cursor_show_labels ? 60 : 38,
86
+ height: local.cursor_show_labels ? 60 : 38,
87
+ borderColor: local.cursor_color,
88
+ opacity: previewAlpha,
89
+ transition: "width 0.2s ease, height 0.2s ease",
90
+ }}
91
+ >
92
+ {local.cursor_show_labels && (
93
+ <span
94
+ className="text-[10px] font-medium uppercase tracking-wider"
95
+ style={{ color: local.cursor_color }}
96
+ >
97
+ Zoom
98
+ </span>
99
+ )}
100
+ </div>
101
+ </div>
102
+
103
+ <div className="flex justify-end">
104
+ <SaveButton onClick={() => onSave(local)} saving={saving} />
105
+ </div>
106
+ </Section>
107
+ );
108
+ }
@@ -7,3 +7,4 @@ export { FontsEditor } from "./FontsEditor";
7
7
  export { TypographyEditor } from "./TypographyEditor";
8
8
  export { ColorsEditor } from "./ColorsEditor";
9
9
  export { LinksButtonsEditor } from "./LinksButtonsEditor";
10
+ export { CursorEditor } from "./CursorEditor";
@@ -154,7 +154,11 @@ export default function ParallaxSlideRenderer({
154
154
  </div>
155
155
  )}
156
156
 
157
- {/* ── Content layer — full V2 section ── */}
157
+ {/* ── Content layer — full V2 section ──
158
+ fillHeight stretches the V2 grid to 100% of the slide so each column's
159
+ `align_v` (top / center / bottom) has room to apply. No outer
160
+ justify-content here — the column owns vertical alignment, mirroring
161
+ ParallaxGroupCanvas in the builder. */}
158
162
  <div
159
163
  style={{
160
164
  position: "relative",
@@ -162,12 +166,12 @@ export default function ParallaxSlideRenderer({
162
166
  height: "100%",
163
167
  display: "flex",
164
168
  flexDirection: "column",
165
- justifyContent: "center",
166
169
  }}
167
170
  >
168
171
  <SectionV2Renderer
169
172
  section={pseudoSection}
170
173
  pageEnterAnimation={pageEnterAnimation}
174
+ fillHeight
171
175
  />
172
176
  </div>
173
177
  </section>
@@ -191,9 +191,16 @@ interface SectionV2RendererProps {
191
191
  section: PageSectionV2;
192
192
  /** Page-level enter animation config (from page_settings.enter_animation) */
193
193
  pageEnterAnimation?: EnterAnimationConfig;
194
+ /**
195
+ * Stretch the section + grid to 100% of the parent's height so column-level
196
+ * `align_v` (top/center/bottom) has room to apply. Used by parallax slides
197
+ * and cover sections where the slide/row enforces a fixed height. Mirrors
198
+ * `fillHeight` in SectionV2Canvas (builder side).
199
+ */
200
+ fillHeight?: boolean;
194
201
  }
195
202
 
196
- export default function SectionV2Renderer({ section, pageEnterAnimation }: SectionV2RendererProps) {
203
+ export default function SectionV2Renderer({ section, pageEnterAnimation, fillHeight }: SectionV2RendererProps) {
197
204
  const s = section.settings;
198
205
 
199
206
  const gridColumns = s.grid_columns || 12;
@@ -236,7 +243,10 @@ export default function SectionV2Renderer({ section, pageEnterAnimation }: Secti
236
243
  const sectionContent = (
237
244
  <section
238
245
  className={`sv2-${section._key}`}
239
- style={layoutStyles}
246
+ style={{
247
+ ...layoutStyles,
248
+ ...(fillHeight ? { display: "flex", flexDirection: "column", height: "100%" } : {}),
249
+ }}
240
250
  >
241
251
  {responsiveCss && <style dangerouslySetInnerHTML={{ __html: responsiveCss }} />}
242
252
  <div
@@ -245,6 +255,7 @@ export default function SectionV2Renderer({ section, pageEnterAnimation }: Secti
245
255
  marginLeft: "auto",
246
256
  marginRight: "auto",
247
257
  width: "100%",
258
+ ...(fillHeight ? { flex: 1, minHeight: 0, display: "flex", flexDirection: "column" } : {}),
248
259
  }}
249
260
  >
250
261
  <div
@@ -253,6 +264,7 @@ export default function SectionV2Renderer({ section, pageEnterAnimation }: Secti
253
264
  gridTemplateColumns: `repeat(${gridColumns}, 1fr)`,
254
265
  columnGap: `${colGap}px`,
255
266
  rowGap: `${rowGap}px`,
267
+ ...(fillHeight ? { flex: 1, minHeight: 0, gridTemplateRows: "minmax(0, 1fr)" } : {}),
256
268
  }}
257
269
  >
258
270
  {sortedColumns.map((col, colIndex) => {
@@ -1,118 +1,138 @@
1
- "use client";
2
-
3
- import { useState, useEffect, useCallback, useRef } from "react";
4
-
5
- export default function CustomCursor() {
6
- const [position, setPosition] = useState({ x: -100, y: -100 });
7
- const [isHovering, setIsHovering] = useState(false);
8
- const [isVisible, setIsVisible] = useState(false);
9
- const [isMobile, setIsMobile] = useState(true);
10
- const [prefersReducedMotion, setPrefersReducedMotion] = useState(false);
11
- const rafId = useRef<number>(0);
12
-
13
- // Check if device supports hover (desktop)
14
- useEffect(() => {
15
- const mql = window.matchMedia("(hover: hover) and (pointer: fine)");
16
- setIsMobile(!mql.matches);
17
-
18
- const handler = (e: MediaQueryListEvent) => setIsMobile(!e.matches);
19
- mql.addEventListener("change", handler);
20
- return () => mql.removeEventListener("change", handler);
21
- }, []);
22
-
23
- // Respect prefers-reduced-motion — disable custom cursor entirely
24
- useEffect(() => {
25
- const mql = window.matchMedia("(prefers-reduced-motion: reduce)");
26
- setPrefersReducedMotion(mql.matches);
27
-
28
- const handler = (e: MediaQueryListEvent) => setPrefersReducedMotion(e.matches);
29
- mql.addEventListener("change", handler);
30
- return () => mql.removeEventListener("change", handler);
31
- }, []);
32
-
33
- const handleMouseMove = useCallback((e: MouseEvent) => {
34
- if (rafId.current) cancelAnimationFrame(rafId.current);
35
- rafId.current = requestAnimationFrame(() => {
36
- setPosition({ x: e.clientX, y: e.clientY });
37
- setIsVisible(true);
38
- });
39
- }, []);
40
-
41
- const handleMouseLeave = useCallback(() => {
42
- setIsVisible(false);
43
- }, []);
44
-
45
- // Track hover state on interactive elements
46
- useEffect(() => {
47
- if (isMobile) return;
48
-
49
- const handleMouseOver = (e: MouseEvent) => {
50
- const target = e.target as HTMLElement;
51
- if (
52
- target.closest("a, button, [role='button'], input, textarea, select, [data-cursor-hover]")
53
- ) {
54
- setIsHovering(true);
55
- }
56
- };
57
-
58
- const handleMouseOut = (e: MouseEvent) => {
59
- const target = e.target as HTMLElement;
60
- if (
61
- target.closest("a, button, [role='button'], input, textarea, select, [data-cursor-hover]")
62
- ) {
63
- setIsHovering(false);
64
- }
65
- };
66
-
67
- document.addEventListener("mousemove", handleMouseMove);
68
- document.addEventListener("mouseleave", handleMouseLeave);
69
- document.addEventListener("mouseover", handleMouseOver);
70
- document.addEventListener("mouseout", handleMouseOut);
71
-
72
- return () => {
73
- document.removeEventListener("mousemove", handleMouseMove);
74
- document.removeEventListener("mouseleave", handleMouseLeave);
75
- document.removeEventListener("mouseover", handleMouseOver);
76
- document.removeEventListener("mouseout", handleMouseOut);
77
- if (rafId.current) cancelAnimationFrame(rafId.current);
78
- };
79
- }, [isMobile, handleMouseMove, handleMouseLeave]);
80
-
81
- // Don't render on mobile/touch devices or when reduced motion is preferred
82
- if (isMobile || prefersReducedMotion) return null;
83
-
84
- const size = isHovering ? 38 : 20;
85
- const innerSize = isHovering ? 10 : 4;
86
-
87
- return (
88
- <div
89
- className="pointer-events-none fixed inset-0 z-[9999]"
90
- aria-hidden="true"
91
- >
92
- {/* Outer circle — primary brand color */}
93
- <div
94
- className="absolute rounded-full border-[1.5px] border-brand-primary"
95
- style={{
96
- width: size,
97
- height: size,
98
- left: position.x - size / 2,
99
- top: position.y - size / 2,
100
- opacity: isVisible ? 1 : 0,
101
- transition: "width 0.2s ease, height 0.2s ease, opacity 0.15s ease",
102
- }}
103
- />
104
- {/* Inner circle — secondary brand color */}
105
- <div
106
- className="absolute rounded-full bg-brand-secondary"
107
- style={{
108
- width: innerSize,
109
- height: innerSize,
110
- left: position.x - innerSize / 2,
111
- top: position.y - innerSize / 2,
112
- opacity: isVisible ? 1 : 0,
113
- transition: "width 0.2s ease, height 0.2s ease, opacity 0.15s ease",
114
- }}
115
- />
116
- </div>
117
- );
118
- }
1
+ "use client";
2
+
3
+ import { useState, useEffect, useCallback, useRef } from "react";
4
+ import { useSiteStyles } from "../../lib/styles/provider";
5
+
6
+ /** Map a hovered element to a hover label, or null if no label applies. */
7
+ function getHoverLabel(target: HTMLElement | null): string | null {
8
+ if (!target) return null;
9
+ // Honour explicit data-cursor-label override (e.g. data-cursor-label="Open")
10
+ const explicit = target.closest<HTMLElement>("[data-cursor-label]");
11
+ if (explicit) return explicit.dataset.cursorLabel || null;
12
+ if (target.closest("img, [data-cursor-context='image']")) return "Zoom";
13
+ if (target.closest("video, [data-cursor-context='video']")) return "Play";
14
+ if (target.closest("a")) return "View";
15
+ return null;
16
+ }
17
+
18
+ /** Hover-target detection anything interactive triggers the expanded state. */
19
+ const HOVER_SELECTOR =
20
+ "a, button, [role='button'], input, textarea, select, img, video, [data-cursor-hover]";
21
+
22
+ export default function CustomCursor() {
23
+ const styles = useSiteStyles();
24
+ const cursor = styles?.cursor;
25
+ const color = cursor?.color || "#3580f9";
26
+ const opacity = (typeof cursor?.opacity === "number" ? cursor.opacity : 100) / 100;
27
+ const showLabels = !!cursor?.show_labels;
28
+
29
+ const [position, setPosition] = useState({ x: -100, y: -100 });
30
+ const [isHovering, setIsHovering] = useState(false);
31
+ const [label, setLabel] = useState<string | null>(null);
32
+ const [isVisible, setIsVisible] = useState(false);
33
+ const [isMobile, setIsMobile] = useState(true);
34
+ const [prefersReducedMotion, setPrefersReducedMotion] = useState(false);
35
+ const rafId = useRef<number>(0);
36
+
37
+ // Check if device supports hover (desktop)
38
+ useEffect(() => {
39
+ const mql = window.matchMedia("(hover: hover) and (pointer: fine)");
40
+ setIsMobile(!mql.matches);
41
+
42
+ const handler = (e: MediaQueryListEvent) => setIsMobile(!e.matches);
43
+ mql.addEventListener("change", handler);
44
+ return () => mql.removeEventListener("change", handler);
45
+ }, []);
46
+
47
+ // Respect prefers-reduced-motion — disable custom cursor entirely
48
+ useEffect(() => {
49
+ const mql = window.matchMedia("(prefers-reduced-motion: reduce)");
50
+ setPrefersReducedMotion(mql.matches);
51
+
52
+ const handler = (e: MediaQueryListEvent) => setPrefersReducedMotion(e.matches);
53
+ mql.addEventListener("change", handler);
54
+ return () => mql.removeEventListener("change", handler);
55
+ }, []);
56
+
57
+ const handleMouseMove = useCallback((e: MouseEvent) => {
58
+ if (rafId.current) cancelAnimationFrame(rafId.current);
59
+ rafId.current = requestAnimationFrame(() => {
60
+ setPosition({ x: e.clientX, y: e.clientY });
61
+ setIsVisible(true);
62
+ });
63
+ }, []);
64
+
65
+ const handleMouseLeave = useCallback(() => {
66
+ setIsVisible(false);
67
+ }, []);
68
+
69
+ // Track hover state on interactive elements + resolve contextual label
70
+ useEffect(() => {
71
+ if (isMobile) return;
72
+
73
+ const handleMouseOver = (e: MouseEvent) => {
74
+ const target = e.target as HTMLElement;
75
+ if (target.closest(HOVER_SELECTOR)) {
76
+ setIsHovering(true);
77
+ if (showLabels) setLabel(getHoverLabel(target));
78
+ }
79
+ };
80
+
81
+ const handleMouseOut = (e: MouseEvent) => {
82
+ const target = e.target as HTMLElement;
83
+ if (target.closest(HOVER_SELECTOR)) {
84
+ setIsHovering(false);
85
+ setLabel(null);
86
+ }
87
+ };
88
+
89
+ document.addEventListener("mousemove", handleMouseMove);
90
+ document.addEventListener("mouseleave", handleMouseLeave);
91
+ document.addEventListener("mouseover", handleMouseOver);
92
+ document.addEventListener("mouseout", handleMouseOut);
93
+
94
+ return () => {
95
+ document.removeEventListener("mousemove", handleMouseMove);
96
+ document.removeEventListener("mouseleave", handleMouseLeave);
97
+ document.removeEventListener("mouseover", handleMouseOver);
98
+ document.removeEventListener("mouseout", handleMouseOut);
99
+ if (rafId.current) cancelAnimationFrame(rafId.current);
100
+ };
101
+ }, [isMobile, showLabels, handleMouseMove, handleMouseLeave]);
102
+
103
+ if (isMobile || prefersReducedMotion) return null;
104
+
105
+ // Expanded size when over an interactive element. When labels are on and
106
+ // a label is present, we expand further to fit the text comfortably.
107
+ const showLabelNow = showLabels && isHovering && !!label;
108
+ const size = showLabelNow ? 60 : isHovering ? 40 : 20;
109
+
110
+ return (
111
+ <div
112
+ className="pointer-events-none fixed inset-0 z-[9999]"
113
+ aria-hidden="true"
114
+ >
115
+ <div
116
+ className="absolute rounded-full border-[1.5px] flex items-center justify-center"
117
+ style={{
118
+ width: size,
119
+ height: size,
120
+ left: position.x - size / 2,
121
+ top: position.y - size / 2,
122
+ borderColor: color,
123
+ opacity: isVisible ? opacity : 0,
124
+ transition: "width 0.2s ease, height 0.2s ease, opacity 0.15s ease",
125
+ }}
126
+ >
127
+ {showLabelNow && (
128
+ <span
129
+ className="text-[10px] font-medium uppercase tracking-wider select-none"
130
+ style={{ color }}
131
+ >
132
+ {label}
133
+ </span>
134
+ )}
135
+ </div>
136
+ </div>
137
+ );
138
+ }
@@ -381,7 +381,10 @@ export const siteStylesQuery = groq`
381
381
  button_secondary_bg,
382
382
  button_secondary_text,
383
383
  button_border_radius,
384
- disable_scroll_animations_mobile
384
+ disable_scroll_animations_mobile,
385
+ cursor_color,
386
+ cursor_opacity,
387
+ cursor_show_labels
385
388
  }
386
389
  `;
387
390
 
@@ -1163,6 +1163,14 @@ export interface GridSettings {
1163
1163
  gutter_phone?: string; // e.g. "16" (phone, ≤640px)
1164
1164
  }
1165
1165
 
1166
+ export interface CursorSettings {
1167
+ color: string;
1168
+ /** 0–100 */
1169
+ opacity: number;
1170
+ /** Show 'Zoom'/'Play'/'View' labels on hover over images/videos/links */
1171
+ show_labels: boolean;
1172
+ }
1173
+
1166
1174
  export interface SiteStyles {
1167
1175
  grid?: GridSettings;
1168
1176
  fonts?: FontFamily[];
@@ -1177,6 +1185,7 @@ export interface SiteStyles {
1177
1185
  colors?: ColorPalette;
1178
1186
  link_style?: LinkStyle;
1179
1187
  button_style?: ButtonStyle;
1188
+ cursor?: CursorSettings;
1180
1189
  /** When true, disables all scroll animations on viewports ≤768px */
1181
1190
  disable_scroll_animations_mobile?: boolean;
1182
1191
  }
package/lib/version.ts CHANGED
@@ -6,4 +6,4 @@
6
6
  * Exposed as a plain constant so it can be imported without reading
7
7
  * package.json at runtime.
8
8
  */
9
- export const ANDAMI_VERSION = "0.5.7";
9
+ export const ANDAMI_VERSION = "0.5.8";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morphika/andami",
3
- "version": "0.5.7",
3
+ "version": "0.5.8",
4
4
  "description": "Visual Page Builder — core library. A reusable website builder with visual editing, CMS integration, and asset management.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -13,6 +13,7 @@ export default defineType({
13
13
  { name: "typography", title: "Typography" },
14
14
  { name: "colors", title: "Colors" },
15
15
  { name: "links", title: "Links & Buttons" },
16
+ { name: "cursor", title: "Mouse" },
16
17
  ],
17
18
  fields: [
18
19
  // === GRID ===
@@ -208,5 +209,31 @@ export default defineType({
208
209
  description: "When enabled, all scroll-linked animations are disabled on phones (< 768px)",
209
210
  initialValue: false,
210
211
  }),
212
+
213
+ // === CURSOR (custom mouse cursor) ===
214
+ defineField({
215
+ name: "cursor_color",
216
+ title: "Cursor Color",
217
+ type: "string",
218
+ group: "cursor",
219
+ initialValue: "#3580f9",
220
+ }),
221
+ defineField({
222
+ name: "cursor_opacity",
223
+ title: "Cursor Opacity",
224
+ type: "number",
225
+ group: "cursor",
226
+ description: "0–100",
227
+ initialValue: 100,
228
+ validation: (Rule) => Rule.min(0).max(100),
229
+ }),
230
+ defineField({
231
+ name: "cursor_show_labels",
232
+ title: "Show Hover Labels",
233
+ type: "boolean",
234
+ group: "cursor",
235
+ description: "Show 'Zoom' on images, 'Play' on videos, 'View' on links when hovered",
236
+ initialValue: false,
237
+ }),
211
238
  ],
212
239
  });
package/styles/base.css CHANGED
@@ -41,6 +41,32 @@ html {
41
41
  scroll-behavior: smooth;
42
42
  overflow-x: clip;
43
43
  scrollbar-gutter: stable;
44
+ /* Firefox */
45
+ scrollbar-width: thin;
46
+ scrollbar-color: rgba(128, 128, 128, 0.4) transparent;
47
+ }
48
+
49
+ /* Custom scrollbar — public site (admin overrides via [data-admin]).
50
+ Thin, rounded thumb on a transparent track; works on both light and dark
51
+ backgrounds because the thumb is a semi-transparent neutral grey. */
52
+ ::-webkit-scrollbar {
53
+ width: 10px;
54
+ height: 10px;
55
+ }
56
+ ::-webkit-scrollbar-track {
57
+ background: transparent;
58
+ }
59
+ ::-webkit-scrollbar-thumb {
60
+ background-color: rgba(128, 128, 128, 0.4);
61
+ border-radius: 8px;
62
+ border: 2px solid transparent;
63
+ background-clip: padding-box;
64
+ }
65
+ ::-webkit-scrollbar-thumb:hover {
66
+ background-color: rgba(128, 128, 128, 0.7);
67
+ }
68
+ ::-webkit-scrollbar-corner {
69
+ background: transparent;
44
70
  }
45
71
 
46
72
  body {