igloo-d2c-components 1.0.51 → 1.0.53-non-prod
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/cjs/index.js +154 -46
- package/dist/esm/index.js +151 -48
- package/dist/types/components/Banner/Banner.d.ts +2 -2
- package/dist/types/components/Button/Button.d.ts +2 -1
- package/dist/types/components/Card/Card.d.ts +2 -2
- package/dist/types/components/DesktopHeaderMenuBar/styled.d.ts +3 -3
- package/dist/types/components/ErrorBoundary/ErrorBoundary.d.ts +58 -0
- package/dist/types/components/ErrorBoundary/index.d.ts +2 -0
- package/dist/types/components/Header/styled.d.ts +9 -6
- package/dist/types/components/InfoCallout/InfoCallout.d.ts +1 -1
- package/dist/types/components/ProductCard/ProductCard.d.ts +1 -1
- package/dist/types/components/ToggleGroup/ToggleGroup.d.ts +0 -4
- package/dist/types/index.d.ts +3 -0
- package/dist/types/storybook-components/Banner.stories.d.ts +9 -11
- package/dist/types/storybook-components/BillingToggle.stories.d.ts +5 -7
- package/dist/types/storybook-components/Button.stories.d.ts +7 -9
- package/dist/types/storybook-components/Card.stories.d.ts +7 -9
- package/dist/types/storybook-components/CheckoutProgress.stories.d.ts +18 -7
- package/dist/types/storybook-components/CoverageAmountSlider.stories.d.ts +9 -11
- package/dist/types/storybook-components/Footer.stories.d.ts +6 -8
- package/dist/types/storybook-components/Header.stories.d.ts +5 -7
- package/dist/types/storybook-components/HealthQuestionGroup.stories.d.ts +18 -7
- package/dist/types/storybook-components/InfoCallout.stories.d.ts +7 -9
- package/dist/types/storybook-components/NewHeader.stories.d.ts +12 -14
- package/dist/types/storybook-components/OptionButton.stories.d.ts +6 -8
- package/dist/types/storybook-components/ProductCard.stories.d.ts +6 -8
- package/dist/types/storybook-components/QuestionSection.stories.d.ts +7 -9
- package/dist/types/storybook-components/RecommendationsDrawer.stories.d.ts +3 -5
- package/dist/types/storybook-components/ToggleGroup.stories.d.ts +6 -8
- package/dist/types/utils/componentResolver.d.ts +43 -0
- package/package.json +30 -14
- package/dist/cjs/index.js.map +0 -1
- package/dist/esm/index.js.map +0 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Tenant-Aware Card Component
|
|
3
3
|
* MUI Card with tenant theming support
|
|
4
4
|
*/
|
|
5
|
-
|
|
5
|
+
import React from 'react';
|
|
6
6
|
import { CardProps as MuiCardProps } from '@mui/material';
|
|
7
7
|
export interface CardProps extends Omit<MuiCardProps, 'title' | 'content' | 'action'> {
|
|
8
8
|
/**
|
|
@@ -39,4 +39,4 @@ export interface CardProps extends Omit<MuiCardProps, 'title' | 'content' | 'act
|
|
|
39
39
|
* />
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
|
-
export declare
|
|
42
|
+
export declare const Card: React.NamedExoticComponent<CardProps>;
|
|
@@ -88,9 +88,9 @@ export declare const MenuItemText: import("@emotion/styled").StyledComponent<imp
|
|
|
88
88
|
* Dropdown arrow icon
|
|
89
89
|
* Size: 24px, color: #13131B
|
|
90
90
|
*/
|
|
91
|
-
export declare const DropdownIcon: import("@emotion/styled").StyledComponent<
|
|
92
|
-
ref?: import("react").
|
|
93
|
-
}>;
|
|
91
|
+
export declare const DropdownIcon: import("@emotion/styled").StyledComponent<import("@mui/material").SvgIconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
|
|
92
|
+
ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
93
|
+
}, "fontSize" | "children" | "style" | "className" | "classes" | "sx" | "color" | "shapeRendering" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
94
94
|
/**
|
|
95
95
|
* Right section containing menu items and CTA button
|
|
96
96
|
* Gap: 32px between menu items (per Figma node 3506:35611)
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Error Boundary Component
|
|
3
|
+
* Provides error resilience for React components
|
|
4
|
+
*/
|
|
5
|
+
import React, { Component, ErrorInfo, ReactNode } from 'react';
|
|
6
|
+
export interface ErrorBoundaryProps {
|
|
7
|
+
/**
|
|
8
|
+
* Child components to wrap
|
|
9
|
+
*/
|
|
10
|
+
children: ReactNode;
|
|
11
|
+
/**
|
|
12
|
+
* Fallback UI to display on error
|
|
13
|
+
*/
|
|
14
|
+
fallback?: ReactNode;
|
|
15
|
+
/**
|
|
16
|
+
* Callback fired when an error is caught
|
|
17
|
+
*/
|
|
18
|
+
onError?: (error: Error, errorInfo: ErrorInfo) => void;
|
|
19
|
+
/**
|
|
20
|
+
* Component name for debugging
|
|
21
|
+
*/
|
|
22
|
+
componentName?: string;
|
|
23
|
+
}
|
|
24
|
+
interface ErrorBoundaryState {
|
|
25
|
+
hasError: boolean;
|
|
26
|
+
error: Error | null;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* ErrorBoundary - Catches React errors in child component tree
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* ```tsx
|
|
33
|
+
* <ErrorBoundary fallback={<div>Something went wrong</div>}>
|
|
34
|
+
* <MyComponent />
|
|
35
|
+
* </ErrorBoundary>
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
export declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryState> {
|
|
39
|
+
constructor(props: ErrorBoundaryProps);
|
|
40
|
+
static getDerivedStateFromError(error: Error): ErrorBoundaryState;
|
|
41
|
+
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
42
|
+
render(): ReactNode;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Higher-Order Component that wraps a component with an ErrorBoundary
|
|
46
|
+
*
|
|
47
|
+
* @param Component - Component to wrap
|
|
48
|
+
* @param fallback - Optional custom fallback UI
|
|
49
|
+
* @returns Wrapped component with error boundary
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* ```tsx
|
|
53
|
+
* const SafeButton = withErrorBoundary(Button, <div>Button failed to render</div>);
|
|
54
|
+
* <SafeButton {...props} />
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
export declare function withErrorBoundary<P extends object>(Component: React.ComponentType<P>, fallback?: ReactNode): React.ComponentType<P>;
|
|
58
|
+
export {};
|
|
@@ -39,15 +39,18 @@ export declare const ImageProductIcon: import("@emotion/styled").StyledComponent
|
|
|
39
39
|
export declare const StyledMenuItemDesktop: import("@emotion/styled").StyledComponent<import("@mui/material").MenuItemOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
|
|
40
40
|
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
41
41
|
}, "children" | "style" | "className" | "classes" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "autoFocus" | "dense" | "selected" | "disableGutters" | "divider"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
42
|
-
export declare const StyledCloseIcon: import("@emotion/styled").StyledComponent<
|
|
43
|
-
ref?: import("react").
|
|
44
|
-
}>;
|
|
42
|
+
export declare const StyledCloseIcon: import("@emotion/styled").StyledComponent<import("@mui/material").SvgIconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
|
|
43
|
+
ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
44
|
+
}, "fontSize" | "children" | "style" | "className" | "classes" | "sx" | "color" | "shapeRendering" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
45
45
|
export declare const StyledAvatarUserIcon: import("@emotion/styled").StyledComponent<import("@mui/material").AvatarOwnProps & import("@mui/material").AvatarSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
46
46
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
47
47
|
}, "children" | "style" | "className" | "classes" | "sx" | "variant" | "sizes" | "alt" | "src" | "srcSet" | "slots" | "slotProps" | "imgProps"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
48
|
-
export declare const StyledMenuIcon: import("@emotion/styled").StyledComponent<
|
|
49
|
-
ref?: import("react").
|
|
50
|
-
}
|
|
48
|
+
export declare const StyledMenuIcon: import("@emotion/styled").StyledComponent<import("@mui/material").SvgIconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
|
|
49
|
+
ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
50
|
+
}, "fontSize" | "children" | "style" | "className" | "classes" | "sx" | "color" | "shapeRendering" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
51
|
+
ispartnershippagemobileview: boolean;
|
|
52
|
+
scrolled: boolean;
|
|
53
|
+
}, {}, {}>;
|
|
51
54
|
export declare const StyledDrawer: import("@emotion/styled").StyledComponent<import("@mui/material").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
52
55
|
export declare const DivLogoWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
53
56
|
export declare const DivLogo: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -31,4 +31,4 @@ export interface InfoCalloutProps {
|
|
|
31
31
|
* </InfoCallout>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
|
-
export declare
|
|
34
|
+
export declare const InfoCallout: React.NamedExoticComponent<InfoCalloutProps>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -61,9 +61,12 @@ export { FAQAccordion } from './components/FAQAccordion';
|
|
|
61
61
|
export type { FAQAccordionProps, FAQItem } from './components/FAQAccordion';
|
|
62
62
|
export { BenefitsSummary } from './components/BenefitsSummary';
|
|
63
63
|
export type { BenefitItem, BenefitsSummaryProps } from './components/BenefitsSummary';
|
|
64
|
+
export { ErrorBoundary, withErrorBoundary } from './components/ErrorBoundary';
|
|
65
|
+
export type { ErrorBoundaryProps } from './components/ErrorBoundary';
|
|
64
66
|
export { getTenantAssetPath, getTenantLogoPath, useTenantAsset, useTenantFavicon, useTenantLogo } from './utils/assets';
|
|
65
67
|
export { createThemeCSSVariables, getThemeColor, mergeTenantTheme } from './utils/theme';
|
|
66
68
|
export { isValidExternalUrl, safeWindowOpen, sanitizeUrl } from './utils/security';
|
|
67
69
|
export { getImageSrc, isStaticImageData } from './utils/image';
|
|
68
70
|
export type { StaticImageData } from './utils/image';
|
|
71
|
+
export { resolveComponent, resolveReactComponent, resolveSvgIcon } from './utils/componentResolver';
|
|
69
72
|
export * from './assets';
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
import { Banner } from '../components/Banner';
|
|
3
|
-
declare const _default: ComponentMeta<typeof Banner>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const WithGradient:
|
|
7
|
-
export declare const WithAction:
|
|
8
|
-
export declare const ComplexAction:
|
|
9
|
-
export declare const LongContent:
|
|
10
|
-
export declare const WithAmmetLifeTheme:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
4
|
+
export declare const WithGradient: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
5
|
+
export declare const WithAction: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
6
|
+
export declare const ComplexAction: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
7
|
+
export declare const LongContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
8
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
11
9
|
export declare const Variants: () => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export declare const MinimalContent:
|
|
13
|
-
export declare const NoDescription:
|
|
10
|
+
export declare const MinimalContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
11
|
+
export declare const NoDescription: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
import { BillingToggle } from '../components/BillingToggle';
|
|
3
|
-
declare const _default: ComponentMeta<typeof BillingToggle>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const AnnuallySelected:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
|
|
4
|
+
export declare const AnnuallySelected: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
|
|
7
5
|
export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
export declare const WithCustomFormatMessage:
|
|
9
|
-
export declare const WithAmmetLifeTheme:
|
|
6
|
+
export declare const WithCustomFormatMessage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
|
|
7
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
import { Button } from '../components/Button';
|
|
3
|
-
declare const _default: ComponentMeta<typeof Button>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const TenantColored:
|
|
7
|
-
export declare const Outlined:
|
|
8
|
-
export declare const Text:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
|
|
4
|
+
export declare const TenantColored: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
|
|
5
|
+
export declare const Outlined: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
|
|
6
|
+
export declare const Text: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
|
|
9
7
|
export declare const Sizes: () => import("react/jsx-runtime").JSX.Element;
|
|
10
8
|
export declare const Variants: () => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export declare const WithAmmetLifeTheme:
|
|
12
|
-
export declare const Disabled:
|
|
9
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
|
|
10
|
+
export declare const Disabled: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
import { Card } from '../components/Card';
|
|
3
|
-
declare const _default: ComponentMeta<typeof Card>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const WithTenantAccent:
|
|
7
|
-
export declare const WithActions:
|
|
8
|
-
export declare const CompleteCard:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
|
|
4
|
+
export declare const WithTenantAccent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
|
|
5
|
+
export declare const WithActions: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
|
|
6
|
+
export declare const CompleteCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
|
|
9
7
|
export declare const ElevationVariants: () => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export declare const WithAmmetLifeTheme:
|
|
11
|
-
export declare const LongContent:
|
|
8
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
|
|
9
|
+
export declare const LongContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
|
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
|
|
3
|
+
children?: import("react").ReactNode;
|
|
4
|
+
}>;
|
|
4
5
|
export default _default;
|
|
5
|
-
export declare const Step1:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export declare const
|
|
9
|
-
|
|
6
|
+
export declare const Step1: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
|
|
7
|
+
children?: import("react").ReactNode;
|
|
8
|
+
}>;
|
|
9
|
+
export declare const Step2: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
|
|
10
|
+
children?: import("react").ReactNode;
|
|
11
|
+
}>;
|
|
12
|
+
export declare const Step3: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
|
|
13
|
+
children?: import("react").ReactNode;
|
|
14
|
+
}>;
|
|
15
|
+
export declare const WithoutBackButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
|
|
16
|
+
children?: import("react").ReactNode;
|
|
17
|
+
}>;
|
|
18
|
+
export declare const FiveSteps: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
|
|
19
|
+
children?: import("react").ReactNode;
|
|
20
|
+
}>;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
import { CoverageAmountSlider } from '../components/CoverageAmountSlider';
|
|
3
|
-
declare const _default: ComponentMeta<typeof CoverageAmountSlider>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const MidRange:
|
|
7
|
-
export declare const Maximum:
|
|
8
|
-
export declare const CustomSteps:
|
|
9
|
-
export declare const CustomCurrency:
|
|
10
|
-
export declare const LargeRange:
|
|
11
|
-
export declare const SmallRange:
|
|
12
|
-
export declare const WithAmmetLifeTheme:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
4
|
+
export declare const MidRange: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
5
|
+
export declare const Maximum: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
6
|
+
export declare const CustomSteps: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
7
|
+
export declare const CustomCurrency: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
8
|
+
export declare const LargeRange: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
9
|
+
export declare const SmallRange: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
10
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
|
|
13
11
|
export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
import { Footer } from '../components/Footer';
|
|
3
|
-
declare const _default: ComponentMeta<typeof Footer>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const SimplifiedLayout:
|
|
7
|
-
export declare const MobileView:
|
|
8
|
-
export declare const WithPoweredBy:
|
|
9
|
-
export declare const WithAmmetLifeTheme:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
|
|
4
|
+
export declare const SimplifiedLayout: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
|
|
5
|
+
export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
|
|
6
|
+
export declare const WithPoweredBy: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
|
|
7
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
import { Header } from '../components/Header';
|
|
3
|
-
declare const _default: ComponentMeta<typeof Header>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const WithUser:
|
|
7
|
-
export declare const MobileView:
|
|
8
|
-
export declare const WithAmmetLifeTheme:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
|
|
4
|
+
export declare const WithUser: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
|
|
5
|
+
export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
|
|
6
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
|
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
|
|
3
|
+
children?: import("react").ReactNode;
|
|
4
|
+
}>;
|
|
4
5
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export declare const
|
|
9
|
-
|
|
6
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
|
|
7
|
+
children?: import("react").ReactNode;
|
|
8
|
+
}>;
|
|
9
|
+
export declare const WithYesSelected: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
|
|
10
|
+
children?: import("react").ReactNode;
|
|
11
|
+
}>;
|
|
12
|
+
export declare const WithError: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
|
|
13
|
+
children?: import("react").ReactNode;
|
|
14
|
+
}>;
|
|
15
|
+
export declare const PregnancyQuestion: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
|
|
16
|
+
children?: import("react").ReactNode;
|
|
17
|
+
}>;
|
|
18
|
+
export declare const MultilineQuestion: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
|
|
19
|
+
children?: import("react").ReactNode;
|
|
20
|
+
}>;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
import { InfoCallout } from '../components/InfoCallout';
|
|
3
|
-
declare const _default: ComponentMeta<typeof InfoCallout>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const CustomTitle:
|
|
7
|
-
export declare const LongContent:
|
|
8
|
-
export declare const ShortContent:
|
|
9
|
-
export declare const WithCustomFormatMessage:
|
|
10
|
-
export declare const WithAmmetLifeTheme:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
|
|
4
|
+
export declare const CustomTitle: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
|
|
5
|
+
export declare const LongContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
|
|
6
|
+
export declare const ShortContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
|
|
7
|
+
export declare const WithCustomFormatMessage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
|
|
8
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
|
|
@@ -2,50 +2,48 @@
|
|
|
2
2
|
* NewHeader Storybook Stories
|
|
3
3
|
* Interactive documentation and testing for the NewHeader component
|
|
4
4
|
*/
|
|
5
|
-
|
|
6
|
-
import { NewHeader } from '../components/NewHeader';
|
|
7
|
-
declare const _default: ComponentMeta<typeof NewHeader>;
|
|
5
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
8
6
|
export default _default;
|
|
9
7
|
/**
|
|
10
8
|
* Default story - Basic header with Igloo branding
|
|
11
9
|
*/
|
|
12
|
-
export declare const Default:
|
|
10
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
13
11
|
/**
|
|
14
12
|
* Authenticated User story
|
|
15
13
|
*/
|
|
16
|
-
export declare const AuthenticatedUser:
|
|
14
|
+
export declare const AuthenticatedUser: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
17
15
|
/**
|
|
18
16
|
* Mobile View story
|
|
19
17
|
*/
|
|
20
|
-
export declare const MobileView:
|
|
18
|
+
export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
21
19
|
/**
|
|
22
20
|
* AmMetLife Tenant story
|
|
23
21
|
*/
|
|
24
|
-
export declare const AmMetLifeTenant:
|
|
22
|
+
export declare const AmMetLifeTenant: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
25
23
|
/**
|
|
26
24
|
* Minimal story - No navigation links
|
|
27
25
|
*/
|
|
28
|
-
export declare const MinimalHeader:
|
|
26
|
+
export declare const MinimalHeader: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
29
27
|
/**
|
|
30
28
|
* Custom Drawer Content story
|
|
31
29
|
*/
|
|
32
|
-
export declare const CustomDrawerContent:
|
|
30
|
+
export declare const CustomDrawerContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
33
31
|
/**
|
|
34
32
|
* Many Menu Items story - Testing overflow
|
|
35
33
|
*/
|
|
36
|
-
export declare const ManyMenuItems:
|
|
34
|
+
export declare const ManyMenuItems: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
37
35
|
/**
|
|
38
36
|
* Without Logo story - Edge case testing
|
|
39
37
|
*/
|
|
40
|
-
export declare const WithoutLogo:
|
|
38
|
+
export declare const WithoutLogo: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
41
39
|
/**
|
|
42
40
|
* Internationalization story
|
|
43
41
|
*/
|
|
44
|
-
export declare const WithInternationalization:
|
|
42
|
+
export declare const WithInternationalization: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
45
43
|
/**
|
|
46
44
|
* Interactive Demo story
|
|
47
45
|
*/
|
|
48
|
-
export declare const InteractiveDemo:
|
|
46
|
+
export declare const InteractiveDemo: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
49
47
|
/**
|
|
50
48
|
* All Tenants Comparison
|
|
51
49
|
*/
|
|
@@ -75,4 +73,4 @@ export declare const ResponsiveDemo: {
|
|
|
75
73
|
/**
|
|
76
74
|
* Kitchen Sink story - All features
|
|
77
75
|
*/
|
|
78
|
-
export declare const KitchenSink:
|
|
76
|
+
export declare const KitchenSink: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
import { OptionButton } from '../components/OptionButton';
|
|
3
|
-
declare const _default: ComponentMeta<typeof OptionButton>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const Selected:
|
|
7
|
-
export declare const WithIcon:
|
|
8
|
-
export declare const Disabled:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
|
|
4
|
+
export declare const Selected: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
|
|
5
|
+
export declare const WithIcon: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
|
|
6
|
+
export declare const Disabled: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
|
|
9
7
|
export declare const Sizes: () => import("react/jsx-runtime").JSX.Element;
|
|
10
8
|
export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
|
|
11
9
|
export declare const MultipleOptions: () => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export declare const WithAmmetLifeTheme:
|
|
10
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
import { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
3
|
-
declare const _default: ComponentMeta<import("react").FC<import("../components/ProductCard").ProductCardProps>>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const WithLogo:
|
|
7
|
-
export declare const WithoutIndicator:
|
|
8
|
-
export declare const AnnualBilling:
|
|
9
|
-
export declare const NoPlan:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
|
|
4
|
+
export declare const WithLogo: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
|
|
5
|
+
export declare const WithoutIndicator: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
|
|
6
|
+
export declare const AnnualBilling: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
|
|
7
|
+
export declare const NoPlan: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
import { QuestionSection } from '../components/QuestionSection';
|
|
3
|
-
declare const _default: ComponentMeta<typeof QuestionSection>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const WithSelection:
|
|
7
|
-
export declare const WithoutNumber:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
|
|
4
|
+
export declare const WithSelection: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
|
|
5
|
+
export declare const WithoutNumber: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
|
|
8
6
|
export declare const MultipleSelection: () => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export declare const WithCustomRenderer:
|
|
10
|
-
export declare const LongQuestion:
|
|
11
|
-
export declare const WithAmmetLifeTheme:
|
|
7
|
+
export declare const WithCustomRenderer: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
|
|
8
|
+
export declare const LongQuestion: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
|
|
9
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
* RecommendationsDrawer Storybook Stories
|
|
3
3
|
* Interactive testing for recommendations drawer and form components
|
|
4
4
|
*/
|
|
5
|
-
|
|
6
|
-
import { RecommendationsDrawer } from '../components/RecommendationsDrawer';
|
|
7
|
-
declare const _default: ComponentMeta<typeof RecommendationsDrawer>;
|
|
5
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/RecommendationsDrawer").RecommendationsDrawerProps>;
|
|
8
6
|
export default _default;
|
|
9
|
-
export declare const Default:
|
|
7
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/RecommendationsDrawer").RecommendationsDrawerProps>;
|
|
10
8
|
export declare const CompleteQuestionnaire: {
|
|
11
9
|
(): import("react/jsx-runtime").JSX.Element;
|
|
12
10
|
parameters: {
|
|
@@ -33,4 +31,4 @@ export declare const TravelInsuranceExample: {
|
|
|
33
31
|
};
|
|
34
32
|
};
|
|
35
33
|
};
|
|
36
|
-
export declare const MobileViewport:
|
|
34
|
+
export declare const MobileViewport: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/RecommendationsDrawer").RecommendationsDrawerProps>;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
import { ToggleGroup } from '../components/ToggleGroup';
|
|
3
|
-
declare const _default: ComponentMeta<typeof ToggleGroup>;
|
|
1
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
|
|
4
2
|
export default _default;
|
|
5
|
-
export declare const Default:
|
|
6
|
-
export declare const ThreeOptions:
|
|
7
|
-
export declare const WithoutIcons:
|
|
8
|
-
export declare const WithImageIcons:
|
|
3
|
+
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
|
|
4
|
+
export declare const ThreeOptions: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
|
|
5
|
+
export declare const WithoutIcons: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
|
|
6
|
+
export declare const WithImageIcons: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
|
|
9
7
|
export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export declare const WithAmmetLifeTheme:
|
|
8
|
+
export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
|