@sudobility/marketing-components 1.0.9
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/crm-dashboard.d.ts +18 -0
- package/dist/crm-dashboard.d.ts.map +1 -0
- package/dist/cta-banner.d.ts +33 -0
- package/dist/cta-banner.d.ts.map +1 -0
- package/dist/feature-grid.d.ts +52 -0
- package/dist/feature-grid.d.ts.map +1 -0
- package/dist/feature-list-item.d.ts +34 -0
- package/dist/feature-list-item.d.ts.map +1 -0
- package/dist/feature-spotlight.d.ts +33 -0
- package/dist/feature-spotlight.d.ts.map +1 -0
- package/dist/funnel-chart.d.ts +33 -0
- package/dist/funnel-chart.d.ts.map +1 -0
- package/dist/hero-banner-with-badge.d.ts +21 -0
- package/dist/hero-banner-with-badge.d.ts.map +1 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +2465 -0
- package/dist/index.umd.js +8 -0
- package/dist/internal-link-clusters.d.ts +64 -0
- package/dist/internal-link-clusters.d.ts.map +1 -0
- package/dist/landing-builder.d.ts +33 -0
- package/dist/landing-builder.d.ts.map +1 -0
- package/dist/nps-survey.d.ts +33 -0
- package/dist/nps-survey.d.ts.map +1 -0
- package/dist/sales-report.d.ts +18 -0
- package/dist/sales-report.d.ts.map +1 -0
- package/dist/subscriber-list.d.ts +18 -0
- package/dist/subscriber-list.d.ts.map +1 -0
- package/dist/survey-builder.d.ts +33 -0
- package/dist/survey-builder.d.ts.map +1 -0
- package/dist/testimonial-slider.d.ts +33 -0
- package/dist/testimonial-slider.d.ts.map +1 -0
- package/dist/use-case-grid.d.ts +17 -0
- package/dist/use-case-grid.d.ts.map +1 -0
- package/dist/welcome-screen.d.ts +33 -0
- package/dist/welcome-screen.d.ts.map +1 -0
- package/package.json +57 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CrmDashboard Component
|
|
3
|
+
*
|
|
4
|
+
* CRM component with full dark mode support.
|
|
5
|
+
*
|
|
6
|
+
* @component
|
|
7
|
+
* @example
|
|
8
|
+
* ```tsx
|
|
9
|
+
* <CrmDashboard className="custom-class" />
|
|
10
|
+
* ```
|
|
11
|
+
*/
|
|
12
|
+
export interface CrmDashboardProps {
|
|
13
|
+
className?: string;
|
|
14
|
+
children?: React.ReactNode;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
}
|
|
17
|
+
export declare const CrmDashboard: ({ className, children, disabled, }: CrmDashboardProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
//# sourceMappingURL=crm-dashboard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"crm-dashboard.d.ts","sourceRoot":"","sources":["../src/crm-dashboard.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AACH,MAAM,WAAW,iBAAiB;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,YAAY,GAAI,oCAI1B,iBAAiB,4CAiBnB,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UctaUbanner Component
|
|
3
|
+
*
|
|
4
|
+
* A reusable UctaUbanner component with full dark mode support.
|
|
5
|
+
* Optimized for accessibility and AI-assisted development.
|
|
6
|
+
*
|
|
7
|
+
* @component
|
|
8
|
+
* @example
|
|
9
|
+
* ```tsx
|
|
10
|
+
* <UctaUbanner className="custom-class" />
|
|
11
|
+
* ```
|
|
12
|
+
*
|
|
13
|
+
* @remarks
|
|
14
|
+
* This component supports:
|
|
15
|
+
* - Light and dark themes automatically
|
|
16
|
+
* - Responsive design
|
|
17
|
+
* - Accessibility features
|
|
18
|
+
* - TypeScript type safety
|
|
19
|
+
*
|
|
20
|
+
* @see {@link https://docs.example.com/components/cta-banner}
|
|
21
|
+
*/
|
|
22
|
+
export interface UctaUbannerProps {
|
|
23
|
+
/** Additional CSS classes */
|
|
24
|
+
className?: string;
|
|
25
|
+
/** Component children */
|
|
26
|
+
children?: React.ReactNode;
|
|
27
|
+
/** Disabled state */
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
/** Callback when component is interacted with */
|
|
30
|
+
onClick?: () => void;
|
|
31
|
+
}
|
|
32
|
+
export declare const UctaUbanner: ({ className, children, disabled, onClick, }: UctaUbannerProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
//# sourceMappingURL=cta-banner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cta-banner.d.ts","sourceRoot":"","sources":["../src/cta-banner.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,WAAW,gBAAgB;IAC/B,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iDAAiD;IACjD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,WAAW,GAAI,6CAKzB,gBAAgB,4CAmBlB,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
|
3
|
+
declare const gridVariants: (props?: ({
|
|
4
|
+
columns?: 1 | 2 | 3 | 4 | null | undefined;
|
|
5
|
+
spacing?: "sm" | "md" | "lg" | null | undefined;
|
|
6
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
7
|
+
export interface Feature {
|
|
8
|
+
id?: string;
|
|
9
|
+
icon: React.ReactNode;
|
|
10
|
+
title: string;
|
|
11
|
+
description: string | React.ReactNode;
|
|
12
|
+
link?: {
|
|
13
|
+
href: string;
|
|
14
|
+
text?: string;
|
|
15
|
+
};
|
|
16
|
+
badge?: {
|
|
17
|
+
text: string;
|
|
18
|
+
variant?: 'success' | 'info' | 'warning' | 'default';
|
|
19
|
+
};
|
|
20
|
+
gradient?: {
|
|
21
|
+
from: string;
|
|
22
|
+
to: string;
|
|
23
|
+
};
|
|
24
|
+
learnMoreUrl?: string;
|
|
25
|
+
benefits?: string[];
|
|
26
|
+
}
|
|
27
|
+
interface FeatureGridProps extends VariantProps<typeof gridVariants> {
|
|
28
|
+
className?: string;
|
|
29
|
+
features: Feature[];
|
|
30
|
+
cardVariant?: 'default' | 'left' | 'hoverable' | 'card' | 'minimal';
|
|
31
|
+
cardAnimation?: 'none' | 'hover' | 'float';
|
|
32
|
+
iconSize?: 'sm' | 'md' | 'lg';
|
|
33
|
+
iconStyle?: 'gradient' | 'solid' | 'outline' | 'colorful';
|
|
34
|
+
iconPosition?: 'center' | 'left' | 'right';
|
|
35
|
+
titleClass?: string;
|
|
36
|
+
descriptionClass?: string;
|
|
37
|
+
animate?: boolean;
|
|
38
|
+
animationDelay?: number;
|
|
39
|
+
staggerDelay?: number;
|
|
40
|
+
onFeatureClick?: (feature: Feature) => void;
|
|
41
|
+
defaultLinkText?: string;
|
|
42
|
+
}
|
|
43
|
+
export declare const FeatureGrid: React.FC<FeatureGridProps>;
|
|
44
|
+
export declare const createFeature: (icon: React.ReactNode, title: string, description: string | React.ReactNode, options?: Partial<Feature>) => Feature;
|
|
45
|
+
export declare const createSecurityFeatures: (labels?: {
|
|
46
|
+
passwordlessTitle?: string;
|
|
47
|
+
passwordlessDescription?: string;
|
|
48
|
+
encryptionTitle?: string;
|
|
49
|
+
encryptionDescription?: string;
|
|
50
|
+
}) => Feature[];
|
|
51
|
+
export {};
|
|
52
|
+
//# sourceMappingURL=feature-grid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature-grid.d.ts","sourceRoot":"","sources":["../src/feature-grid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAGlE,QAAA,MAAM,YAAY;;;8EAkBhB,CAAC;AAuDH,MAAM,WAAW,OAAO;IACtB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IACtC,IAAI,CAAC,EAAE;QACL,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IACF,KAAK,CAAC,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,CAAC;KACtD,CAAC;IACF,QAAQ,CAAC,EAAE;QACT,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,EAAE,MAAM,CAAC;KACZ,CAAC;IAEF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAED,UAAU,gBAAiB,SAAQ,YAAY,CAAC,OAAO,YAAY,CAAC;IAClE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,OAAO,EAAE,CAAC;IAGpB,WAAW,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,WAAW,GAAG,MAAM,GAAG,SAAS,CAAC;IACpE,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;IAG3C,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC9B,SAAS,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,CAAC;IAC1D,YAAY,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;IAG3C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAG1B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAG5C,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAWD,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAsJlD,CAAC;AAGF,eAAO,MAAM,aAAa,GACxB,MAAM,KAAK,CAAC,SAAS,EACrB,OAAO,MAAM,EACb,aAAa,MAAM,GAAG,KAAK,CAAC,SAAS,EACrC,UAAU,OAAO,CAAC,OAAO,CAAC,KACzB,OAKD,CAAC;AAIH,eAAO,MAAM,sBAAsB,GAAI,SAAS;IAC9C,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC,KAAG,OAAO,EAqCV,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface FeatureListItemProps {
|
|
3
|
+
/** Feature title */
|
|
4
|
+
title: string;
|
|
5
|
+
/** Feature description */
|
|
6
|
+
description?: string;
|
|
7
|
+
/** Icon component (defaults to CheckCircleIcon) */
|
|
8
|
+
icon?: React.ComponentType<{
|
|
9
|
+
className?: string;
|
|
10
|
+
}>;
|
|
11
|
+
/** Icon background color variant */
|
|
12
|
+
iconVariant?: 'primary' | 'success' | 'warning' | 'info' | 'gradient';
|
|
13
|
+
/** Size variant */
|
|
14
|
+
size?: 'sm' | 'md' | 'lg';
|
|
15
|
+
/** Additional className for the container */
|
|
16
|
+
className?: string;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* FeatureListItem Component
|
|
20
|
+
*
|
|
21
|
+
* Displays a feature with an icon, title, and optional description.
|
|
22
|
+
* Commonly used in landing pages, marketing sections, and feature showcases.
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```tsx
|
|
26
|
+
* <FeatureListItem
|
|
27
|
+
* title="End-to-End Encryption"
|
|
28
|
+
* description="Your emails are encrypted and only you can read them"
|
|
29
|
+
* iconVariant="success"
|
|
30
|
+
* />
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
export declare const FeatureListItem: React.FC<FeatureListItemProps>;
|
|
34
|
+
//# sourceMappingURL=feature-list-item.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature-list-item.d.ts","sourceRoot":"","sources":["../src/feature-list-item.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,MAAM,WAAW,oBAAoB;IACnC,oBAAoB;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,0BAA0B;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,mDAAmD;IACnD,IAAI,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACnD,oCAAoC;IACpC,WAAW,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;IACtE,mBAAmB;IACnB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,6CAA6C;IAC7C,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CAoE1D,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UfeatureUspotlight Component
|
|
3
|
+
*
|
|
4
|
+
* A reusable UfeatureUspotlight component with full dark mode support.
|
|
5
|
+
* Optimized for accessibility and AI-assisted development.
|
|
6
|
+
*
|
|
7
|
+
* @component
|
|
8
|
+
* @example
|
|
9
|
+
* ```tsx
|
|
10
|
+
* <UfeatureUspotlight className="custom-class" />
|
|
11
|
+
* ```
|
|
12
|
+
*
|
|
13
|
+
* @remarks
|
|
14
|
+
* This component supports:
|
|
15
|
+
* - Light and dark themes automatically
|
|
16
|
+
* - Responsive design
|
|
17
|
+
* - Accessibility features
|
|
18
|
+
* - TypeScript type safety
|
|
19
|
+
*
|
|
20
|
+
* @see {@link https://docs.example.com/components/feature-spotlight}
|
|
21
|
+
*/
|
|
22
|
+
export interface UfeatureUspotlightProps {
|
|
23
|
+
/** Additional CSS classes */
|
|
24
|
+
className?: string;
|
|
25
|
+
/** Component children */
|
|
26
|
+
children?: React.ReactNode;
|
|
27
|
+
/** Disabled state */
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
/** Callback when component is interacted with */
|
|
30
|
+
onClick?: () => void;
|
|
31
|
+
}
|
|
32
|
+
export declare const UfeatureUspotlight: ({ className, children, disabled, onClick, }: UfeatureUspotlightProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
//# sourceMappingURL=feature-spotlight.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature-spotlight.d.ts","sourceRoot":"","sources":["../src/feature-spotlight.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,WAAW,uBAAuB;IACtC,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iDAAiD;IACjD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,kBAAkB,GAAI,6CAKhC,uBAAuB,4CAmBzB,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UfunnelUchart Component
|
|
3
|
+
*
|
|
4
|
+
* A reusable UfunnelUchart component with full dark mode support.
|
|
5
|
+
* Optimized for accessibility and AI-assisted development.
|
|
6
|
+
*
|
|
7
|
+
* @component
|
|
8
|
+
* @example
|
|
9
|
+
* ```tsx
|
|
10
|
+
* <UfunnelUchart className="custom-class" />
|
|
11
|
+
* ```
|
|
12
|
+
*
|
|
13
|
+
* @remarks
|
|
14
|
+
* This component supports:
|
|
15
|
+
* - Light and dark themes automatically
|
|
16
|
+
* - Responsive design
|
|
17
|
+
* - Accessibility features
|
|
18
|
+
* - TypeScript type safety
|
|
19
|
+
*
|
|
20
|
+
* @see {@link https://docs.example.com/components/funnel-chart}
|
|
21
|
+
*/
|
|
22
|
+
export interface UfunnelUchartProps {
|
|
23
|
+
/** Additional CSS classes */
|
|
24
|
+
className?: string;
|
|
25
|
+
/** Component children */
|
|
26
|
+
children?: React.ReactNode;
|
|
27
|
+
/** Disabled state */
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
/** Callback when component is interacted with */
|
|
30
|
+
onClick?: () => void;
|
|
31
|
+
}
|
|
32
|
+
export declare const UfunnelUchart: ({ className, children, disabled, onClick, }: UfunnelUchartProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
//# sourceMappingURL=funnel-chart.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"funnel-chart.d.ts","sourceRoot":"","sources":["../src/funnel-chart.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,WAAW,kBAAkB;IACjC,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iDAAiD;IACjD,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,aAAa,GAAI,6CAK3B,kBAAkB,4CAmBpB,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface ButtonConfig {
|
|
3
|
+
text: string;
|
|
4
|
+
onClick?: () => void;
|
|
5
|
+
href?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface HeroBannerWithBadgeProps {
|
|
9
|
+
badgeIcon?: React.ReactNode;
|
|
10
|
+
badgeText: string;
|
|
11
|
+
badgeColor?: 'blue' | 'green' | 'purple' | 'orange' | 'pink' | 'gray';
|
|
12
|
+
title: string | React.ReactNode;
|
|
13
|
+
subtitle?: string;
|
|
14
|
+
description: string;
|
|
15
|
+
primaryButton?: ButtonConfig;
|
|
16
|
+
secondaryButton?: ButtonConfig;
|
|
17
|
+
className?: string;
|
|
18
|
+
children?: React.ReactNode;
|
|
19
|
+
}
|
|
20
|
+
export declare const HeroBannerWithBadge: React.FC<HeroBannerWithBadgeProps>;
|
|
21
|
+
//# sourceMappingURL=hero-banner-with-badge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hero-banner-with-badge.d.ts","sourceRoot":"","sources":["../src/hero-banner-with-badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,wBAAwB;IACvC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAC;IACtE,KAAK,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,YAAY,CAAC;IAC7B,eAAe,CAAC,EAAE,YAAY,CAAC;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CA6GlE,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* marketing-components
|
|
3
|
+
*
|
|
4
|
+
* Specialized components for the marketing domain
|
|
5
|
+
*
|
|
6
|
+
* @package @sudobility/marketing-components
|
|
7
|
+
*/
|
|
8
|
+
export * from './crm-dashboard';
|
|
9
|
+
export * from './cta-banner';
|
|
10
|
+
export * from './feature-grid';
|
|
11
|
+
export * from './feature-list-item';
|
|
12
|
+
export * from './feature-spotlight';
|
|
13
|
+
export * from './funnel-chart';
|
|
14
|
+
export * from './hero-banner-with-badge';
|
|
15
|
+
export * from './internal-link-clusters';
|
|
16
|
+
export * from './landing-builder';
|
|
17
|
+
export * from './nps-survey';
|
|
18
|
+
export * from './sales-report';
|
|
19
|
+
export * from './subscriber-list';
|
|
20
|
+
export * from './survey-builder';
|
|
21
|
+
export * from './testimonial-slider';
|
|
22
|
+
export * from './use-case-grid';
|
|
23
|
+
export * from './welcome-screen';
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC"}
|