@ohhwells/bridge 0.1.74 → 0.1.76-next.230
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.cjs +2493 -884
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -7
- package/dist/index.d.ts +21 -7
- package/dist/index.js +2485 -877
- package/dist/index.js.map +1 -1
- package/dist/pages.cjs +141 -0
- package/dist/pages.cjs.map +1 -0
- package/dist/pages.d.cts +45 -0
- package/dist/pages.d.ts +45 -0
- package/dist/pages.js +107 -0
- package/dist/pages.js.map +1 -0
- package/dist/styles.css +63 -0
- package/package.json +8 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import React__default, { Ref, ReactNode, DragEvent, PointerEvent } from 'react';
|
|
3
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { Ref, ReactNode, DragEvent, PointerEvent } from 'react';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
import { Toggle as Toggle$1, DropdownMenu as DropdownMenu$1, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
7
7
|
|
|
8
|
-
declare function OhhwellsBridge():
|
|
8
|
+
declare function OhhwellsBridge(): react_jsx_runtime.JSX.Element;
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* AI layout-tree contract — the bridge-side vocabulary for rendering
|
|
@@ -20,7 +20,7 @@ declare function OhhwellsBridge(): React__default.ReactPortal | null;
|
|
|
20
20
|
*/
|
|
21
21
|
declare const AI_TREE_SCHEMA_VERSIONS: readonly [1];
|
|
22
22
|
type SectionScaffold = 'stacked' | 'split' | 'overlay';
|
|
23
|
-
type AiBlockType = 'text' | 'button' | 'media' | 'media-list' | 'rating' | 'divider' | 'input' | 'section-header' | 'button-row' | 'card' | 'collection' | 'accordion' | 'form' | 'embed' | 'schedule-widget';
|
|
23
|
+
type AiBlockType = 'text' | 'button' | 'media' | 'media-list' | 'rating' | 'divider' | 'input' | 'section-header' | 'button-row' | 'card' | 'collection' | 'accordion' | 'form' | 'embed' | 'schedule-widget' | 'group';
|
|
24
24
|
interface AiBlockNode {
|
|
25
25
|
type: AiBlockType;
|
|
26
26
|
span: number;
|
|
@@ -44,6 +44,10 @@ interface AiSectionSettings {
|
|
|
44
44
|
verticalPosition?: 'top' | 'center';
|
|
45
45
|
overlayIntensity?: 'low' | 'medium' | 'high';
|
|
46
46
|
backgroundMedia?: string;
|
|
47
|
+
/** Tinted band behind the section, resolved against the brand tokens. */
|
|
48
|
+
sectionBackground?: 'default' | 'surface' | 'accent' | 'accent-soft';
|
|
49
|
+
/** Vertical distribution of column content (stacked/split scaffolds). */
|
|
50
|
+
textDistribution?: 'top' | 'center' | 'space-between';
|
|
47
51
|
}
|
|
48
52
|
interface AiLayoutTree {
|
|
49
53
|
schemaVersion: number;
|
|
@@ -249,7 +253,7 @@ declare function filterAvailablePages(pages: LinkPage[], existingTargets: string
|
|
|
249
253
|
|
|
250
254
|
declare const toggleVariants: (props?: ({
|
|
251
255
|
variant?: "default" | "outline" | null | undefined;
|
|
252
|
-
size?: "default" | "
|
|
256
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
253
257
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
254
258
|
declare function Toggle({ className, variant, size, ...props }: React.ComponentProps<typeof Toggle$1.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
255
259
|
|
|
@@ -267,7 +271,7 @@ declare function SchedulingWidget({ notifyOnConnect, initialScheduleId, insertAf
|
|
|
267
271
|
notifyOnConnect?: boolean;
|
|
268
272
|
initialScheduleId?: string | null;
|
|
269
273
|
insertAfter?: string;
|
|
270
|
-
}): react_jsx_runtime.JSX.Element
|
|
274
|
+
}): react_jsx_runtime.JSX.Element;
|
|
271
275
|
|
|
272
276
|
declare const DragHandle: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
|
|
273
277
|
|
|
@@ -413,6 +417,16 @@ declare function TooltipContent({ className, sideOffset, side, children, hideArr
|
|
|
413
417
|
hideArrow?: boolean;
|
|
414
418
|
}): react_jsx_runtime.JSX.Element;
|
|
415
419
|
|
|
420
|
+
interface EmptySectionProps {
|
|
421
|
+
title: string;
|
|
422
|
+
homeHref?: string;
|
|
423
|
+
/** data-ohw-key values for the editable text nodes — omit a key to leave that node non-editable. */
|
|
424
|
+
eyebrowKey?: string;
|
|
425
|
+
titleKey?: string;
|
|
426
|
+
subtitleKey?: string;
|
|
427
|
+
}
|
|
428
|
+
declare function EmptySection({ title, homeHref, eyebrowKey, titleKey, subtitleKey }: EmptySectionProps): react_jsx_runtime.JSX.Element;
|
|
429
|
+
|
|
416
430
|
declare function isEditSessionActive(): boolean;
|
|
417
431
|
|
|
418
432
|
type CarouselSlide = {
|
|
@@ -436,4 +450,4 @@ declare function useOhwCarousel(key: string, initial: CarouselSlide[]): {
|
|
|
436
450
|
bind: Record<string, string>;
|
|
437
451
|
};
|
|
438
452
|
|
|
439
|
-
export { AI_DEFAULT_BRAND, AI_TREE_SCHEMA_VERSIONS, AI_TREE_TOKENS, type AiBlockNode, type AiBrandKit, type AiLayoutTree, AiTreeRenderer, type AiTreeRendererProps, type CarouselSlide, CustomToolbar, CustomToolbarButton, CustomToolbarDivider, DragHandle, DropIndicator, type DropIndicatorProps, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, ItemActionToolbar, type ItemActionToolbarProps, ItemInteractionLayer, type ItemInteractionLayerProps, type ItemInteractionState, LinkEditorPanel, type LinkModalMode, type LinkModalProps, type LinkPage, LinkPopover, type LinkSection, OhhwellsBridge, SchedulingWidget, type SectionScaffold, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buildTarget, dropIndicatorVariants, filterAvailablePages, getEditModeInitialState, isEditSessionActive, isRenderableTree, isValidUrl, parseTarget, toggleVariants, useOhwCarousel, validateUrlInput };
|
|
453
|
+
export { AI_DEFAULT_BRAND, AI_TREE_SCHEMA_VERSIONS, AI_TREE_TOKENS, type AiBlockNode, type AiBrandKit, type AiLayoutTree, AiTreeRenderer, type AiTreeRendererProps, type CarouselSlide, CustomToolbar, CustomToolbarButton, CustomToolbarDivider, DragHandle, DropIndicator, type DropIndicatorProps, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, EmptySection, type EmptySectionProps, ItemActionToolbar, type ItemActionToolbarProps, ItemInteractionLayer, type ItemInteractionLayerProps, type ItemInteractionState, LinkEditorPanel, type LinkModalMode, type LinkModalProps, type LinkPage, LinkPopover, type LinkSection, OhhwellsBridge, SchedulingWidget, type SectionScaffold, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buildTarget, dropIndicatorVariants, filterAvailablePages, getEditModeInitialState, isEditSessionActive, isRenderableTree, isValidUrl, parseTarget, toggleVariants, useOhwCarousel, validateUrlInput };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import React__default, { Ref, ReactNode, DragEvent, PointerEvent } from 'react';
|
|
3
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { Ref, ReactNode, DragEvent, PointerEvent } from 'react';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
import { Toggle as Toggle$1, DropdownMenu as DropdownMenu$1, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
7
7
|
|
|
8
|
-
declare function OhhwellsBridge():
|
|
8
|
+
declare function OhhwellsBridge(): react_jsx_runtime.JSX.Element;
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* AI layout-tree contract — the bridge-side vocabulary for rendering
|
|
@@ -20,7 +20,7 @@ declare function OhhwellsBridge(): React__default.ReactPortal | null;
|
|
|
20
20
|
*/
|
|
21
21
|
declare const AI_TREE_SCHEMA_VERSIONS: readonly [1];
|
|
22
22
|
type SectionScaffold = 'stacked' | 'split' | 'overlay';
|
|
23
|
-
type AiBlockType = 'text' | 'button' | 'media' | 'media-list' | 'rating' | 'divider' | 'input' | 'section-header' | 'button-row' | 'card' | 'collection' | 'accordion' | 'form' | 'embed' | 'schedule-widget';
|
|
23
|
+
type AiBlockType = 'text' | 'button' | 'media' | 'media-list' | 'rating' | 'divider' | 'input' | 'section-header' | 'button-row' | 'card' | 'collection' | 'accordion' | 'form' | 'embed' | 'schedule-widget' | 'group';
|
|
24
24
|
interface AiBlockNode {
|
|
25
25
|
type: AiBlockType;
|
|
26
26
|
span: number;
|
|
@@ -44,6 +44,10 @@ interface AiSectionSettings {
|
|
|
44
44
|
verticalPosition?: 'top' | 'center';
|
|
45
45
|
overlayIntensity?: 'low' | 'medium' | 'high';
|
|
46
46
|
backgroundMedia?: string;
|
|
47
|
+
/** Tinted band behind the section, resolved against the brand tokens. */
|
|
48
|
+
sectionBackground?: 'default' | 'surface' | 'accent' | 'accent-soft';
|
|
49
|
+
/** Vertical distribution of column content (stacked/split scaffolds). */
|
|
50
|
+
textDistribution?: 'top' | 'center' | 'space-between';
|
|
47
51
|
}
|
|
48
52
|
interface AiLayoutTree {
|
|
49
53
|
schemaVersion: number;
|
|
@@ -249,7 +253,7 @@ declare function filterAvailablePages(pages: LinkPage[], existingTargets: string
|
|
|
249
253
|
|
|
250
254
|
declare const toggleVariants: (props?: ({
|
|
251
255
|
variant?: "default" | "outline" | null | undefined;
|
|
252
|
-
size?: "default" | "
|
|
256
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
253
257
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
254
258
|
declare function Toggle({ className, variant, size, ...props }: React.ComponentProps<typeof Toggle$1.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
255
259
|
|
|
@@ -267,7 +271,7 @@ declare function SchedulingWidget({ notifyOnConnect, initialScheduleId, insertAf
|
|
|
267
271
|
notifyOnConnect?: boolean;
|
|
268
272
|
initialScheduleId?: string | null;
|
|
269
273
|
insertAfter?: string;
|
|
270
|
-
}): react_jsx_runtime.JSX.Element
|
|
274
|
+
}): react_jsx_runtime.JSX.Element;
|
|
271
275
|
|
|
272
276
|
declare const DragHandle: React.ForwardRefExoticComponent<React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
|
|
273
277
|
|
|
@@ -413,6 +417,16 @@ declare function TooltipContent({ className, sideOffset, side, children, hideArr
|
|
|
413
417
|
hideArrow?: boolean;
|
|
414
418
|
}): react_jsx_runtime.JSX.Element;
|
|
415
419
|
|
|
420
|
+
interface EmptySectionProps {
|
|
421
|
+
title: string;
|
|
422
|
+
homeHref?: string;
|
|
423
|
+
/** data-ohw-key values for the editable text nodes — omit a key to leave that node non-editable. */
|
|
424
|
+
eyebrowKey?: string;
|
|
425
|
+
titleKey?: string;
|
|
426
|
+
subtitleKey?: string;
|
|
427
|
+
}
|
|
428
|
+
declare function EmptySection({ title, homeHref, eyebrowKey, titleKey, subtitleKey }: EmptySectionProps): react_jsx_runtime.JSX.Element;
|
|
429
|
+
|
|
416
430
|
declare function isEditSessionActive(): boolean;
|
|
417
431
|
|
|
418
432
|
type CarouselSlide = {
|
|
@@ -436,4 +450,4 @@ declare function useOhwCarousel(key: string, initial: CarouselSlide[]): {
|
|
|
436
450
|
bind: Record<string, string>;
|
|
437
451
|
};
|
|
438
452
|
|
|
439
|
-
export { AI_DEFAULT_BRAND, AI_TREE_SCHEMA_VERSIONS, AI_TREE_TOKENS, type AiBlockNode, type AiBrandKit, type AiLayoutTree, AiTreeRenderer, type AiTreeRendererProps, type CarouselSlide, CustomToolbar, CustomToolbarButton, CustomToolbarDivider, DragHandle, DropIndicator, type DropIndicatorProps, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, ItemActionToolbar, type ItemActionToolbarProps, ItemInteractionLayer, type ItemInteractionLayerProps, type ItemInteractionState, LinkEditorPanel, type LinkModalMode, type LinkModalProps, type LinkPage, LinkPopover, type LinkSection, OhhwellsBridge, SchedulingWidget, type SectionScaffold, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buildTarget, dropIndicatorVariants, filterAvailablePages, getEditModeInitialState, isEditSessionActive, isRenderableTree, isValidUrl, parseTarget, toggleVariants, useOhwCarousel, validateUrlInput };
|
|
453
|
+
export { AI_DEFAULT_BRAND, AI_TREE_SCHEMA_VERSIONS, AI_TREE_TOKENS, type AiBlockNode, type AiBrandKit, type AiLayoutTree, AiTreeRenderer, type AiTreeRendererProps, type CarouselSlide, CustomToolbar, CustomToolbarButton, CustomToolbarDivider, DragHandle, DropIndicator, type DropIndicatorProps, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, EmptySection, type EmptySectionProps, ItemActionToolbar, type ItemActionToolbarProps, ItemInteractionLayer, type ItemInteractionLayerProps, type ItemInteractionState, LinkEditorPanel, type LinkModalMode, type LinkModalProps, type LinkPage, LinkPopover, type LinkSection, OhhwellsBridge, SchedulingWidget, type SectionScaffold, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buildTarget, dropIndicatorVariants, filterAvailablePages, getEditModeInitialState, isEditSessionActive, isRenderableTree, isValidUrl, parseTarget, toggleVariants, useOhwCarousel, validateUrlInput };
|