@salesmind-ai/design-system 1.0.0 → 1.2.0
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/chunk-6WQKRQEE.cjs +33 -0
- package/dist/chunk-6WQKRQEE.cjs.map +1 -0
- package/dist/{chunk-D2RHF2OE.cjs → chunk-H5BOCR5Z.cjs} +10 -6
- package/dist/chunk-H5BOCR5Z.cjs.map +1 -0
- package/dist/chunk-HTLWFOLC.js +26 -0
- package/dist/chunk-HTLWFOLC.js.map +1 -0
- package/dist/{chunk-KXVFFEGD.js → chunk-MLINFRC3.js} +2 -19
- package/dist/chunk-MLINFRC3.js.map +1 -0
- package/dist/{chunk-DMRQPGQA.js → chunk-NB3BDIQO.js} +10 -6
- package/dist/chunk-NB3BDIQO.js.map +1 -0
- package/dist/{chunk-JPUJWI7F.cjs → chunk-QXUA5PQ3.cjs} +1 -19
- package/dist/chunk-QXUA5PQ3.cjs.map +1 -0
- package/dist/{chunk-KSEETC4E.js → chunk-REEHJV7M.js} +142 -3
- package/dist/chunk-REEHJV7M.js.map +1 -0
- package/dist/{chunk-LQB7QLD3.js → chunk-RY257SWH.js} +207 -3
- package/dist/chunk-RY257SWH.js.map +1 -0
- package/dist/{chunk-6BXKRDK5.cjs → chunk-UCWMJD4Y.cjs} +148 -7
- package/dist/chunk-UCWMJD4Y.cjs.map +1 -0
- package/dist/{chunk-UGKYP6F3.cjs → chunk-YL4FGGHF.cjs} +211 -2
- package/dist/chunk-YL4FGGHF.cjs.map +1 -0
- package/dist/core/index.cjs +13 -12
- package/dist/core/index.js +2 -1
- package/dist/{index-C8A3X92-.d.cts → index-I4Xi04oE.d.cts} +46 -2
- package/dist/{index-wZPBPkOV.d.ts → index-r__EEywy.d.ts} +46 -2
- package/dist/index.cjs +78 -49
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +658 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/dist/marketing/index.cjs +35 -26
- package/dist/marketing/index.css +242 -0
- package/dist/marketing/index.css.map +1 -1
- package/dist/marketing/index.d.cts +1 -1
- package/dist/marketing/index.d.ts +1 -1
- package/dist/marketing/index.js +3 -2
- package/dist/sections/index.css +1 -1
- package/dist/sections/index.css.map +1 -1
- package/dist/social-proof/index.cjs +26 -4
- package/dist/social-proof/index.css +521 -0
- package/dist/social-proof/index.css.map +1 -1
- package/dist/social-proof/index.d.cts +99 -27
- package/dist/social-proof/index.d.ts +99 -27
- package/dist/social-proof/index.js +3 -1
- package/dist/web/index.cjs +7 -7
- package/dist/web/index.js +1 -1
- package/dist/web/server/index.cjs +7 -7
- package/dist/web/server/index.d.cts +0 -5
- package/dist/web/server/index.d.ts +0 -5
- package/dist/web/server/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-6BXKRDK5.cjs.map +0 -1
- package/dist/chunk-D2RHF2OE.cjs.map +0 -1
- package/dist/chunk-DMRQPGQA.js.map +0 -1
- package/dist/chunk-JPUJWI7F.cjs.map +0 -1
- package/dist/chunk-KSEETC4E.js.map +0 -1
- package/dist/chunk-KXVFFEGD.js.map +0 -1
- package/dist/chunk-LQB7QLD3.js.map +0 -1
- package/dist/chunk-UGKYP6F3.cjs.map +0 -1
|
@@ -1,5 +1,103 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
|
|
3
|
+
type Platform = 'trustpilot' | 'g2' | 'google' | 'chrome-web-store';
|
|
4
|
+
interface PlatformBadgeProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
5
|
+
/** Review platform */
|
|
6
|
+
platform: Platform;
|
|
7
|
+
/** Display mode */
|
|
8
|
+
variant?: 'icon-only' | 'icon-label' | 'full';
|
|
9
|
+
/** Platform rating (used in 'full' variant) */
|
|
10
|
+
rating?: number;
|
|
11
|
+
/** Number of reviews (used in 'full' variant) */
|
|
12
|
+
count?: number;
|
|
13
|
+
/** Size variant */
|
|
14
|
+
size?: 'sm' | 'md';
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Review platform badge with recognizable brand icon, optional label,
|
|
18
|
+
* and optional rating display.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```tsx
|
|
22
|
+
* <PlatformBadge platform="trustpilot" variant="icon-only" />
|
|
23
|
+
* <PlatformBadge platform="g2" variant="icon-label" />
|
|
24
|
+
* <PlatformBadge platform="google" variant="full" rating={4.9} count={42} />
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
declare const PlatformBadge: React__default.ForwardRefExoticComponent<PlatformBadgeProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
28
|
+
|
|
29
|
+
interface SocialProofAuthor {
|
|
30
|
+
name: string;
|
|
31
|
+
title?: string;
|
|
32
|
+
company?: string;
|
|
33
|
+
avatar?: string;
|
|
34
|
+
}
|
|
35
|
+
interface SocialProofMetric {
|
|
36
|
+
value: React__default.ReactNode;
|
|
37
|
+
label: React__default.ReactNode;
|
|
38
|
+
}
|
|
39
|
+
interface SocialProofMedia {
|
|
40
|
+
src: string;
|
|
41
|
+
type: 'image';
|
|
42
|
+
alt?: string;
|
|
43
|
+
}
|
|
44
|
+
interface SocialProofCardProps extends Omit<React__default.HTMLAttributes<HTMLElement>, 'content'> {
|
|
45
|
+
variant?: 'social' | 'compact' | 'standard' | 'detailed' | 'narrative';
|
|
46
|
+
content: React__default.ReactNode;
|
|
47
|
+
author: SocialProofAuthor;
|
|
48
|
+
starRating?: number;
|
|
49
|
+
platform?: Platform;
|
|
50
|
+
badges?: React__default.ReactNode[];
|
|
51
|
+
href?: string;
|
|
52
|
+
media?: SocialProofMedia;
|
|
53
|
+
metrics?: SocialProofMetric[];
|
|
54
|
+
headline?: React__default.ReactNode;
|
|
55
|
+
industry?: React__default.ReactNode;
|
|
56
|
+
ctaText?: React__default.ReactNode;
|
|
57
|
+
}
|
|
58
|
+
declare const SocialProofCard: React__default.ForwardRefExoticComponent<SocialProofCardProps & React__default.RefAttributes<HTMLElement>>;
|
|
59
|
+
|
|
60
|
+
interface SocialProofCarouselProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
61
|
+
background?: 'default' | 'muted' | 'dark' | 'brand' | 'transparent';
|
|
62
|
+
}
|
|
63
|
+
declare const SocialProofCarousel: React__default.ForwardRefExoticComponent<SocialProofCarouselProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
64
|
+
|
|
65
|
+
interface SocialProofFeaturedProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
66
|
+
quote: React__default.ReactNode;
|
|
67
|
+
author: SocialProofAuthor;
|
|
68
|
+
featuredVariant?: 'standard' | 'cinematic' | 'spotlight';
|
|
69
|
+
starRating?: number;
|
|
70
|
+
platform?: Platform;
|
|
71
|
+
mediaSrc?: string;
|
|
72
|
+
background?: 'default' | 'muted' | 'brand' | 'transparent';
|
|
73
|
+
padding?: 'sm' | 'md' | 'lg';
|
|
74
|
+
}
|
|
75
|
+
declare const SocialProofFeatured: React__default.ForwardRefExoticComponent<SocialProofFeaturedProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
76
|
+
|
|
77
|
+
interface SocialProofGridProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
78
|
+
columns?: 1 | 2 | 3 | 4;
|
|
79
|
+
staggered?: boolean;
|
|
80
|
+
background?: 'default' | 'muted' | 'dark' | 'brand' | 'transparent';
|
|
81
|
+
}
|
|
82
|
+
declare const SocialProofGrid: React__default.ForwardRefExoticComponent<SocialProofGridProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
83
|
+
|
|
84
|
+
interface SocialProofLogoItem {
|
|
85
|
+
id: string;
|
|
86
|
+
alt: string;
|
|
87
|
+
src?: string;
|
|
88
|
+
logo?: React__default.ReactNode;
|
|
89
|
+
href?: string;
|
|
90
|
+
badge?: React__default.ReactNode;
|
|
91
|
+
}
|
|
92
|
+
interface SocialProofLogosProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
93
|
+
logos: SocialProofLogoItem[];
|
|
94
|
+
title?: React__default.ReactNode;
|
|
95
|
+
variant?: 'grid' | 'marquee';
|
|
96
|
+
speed?: 'slow' | 'normal' | 'fast';
|
|
97
|
+
background?: 'default' | 'muted' | 'dark' | 'brand' | 'transparent';
|
|
98
|
+
}
|
|
99
|
+
declare const SocialProofLogos: React__default.ForwardRefExoticComponent<SocialProofLogosProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
100
|
+
|
|
3
101
|
interface StarRatingProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
4
102
|
/** Rating value (0-5, supports decimals for half-stars) */
|
|
5
103
|
value: number;
|
|
@@ -27,32 +125,6 @@ interface StarRatingProps extends React__default.HTMLAttributes<HTMLDivElement>
|
|
|
27
125
|
*/
|
|
28
126
|
declare const StarRating: React__default.ForwardRefExoticComponent<StarRatingProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
29
127
|
|
|
30
|
-
type Platform = 'trustpilot' | 'g2' | 'google' | 'chrome-web-store';
|
|
31
|
-
interface PlatformBadgeProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
32
|
-
/** Review platform */
|
|
33
|
-
platform: Platform;
|
|
34
|
-
/** Display mode */
|
|
35
|
-
variant?: 'icon-only' | 'icon-label' | 'full';
|
|
36
|
-
/** Platform rating (used in 'full' variant) */
|
|
37
|
-
rating?: number;
|
|
38
|
-
/** Number of reviews (used in 'full' variant) */
|
|
39
|
-
count?: number;
|
|
40
|
-
/** Size variant */
|
|
41
|
-
size?: 'sm' | 'md';
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Review platform badge with recognizable brand icon, optional label,
|
|
45
|
-
* and optional rating display.
|
|
46
|
-
*
|
|
47
|
-
* @example
|
|
48
|
-
* ```tsx
|
|
49
|
-
* <PlatformBadge platform="trustpilot" variant="icon-only" />
|
|
50
|
-
* <PlatformBadge platform="g2" variant="icon-label" />
|
|
51
|
-
* <PlatformBadge platform="google" variant="full" rating={4.9} count={42} />
|
|
52
|
-
* ```
|
|
53
|
-
*/
|
|
54
|
-
declare const PlatformBadge: React__default.ForwardRefExoticComponent<PlatformBadgeProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
55
|
-
|
|
56
128
|
interface VideoLightboxProps {
|
|
57
129
|
/** Video embed URL (YouTube, Vimeo, Loom) */
|
|
58
130
|
videoUrl: string;
|
|
@@ -110,4 +182,4 @@ interface MetricCounterProps extends React__default.HTMLAttributes<HTMLDivElemen
|
|
|
110
182
|
*/
|
|
111
183
|
declare const MetricCounter: React__default.ForwardRefExoticComponent<MetricCounterProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
112
184
|
|
|
113
|
-
export { MetricCounter, type MetricCounterProps, type Platform, PlatformBadge, type PlatformBadgeProps, StarRating, type StarRatingProps, VideoLightbox, type VideoLightboxProps };
|
|
185
|
+
export { MetricCounter, type MetricCounterProps, type Platform, PlatformBadge, type PlatformBadgeProps, type SocialProofAuthor, SocialProofCard, type SocialProofCardProps, SocialProofCarousel, type SocialProofCarouselProps, SocialProofFeatured, type SocialProofFeaturedProps, SocialProofGrid, type SocialProofGridProps, type SocialProofLogoItem, SocialProofLogos, type SocialProofLogosProps, type SocialProofMedia, type SocialProofMetric, StarRating, type StarRatingProps, VideoLightbox, type VideoLightboxProps };
|
|
@@ -1,5 +1,103 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
2
|
|
|
3
|
+
type Platform = 'trustpilot' | 'g2' | 'google' | 'chrome-web-store';
|
|
4
|
+
interface PlatformBadgeProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
5
|
+
/** Review platform */
|
|
6
|
+
platform: Platform;
|
|
7
|
+
/** Display mode */
|
|
8
|
+
variant?: 'icon-only' | 'icon-label' | 'full';
|
|
9
|
+
/** Platform rating (used in 'full' variant) */
|
|
10
|
+
rating?: number;
|
|
11
|
+
/** Number of reviews (used in 'full' variant) */
|
|
12
|
+
count?: number;
|
|
13
|
+
/** Size variant */
|
|
14
|
+
size?: 'sm' | 'md';
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Review platform badge with recognizable brand icon, optional label,
|
|
18
|
+
* and optional rating display.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```tsx
|
|
22
|
+
* <PlatformBadge platform="trustpilot" variant="icon-only" />
|
|
23
|
+
* <PlatformBadge platform="g2" variant="icon-label" />
|
|
24
|
+
* <PlatformBadge platform="google" variant="full" rating={4.9} count={42} />
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
declare const PlatformBadge: React__default.ForwardRefExoticComponent<PlatformBadgeProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
28
|
+
|
|
29
|
+
interface SocialProofAuthor {
|
|
30
|
+
name: string;
|
|
31
|
+
title?: string;
|
|
32
|
+
company?: string;
|
|
33
|
+
avatar?: string;
|
|
34
|
+
}
|
|
35
|
+
interface SocialProofMetric {
|
|
36
|
+
value: React__default.ReactNode;
|
|
37
|
+
label: React__default.ReactNode;
|
|
38
|
+
}
|
|
39
|
+
interface SocialProofMedia {
|
|
40
|
+
src: string;
|
|
41
|
+
type: 'image';
|
|
42
|
+
alt?: string;
|
|
43
|
+
}
|
|
44
|
+
interface SocialProofCardProps extends Omit<React__default.HTMLAttributes<HTMLElement>, 'content'> {
|
|
45
|
+
variant?: 'social' | 'compact' | 'standard' | 'detailed' | 'narrative';
|
|
46
|
+
content: React__default.ReactNode;
|
|
47
|
+
author: SocialProofAuthor;
|
|
48
|
+
starRating?: number;
|
|
49
|
+
platform?: Platform;
|
|
50
|
+
badges?: React__default.ReactNode[];
|
|
51
|
+
href?: string;
|
|
52
|
+
media?: SocialProofMedia;
|
|
53
|
+
metrics?: SocialProofMetric[];
|
|
54
|
+
headline?: React__default.ReactNode;
|
|
55
|
+
industry?: React__default.ReactNode;
|
|
56
|
+
ctaText?: React__default.ReactNode;
|
|
57
|
+
}
|
|
58
|
+
declare const SocialProofCard: React__default.ForwardRefExoticComponent<SocialProofCardProps & React__default.RefAttributes<HTMLElement>>;
|
|
59
|
+
|
|
60
|
+
interface SocialProofCarouselProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
61
|
+
background?: 'default' | 'muted' | 'dark' | 'brand' | 'transparent';
|
|
62
|
+
}
|
|
63
|
+
declare const SocialProofCarousel: React__default.ForwardRefExoticComponent<SocialProofCarouselProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
64
|
+
|
|
65
|
+
interface SocialProofFeaturedProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
66
|
+
quote: React__default.ReactNode;
|
|
67
|
+
author: SocialProofAuthor;
|
|
68
|
+
featuredVariant?: 'standard' | 'cinematic' | 'spotlight';
|
|
69
|
+
starRating?: number;
|
|
70
|
+
platform?: Platform;
|
|
71
|
+
mediaSrc?: string;
|
|
72
|
+
background?: 'default' | 'muted' | 'brand' | 'transparent';
|
|
73
|
+
padding?: 'sm' | 'md' | 'lg';
|
|
74
|
+
}
|
|
75
|
+
declare const SocialProofFeatured: React__default.ForwardRefExoticComponent<SocialProofFeaturedProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
76
|
+
|
|
77
|
+
interface SocialProofGridProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
78
|
+
columns?: 1 | 2 | 3 | 4;
|
|
79
|
+
staggered?: boolean;
|
|
80
|
+
background?: 'default' | 'muted' | 'dark' | 'brand' | 'transparent';
|
|
81
|
+
}
|
|
82
|
+
declare const SocialProofGrid: React__default.ForwardRefExoticComponent<SocialProofGridProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
83
|
+
|
|
84
|
+
interface SocialProofLogoItem {
|
|
85
|
+
id: string;
|
|
86
|
+
alt: string;
|
|
87
|
+
src?: string;
|
|
88
|
+
logo?: React__default.ReactNode;
|
|
89
|
+
href?: string;
|
|
90
|
+
badge?: React__default.ReactNode;
|
|
91
|
+
}
|
|
92
|
+
interface SocialProofLogosProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
93
|
+
logos: SocialProofLogoItem[];
|
|
94
|
+
title?: React__default.ReactNode;
|
|
95
|
+
variant?: 'grid' | 'marquee';
|
|
96
|
+
speed?: 'slow' | 'normal' | 'fast';
|
|
97
|
+
background?: 'default' | 'muted' | 'dark' | 'brand' | 'transparent';
|
|
98
|
+
}
|
|
99
|
+
declare const SocialProofLogos: React__default.ForwardRefExoticComponent<SocialProofLogosProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
100
|
+
|
|
3
101
|
interface StarRatingProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
4
102
|
/** Rating value (0-5, supports decimals for half-stars) */
|
|
5
103
|
value: number;
|
|
@@ -27,32 +125,6 @@ interface StarRatingProps extends React__default.HTMLAttributes<HTMLDivElement>
|
|
|
27
125
|
*/
|
|
28
126
|
declare const StarRating: React__default.ForwardRefExoticComponent<StarRatingProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
29
127
|
|
|
30
|
-
type Platform = 'trustpilot' | 'g2' | 'google' | 'chrome-web-store';
|
|
31
|
-
interface PlatformBadgeProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
32
|
-
/** Review platform */
|
|
33
|
-
platform: Platform;
|
|
34
|
-
/** Display mode */
|
|
35
|
-
variant?: 'icon-only' | 'icon-label' | 'full';
|
|
36
|
-
/** Platform rating (used in 'full' variant) */
|
|
37
|
-
rating?: number;
|
|
38
|
-
/** Number of reviews (used in 'full' variant) */
|
|
39
|
-
count?: number;
|
|
40
|
-
/** Size variant */
|
|
41
|
-
size?: 'sm' | 'md';
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Review platform badge with recognizable brand icon, optional label,
|
|
45
|
-
* and optional rating display.
|
|
46
|
-
*
|
|
47
|
-
* @example
|
|
48
|
-
* ```tsx
|
|
49
|
-
* <PlatformBadge platform="trustpilot" variant="icon-only" />
|
|
50
|
-
* <PlatformBadge platform="g2" variant="icon-label" />
|
|
51
|
-
* <PlatformBadge platform="google" variant="full" rating={4.9} count={42} />
|
|
52
|
-
* ```
|
|
53
|
-
*/
|
|
54
|
-
declare const PlatformBadge: React__default.ForwardRefExoticComponent<PlatformBadgeProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
55
|
-
|
|
56
128
|
interface VideoLightboxProps {
|
|
57
129
|
/** Video embed URL (YouTube, Vimeo, Loom) */
|
|
58
130
|
videoUrl: string;
|
|
@@ -110,4 +182,4 @@ interface MetricCounterProps extends React__default.HTMLAttributes<HTMLDivElemen
|
|
|
110
182
|
*/
|
|
111
183
|
declare const MetricCounter: React__default.ForwardRefExoticComponent<MetricCounterProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
112
184
|
|
|
113
|
-
export { MetricCounter, type MetricCounterProps, type Platform, PlatformBadge, type PlatformBadgeProps, StarRating, type StarRatingProps, VideoLightbox, type VideoLightboxProps };
|
|
185
|
+
export { MetricCounter, type MetricCounterProps, type Platform, PlatformBadge, type PlatformBadgeProps, type SocialProofAuthor, SocialProofCard, type SocialProofCardProps, SocialProofCarousel, type SocialProofCarouselProps, SocialProofFeatured, type SocialProofFeaturedProps, SocialProofGrid, type SocialProofGridProps, type SocialProofLogoItem, SocialProofLogos, type SocialProofLogosProps, type SocialProofMedia, type SocialProofMetric, StarRating, type StarRatingProps, VideoLightbox, type VideoLightboxProps };
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
export { PlatformBadge, StarRating, VideoLightbox } from '../chunk-
|
|
2
|
+
export { PlatformBadge, SocialProofCard, SocialProofCarousel, SocialProofFeatured, SocialProofGrid, SocialProofLogos, StarRating, VideoLightbox } from '../chunk-RY257SWH.js';
|
|
3
3
|
export { MetricCounter } from '../chunk-YSYR54XR.js';
|
|
4
|
+
import '../chunk-MLINFRC3.js';
|
|
5
|
+
import '../chunk-KJ2OXQF4.js';
|
|
4
6
|
//# sourceMappingURL=out.js.map
|
|
5
7
|
//# sourceMappingURL=index.js.map
|
package/dist/web/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkH5BOCR5Z_cjs = require('../chunk-H5BOCR5Z.cjs');
|
|
5
5
|
var chunk2VVRZBUR_cjs = require('../chunk-2VVRZBUR.cjs');
|
|
6
6
|
var chunkMQDEE7HC_cjs = require('../chunk-MQDEE7HC.cjs');
|
|
7
7
|
require('../chunk-7EUR3AKV.cjs');
|
|
@@ -15,27 +15,27 @@ function UtmProvider({ params, children }) {
|
|
|
15
15
|
|
|
16
16
|
Object.defineProperty(exports, "JsonLd", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkH5BOCR5Z_cjs.JsonLd; }
|
|
19
19
|
});
|
|
20
20
|
Object.defineProperty(exports, "aggregateRatingFromTestimonials", {
|
|
21
21
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
22
|
+
get: function () { return chunkH5BOCR5Z_cjs.aggregateRatingFromTestimonials; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "buildPageGraph", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkH5BOCR5Z_cjs.buildPageGraph; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "canonicalUrl", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkH5BOCR5Z_cjs.canonicalUrl; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "createEntityIds", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkH5BOCR5Z_cjs.createEntityIds; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "createSchemaGenerators", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkH5BOCR5Z_cjs.createSchemaGenerators; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "AnalyticsProvider", {
|
|
41
41
|
enumerable: true,
|
package/dist/web/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
export { JsonLd, aggregateRatingFromTestimonials, buildPageGraph, canonicalUrl, createEntityIds, createSchemaGenerators } from '../chunk-
|
|
2
|
+
export { JsonLd, aggregateRatingFromTestimonials, buildPageGraph, canonicalUrl, createEntityIds, createSchemaGenerators } from '../chunk-NB3BDIQO.js';
|
|
3
3
|
export { AnalyticsProvider, COOKIE_CONSENT_EVENT, COOKIE_CONSENT_KEY, CookieConsent, createAnalyticsLoader, loadClarity, loadGoogleAnalytics, useCookieConsent } from '../chunk-K526GN7P.js';
|
|
4
4
|
export { UTM_CAMPAIGNS, UTM_CONTENTS, UTM_MEDIUMS_ALL, UTM_MEDIUMS_APP, UTM_MEDIUMS_MESSAGING, UTM_MEDIUMS_WEB, UTM_SOURCES, UTM_SOURCES_REQUIRING_SELLER, UTM_TERMS, buildBlockedError, classifyAndEnforce, createAuditEntry, isValidUtmParams, parseUtmParams, requiresSellerAttribution, toFirstTouchAttribution, validateCompliance, validateUtmField } from '../chunk-BILT5KD3.js';
|
|
5
5
|
import '../chunk-KJHPOB3J.js';
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkH5BOCR5Z_cjs = require('../../chunk-H5BOCR5Z.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "JsonLd", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunkH5BOCR5Z_cjs.JsonLd; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "aggregateRatingFromTestimonials", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkH5BOCR5Z_cjs.aggregateRatingFromTestimonials; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "buildPageGraph", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkH5BOCR5Z_cjs.buildPageGraph; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "canonicalUrl", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkH5BOCR5Z_cjs.canonicalUrl; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "createEntityIds", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkH5BOCR5Z_cjs.createEntityIds; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "createSchemaGenerators", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkH5BOCR5Z_cjs.createSchemaGenerators; }
|
|
30
30
|
});
|
|
31
31
|
//# sourceMappingURL=out.js.map
|
|
32
32
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -192,11 +192,6 @@ interface VideoObjectMeta {
|
|
|
192
192
|
* ```
|
|
193
193
|
*/
|
|
194
194
|
|
|
195
|
-
/**
|
|
196
|
-
* Create stable entity ID anchors for @graph cross-referencing.
|
|
197
|
-
* Every entity in the knowledge graph gets a permanent @id.
|
|
198
|
-
* Google resolves @id references across the entire site.
|
|
199
|
-
*/
|
|
200
195
|
declare function createEntityIds(brand: BrandConfig): {
|
|
201
196
|
readonly organization: `${string}/#organization`;
|
|
202
197
|
readonly website: `${string}/#website`;
|
|
@@ -192,11 +192,6 @@ interface VideoObjectMeta {
|
|
|
192
192
|
* ```
|
|
193
193
|
*/
|
|
194
194
|
|
|
195
|
-
/**
|
|
196
|
-
* Create stable entity ID anchors for @graph cross-referencing.
|
|
197
|
-
* Every entity in the knowledge graph gets a permanent @id.
|
|
198
|
-
* Google resolves @id references across the entire site.
|
|
199
|
-
*/
|
|
200
195
|
declare function createEntityIds(brand: BrandConfig): {
|
|
201
196
|
readonly organization: `${string}/#organization`;
|
|
202
197
|
readonly website: `${string}/#website`;
|
package/dist/web/server/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { JsonLd, aggregateRatingFromTestimonials, buildPageGraph, canonicalUrl, createEntityIds, createSchemaGenerators } from '../../chunk-
|
|
1
|
+
export { JsonLd, aggregateRatingFromTestimonials, buildPageGraph, canonicalUrl, createEntityIds, createSchemaGenerators } from '../../chunk-NB3BDIQO.js';
|
|
2
2
|
//# sourceMappingURL=out.js.map
|
|
3
3
|
//# sourceMappingURL=index.js.map
|