@mission-studio/puck 1.0.21 → 1.0.24
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/Popup-Dg78fu78.d.mts +260 -0
- package/dist/Popup-L7kcJo05.d.ts +260 -0
- package/dist/ResponsiveToggleField-65CqZEK-.d.mts +10 -0
- package/dist/ResponsiveToggleField-QCve94L_.d.ts +10 -0
- package/dist/chunk-MYS3PLMF.mjs +463 -0
- package/dist/chunk-TRPKXVMO.mjs +695 -0
- package/dist/{chunk-MWW5LYLN.mjs → chunk-YIPEC4L4.mjs} +709 -1075
- package/dist/components/page/astro/index.d.mts +54 -0
- package/dist/components/page/astro/index.d.ts +54 -0
- package/dist/components/page/astro/index.js +2056 -0
- package/dist/components/page/astro/index.mjs +51 -0
- package/dist/config/server.js +630 -700
- package/dist/config/server.mjs +33 -83
- package/dist/config-entry.js +592 -478
- package/dist/config-entry.mjs +11 -11
- package/dist/{ResponsiveToggleField-CfBKL5oY.d.ts → defaults-j55hBQHu.d.mts} +2 -8
- package/dist/{ResponsiveToggleField-BihXsGIJ.d.mts → defaults-z8Ft2j5r.d.ts} +2 -8
- package/dist/editor.d.mts +5 -4
- package/dist/editor.d.ts +5 -4
- package/dist/index.d.mts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +388 -274
- package/dist/index.mjs +11 -11
- package/dist/renderer.d.mts +9 -250
- package/dist/renderer.d.ts +9 -250
- package/dist/renderer.js +388 -274
- package/dist/renderer.mjs +11 -11
- package/dist/resolve/index.d.mts +1 -1
- package/dist/resolve/index.d.ts +1 -1
- package/dist/{types-D-CIduaE.d.mts → types-HQ6hIbYr.d.mts} +1 -1
- package/dist/{types-D-CIduaE.d.ts → types-HQ6hIbYr.d.ts} +1 -1
- package/package.json +6 -1
- package/dist/chunk-WFLVAZV2.mjs +0 -142
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { H as HeadingLevel, t as HeadingSize, u as HeadingWeight, v as HeadingAlign, w as HeadingLetterSpacing, x as HeadingLineHeight, y as ParagraphSize, z as ParagraphWeight, A as ParagraphAlign, E as ParagraphLineHeight, B as ButtonProps, l as ImageProps, k as ImageCarouselProps, I as IconProps, S as SectionProps, c as ContainerProps, b as ColumnsProps, C as CardProps, D as DividerProps, n as SpacerProps } from '../../../Popup-Dg78fu78.mjs';
|
|
3
|
+
export { a as CarouselImage, d as CustomImage, e as CustomImageProps, F as FeatureGrid, f as FeatureGridProps, g as FeaturesList, h as FeaturesListProps, i as Footer, j as FooterProps, P as Popup, m as PopupProps, T as TextBlock, o as TextBlockProps, p as Topbar, q as TopbarProps, V as VideoEmbed, r as VideoEmbedProps, s as availableIcons } from '../../../Popup-Dg78fu78.mjs';
|
|
4
|
+
import '../../../types-HQ6hIbYr.mjs';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '../../../ResponsiveToggleField-65CqZEK-.mjs';
|
|
7
|
+
import '@measured/puck';
|
|
8
|
+
|
|
9
|
+
type HeadingProps = {
|
|
10
|
+
text?: string;
|
|
11
|
+
level?: HeadingLevel;
|
|
12
|
+
size?: HeadingSize;
|
|
13
|
+
weight?: HeadingWeight;
|
|
14
|
+
color?: string;
|
|
15
|
+
align?: HeadingAlign;
|
|
16
|
+
letterSpacing?: HeadingLetterSpacing;
|
|
17
|
+
lineHeight?: HeadingLineHeight;
|
|
18
|
+
id?: string;
|
|
19
|
+
};
|
|
20
|
+
declare function Heading({ text, level, size, weight, color, align, letterSpacing, lineHeight, id, }: HeadingProps): react_jsx_runtime.JSX.Element | null;
|
|
21
|
+
|
|
22
|
+
type ParagraphProps = {
|
|
23
|
+
text?: string;
|
|
24
|
+
size?: ParagraphSize;
|
|
25
|
+
weight?: ParagraphWeight;
|
|
26
|
+
color?: string;
|
|
27
|
+
align?: ParagraphAlign;
|
|
28
|
+
lineHeight?: ParagraphLineHeight;
|
|
29
|
+
maxWidth?: string;
|
|
30
|
+
id?: string;
|
|
31
|
+
};
|
|
32
|
+
declare function Paragraph({ text, size, weight, color, align, lineHeight, maxWidth, id, }: ParagraphProps): react_jsx_runtime.JSX.Element | null;
|
|
33
|
+
|
|
34
|
+
declare function Button({ text, href, target, variant, size, color, textColor, borderRadius, fullWidth, align, id, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare function Image({ src, alt, width, aspectRatio, objectFit, borderRadius, shadow, align, caption, captionColor, id, }: ImageProps): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare function ImageCarousel({ images, aspectRatio, borderRadius, showDots, showArrows, arrowColor, dotColor, id, }: ImageCarouselProps): react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare function Icon({ name, size, color, align, id, }: IconProps): react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare function Section({ children: _children, verticalPadding, horizontalPadding, gap, backgroundColor, backgroundImage, shadow, borderRadius, contentMaxWidth, anchorLink, visibility, puck, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare function Container({ maxWidth, padding, paddingX, paddingY, backgroundColor, centered, id, puck, }: ContainerProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare function Columns({ columns, gap, verticalAlign, stackOnMobile, id, puck, }: ColumnsProps): react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare function Card({ backgroundColor, borderColor, borderWidth, borderRadius, shadow, padding, id, puck, }: CardProps): react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare function Divider({ style: lineStyle, thickness, color, width, align, spacing, id, }: DividerProps): react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare function Spacer({ size, id }: SpacerProps): react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
54
|
+
export { Button, ButtonProps, Card, CardProps, Columns, ColumnsProps, Container, ContainerProps, Divider, DividerProps, Heading, type HeadingProps, Icon, IconProps, Image, ImageCarousel, ImageCarouselProps, ImageProps, Paragraph, type ParagraphProps, Section, SectionProps, Spacer, SpacerProps };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { H as HeadingLevel, t as HeadingSize, u as HeadingWeight, v as HeadingAlign, w as HeadingLetterSpacing, x as HeadingLineHeight, y as ParagraphSize, z as ParagraphWeight, A as ParagraphAlign, E as ParagraphLineHeight, B as ButtonProps, l as ImageProps, k as ImageCarouselProps, I as IconProps, S as SectionProps, c as ContainerProps, b as ColumnsProps, C as CardProps, D as DividerProps, n as SpacerProps } from '../../../Popup-L7kcJo05.js';
|
|
3
|
+
export { a as CarouselImage, d as CustomImage, e as CustomImageProps, F as FeatureGrid, f as FeatureGridProps, g as FeaturesList, h as FeaturesListProps, i as Footer, j as FooterProps, P as Popup, m as PopupProps, T as TextBlock, o as TextBlockProps, p as Topbar, q as TopbarProps, V as VideoEmbed, r as VideoEmbedProps, s as availableIcons } from '../../../Popup-L7kcJo05.js';
|
|
4
|
+
import '../../../types-HQ6hIbYr.js';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '../../../ResponsiveToggleField-QCve94L_.js';
|
|
7
|
+
import '@measured/puck';
|
|
8
|
+
|
|
9
|
+
type HeadingProps = {
|
|
10
|
+
text?: string;
|
|
11
|
+
level?: HeadingLevel;
|
|
12
|
+
size?: HeadingSize;
|
|
13
|
+
weight?: HeadingWeight;
|
|
14
|
+
color?: string;
|
|
15
|
+
align?: HeadingAlign;
|
|
16
|
+
letterSpacing?: HeadingLetterSpacing;
|
|
17
|
+
lineHeight?: HeadingLineHeight;
|
|
18
|
+
id?: string;
|
|
19
|
+
};
|
|
20
|
+
declare function Heading({ text, level, size, weight, color, align, letterSpacing, lineHeight, id, }: HeadingProps): react_jsx_runtime.JSX.Element | null;
|
|
21
|
+
|
|
22
|
+
type ParagraphProps = {
|
|
23
|
+
text?: string;
|
|
24
|
+
size?: ParagraphSize;
|
|
25
|
+
weight?: ParagraphWeight;
|
|
26
|
+
color?: string;
|
|
27
|
+
align?: ParagraphAlign;
|
|
28
|
+
lineHeight?: ParagraphLineHeight;
|
|
29
|
+
maxWidth?: string;
|
|
30
|
+
id?: string;
|
|
31
|
+
};
|
|
32
|
+
declare function Paragraph({ text, size, weight, color, align, lineHeight, maxWidth, id, }: ParagraphProps): react_jsx_runtime.JSX.Element | null;
|
|
33
|
+
|
|
34
|
+
declare function Button({ text, href, target, variant, size, color, textColor, borderRadius, fullWidth, align, id, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare function Image({ src, alt, width, aspectRatio, objectFit, borderRadius, shadow, align, caption, captionColor, id, }: ImageProps): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare function ImageCarousel({ images, aspectRatio, borderRadius, showDots, showArrows, arrowColor, dotColor, id, }: ImageCarouselProps): react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare function Icon({ name, size, color, align, id, }: IconProps): react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare function Section({ children: _children, verticalPadding, horizontalPadding, gap, backgroundColor, backgroundImage, shadow, borderRadius, contentMaxWidth, anchorLink, visibility, puck, }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare function Container({ maxWidth, padding, paddingX, paddingY, backgroundColor, centered, id, puck, }: ContainerProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare function Columns({ columns, gap, verticalAlign, stackOnMobile, id, puck, }: ColumnsProps): react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare function Card({ backgroundColor, borderColor, borderWidth, borderRadius, shadow, padding, id, puck, }: CardProps): react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare function Divider({ style: lineStyle, thickness, color, width, align, spacing, id, }: DividerProps): react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare function Spacer({ size, id }: SpacerProps): react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
54
|
+
export { Button, ButtonProps, Card, CardProps, Columns, ColumnsProps, Container, ContainerProps, Divider, DividerProps, Heading, type HeadingProps, Icon, IconProps, Image, ImageCarousel, ImageCarouselProps, ImageProps, Paragraph, type ParagraphProps, Section, SectionProps, Spacer, SpacerProps };
|