@frigade/react 2.0.0-alpha.4 → 2.0.0-alpha.40
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/README.md +601 -4
- package/dist/index.cjs +65 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1201 -44
- package/dist/index.js +21 -2
- package/dist/index.js.map +1 -1
- package/package.json +17 -3
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/components/Box/index.tsx","../src/shared/tokens/scalarTokens.ts","../src/shared/tokens/semanticColors.ts","../src/shared/tokens/index.ts","../src/shared/flattenObject.ts","../src/shared/theme/index.ts","../src/components/Box/styleProps.ts","../src/components/Box/stylePropsToCss.ts","../src/components/Text/Text.styles.ts","../src/components/Text/index.tsx","../src/components/Button/Button.styles.ts","../src/components/Button/index.tsx","../src/components/Flex/Flex.tsx","../src/components/Provider/index.tsx","../src/components/Tooltip/index.tsx","../src/hooks/useBoundingClientRect.ts","../src/components/Tooltip/Dot.tsx","../src/components/Media/Image.tsx","../src/components/Media/Video.tsx","../src/components/Media/Media.tsx","../src/components/Tooltip/getDotPosition.ts","../src/components/Tooltip/mapTooltipPropsToPopoverProps.ts","../src/hooks/useFlow.ts","../src/components/Tour/index.tsx"],"sourcesContent":["import * as React from 'react'\nimport { clsx } from 'clsx'\n\nimport { stylePropsToCss } from './stylePropsToCss'\n\nfunction prefixPart(part: string | undefined) {\n return part ? `fr-${part}` : part\n}\n\nfunction processPart(part: string | string[] | undefined) {\n if (!part) return part\n\n return Array.isArray(part) ? part.map((p) => prefixPart(p)).join(' ') : prefixPart(part)\n}\n\nexport type BoxProps<T extends React.ElementType = React.ElementType> = {\n as?: T\n part?: string | string[]\n} & React.ComponentPropsWithRef<T>\n\nfunction BoxWithRef<T extends React.ElementType = React.ElementType>(\n { as, children, className, css, part, ...props }: BoxProps<T>,\n ref: React.ForwardedRef<T>\n) {\n const Component = as ?? 'div'\n\n const { cssFromProps, unmatchedProps } = stylePropsToCss(props)\n\n const processedPart = processPart(part)\n const classNameWithPart = className || processedPart ? clsx(className, processedPart) : undefined\n\n return (\n // @ts-ignore: TODO: ref types are yet again complaining\n <Component\n className={classNameWithPart}\n css={[{ boxSizing: 'border-box', ...cssFromProps, ...css }]}\n {...unmatchedProps}\n ref={ref}\n >\n {children}\n </Component>\n )\n}\n\nexport const Box = React.forwardRef(BoxWithRef)\n","const SPACE_VALUE = 4\nconst SPACE_UNIT = 'px'\n\nconst spaceValue = (key: SpaceKeys[any]) =>\n typeof key === 'number' ? `${SPACE_VALUE * key}${SPACE_UNIT}` : key\n\nconst spaceKeys = [\n -20,\n -19,\n -18,\n -17,\n -16,\n -15,\n -14,\n -13,\n -12,\n -11,\n -10,\n -9,\n -8,\n -7,\n -6,\n -5,\n -4,\n -3,\n -2,\n -1,\n -0.5,\n 0,\n 0.5,\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11,\n 12,\n 13,\n 14,\n 15,\n 16,\n 17,\n 18,\n 19,\n 20,\n 'auto',\n] as const\n\ntype SpaceKeys = typeof spaceKeys\n\ntype SpaceScale = {\n [K in SpaceKeys[any]]: string\n}\nconst spaceScale = Object.fromEntries(spaceKeys.map((key) => [key, spaceValue(key)])) as SpaceScale\n\nexport const palette = {\n black: '#000000',\n gray100: '#14161A',\n gray200: '#181B20',\n gray300: '#1F2329',\n gray400: '#2E343D',\n gray500: '#4C5766',\n gray600: '#5A6472',\n gray700: '#C5CBD3',\n gray800: '#E2E5E9',\n gray900: '#F1F2F4',\n white: '#ffffff',\n blue400: '#015AC6',\n blue500: '#0171F8',\n blue800: '#DBECFF',\n blue900: '#F5F9FF',\n green400: '#009E37',\n green500: '#00D149',\n green800: '#DBFFE8',\n transparent: '#FFFFFF00',\n\n // This color isn't in the Design System yet, but it's used in old components\n red500: '#c00000',\n}\n\n// Scalar = Tokens with literal values\nexport const scalarTokens = {\n borders: {\n md: '1px solid',\n },\n borderWidths: {\n 0: '0',\n md: '1px',\n },\n\n colors: {\n ...palette,\n },\n fontFamilies: {\n default: 'TT Interphases Pro, sans-serif',\n },\n fontSizes: {\n xs: '12px',\n sm: '14px',\n md: '16px',\n lg: '18px',\n xl: '20px',\n '2xl': '24px',\n '3xl': '30px',\n '4xl': '36px',\n '5xl': '48px',\n },\n fontWeights: {\n regular: '400',\n demibold: '600',\n bold: '700',\n },\n letterSpacings: {\n md: '0.02em',\n },\n lineHeights: {\n xs: '18px',\n sm: '22px',\n md: '24px',\n lg: '26px',\n xl: '30px',\n '2xl': '38px',\n '3xl': '46px',\n '4xl': '60px',\n },\n radii: {\n md: '8px',\n lg: '20px',\n round: '50%',\n },\n shadows: {\n md: '0px 4px 20px rgba(0, 0, 0, 0.1)',\n },\n space: spaceScale,\n}\n","const colorVar = (colorName) => `var(--fr-colors-${colorName})`\n\n// Semantic = Tokens that reference Scalars & contextualize them according to how they're used\nexport const semanticColors = {\n neutral: {\n background: colorVar('white'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n\n active: {\n background: colorVar('white'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n },\n focus: {\n background: colorVar('white'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n },\n hover: {\n background: colorVar('white'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n },\n },\n\n primary: {\n background: colorVar('blue500'),\n border: colorVar('blue500'),\n foreground: colorVar('white'),\n surface: colorVar('blue500'),\n\n active: {\n background: colorVar('blue400'),\n border: colorVar('blue400'),\n foreground: colorVar('white'),\n surface: colorVar('blue400'),\n },\n focus: {\n background: colorVar('blue500'),\n border: colorVar('blue500'),\n foreground: colorVar('white'),\n surface: colorVar('blue500'),\n },\n hover: {\n background: colorVar('blue400'),\n border: colorVar('blue400'),\n foreground: colorVar('white'),\n surface: colorVar('blue400'),\n },\n },\n\n secondary: {\n background: colorVar('gray900'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray900'),\n\n active: {\n background: colorVar('gray800'),\n border: colorVar('gray800'),\n foreground: colorVar('black'),\n surface: colorVar('gray800'),\n },\n focus: {\n background: colorVar('gray900'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray900'),\n },\n hover: {\n background: colorVar('gray800'),\n border: colorVar('gray800'),\n foreground: colorVar('black'),\n surface: colorVar('gray800'),\n },\n },\n}\n","import { scalarTokens } from './scalarTokens'\nimport { semanticColors } from './semanticColors'\n\nexport { scalarTokens, semanticColors }\n\n// Package up everything everywhere all at once for convenience\nexport const tokens = {\n ...scalarTokens,\n colors: {\n ...scalarTokens.colors,\n ...semanticColors,\n },\n}\n","export function flattenObject(obj: Record<any, any>, path = '', separator = '.') {\n return Object.keys(obj).reduce((acc, k) => {\n const prefix = path.length ? `${path}${separator}` : ''\n const currentPath = `${prefix}${k}`\n const currentValue = obj[k]\n\n if (typeof currentValue === 'object' && currentValue !== null && !Array.isArray(currentValue)) {\n Object.assign(acc, flattenObject(currentValue, currentPath, separator))\n } else {\n acc[currentPath] = currentValue\n }\n\n return acc\n }, {})\n}\n","import { tokens } from '../tokens'\nimport { flattenObject } from '../flattenObject'\n\n// Transform tokens to a flat list of CSS variables and values to inject into the page\n// IN: { colors: { black: '#000' } }, OUT: { '--fr-colors-black': '#000' }\nexport function createThemeVariables(tokens) {\n return flattenObject(tokens, '--fr', '-')\n}\n\n// Swap token values out and replace them with the CSS variables we defined\n// IN: { colors: { black: '#000' } }, OUT: { colors: { black: 'var(--fr-colors-black)' } }\nfunction mapTokensToThemeVariables(obj, path = '--fr') {\n const newObj: Record<string, any> = {}\n\n Object.keys(obj).forEach((key) => {\n const currentValue = obj[key]\n\n if (typeof currentValue === 'object' && currentValue !== null && !Array.isArray(currentValue)) {\n newObj[key] = mapTokensToThemeVariables(currentValue, `${path}-${key}`)\n } else {\n newObj[key] = `var(${path}-${key})`\n }\n })\n\n return newObj\n}\n\nexport const themeVariables = createThemeVariables(tokens)\n\nexport const theme = mapTokensToThemeVariables(tokens)\n","import { theme } from '../../shared/theme'\nimport { flattenObject } from '../../shared/flattenObject'\n\nconst colorTokens: Record<string, unknown> = flattenObject(theme.colors)\n\n/*\n TODO:\n - top / right / bottom / left\n*/\n\nexport const styleProps = {\n color: colorTokens,\n backgroundColor: colorTokens,\n borderColor: colorTokens,\n border: theme.borders,\n borderRadius: theme.radii,\n borderWidth: theme.borderWidths,\n\n fontFamily: theme.fontFamilies,\n fontSize: theme.fontSizes,\n fontWeight: theme.fontWeights,\n\n gap: theme.space,\n\n lineHeight: theme.lineHeights,\n\n margin: theme.space,\n marginTop: theme.space,\n marginRight: theme.space,\n marginBottom: theme.space,\n marginLeft: theme.space,\n\n padding: theme.space,\n paddingTop: theme.space,\n paddingRight: theme.space,\n paddingBottom: theme.space,\n paddingLeft: theme.space,\n\n alignContent: [\n 'center',\n 'start',\n 'end',\n 'flex-start',\n 'flex-end',\n 'normal',\n 'baseline',\n 'first baseline',\n 'last baseline',\n 'space-between',\n 'space-around',\n 'space-evenly',\n 'stretch',\n 'safe center',\n 'unsafe center',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n alignItems: [\n 'normal',\n 'stretch',\n 'center',\n 'start',\n 'end',\n 'flex-start',\n 'flex-end',\n 'self-start',\n 'self-end',\n 'baseline',\n 'first baseline',\n 'last baseline',\n 'safe center',\n 'unsafe center',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n alignSelf: [\n 'auto',\n 'normal',\n 'center',\n 'start',\n 'end',\n 'self-start',\n 'self-end',\n 'flex-start',\n 'flex-end',\n 'baseline',\n 'first baseline',\n 'last baseline',\n 'stretch',\n 'safe center',\n 'unsafe center',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n flexDirection: [\n 'row',\n 'row-reverse',\n 'column',\n 'column-reverse',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n flexWrap: [\n 'nowrap',\n 'wrap',\n 'wrap-reverse',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n justifyContent: [\n 'center',\n 'start',\n 'end',\n 'flex-start',\n 'flex-end',\n 'left',\n 'right',\n 'normal',\n 'space-between',\n 'space-around',\n 'space-evenly',\n 'stretch',\n 'safe center',\n 'unsafe center',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n justifyItems: [\n 'normal',\n 'stretch',\n 'center',\n 'start',\n 'end',\n 'flex-start',\n 'flex-end',\n 'self-start',\n 'self-end',\n 'left',\n 'right',\n 'baseline',\n 'first baseline',\n 'last baseline',\n 'safe center',\n 'unsafe center',\n 'legacy right',\n 'legacy left',\n 'legacy center',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n boxSizing: ['border-box', 'content-box', 'inherit', 'initial', 'revert', 'revert-layer', 'unset'],\n\n position: [\n 'static',\n 'relative',\n 'absolute',\n 'fixed',\n 'sticky',\n 'inherit',\n 'initial',\n 'revert',\n 'revert-layer',\n 'unset',\n ],\n\n display: [\n 'block',\n 'block flex',\n 'block flow',\n 'block flow-root',\n 'block grid',\n 'contents',\n 'flex',\n 'flow-root',\n 'grid',\n 'inherit',\n 'initial',\n 'inline',\n 'inline flex',\n 'inline flow',\n 'inline flow-root',\n 'inline grid',\n 'inline-block',\n 'inline-flex',\n 'inline-grid',\n 'list-item',\n 'none',\n 'revert',\n 'revert-layer',\n 'table',\n 'table-row-group',\n 'table-header-group',\n 'table-footer-group',\n 'table-row',\n 'table-cell',\n 'table-column-group',\n 'table-column',\n 'table-caption',\n 'unset',\n ],\n}\n\nexport const stylePropShorthands = {\n m: ['margin'],\n mt: ['marginTop'],\n mr: ['marginRight'],\n mb: ['marginBottom'],\n ml: ['marginLeft'],\n mx: ['marginLeft', 'marginRight'],\n my: ['marginTop', 'marginBottom'],\n\n p: ['padding'],\n pt: ['paddingTop'],\n pr: ['paddingRight'],\n pb: ['paddingBottom'],\n pl: ['paddingLeft'],\n px: ['paddingLeft', 'paddingRight'],\n py: ['paddingTop', 'paddingBottom'],\n}\n","import { styleProps, stylePropShorthands } from './styleProps'\n\nfunction prepValue(value) {\n if (Array.isArray(value)) {\n return new Map(value.map((v) => [v, v]))\n } else if (typeof value === 'object' && value !== null) {\n return new Map(Object.entries(value))\n } else if (['string', 'number'].includes(typeof value)) {\n return new Map([value, value])\n }\n\n throw new Error('Invalid entry in styleProps')\n}\n\nconst stylePropsMap = new Map(\n Object.entries(styleProps).map(([propName, value]) => {\n return [propName, prepValue(value)]\n })\n)\n\nconst stylePropShorthandsMap = new Map(\n Object.entries(stylePropShorthands).map(([shorthand, targetProps]) => {\n return [shorthand, new Set(targetProps)]\n })\n)\n\nexport function stylePropsToCss(props: Record<any, any>) {\n const unmatchedProps = Object.assign({}, props)\n const cssFromProps = {}\n\n // Convert shorthand styleProps to full versions\n Object.entries(unmatchedProps).forEach(([propName, propValue]) => {\n const matchedShorthand = stylePropShorthandsMap.get(propName)\n if (matchedShorthand != null) {\n matchedShorthand.forEach((propName) => {\n unmatchedProps[propName] = propValue\n })\n\n delete unmatchedProps[propName]\n }\n })\n\n // Convert styleProps to style object\n Object.entries(unmatchedProps).forEach(([propName, propValue]) => {\n const styleProp = stylePropsMap.get(propName)\n if (styleProp != null) {\n if (typeof propValue === 'string' && propValue.indexOf(' ') > -1) {\n // Split space-separated values out and process them individually\n const splitPropValues = propValue.split(' ')\n\n cssFromProps[propName] = splitPropValues\n .map((v) => styleProp.get(v.toString()) ?? v)\n .join(' ')\n\n delete unmatchedProps[propName]\n } else if (styleProp.has(propValue.toString())) {\n cssFromProps[propName] = styleProp.get(propValue.toString())\n delete unmatchedProps[propName]\n }\n }\n })\n\n return { cssFromProps, unmatchedProps }\n}\n","export const base = ({ fontFamilies }) => ({\n fontFamily: fontFamilies.default,\n margin: 0,\n})\n\nexport const Display1 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes['5xl'],\n fontWeight: fontWeights.bold,\n lineHeight: lineHeights['4xl'],\n },\n]\n\nexport const Display2 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes['4xl'],\n fontWeight: fontWeights.bold,\n lineHeight: lineHeights['3xl'],\n },\n]\n\nexport const H1 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes['3xl'],\n fontWeight: fontWeights.bold,\n lineHeight: lineHeights['2xl'],\n },\n]\n\nexport const H2 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes['2xl'],\n fontWeight: fontWeights.bold,\n lineHeight: lineHeights.xl,\n },\n]\n\nexport const H3 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes.xl,\n fontWeight: fontWeights.bold,\n lineHeight: lineHeights.lg,\n },\n]\n\nexport const H4 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes.lg,\n fontWeight: fontWeights.bold,\n lineHeight: lineHeights.md,\n },\n]\n\nexport const Body1 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes.md,\n fontWeight: fontWeights.regular,\n lineHeight: lineHeights.md,\n },\n]\n\nexport const Body2 = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes.sm,\n fontWeight: fontWeights.regular,\n lineHeight: lineHeights.md,\n },\n]\n\nexport const Caption = ({ fontSizes, fontWeights, lineHeights }) => [\n base,\n {\n fontSize: fontSizes.xs,\n fontWeight: fontWeights.regular,\n lineHeight: lineHeights.sm,\n },\n]\n","import { Box, BoxProps } from '../Box'\n\nimport * as styles from './Text.styles'\n\ntype TextVariant =\n | 'Display1'\n | 'Display2'\n | 'H1'\n | 'H2'\n | 'H3'\n | 'H4'\n | 'Body1'\n | 'Body2'\n | 'Caption'\n\nexport interface TextProps extends BoxProps {\n variant?: TextVariant\n}\n\nfunction BaseText({ as = 'span', children, css, variant = 'Body1', ...props }: TextProps) {\n return (\n <Box as={as} css={[styles[variant], css]} {...props}>\n {children}\n </Box>\n )\n}\n\nconst textVariantNames: TextVariant[] = [\n 'Display1',\n 'Display2',\n 'H1',\n 'H2',\n 'H3',\n 'H4',\n 'Body1',\n 'Body2',\n 'Caption',\n]\n\nconst textVariantComponents = Object.fromEntries(\n textVariantNames.map((variant) => {\n const asProp = ['H1', 'H2', 'H3', 'H4'].includes(variant)\n ? (variant.toLowerCase() as 'h1' | 'h2' | 'h3' | 'h4')\n : undefined\n const component = (props: TextProps) => (\n <BaseText as={asProp} {...props} variant={variant}>\n {props.children}\n </BaseText>\n )\n\n component.displayName = `Text.${variant}`\n\n return [variant, component]\n })\n)\n\nexport const Text = Object.assign(BaseText, textVariantComponents)\n","export const base = ({ radii, space }) => ({\n borderWidth: 0,\n borderRadius: radii.md,\n padding: `${space[2]} ${space[4]}`,\n})\n\nexport const Primary = ({ colors }) => [\n base,\n {\n backgroundColor: colors.primary.surface,\n color: colors.primary.foreground,\n\n '&:hover': {\n backgroundColor: colors.primary.hover.surface,\n },\n },\n]\n\nexport const Secondary = ({ colors }) => [\n base,\n {\n backgroundColor: colors.secondary.surface,\n color: colors.secondary.foreground,\n\n '&:hover': {\n backgroundColor: colors.secondary.hover.surface,\n },\n },\n]\n\nexport const Link = ({ colors }) => [\n base,\n {\n backgroundColor: colors.transparent,\n color: colors.primary.surface,\n\n '&:hover': {\n color: colors.primary.hover.surface,\n },\n },\n]\n\nexport const Plain = ({ colors }) => [\n base,\n {\n backgroundColor: colors.transparent,\n color: colors.neutral.foreground,\n },\n]\n","import { Box, BoxProps } from '../Box'\nimport { Text } from '../Text'\n\nimport * as styles from './Button.styles'\n\n// TODO: Generate this type from buttonVariantNames\ntype ButtonVariant = 'Primary' | 'Secondary' | 'Link' | 'Plain'\n\nexport interface ButtonProps extends BoxProps {\n title?: string\n variant?: ButtonVariant\n}\n\nfunction BaseButton({ as, children, css = {}, title, variant = 'Primary', ...props }: ButtonProps) {\n return (\n <Box as={as ?? 'button'} css={[styles[variant], css]} {...props}>\n {children}\n {title && <Text.Body2 fontWeight=\"demibold\">{title}</Text.Body2>}\n </Box>\n )\n}\n\nconst buttonVariantNames: ButtonVariant[] = ['Primary', 'Secondary', 'Link', 'Plain']\n\nconst buttonVariantComponents = Object.fromEntries(\n buttonVariantNames.map((variant) => {\n const variantPart = variant.toLocaleLowerCase()\n\n const component = ({ part, ...props }: ButtonProps) => (\n <BaseButton part={[`button-${variantPart}`, part]} {...props} variant={variant}>\n {props.children}\n </BaseButton>\n )\n\n component.displayName = `Text.${variant}`\n\n return [variant, component]\n })\n)\n\nexport const Button = Object.assign(BaseButton, buttonVariantComponents)\n","import * as React from 'react'\nimport { Box, BoxProps } from '../Box'\n\nconst Row = React.forwardRef(({ children, css, ...props }: BoxProps, ref) => {\n return (\n <Box css={[{ display: 'flex', flexDirection: 'row' }, css]} {...props} ref={ref}>\n {children}\n </Box>\n )\n})\n\nconst Column = React.forwardRef(({ children, css, ...props }: BoxProps, ref) => {\n return (\n <Box css={[{ display: 'flex', flexDirection: 'column' }, css]} {...props} ref={ref}>\n {children}\n </Box>\n )\n})\n\nexport const Flex = {\n Column,\n Row,\n}\n","import { createContext } from 'react'\nimport { Global, ThemeProvider } from '@emotion/react'\n\nimport { createThemeVariables, theme as themeTokens, themeVariables } from '../../shared/theme'\n\nexport const FrigadeContext = createContext<{ apiKey: string; config: ProviderConfig }>({\n apiKey: '',\n config: {},\n})\n\n// TODO: type theme something like Partial<typeof themeContract>, but allow any value for those keys\nexport interface ProviderProps {\n apiKey: string\n children?: React.ReactNode\n config?: ProviderConfig\n theme?: Record<any, any>\n}\n\ninterface ProviderConfig {\n apiUrl?: string\n userId?: string\n}\n\nexport function Provider({ apiKey, children, config = {}, theme }: ProviderProps) {\n const themeOverrides = theme ? createThemeVariables(theme) : {}\n\n return (\n <FrigadeContext.Provider value={{ apiKey, config }}>\n <Global styles={{ ':root': { ...themeVariables, ...themeOverrides } }} />\n <ThemeProvider theme={themeTokens}>{children}</ThemeProvider>\n </FrigadeContext.Provider>\n )\n}\n","import React, { useEffect, useRef, useState } from 'react'\n\nimport { XMarkIcon } from '@heroicons/react/24/solid'\nimport * as Popover from '@radix-ui/react-popover'\n\nimport { useBoundingClientRect } from '../../hooks/useBoundingClientRect'\nimport { Box } from '../Box'\nimport { Button, ButtonProps } from '../Button'\nimport { Dot } from './Dot'\nimport { Flex } from '../Flex/Flex'\nimport { Media, MediaProps } from '../Media'\nimport { Text, TextProps } from '../Text'\nimport { getDotPosition } from './getDotPosition'\nimport { mapTooltipPropsToRadixProps } from './mapTooltipPropsToPopoverProps'\n\ninterface MergedRadixPopoverProps\n extends Pick<Popover.PopoverProps, 'defaultOpen' | 'modal' | 'onOpenChange' | 'open'>,\n Omit<Popover.PopoverContentProps, 'align' | 'asChild'> {}\nexport interface TooltipProps extends MergedRadixPopoverProps {\n align?: Popover.PopoverContentProps['align'] | 'before' | 'after'\n anchor?: string\n spotlight?: boolean\n style?: React.CSSProperties\n}\n\nexport function Tooltip({\n anchor,\n children,\n css,\n spotlight = false,\n style,\n ...props\n}: TooltipProps) {\n const { node: contentNode, rect: contentRect, ref: contentRef } = useBoundingClientRect()\n const { contentProps, rootProps } = mapTooltipPropsToRadixProps(props, contentRect)\n\n const [alignAttr, setAlignAttr] = useState(contentProps.align)\n const [sideAttr, setSideAttr] = useState(contentProps.side)\n\n // Radix will update data attrs to let us know if Popover.Content has collided\n if (contentNode !== null) {\n const currentAlignAttr = contentNode.getAttribute('data-align')\n const currentSideAttr = contentNode.getAttribute('data-side')\n\n if (alignAttr !== currentAlignAttr) {\n setAlignAttr(currentAlignAttr)\n }\n\n if (sideAttr !== currentSideAttr) {\n setSideAttr(currentSideAttr)\n }\n }\n\n const anchorRef = useRef(null)\n const [anchorElementRef, setAnchorElementRef] = useState(null)\n\n useEffect(() => {\n const anchorQuery = document.querySelector(anchor)\n\n if (anchorQuery != null) {\n anchorRef.current = anchorQuery\n setAnchorElementRef(anchorRef)\n }\n }, [anchor])\n\n if (anchorElementRef == null) return null\n\n const anchorRect = anchorElementRef.current.getBoundingClientRect()\n\n let anchorRadius = '0'\n if (typeof window !== 'undefined') {\n anchorRadius = window.getComputedStyle(anchorElementRef.current).borderRadius\n }\n\n const dotPosition = getDotPosition({ props, alignAttr, sideAttr })\n\n return (\n <Popover.Root defaultOpen={true} {...rootProps}>\n <Popover.Anchor virtualRef={anchorElementRef} />\n <Popover.Portal>\n <div css={css}>\n {spotlight && (\n <Box\n borderRadius={anchorRadius}\n part=\"tooltip-spotlight\"\n position=\"absolute\"\n css={{\n boxShadow: '0 0 0 2000px rgb(0 0 0 / 0.5)',\n height: anchorRect.height,\n left: anchorRect.left,\n top: anchorRect.top,\n width: anchorRect.width,\n }}\n />\n )}\n <Popover.Content asChild {...contentProps} ref={contentRef}>\n <Flex.Column\n backgroundColor=\"white\"\n borderRadius=\"md\"\n p={5}\n part=\"tooltip-content\"\n position=\"relative\"\n css={{\n boxShadow: '0px 4px 20px rgba(0, 0, 0, 0.1)',\n width: '300px',\n ...style,\n }}\n >\n <Dot style={dotPosition} />\n\n {children}\n </Flex.Column>\n </Popover.Content>\n </div>\n </Popover.Portal>\n </Popover.Root>\n )\n}\n\nTooltip.Close = ({ css, ...props }: ButtonProps) => {\n return (\n <Popover.Close aria-label=\"Close\" asChild>\n <Button.Plain\n css={[\n {\n top: 0,\n right: 0,\n },\n css,\n ]}\n part=\"tooltip-close\"\n position=\"absolute\"\n {...props}\n >\n <XMarkIcon height=\"20\" fill=\"currentColor\" />\n </Button.Plain>\n </Popover.Close>\n )\n}\n\nTooltip.Media = ({ src, ...props }: MediaProps) => {\n if (src == null) return null\n\n return (\n <Media\n borderRadius=\"md md 0 0\"\n borderWidth=\"0\"\n css={{\n aspectRatio: '2',\n }}\n margin=\"-5 -5 5\"\n src={src}\n {...props}\n />\n )\n}\n\nTooltip.Primary = ({ onClick, title, ...props }: ButtonProps) => {\n if (title == null) return null\n\n return <Button.Primary title={title} onClick={onClick} {...props} />\n}\n\nTooltip.Progress = ({ children, ...props }: TextProps) => {\n if (children == null) return null\n\n return (\n <Text.Body2 fontWeight=\"demibold\" part=\"progress\" {...props}>\n {children}\n </Text.Body2>\n )\n}\n\nTooltip.Secondary = ({ onClick, title, ...props }: ButtonProps) => {\n if (title == null) return null\n\n return <Button.Secondary title={title} onClick={onClick} {...props} />\n}\n\nTooltip.Subtitle = ({ children, ...props }: TextProps) => {\n if (children == null) return null\n\n return (\n <Text.Body2 part=\"subtitle\" {...props}>\n {children}\n </Text.Body2>\n )\n}\n\nTooltip.Title = ({ children, ...props }: TextProps) => {\n if (children == null) return null\n\n return (\n <Text.Body1 fontWeight=\"bold\" mb={1} part=\"title\" {...props}>\n {children}\n </Text.Body1>\n )\n}\n","import { useCallback, useLayoutEffect, useState } from 'react'\n\nexport function useBoundingClientRect() {\n const initialRect =\n 'DOMRect' in globalThis\n ? new DOMRect()\n : {\n height: 0,\n width: 0,\n x: 0,\n y: 0,\n bottom: 0,\n top: 0,\n right: 0,\n left: 0,\n toJSON: () => {},\n }\n const [rect, setRect] = useState(initialRect)\n const [node, setNode] = useState(null)\n\n const ref = useCallback((node: HTMLElement) => {\n setNode(node)\n }, [])\n\n useLayoutEffect(() => {\n if (!node) return\n\n setRect(node.getBoundingClientRect())\n }, [node])\n\n return {\n node,\n rect,\n ref,\n }\n}\n","import { keyframes } from '@emotion/react'\nimport { Box, BoxProps } from '../Box'\n\nconst pulse = keyframes({\n '0%': {\n opacity: 0.5,\n transform: 'scale(0.5)',\n },\n '50%': {\n opacity: 0,\n transform: 'scale(1)',\n },\n '100%': {\n opacity: 0,\n transform: 'scale(1)',\n },\n})\n\nexport interface DotProps extends BoxProps {}\n\nexport function Dot({ style = {}, part = '', ...props }: DotProps) {\n return (\n <Box\n part={`dot-wrapper ${part}`}\n style={{\n height: '48px',\n position: 'absolute',\n width: '48px',\n ...style,\n }}\n {...props}\n >\n <Box\n backgroundColor=\"primary.surface\"\n part=\"dot-pulse\"\n css={{\n animation: `2s ease-out infinite ${pulse}`,\n borderRadius: '24px',\n height: '48px',\n left: 0,\n position: 'absolute',\n top: 0,\n transformOrigin: 'center center',\n width: '48px',\n }}\n />\n <Box\n backgroundColor=\"primary.surface\"\n part=\"dot\"\n style={{\n borderRadius: '12px',\n height: '24px',\n left: '12px',\n position: 'absolute',\n top: '12px',\n width: '24px',\n }}\n />\n </Box>\n )\n}\n","import { Box, BoxProps } from '../Box'\n\nexport interface ImageProps extends BoxProps {\n src: string\n}\n\nexport function Image({ part, src, ...props }: ImageProps) {\n return <Box as=\"img\" part={['image', part]} src={src} {...props} />\n}\n","import { Box, BoxProps } from '../Box'\n\nfunction getVideoEmbedSrc(videoUri: string) {\n if (videoUri.includes('youtube')) {\n const videoId = videoUri.split('v=')[1]?.split('&')[0]\n\n return `https://www.youtube.com/embed/${videoId}`\n } else if (videoUri.includes('vimeo')) {\n const videoId = videoUri.split('vimeo.com/')[1]?.split('&')[0]\n\n return `https://player.vimeo.com/video/${videoId}`\n } else if (videoUri.includes('wistia')) {\n const videoId = videoUri.split('wistia.com/medias/')[1]?.split('&')[0]\n\n return `https://fast.wistia.net/embed/iframe/${videoId}`\n }\n\n throw new Error('Could not map videoUri to a known provider (Youtube, Vimeo, Wistia).')\n}\n\nexport interface VideoProps extends BoxProps {\n src: string\n}\n\nexport function Video({ part, src, ...props }: VideoProps) {\n const videoEmbedSrc = getVideoEmbedSrc(src)\n\n // TODO: Add play button overtop?\n return (\n <Box\n allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n allowFullScreen\n as=\"iframe\"\n backgroundColor=\"gray100\"\n borderWidth={0}\n part={['video', part]}\n src={videoEmbedSrc}\n {...props}\n ></Box>\n )\n}\n","import { Image } from './Image'\nimport { Video } from './Video'\nimport { BoxProps } from '../Box'\n\nexport interface MediaProps extends BoxProps {\n src: string\n type: 'image' | 'video'\n}\n\nexport function Media({ src, type, ...props }: MediaProps) {\n const Component = type === 'video' ? Video : Image\n\n return <Component src={src} {...props} />\n}\n","export function getDotPosition({ props, alignAttr, sideAttr }) {\n const currentSide = sideAttr ?? 'bottom'\n const dotProps = {}\n\n // Radix's collision system isn't aware of our custom before|after align\n const getCurrentAlign = () => {\n if (['after', 'before'].includes(props.align)) {\n if (alignAttr == 'start') {\n return 'before'\n } else if (alignAttr == 'end') {\n return 'after'\n }\n }\n\n return props.align ?? 'after'\n }\n\n const dotOffset = '-24px'\n\n const oppositeSides = {\n top: 'bottom',\n right: 'left',\n bottom: 'top',\n left: 'right',\n }\n\n /* \n Rules:\n - Dot is opposite to side prop (e.g. side=left -> dot=right)\n - align=before|end -> Dot goes to highest extent (right/bottom) of align-axis\n - align=after|start -> Dot goes to lowest extent (left/top) of align-axis\n - align=center -> Dot goes to the center\n */\n\n dotProps[oppositeSides[currentSide]] = dotOffset\n\n const currentAlign = getCurrentAlign()\n\n if (['before', 'end'].includes(currentAlign)) {\n if (['top', 'bottom'].includes(currentSide)) {\n dotProps['right'] = dotOffset\n } else {\n dotProps['bottom'] = dotOffset\n }\n } else if (['after', 'start'].includes(currentAlign)) {\n if (['top', 'bottom'].includes(currentSide)) {\n dotProps['left'] = dotOffset\n } else {\n dotProps['top'] = dotOffset\n }\n } else {\n // The only option left is align=center\n if (['top', 'bottom'].includes(currentSide)) {\n dotProps['left'] = `calc(50% + ${dotOffset})`\n } else {\n dotProps['top'] = `calc(50% + ${dotOffset})`\n }\n }\n\n return dotProps\n}\n","import { TooltipProps } from '.'\n\nconst RADIX_PROPS = {\n content: [\n 'align',\n 'alignOffset',\n 'arrowPadding',\n 'avoidCollisions',\n 'collisionBoundary',\n 'collisionPadding',\n 'forceMount',\n 'hideWhenDetached',\n 'onCloseAutoFocus',\n 'onEscapeKeyDown',\n 'onFocusOutside',\n 'onInteractOutside',\n 'onOpenAutoFocus',\n 'onPointerDownOutside',\n 'side',\n 'sideOffset',\n 'sticky',\n ],\n root: ['defaultOpen', 'modal', 'onOpenChange', 'open'],\n}\n\nexport function mapTooltipPropsToRadixProps(props: TooltipProps, contentRect: DOMRect) {\n const contentProps = Object.fromEntries(\n RADIX_PROPS.content\n .map((propName) => [propName, props[propName]])\n .filter((propEntry) => propEntry[1] !== undefined)\n )\n const rootProps = Object.fromEntries(\n RADIX_PROPS.root\n .map((propName) => [propName, props[propName]])\n .filter((propEntry) => propEntry[1] !== undefined)\n )\n\n // Default to align=after, side=bottom\n contentProps.align = contentProps.align ?? 'after'\n contentProps.side = contentProps.side ?? 'bottom'\n\n /*\n Here we're extending Popover.Content's align prop to accept 'before' and\n 'after' in addition to its existing values.\n\n TL;DR:\n 1. Use existing alignOffset prop to push Content to be before/after the\n corresponding edge of the element it's attached to.\n 2. Add a CSS margin to patch alignOffset back onto Content, as Popover\n has a bug that prevents alignOffset from extending past the edge of\n its Trigger/Anchor.\n\n SEE: https://github.com/radix-ui/primitives/issues/2457\n */\n if (['before', 'after'].includes(contentProps.align)) {\n const mapToOriginalAlignValues = {\n after: 'end',\n before: 'start',\n }\n\n const mapAlignOffsetToMargin = (align, side) => {\n /*\n Translate alignOffset to CSS margin based on align and side props:\n bottom || top\n after: marginLeft\n before: marginRight\n left || right\n after: marginTop\n before: marginBottom\n */\n if (['top', 'bottom'].includes(side)) {\n if (align == 'after') {\n return 'marginLeft'\n } else {\n return 'marginRight'\n }\n } else {\n if (align == 'after') {\n return 'marginTop'\n } else {\n return 'marginBottom'\n }\n }\n }\n\n const originalOffset = contentProps.alignOffset ?? 0\n const originalStyleProp = contentProps.style ?? {}\n const currentSide = contentProps.side ?? 'bottom'\n const currentAlign = contentProps.align\n\n // Copy alignOffset value to CSS margin\n contentProps['style'] = {\n ...originalStyleProp,\n [mapAlignOffsetToMargin(currentAlign, currentSide)]: originalOffset,\n }\n\n const lengthOfCurrentSide = ['top', 'bottom'].includes(currentSide)\n ? contentRect.width\n : contentRect.height\n\n // Change alignOffset to be at the end of the positioned side\n contentProps['alignOffset'] = (lengthOfCurrentSide + originalOffset) * -1\n\n // Flip align prop back to valid Radix option, or default to 'after'\n contentProps['align'] = mapToOriginalAlignValues[currentAlign]\n }\n\n return {\n contentProps,\n rootProps,\n }\n}\n","import { Frigade, Flow } from '@frigade/js'\nimport { useContext, useState } from 'react'\n\nimport { FrigadeContext } from '../components/Provider'\n\nexport function useFlow(flowId: string) {\n const [flow, setFlow] = useState<Flow>(null)\n const { apiKey, config } = useContext(FrigadeContext)\n\n async function fetchFlow() {\n const filteredConfig = Object.fromEntries(\n Object.entries(config).filter(([k, v]) => ['apiUrl', 'userId'].includes(k) && v != null)\n )\n\n const frigade = await new Frigade(apiKey, filteredConfig)\n\n const flowResponse: Flow = await frigade.getFlow(flowId)\n\n setFlow(flowResponse)\n }\n\n if (flow === null) {\n fetchFlow()\n }\n\n // TEMP: Expose a way to manually refresh the flow.\n // TODO: Automatically update state when something like step.complete() is called\n return { flow, fetchFlow }\n}\n","import { useFlow } from '../../hooks/useFlow'\n\nimport { Flex } from '../Flex/Flex'\nimport { Tooltip, TooltipProps } from '../Tooltip'\n\nexport interface TourProps extends TooltipProps {\n flowId: string\n}\n\nexport function Tour({ flowId, ...props }: TourProps) {\n const { flow, fetchFlow } = useFlow(flowId)\n\n if (flow == null || flow?.isCompleted || flow?.isSkipped) {\n return null\n }\n\n flow.start()\n\n const step = flow.getCurrentStep()\n\n step?.start()\n\n async function handleDismiss() {\n await flow.skip()\n\n // TEMP: Manually refreshing flow data until useFlow can handle it internally\n fetchFlow()\n }\n\n async function handlePrimary() {\n await step.complete()\n\n // TEMP: Manually refreshing flow data until useFlow can handle it internally\n fetchFlow()\n }\n\n const handleSecondary = handlePrimary\n\n return (\n <Tooltip\n anchor={step.selector as string}\n onOpenAutoFocus={(e) => e.preventDefault()}\n onPointerDownOutside={(e) => e.preventDefault()}\n {...props}\n >\n <Tooltip.Close onClick={handleDismiss} />\n\n <Tooltip.Media\n src={step.videoUri ?? step.imageUri}\n type={step.videoUri ? 'video' : 'image'}\n />\n\n <Tooltip.Title>{step.title}</Tooltip.Title>\n <Tooltip.Subtitle>{step.subtitle}</Tooltip.Subtitle>\n\n <Flex.Row pt={4} alignItems=\"center\" justifyContent=\"space-between\">\n <Tooltip.Progress>\n {`${flow.getNumberOfCompletedSteps()}/${flow.steps.size}`}\n </Tooltip.Progress>\n\n <Flex.Row gap={3}>\n <Tooltip.Secondary title={step.secondaryButtonTitle} onClick={handleSecondary} />\n <Tooltip.Primary title={step.primaryButtonTitle} onClick={handlePrimary} />\n </Flex.Row>\n </Flex.Row>\n </Tooltip>\n )\n}\n"],"mappings":"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CpB,cAAeA,EAAM,MACrB,YAAaA,EAAM,MAEnB,aAAc,CACZ,SACA,QACA,MACA,aACA,WACA,SACA,WACA,iBACA,gBACA,gBACA,eACA,eACA,UACA,cACA,gBACA,UACA,UACA,SACA,eACA,OACF,EAEA,WAAY,CACV,SACA,UACA,SACA,QACA,MACA,aACA,WACA,aACA,WACA,WACA,iBACA,gBACA,cACA,gBACA,UACA,UACA,SACA,eACA,OACF,EAEA,UAAW,CACT,OACA,SACA,SACA,QACA,MACA,aACA,WACA,aACA,WACA,WACA,iBACA,gBACA,UACA,cACA,gBACA,UACA,UACA,SACA,eACA,OACF,EAEA,cAAe,CACb,MACA,cACA,SACA,iBACA,UACA,UACA,SACA,eACA,OACF,EAEA,SAAU,CACR,SACA,OACA,eACA,UACA,UACA,SACA,eACA,OACF,EAEA,eAAgB,CACd,SACA,QACA,MACA,aACA,WACA,OACA,QACA,SACA,gBACA,eACA,eACA,UACA,cACA,gBACA,UACA,UACA,SACA,eACA,OACF,EAEA,aAAc,CACZ,SACA,UACA,SACA,QACA,MACA,aACA,WACA,aACA,WACA,OACA,QACA,WACA,iBACA,gBACA,cACA,gBACA,eACA,cACA,gBACA,UACA,UACA,SACA,eACA,OACF,EAEA,UAAW,CAAC,aAAc,cAAe,UAAW,UAAW,SAAU,eAAgB,OAAO,EAEhG,SAAU,CACR,SACA,WACA,WACA,QACA,SACA,UACA,UACA,SACA,eACA,OACF,EAEA,QAAS,CACP,QACA,aACA,aACA,kBACA,aACA,WACA,OACA,YACA,OACA,UACA,UACA,SACA,cACA,cACA,mBACA,cACA,eACA,cACA,cACA,YACA,OACA,SACA,eACA,QACA,kBACA,qBACA,qBACA,YACA,aACA,qBACA,eACA,gBACA,OACF,CACF,EAEaE,GAAsB,CACjC,EAAG,CAAC,QAAQ,EACZ,GAAI,CAAC,WAAW,EAChB,GAAI,CAAC,aAAa,EAClB,GAAI,CAAC,cAAc,EACnB,GAAI,CAAC,YAAY,EACjB,GAAI,CAAC,aAAc,aAA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","names":["React","clsx","SPACE_UNIT","spaceValue","key","spaceKeys","spaceScale","palette","scalarTokens","__spreadValues","colorVar","colorName","semanticColors","tokens","__spreadProps","__spreadValues","scalarTokens","semanticColors","flattenObject","obj","path","separator","acc","k","currentPath","currentValue","createThemeVariables","tokens","flattenObject","mapTokensToThemeVariables","obj","path","newObj","key","currentValue","themeVariables","theme","colorTokens","flattenObject","theme","styleProps","stylePropShorthands","prepValue","value","v","stylePropsMap","styleProps","propName","stylePropShorthandsMap","stylePropShorthands","shorthand","targetProps","stylePropsToCss","props","unmatchedProps","cssFromProps","propValue","matchedShorthand","styleProp","splitPropValues","_a","jsx","prefixPart","part","processPart","p","BoxWithRef","_a","ref","_b","as","children","className","css","props","__objRest","Component","cssFromProps","unmatchedProps","stylePropsToCss","processedPart","classNameWithPart","clsx","__spreadProps","__spreadValues","Box","Text_styles_exports","__export","Body1","Body2","Caption","Display1","Display2","H1","H2","H3","H4","base","fontFamilies","fontSizes","fontWeights","lineHeights","jsx","BaseText","_a","_b","as","children","css","variant","props","__objRest","Box","__spreadProps","__spreadValues","Text_styles_exports","textVariantNames","textVariantComponents","asProp","component","Text","Button_styles_exports","__export","Link","Plain","Primary","Secondary","base","radii","space","colors","jsx","jsxs","BaseButton","_a","_b","as","children","css","title","variant","props","__objRest","Box","__spreadProps","__spreadValues","Button_styles_exports","Text","buttonVariantNames","buttonVariantComponents","variantPart","component","part","Button","React","jsx","Row","_a","ref","_b","children","css","props","__objRest","Box","__spreadProps","__spreadValues","Column","Flex","createContext","Global","ThemeProvider","jsx","jsxs","FrigadeContext","createContext","Provider","apiKey","children","config","theme","themeOverrides","createThemeVariables","Global","__spreadValues","themeVariables","ThemeProvider","useEffect","useRef","useState","XMarkIcon","Popover","useCallback","useLayoutEffect","useState","useBoundingClientRect","initialRect","rect","setRect","node","setNode","ref","keyframes","jsx","jsxs","pulse","keyframes","Dot","_a","_b","style","part","props","__objRest","Box","__spreadProps","__spreadValues","jsx","Image","_a","_b","part","src","props","__objRest","Box","__spreadValues","jsx","getVideoEmbedSrc","videoUri","_a","_b","_c","Video","part","src","props","__objRest","videoEmbedSrc","Box","__spreadValues","jsx","Media","_a","_b","src","type","props","__objRest","Video","Image","__spreadValues","getDotPosition","props","alignAttr","sideAttr","currentSide","dotProps","getCurrentAlign","_a","dotOffset","oppositeSides","currentAlign","RADIX_PROPS","mapTooltipPropsToRadixProps","props","contentRect","_a","_b","_c","_d","_e","contentProps","propName","propEntry","rootProps","mapToOriginalAlignValues","mapAlignOffsetToMargin","align","side","originalOffset","originalStyleProp","currentSide","currentAlign","__spreadProps","__spreadValues","lengthOfCurrentSide","jsx","jsxs","Tooltip","_a","_b","anchor","children","css","spotlight","style","props","__objRest","contentNode","contentRect","contentRef","useBoundingClientRect","contentProps","rootProps","mapTooltipPropsToRadixProps","alignAttr","setAlignAttr","useState","sideAttr","setSideAttr","currentAlignAttr","currentSideAttr","anchorRef","useRef","anchorElementRef","setAnchorElementRef","useEffect","anchorQuery","anchorRect","anchorRadius","dotPosition","getDotPosition","__spreadProps","__spreadValues","Box","Flex","Dot","Button","XMarkIcon","src","Media","onClick","title","Text","Frigade","useContext","useState","useFlow","flowId","flow","setFlow","useState","apiKey","config","useContext","FrigadeContext","fetchFlow","__async","filteredConfig","k","v","flowResponse","Frigade","jsx","jsxs","Tour","_a","_b","flowId","props","__objRest","flow","fetchFlow","useFlow","step","handleDismiss","__async","handlePrimary","handleSecondary","Tooltip","__spreadProps","__spreadValues","e","Flex"]}
|
|
1
|
+
{"version":3,"sources":["../src/components/Dialog/index.tsx","../src/components/Box/index.tsx","../src/components/Box/styleProps.ts","../src/shared/tokens/borders.ts","../src/shared/tokens/palette.ts","../src/shared/tokens/radii.ts","../src/shared/tokens/semantic.ts","../src/shared/tokens/shadows.ts","../src/shared/tokens/space.ts","../src/shared/tokens/typography.ts","../src/shared/tokens/index.ts","../src/shared/flattenObject.ts","../src/shared/theme/index.ts","../src/components/Box/stylePropsToCss.ts","../src/shared/sanitize.ts","../src/components/Text/Text.tsx","../src/components/Text/Text.styles.ts","../src/components/Button/Button.styles.ts","../src/components/Button/index.tsx","../src/components/Card/index.tsx","../src/components/Flex/Flex.tsx","../src/components/Media/Image.tsx","../src/components/Media/Video.tsx","../src/components/Media/Media.tsx","../src/hooks/useFlowComponent.tsx","../src/hooks/useFlow.ts","../src/components/Provider/index.tsx","../src/hooks/useFlowHandlers.ts","../src/hooks/useStepHandlers.ts","../src/hooks/useModal.ts","../src/components/Announcement/index.tsx","../src/components/Banner/index.tsx","../src/components/Form/FormStep.tsx","../src/components/Form/fields/RadioField.tsx","../src/components/Form/fields/Error.tsx","../src/components/Form/fields/Label.tsx","../src/components/Form/fields/BaseField.styles.ts","../src/components/Form/fields/BaseField.tsx","../src/components/Form/fields/SelectField.tsx","../src/components/Form/fields/TextField.tsx","../src/components/Form/fields/TextareaField.tsx","../src/components/Form/index.tsx","../src/components/Tooltip/index.tsx","../src/hooks/useBoundingClientRect.ts","../src/components/Tooltip/Dot.tsx","../src/components/Tooltip/getDotPosition.ts","../src/components/Tooltip/mapTooltipPropsToPopoverProps.ts","../src/components/Tour/index.tsx","../src/components/Tour/TourStep.tsx","../src/hooks/useFrigade.ts"],"names":["RadixDialog","XMarkIcon","React","clsx","kcp","borders","palette","radii","colorVar","colorName","semantic","shadows","SPACE_UNIT","spaceValue","key","spaceKeys","space","typography","tokens","flattenObject","obj","path","separator","acc","k","currentPath","currentValue","createThemeVariables","mapTokensToThemeVariables","newObj","themeVariables","theme","omittedCSSProperties","filteredCSSProperties","prop","_","char","defaultCSSProperties","colorTokens","themedStyleProps","styleProps","stylePropShorthands","pseudoStyleProps","prepValue","value","v","stylePropsMap","propName","stylePropShorthandsMap","shorthand","targetProps","preservedProps","elementsWithPreservedProps","getPseudoClass","name","pseudo","stylePropsToCss","props","element","unmatchedProps","cssFromProps","getTargetObject","pseudoSelector","match","propValue","matchedShorthand","p","fullPropName","styleProp","splitPropValues","clippedPropName","DOMPurify","getWindow","JSDOM","sanitize","dirty","jsx","prefixPart","part","processPart","BoxWithRef","as","children","className","css","ref","Component","processedPart","classNameWithPart","cssProp","Box","Text_exports","__export","Body1","Body2","Caption","Display1","Display2","H1","H2","H3","H4","Text_styles_exports","base","textVariantNames","textVariants","variant","defaultAs","component","Button_styles_exports","Link","Plain","Primary","Secondary","jsxs","BaseButton","title","variantPart","buttonVariantNames","buttonVariantComponents","Button","Flex_exports","Column","Row","Card","Image","src","getVideoEmbedSrc","videoUri","_a","_b","_c","Video","videoEmbedSrc","Media","type","Dialog","e","onClick","current","total","dots","i","useEffect","useContext","useState","createContext","useRef","Global","ThemeProvider","Frigade","FrigadeContext","Provider","navigate","themeOverrides","modals","setModals","frigade","navigateHandler","url","target","currentModal","useFlow","flowId","config","flow","setFlow","setRandomString","handler","updatedFlow","flowInstance","useCallback","useFlowHandlers","onComplete","onDismiss","lastCompleted","useStepHandlers","step","onPrimary","onSecondary","useModal","modalId","isCurrentModal","setIsCurrentModal","prevModals","newIsCurrentModal","removeModal","nextModals","useFlowComponent","container","dismissible","variables","ContainerElement","flowComponentProps","handleDismiss","handlePrimary","handleSecondary","dismissButton","Fragment","Announcement","FlowComponent","Banner","useController","useForm","ruleProps","FieldWrapper","FieldComponent","control","fieldData","rules","controller","FormStep","fieldTypes","handleSubmit","fields","onSubmit","data","RadioGroup","Error","error","Label","id","required","field","input","BaseField","fieldState","label","placeholder","fieldProps","CheckIcon","RadioItem","forwardedRef","RadioField","onChange","options","radioItems","Select","ChevronDownIcon","SelectItem","SelectField","selectItems","TextField","TextareaField","defaultFieldTypes","Form","mergedFieldTypes","Popover","useLayoutEffect","useBoundingClientRect","initialRect","rect","setRect","node","setNode","handleResize","newRect","keyframes","pulse","Dot","style","getDotPosition","alignAttr","sideAttr","currentSide","dotProps","getCurrentAlign","dotOffset","oppositeSides","currentAlign","RADIX_PROPS","mapTooltipPropsToPopoverProps","contentRect","contentProps","propEntry","rootProps","mapToOriginalAlignValues","mapAlignOffsetToMargin","align","side","originalOffset","originalStyleProp","lengthOfCurrentSide","Tooltip","anchor","spotlight","contentNode","contentRef","anchorNode","anchorRect","anchorRef","setAlignAttr","setSideAttr","spotlightLeft","setSpotlightLeft","spotlightTop","setSpotlightTop","currentAlignAttr","currentSideAttr","anchorVirtualRef","anchorQuery","scrollX","scrollY","anchorRadius","dotPosition","TourStep","Tour","useFrigade"],"mappings":"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","sourcesContent":["import * as RadixDialog from '@radix-ui/react-dialog'\nimport { XMarkIcon } from '@heroicons/react/24/solid'\n\nimport { Box, type BoxProps } from '../Box'\nimport { Button, ButtonProps } from '../Button'\nimport { Card } from '../Card'\nimport { Media, MediaProps } from '../Media'\nimport { Text, TextProps } from '../Text'\n\nimport { theme } from '../../shared/theme'\n\nexport interface DialogProps extends BoxProps {}\n\n// TODO: Add any RadixDialog props we want to support here\nexport function Dialog({ children, ...props }: DialogProps) {\n return (\n <RadixDialog.Root defaultOpen={true} modal={true}>\n <RadixDialog.Portal>\n <Box inset=\"0\" position=\"fixed\" zIndex=\"9999\">\n <RadixDialog.Overlay asChild>\n <Box background=\"rgb(0 0 0 / 0.5)\" part=\"dialog-overlay\" position=\"fixed\" inset=\"0\" />\n </RadixDialog.Overlay>\n <RadixDialog.Content\n asChild\n onOpenAutoFocus={(e) => e.preventDefault()}\n onPointerDownOutside={(e) => e.preventDefault()}\n >\n <Card\n boxShadow=\"md\"\n left=\"50%\"\n maxWidth=\"430px\"\n p={8}\n part=\"dialog-content\"\n position=\"fixed\"\n textAlign=\"center\"\n top=\"50%\"\n transform=\"translate(-50%, -50%)\"\n {...props}\n >\n {children}\n </Card>\n </RadixDialog.Content>\n </Box>\n </RadixDialog.Portal>\n </RadixDialog.Root>\n )\n}\n\nDialog.Close = (props: ButtonProps) => {\n return (\n <RadixDialog.Close aria-label=\"Close\" asChild>\n <Button.Plain part=\"close\" position=\"absolute\" right=\"-4px\" top=\"4px\" {...props}>\n <XMarkIcon height=\"24\" fill=\"currentColor\" />\n </Button.Plain>\n </RadixDialog.Close>\n )\n}\n\nDialog.Subtitle = ({ children, ...props }: TextProps) => {\n return (\n <RadixDialog.Description asChild>\n <Text.Body2 mb={5} part=\"subtitle\" {...props}>\n {children}\n </Text.Body2>\n </RadixDialog.Description>\n )\n}\n\nDialog.Media = ({ src, ...props }: MediaProps) => {\n if (src == null) return null\n\n return <Media borderRadius=\"md\" src={src} {...props} />\n}\n\nDialog.Primary = ({ onClick, title, ...props }: ButtonProps) => {\n if (title == null) return null\n\n return <Button.Primary title={title} onClick={onClick} {...props} />\n}\n\nDialog.ProgressDots = ({ current, total }: { current: number; total: number }) => {\n if (total == 0) {\n return null\n }\n\n const dots = [...Array(total)].map((_, i) => {\n return (\n <circle\n key={i}\n r={4}\n cx={4 + 16 * i}\n cy=\"4px\"\n fill={current === i ? theme.colors.blue500 : theme.colors.blue800}\n />\n )\n })\n\n return (\n <Box\n as=\"svg\"\n height=\"8px\"\n margin=\"5 auto\"\n part=\"progress\"\n viewBox={`0 0 ${16 * total - 8} 8`}\n width={16 * total - 8}\n >\n {dots}\n </Box>\n )\n}\n\nDialog.Secondary = ({ onClick, title, ...props }: ButtonProps) => {\n if (title == null) return null\n\n return <Button.Secondary title={title} onClick={onClick} {...props} />\n}\n\nDialog.Title = ({ children, ...props }: TextProps) => {\n return (\n <RadixDialog.Title asChild>\n <Text.H3 mb={1} part=\"title\" {...props}>\n {children}\n </Text.H3>\n </RadixDialog.Title>\n )\n}\n","import * as React from 'react'\nimport { clsx } from 'clsx'\n\nimport { type StyleProps } from './styleProps'\nimport { stylePropsToCss } from './stylePropsToCss'\nimport { sanitize } from '../../shared/sanitize'\n\nfunction prefixPart(part: string | undefined) {\n return part ? `fr-${part}` : part\n}\n\nfunction processPart(part: Part | undefined) {\n if (!part) return part\n\n return Array.isArray(part) ? part.map((p) => processPart(p)).join(' ') : prefixPart(part)\n}\n\ntype Part = string | Part[]\n\nexport type BoxProps<T extends React.ElementType = React.ElementType> = {\n as?: T\n part?: Part\n} & StyleProps &\n React.ComponentPropsWithoutRef<T>\n\nfunction BoxWithRef<T extends React.ElementType = React.ElementType>(\n { as, children, className, css = {}, part, ...props }: BoxProps<T>,\n ref: React.ForwardedRef<HTMLDivElement>\n) {\n const Component = as ?? 'div'\n\n const { cssFromProps, unmatchedProps } = stylePropsToCss(props, Component)\n\n const processedPart = processPart(part)\n const classNameWithPart = className || processedPart ? clsx(className, processedPart) : undefined\n const cssProp = [{ boxSizing: 'border-box' }, cssFromProps, css]\n\n if (typeof children === 'string') {\n return (\n <Component\n className={classNameWithPart}\n css={cssProp}\n {...unmatchedProps}\n ref={ref}\n dangerouslySetInnerHTML={sanitize(children)}\n />\n )\n }\n\n return (\n <Component className={classNameWithPart} css={cssProp} {...unmatchedProps} ref={ref}>\n {children}\n </Component>\n )\n}\n\nexport const Box = React.forwardRef(BoxWithRef) as <\n T extends React.ElementType = React.ElementType\n>(\n props: BoxProps<T>\n) => React.ReactElement\n","import kcp from 'known-css-properties'\nimport type { CSSProperties } from 'react'\n\nimport { theme } from '../../shared/theme'\nimport { flattenObject } from '../../shared/flattenObject'\n\n// Don't use these as CSS props, pass them through to HTML\nconst omittedCSSProperties = new Set([\n 'alt', // Mozilla doesn't have this listed as a valid CSS property ¯\\_(ツ)_/¯\n 'size', // Only applies to @page, not used for styling components. Breaks <input>\n 'src', // Only applies to @font-face, not used for styling components. Breaks <img>, <video>, et al\n])\n\nconst filteredCSSProperties = kcp.all\n .filter((prop) => prop.indexOf('-') != 0 && !omittedCSSProperties.has(prop))\n .map((prop) => [prop.replace(/-([a-z])/g, (_, char) => char.toUpperCase()), null])\n\nconst defaultCSSProperties: Record<string, null> = Object.fromEntries(filteredCSSProperties)\n\n// Recursive type for flattened color names\n// SEE: https://stackoverflow.com/a/47058976\ntype PathsToStringProps<T> = T extends string\n ? []\n : {\n [K in Extract<keyof T, string>]: [K, ...PathsToStringProps<T[K]>]\n }[Extract<keyof T, string>]\n\ntype Join<T extends string[], D extends string> = T extends []\n ? never\n : T extends [infer F]\n ? F\n : T extends [infer F, ...infer R]\n ? F extends string\n ? `${F}${D}${Join<Extract<R, string[]>, D>}`\n : never\n : string\n\ntype ColorName = Join<PathsToStringProps<typeof theme.colors>, '.'>\n\nconst colorTokens = flattenObject(theme.colors) as Record<ColorName, string>\n\nconst themedStyleProps = {\n color: colorTokens,\n backgroundColor: colorTokens,\n borderColor: colorTokens,\n\n border: theme.borders,\n borderRadius: theme.radii,\n borderWidth: theme.borderWidths,\n boxShadow: theme.shadows,\n\n fontFamily: theme.fontFamilies,\n fontSize: theme.fontSizes,\n fontWeight: theme.fontWeights,\n\n gap: theme.space,\n\n lineHeight: theme.lineHeights,\n\n margin: theme.space,\n marginBottom: theme.space,\n marginLeft: theme.space,\n marginRight: theme.space,\n marginTop: theme.space,\n\n padding: theme.space,\n paddingBottom: theme.space,\n paddingLeft: theme.space,\n paddingRight: theme.space,\n paddingTop: theme.space,\n} as const\n\nexport const styleProps = {\n ...defaultCSSProperties,\n ...themedStyleProps,\n}\n\nexport const stylePropShorthands = {\n bg: ['backgroundColor'],\n\n m: ['margin'],\n mt: ['marginTop'],\n mr: ['marginRight'],\n mb: ['marginBottom'],\n ml: ['marginLeft'],\n mx: ['marginLeft', 'marginRight'],\n my: ['marginTop', 'marginBottom'],\n\n p: ['padding'],\n pt: ['paddingTop'],\n pr: ['paddingRight'],\n pb: ['paddingBottom'],\n pl: ['paddingLeft'],\n px: ['paddingLeft', 'paddingRight'],\n py: ['paddingTop', 'paddingBottom'],\n} as const\n\nexport const pseudoStyleProps = new Set(['active', 'focus', 'focusVisible', 'focusWithin', 'hover'])\n\ntype ThemedStyleProps = {\n [K in keyof typeof themedStyleProps]: keyof (typeof themedStyleProps)[K]\n}\n\ntype FilteredCSSProps = Omit<\n {\n [key in keyof CSSProperties]: CSSProperties[key]\n },\n | `-${string}`\n | `Moz${string}`\n | `ms${string}`\n | `Webkit${string}`\n | `Khtml${string}`\n | `O${string}`\n>\n\n// eslint-disable-next-line @typescript-eslint/ban-types -- the (string & {}) type is intentionally fucky to assist with IDE prop completion\nexport type ThemedStyleProp<K extends keyof ThemedStyleProps> = ThemedStyleProps[K] | (string & {})\n\nexport type StylePropShorthands = {\n [K in keyof typeof stylePropShorthands]?: ThemedStyleProp<(typeof stylePropShorthands)[K][0]>\n}\n\nexport interface StyleProps extends FilteredCSSProps, StylePropShorthands {\n backgroundColor?: ThemedStyleProp<'backgroundColor'>\n border?: ThemedStyleProp<'border'>\n borderColor?: ThemedStyleProp<'borderColor'>\n borderRadius?: ThemedStyleProp<'borderRadius'>\n borderWidth?: ThemedStyleProp<'borderWidth'>\n boxShadow?: ThemedStyleProp<'boxShadow'>\n color?: ThemedStyleProp<'color'>\n fontFamily?: ThemedStyleProp<'fontFamily'>\n fontSize?: ThemedStyleProp<'fontSize'>\n fontWeight?: ThemedStyleProp<'fontWeight'>\n gap?: ThemedStyleProp<'gap'>\n lineHeight?: ThemedStyleProp<'lineHeight'>\n margin?: ThemedStyleProp<'margin'>\n marginBottom?: ThemedStyleProp<'marginBottom'>\n marginLeft?: ThemedStyleProp<'marginLeft'>\n marginRight?: ThemedStyleProp<'marginRight'>\n marginTop?: ThemedStyleProp<'marginTop'>\n padding?: ThemedStyleProp<'padding'>\n paddingBottom?: ThemedStyleProp<'paddingBottom'>\n paddingLeft?: ThemedStyleProp<'paddingLeft'>\n paddingRight?: ThemedStyleProp<'paddingRight'>\n paddingTop?: ThemedStyleProp<'paddingTop'>\n}\n","export const borders = {\n borders: {\n md: '1px solid',\n },\n borderWidths: {\n 0: '0',\n md: '1px',\n },\n}\n","export const palette = {\n black: '#000000',\n gray100: '#14161A',\n gray200: '#181B20',\n gray300: '#1F2329',\n gray400: '#2E343D',\n gray500: '#4C5766',\n gray600: '#5A6472',\n gray700: '#C5CBD3',\n gray800: '#E2E5E9',\n gray900: '#F1F2F4',\n white: '#ffffff',\n blue400: '#015AC6',\n blue500: '#0171F8',\n blue800: '#DBECFF',\n blue900: '#F5F9FF',\n green400: '#009E37',\n green500: '#00D149',\n green800: '#DBFFE8',\n transparent: '#FFFFFF00',\n inherit: 'inherit',\n\n // This color isn't in the Design System yet, but it's used in old components\n red500: '#c00000',\n}\n","export const radii = {\n md: '10px',\n lg: '20px',\n round: '50%',\n}\n","const colorVar = (colorName: string) => `var(--fr-colors-${colorName})`\n\nexport const semantic = {\n neutral: {\n background: colorVar('white'),\n border: colorVar('gray800'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n\n active: {\n background: colorVar('white'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n },\n focus: {\n background: colorVar('white'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n },\n hover: {\n background: colorVar('white'),\n border: colorVar('gray900'),\n foreground: colorVar('black'),\n surface: colorVar('gray700'),\n },\n },\n\n primary: {\n background: colorVar('blue500'),\n border: colorVar('blue500'),\n foreground: colorVar('white'),\n surface: colorVar('blue500'),\n\n active: {\n background: colorVar('blue400'),\n border: colorVar('blue400'),\n foreground: colorVar('white'),\n surface: colorVar('blue400'),\n },\n focus: {\n background: colorVar('blue500'),\n border: colorVar('blue500'),\n foreground: colorVar('white'),\n surface: colorVar('blue500'),\n },\n hover: {\n background: colorVar('blue400'),\n border: colorVar('blue400'),\n foreground: colorVar('white'),\n surface: colorVar('blue400'),\n },\n },\n\n secondary: {\n background: colorVar('white'),\n border: colorVar('gray800'),\n foreground: colorVar('black'),\n surface: colorVar('gray900'),\n\n active: {\n background: colorVar('gray900'),\n border: colorVar('gray800'),\n foreground: colorVar('black'),\n surface: colorVar('gray800'),\n },\n focus: {\n background: colorVar('gray900'),\n border: colorVar('gray800'),\n foreground: colorVar('black'),\n surface: colorVar('gray900'),\n },\n hover: {\n background: colorVar('gray900'),\n border: colorVar('gray800'),\n foreground: colorVar('black'),\n surface: colorVar('gray800'),\n },\n },\n}\n","export const shadows = {\n md: '0px 4px 20px rgba(0, 0, 0, 0.1)',\n}\n","const SPACE_VALUE = 4\nconst SPACE_UNIT = 'px'\n\nconst spaceValue = (key: SpaceKeys[number]) =>\n typeof key === 'number' ? `${SPACE_VALUE * key}${SPACE_UNIT}` : key\n\nconst spaceKeys = [\n -20,\n -19,\n -18,\n -17,\n -16,\n -15,\n -14,\n -13,\n -12,\n -11,\n -10,\n -9,\n -8,\n -7,\n -6,\n -5,\n -4,\n -3,\n -2,\n -1,\n -0.5,\n 0,\n 0.5,\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11,\n 12,\n 13,\n 14,\n 15,\n 16,\n 17,\n 18,\n 19,\n 20,\n 'auto',\n] as const\n\ntype SpaceKeys = typeof spaceKeys\n\ntype SpaceTokens = {\n [K in SpaceKeys[number]]: string\n}\nexport const space = Object.fromEntries(\n spaceKeys.map((key) => [key, spaceValue(key)])\n) as SpaceTokens\n","export const typography = {\n fontFamilies: {\n default: 'TT Interphases Pro, sans-serif',\n },\n fontSizes: {\n xs: '12px',\n sm: '14px',\n md: '16px',\n lg: '18px',\n xl: '20px',\n '2xl': '24px',\n '3xl': '30px',\n '4xl': '36px',\n '5xl': '48px',\n },\n fontWeights: {\n thin: '100',\n extralight: '200',\n light: '300',\n regular: '400',\n medium: '500',\n demibold: '600',\n bold: '700',\n extrabold: '800',\n black: '900',\n },\n letterSpacings: {\n md: '0.02em',\n },\n lineHeights: {\n xs: '18px',\n sm: '22px',\n md: '24px',\n lg: '26px',\n xl: '30px',\n '2xl': '38px',\n '3xl': '46px',\n '4xl': '60px',\n },\n}\n","import { borders } from './borders'\nimport { palette } from './palette'\nimport { radii } from './radii'\nimport { semantic } from './semantic'\nimport { shadows } from './shadows'\nimport { space } from './space'\nimport { typography } from './typography'\n\n// Package up everything everywhere all at once for convenience\nexport const tokens = {\n ...borders,\n\n colors: {\n ...palette,\n ...semantic,\n },\n\n ...typography,\n\n radii,\n shadows,\n space,\n}\n\nexport type Tokens = typeof tokens\n","export function flattenObject(obj: object, path = '', separator = '.') {\n return Object.keys(obj).reduce((acc, k) => {\n const prefix = path.length ? `${path}${separator}` : ''\n const currentPath = `${prefix}${k}`\n const currentValue = obj[k]\n\n if (typeof currentValue === 'object' && currentValue !== null && !Array.isArray(currentValue)) {\n Object.assign(acc, flattenObject(currentValue, currentPath, separator))\n } else {\n acc[currentPath] = currentValue\n }\n\n return acc\n }, {})\n}\n","import { tokens, Tokens } from '../tokens'\nimport { flattenObject } from '../flattenObject'\n\nexport type Theme = Partial<Tokens>\n\n// Transform tokens to a flat list of CSS variables and values to inject into the page\n// IN: { colors: { black: '#000' } }, OUT: { '--fr-colors-black': '#000' }\nexport function createThemeVariables(tokens: Theme) {\n return flattenObject(tokens, '--fr', '-')\n}\n\n// Swap token values out and replace them with the CSS variables we defined\n// IN: { colors: { black: '#000' } }, OUT: { colors: { black: 'var(--fr-colors-black)' } }\nfunction mapTokensToThemeVariables(tokens: Tokens, path = '--fr'): Theme {\n const newObj: Theme = {}\n\n Object.keys(tokens).forEach((key) => {\n const currentValue = tokens[key]\n\n if (typeof currentValue === 'object' && currentValue !== null && !Array.isArray(currentValue)) {\n newObj[key] = mapTokensToThemeVariables(currentValue, `${path}-${key}`)\n } else {\n newObj[key] = `var(${path}-${key})`\n }\n })\n\n return newObj\n}\n\nexport const themeVariables = createThemeVariables(tokens)\n\nexport const theme = mapTokensToThemeVariables(tokens)\n","import { pseudoStyleProps, styleProps, stylePropShorthands } from './styleProps'\n\n/*\nPrefix these props to allow for usage in CSS & HTML:\n color\n - HTML: obsolete\n\n background\n - HTML: obsolete\n\n border\n - HTML: obsolete\n\n content\n - HTML: only used in <meta>, not relevant to components\n\n translate\n - used by both. Prefix _translate to force pass-through to HTML?\n\n\n height\n width\n - HTML: used by <canvas>, <embed>, <iframe>, <img>, <input>, <object>, <video>\n - Can automatically send these to both HTML and CSS for those elements and allow manual prefixing just in case (like if you want to set HTML width to something different that CSS width)\n\n*/\n\nfunction prepValue(value: unknown) {\n if (Array.isArray(value)) {\n return new Map(value.map((v) => [v, v]))\n } else if (typeof value === 'object' && value !== null) {\n return new Map(Object.entries(value))\n } else if (typeof value === 'string' || typeof value === 'number') {\n return new Map([[value, value]])\n }\n\n return new Map()\n}\n\nconst stylePropsMap = new Map(\n Object.entries(styleProps).map(([propName, value]) => {\n return [propName, prepValue(value)]\n })\n)\n\nconst stylePropShorthandsMap = new Map(\n Object.entries(stylePropShorthands).map(([shorthand, targetProps]) => {\n return [shorthand, new Set(targetProps)]\n })\n)\n\n// TL;DR: Replaced elements should always have width & height HTML attrs set because intrinsic height / width = aspect ratio\nconst preservedProps = new Set(['height', 'width'])\nconst elementsWithPreservedProps = new Set([\n 'canvas',\n 'embed',\n 'iframe',\n 'img',\n 'input',\n 'object',\n 'video',\n])\n\nfunction getPseudoClass(propName: string) {\n // We're intentionally only grabbing the initial name and first pseudo class for now\n // We can support styleProp:hover:focus easily enough by running through the whole array\n const [name, pseudo] = propName.split(':')\n\n return [name, pseudoStyleProps.has(pseudo) ? pseudo : null]\n}\n\nexport function stylePropsToCss(\n props: Record<string, unknown>,\n element: React.ElementType = 'div'\n) {\n const unmatchedProps = Object.assign({}, props)\n const cssFromProps = {}\n\n function getTargetObject(pseudo: string | null) {\n if (pseudo == null) {\n return cssFromProps\n }\n\n const hyphenatedPseudo = pseudo.replace(/[A-Z]/g, (match) => `-${match.toLocaleLowerCase()}`)\n\n const pseudoSelector = `&:${hyphenatedPseudo}`\n\n if (cssFromProps[pseudoSelector] == null) {\n cssFromProps[pseudoSelector] = {}\n }\n\n return cssFromProps[pseudoSelector]\n }\n\n // Convert shorthand styleProps to full versions\n Object.entries(unmatchedProps).forEach(([propName, propValue]) => {\n const [name, pseudo] = getPseudoClass(propName)\n\n const matchedShorthand = stylePropShorthandsMap.get(name)\n if (matchedShorthand != null) {\n matchedShorthand.forEach((p) => {\n const fullPropName = `${p}${pseudo ? ':' + pseudo : ''}`\n unmatchedProps[fullPropName] = propValue\n })\n\n delete unmatchedProps[propName]\n }\n })\n\n // Convert styleProps to style object\n Object.entries(unmatchedProps).forEach(([fullPropName, propValue]) => {\n const [propName, pseudo] = getPseudoClass(fullPropName)\n const styleProp = stylePropsMap.get(propName)\n\n if (styleProp != null) {\n // Split space-separated values out and process them individually\n if (typeof propValue === 'string' && propValue.indexOf(' ') > -1) {\n const splitPropValues = propValue.split(' ')\n\n getTargetObject(pseudo)[propName] = splitPropValues\n .map((v) => styleProp.get(v.toString()) ?? v)\n .join(' ')\n }\n\n // Replace known token values (e.g. lineHeight=\"xl\")\n else if (styleProp.has(propValue.toString())) {\n getTargetObject(pseudo)[propName] = styleProp.get(propValue.toString())\n }\n\n // Pass value through, we trust TypeScript to catch invalid values, right?\n else {\n getTargetObject(pseudo)[propName] = propValue\n }\n\n // Don't delete the special props that get passed through to certain tags by default\n if (\n typeof element !== 'string' ||\n !elementsWithPreservedProps.has(element) ||\n !preservedProps.has(propName)\n ) {\n delete unmatchedProps[fullPropName]\n }\n }\n })\n\n // Remove prefix from prefixed style props and pass them through\n Object.keys(unmatchedProps).forEach((propName) => {\n const clippedPropName = propName.substring(1)\n\n if (propName.indexOf('_') === 0 && stylePropsMap.has(clippedPropName)) {\n unmatchedProps[clippedPropName] = unmatchedProps[propName]\n\n delete unmatchedProps[propName]\n }\n })\n\n return { cssFromProps, unmatchedProps }\n}\n","import DOMPurify from 'dompurify'\n\nfunction getWindow() {\n if (typeof window === 'undefined') {\n // eslint-disable-next-line @typescript-eslint/no-var-requires -- JSDOM is required inline because it has import side effects that depend on node\n const { JSDOM } = require('jsdom')\n return new JSDOM('<!DOCTYPE html>').window\n }\n\n return window\n}\n\nexport function sanitize(dirty?: string) {\n if (!dirty) {\n return { __html: '' }\n }\n\n return {\n __html: DOMPurify(getWindow()).sanitize(dirty, {\n ALLOWED_TAGS: [\n 'b',\n 'i',\n 'a',\n 'span',\n 'div',\n 'p',\n 'pre',\n 'u',\n 'br',\n 'img',\n 'code',\n 'li',\n 'ul',\n 'table',\n 'tbody',\n 'thead',\n 'tr',\n 'td',\n 'th',\n 'h1',\n 'h2',\n 'h3',\n 'h4',\n 'video',\n ],\n ALLOWED_ATTR: [\n 'style',\n 'class',\n 'target',\n 'id',\n 'href',\n 'alt',\n 'src',\n 'controls',\n 'autoplay',\n 'loop',\n 'muted',\n ],\n }),\n }\n}\n","import * as React from 'react'\n\nimport { Box, BoxProps } from '../Box'\n\nimport * as styles from './Text.styles'\n\nconst textVariantNames = [\n 'Display1',\n 'Display2',\n 'H1',\n 'H2',\n 'H3',\n 'H4',\n 'Body1',\n 'Body2',\n 'Caption',\n] as const\n\nexport interface TextProps extends BoxProps {}\n\nconst textVariants = Object.fromEntries(\n textVariantNames.map((variant) => {\n const defaultAs = ['H1', 'H2', 'H3', 'H4'].includes(variant)\n ? (variant.toLowerCase() as 'h1' | 'h2' | 'h3' | 'h4')\n : 'span'\n\n const component = React.forwardRef(\n (\n { as = defaultAs, children, ...props }: BoxProps,\n ref: React.ForwardedRef<HTMLDivElement>\n ) => (\n <Box as={as} {...styles[variant]} {...props} ref={ref}>\n {children}\n </Box>\n )\n ) as React.ForwardRefExoticComponent<BoxProps>\n\n component.displayName = `Text.${variant}`\n\n return [variant, component]\n })\n)\n\nexport const Display1 = textVariants['Display1']\nexport const Display2 = textVariants['Display2']\n\n/* eslint-disable react-refresh/only-export-components -- False positive on H# components, see: https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/src/only-export-components.ts#L9 */\nexport const H1 = textVariants['H1']\nexport const H2 = textVariants['H2']\nexport const H3 = textVariants['H3']\nexport const H4 = textVariants['H4']\n/* eslint-enable react-refresh/only-export-components */\n\nexport const Body1 = textVariants['Body1']\nexport const Body2 = textVariants['Body2']\nexport const Caption = textVariants['Caption']\n","const base = {\n color: 'neutral.foreground',\n fontFamily: 'default',\n margin: '0',\n}\n\nexport const Display1 = {\n ...base,\n fontSize: '5xl',\n fontWeight: 'bold',\n lineHeight: '4xl',\n}\n\nexport const Display2 = {\n ...base,\n fontSize: '4xl',\n fontWeight: 'bold',\n lineHeight: '3xl',\n}\n\nexport const H1 = {\n ...base,\n fontSize: '3xl',\n fontWeight: 'bold',\n lineHeight: '2xl',\n}\n\nexport const H2 = {\n ...base,\n fontSize: '2xl',\n fontWeight: 'bold',\n lineHeight: 'xl',\n}\n\nexport const H3 = {\n ...base,\n fontSize: 'xl',\n fontWeight: 'bold',\n lineHeight: 'lg',\n}\n\nexport const H4 = {\n ...base,\n fontSize: 'lg',\n fontWeight: 'bold',\n lineHeight: 'md',\n}\n\nexport const Body1 = {\n ...base,\n fontSize: 'md',\n fontWeight: 'regular',\n lineHeight: 'md',\n}\n\nexport const Body2 = {\n ...base,\n fontSize: 'sm',\n fontWeight: 'regular',\n lineHeight: 'md',\n}\n\nexport const Caption = {\n ...base,\n fontSize: 'xs',\n fontWeight: 'regular',\n lineHeight: 'sm',\n}\n","const base = {\n borderWidth: '0',\n borderRadius: 'md',\n display: 'flex',\n gap: '2',\n padding: '2 4',\n}\n\nexport const Primary = {\n ...base,\n backgroundColor: 'primary.surface',\n color: 'primary.foreground',\n\n 'backgroundColor:hover': 'primary.hover.surface',\n}\n\nexport const Secondary = {\n ...base,\n\n backgroundColor: 'secondary.background',\n borderColor: 'secondary.border',\n borderStyle: 'solid',\n borderWidth: '1px',\n color: 'secondary.foreground',\n\n 'backgroundColor:hover': 'secondary.hover.background',\n}\n\nexport const Link = {\n ...base,\n\n backgroundColor: 'transparent',\n color: 'primary.surface',\n\n 'color:hover': 'primary.hover.surface',\n}\n\nexport const Plain = {\n ...base,\n\n backgroundColor: 'transparent',\n color: 'neutral.foreground',\n}\n","import { Box, BoxProps } from '../Box'\nimport { Text } from '../Text'\n\nimport * as styles from './Button.styles'\n\n// TODO: Generate this type from buttonVariantNames\ntype ButtonVariant = 'Primary' | 'Secondary' | 'Link' | 'Plain'\n\nexport interface ButtonProps extends BoxProps {\n title?: string\n variant?: ButtonVariant\n}\n\nfunction BaseButton({ as, children, part, title, variant = 'Primary', ...props }: ButtonProps) {\n const variantPart = variant.toLocaleLowerCase()\n\n return (\n <Box as={as ?? 'button'} part={[`button-${variantPart}`, part]} {...styles[variant]} {...props}>\n {children}\n {title && (\n <Text.Body2 flexGrow=\"1\" fontWeight=\"demibold\" color=\"inherit\">\n {title}\n </Text.Body2>\n )}\n </Box>\n )\n}\n\nconst buttonVariantNames: ButtonVariant[] = ['Primary', 'Secondary', 'Link', 'Plain']\n\nconst buttonVariantComponents = Object.fromEntries(\n buttonVariantNames.map((variant) => {\n const component = (props: ButtonProps) => {\n return (\n <BaseButton {...props} variant={variant}>\n {props.children}\n </BaseButton>\n )\n }\n\n component.displayName = `Text.${variant}`\n\n return [variant, component]\n })\n)\n\nexport const Button = Object.assign(BaseButton, buttonVariantComponents)\n","import * as React from 'react'\n\nimport { type BoxProps } from '../Box'\nimport { Flex } from '../Flex'\n\nexport const Card = React.forwardRef(({ as, children, ...props }: BoxProps, ref) => {\n const Component = as ?? Flex.Column\n return (\n <Component backgroundColor=\"neutral.background\" borderRadius=\"md\" p={5} {...props} ref={ref}>\n {children}\n </Component>\n )\n})\n","import * as React from 'react'\nimport { Box, BoxProps } from '../Box'\n\nexport const Row = React.forwardRef(({ children, css, ...props }: BoxProps, ref) => {\n return (\n <Box css={[{ display: 'flex', flexDirection: 'row' }, css]} {...props} ref={ref}>\n {children}\n </Box>\n )\n})\n\nexport const Column = React.forwardRef(({ children, css, ...props }: BoxProps, ref) => {\n return (\n <Box css={[{ display: 'flex', flexDirection: 'column' }, css]} {...props} ref={ref}>\n {children}\n </Box>\n )\n})\n","import { Box, BoxProps } from '../Box'\n\nexport interface ImageProps extends BoxProps {\n src: string\n}\n\nexport function Image({ part, src, ...props }: ImageProps) {\n return <Box as=\"img\" part={['image', part]} src={src} {...props} />\n}\n","import { Box, BoxProps } from '../Box'\n\nfunction getVideoEmbedSrc(videoUri: string) {\n if (videoUri.includes('youtube')) {\n const videoId = videoUri.split('v=')[1]?.split('&')[0]\n\n return `https://www.youtube.com/embed/${videoId}`\n } else if (videoUri.includes('vimeo')) {\n const videoId = videoUri.split('vimeo.com/')[1]?.split('&')[0]\n\n return `https://player.vimeo.com/video/${videoId}`\n } else if (videoUri.includes('wistia')) {\n const videoId = videoUri.split('wistia.com/medias/')[1]?.split('&')[0]\n\n return `https://fast.wistia.net/embed/iframe/${videoId}`\n }\n\n throw new Error('Could not map videoUri to a known provider (Youtube, Vimeo, Wistia).')\n}\n\nexport interface VideoProps extends BoxProps {\n src: string\n}\n\nexport function Video({ part, src, ...props }: VideoProps) {\n const videoEmbedSrc = getVideoEmbedSrc(src)\n\n // TODO: Add play button overtop?\n return (\n <Box\n allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n allowFullScreen\n as=\"iframe\"\n backgroundColor=\"gray100\"\n borderWidth={0}\n part={['video', part]}\n src={videoEmbedSrc}\n {...props}\n ></Box>\n )\n}\n","import { Image } from './Image'\nimport { Video } from './Video'\nimport { BoxProps } from '../Box'\n\nexport interface MediaProps extends BoxProps {\n src: string\n type?: 'image' | 'video'\n}\n\nexport function Media({ src, type, ...props }: MediaProps) {\n const Component = type === 'video' ? Video : Image\n\n return <Component src={src} {...props} />\n}\n","import { type ReactNode, useEffect } from 'react'\nimport { type Flow, type FlowStep } from '@frigade/js'\n\nimport { Box, type BoxProps } from '@/components/Box'\nimport { Dialog } from '@/components/Dialog'\n\nimport { type FlowComponentProps } from '@/shared/types'\n\nimport { useFlow } from './useFlow'\nimport { type DismissHandler, useFlowHandlers } from './useFlowHandlers'\nimport { type StepHandler, useStepHandlers } from './useStepHandlers'\nimport { useModal } from './useModal'\n\nexport interface FlowComponentChildrenProps {\n flow: Flow\n handleDismiss: DismissHandler\n handlePrimary: StepHandler\n handleSecondary: StepHandler\n step: FlowStep\n}\n\nexport interface FlowComponentChildren extends BoxProps {\n children: (props: FlowComponentChildrenProps) => ReactNode\n}\n\nexport function useFlowComponent({\n container,\n dismissible = true,\n flowId,\n onComplete,\n onDismiss,\n onPrimary,\n onSecondary,\n variables,\n ...props\n}: FlowComponentProps) {\n const ContainerElement = container === 'dialog' ? Dialog : Box\n\n // TODO: useMemo this component so it isn't recreated on every render\n const FlowComponent = function FlowComponent({\n children,\n ...flowComponentProps\n }: FlowComponentChildren) {\n const { flow } = useFlow(flowId, {\n variables,\n })\n const step = flow?.getCurrentStep()\n\n const { handleDismiss } = useFlowHandlers(flow, {\n onComplete,\n onDismiss,\n })\n\n const { handlePrimary, handleSecondary } = useStepHandlers(step, {\n onPrimary,\n onSecondary,\n })\n\n const { isCurrentModal, removeModal } = useModal(flow?.id)\n\n useEffect(() => {\n if (!flow?.isVisible && isCurrentModal) {\n removeModal()\n }\n }, [flow?.isVisible, isCurrentModal])\n\n if (flow == null || !flow.isVisible || !isCurrentModal) {\n return null\n }\n\n const dismissButton =\n dismissible && container === 'dialog' ? <Dialog.Close onClick={handleDismiss} /> : null\n\n flow.start()\n step.start()\n\n return (\n <ContainerElement {...flowComponentProps} {...props}>\n {dismissButton}\n\n {children({\n flow,\n handleDismiss,\n handlePrimary,\n handleSecondary,\n step,\n })}\n </ContainerElement>\n )\n }\n\n return {\n FlowComponent,\n }\n}\n","import { type Flow } from '@frigade/js'\nimport { useContext, useEffect, useState } from 'react'\n\nimport { FrigadeContext } from '../components/Provider'\n\nexport interface FlowConfig {\n variables?: Record<string, unknown>\n}\n\nexport function useFlow(flowId: string, config?: FlowConfig) {\n const [flow, setFlow] = useState<Flow>()\n const [, setRandomString] = useState<string>('')\n const { frigade } = useContext(FrigadeContext)\n\n const handler = (updatedFlow: Flow) => {\n if (updatedFlow.id !== flowId) {\n return\n }\n\n if (config?.variables) {\n updatedFlow.applyVariables(config.variables)\n }\n\n setFlow(updatedFlow)\n setRandomString(Math.random().toString())\n }\n\n useEffect(() => {\n ;(async () => {\n const flowInstance: Flow = await frigade.getFlow(flowId)\n if (!flowInstance || frigade.hasFailedToLoad()) {\n setFlow(undefined)\n return\n }\n if (config?.variables) {\n flowInstance.applyVariables(config.variables)\n }\n\n setFlow(flowInstance)\n })()\n\n frigade.onStateChange(handler)\n\n return () => {\n frigade.removeStateChangeHandler(handler)\n }\n }, [])\n\n return { flow }\n}\n","import {\n createContext,\n type Dispatch,\n type SetStateAction,\n useEffect,\n useRef,\n useState,\n} from 'react'\nimport { Global, ThemeProvider } from '@emotion/react'\n\nimport {\n createThemeVariables,\n theme as themeTokens,\n type Theme,\n themeVariables,\n} from '../../shared/theme'\nimport { Frigade } from '@frigade/js'\n\ntype NavigateHandler = (url: string, target?: string) => void\n\n// TODO: type theme something like Partial<typeof themeTokens>, but allow any value for those keys\nexport interface ProviderProps {\n apiKey: string\n apiUrl?: string\n children?: React.ReactNode\n navigate?: NavigateHandler\n theme?: Theme\n userId?: string\n groupId?: string\n /**\n * @ignore Internal use only.\n * If enabled, Frigade will not send any data to the API. A user's state will be reset on page refresh.\n */\n __readOnly?: boolean\n\n /**\n * @ignore Internal use only.\n * Map of Flow ID to Flow Config for all flows in the app.\n * Configs will have to be provided in serialized JSON format rather than YAML.\n */\n __flowConfigOverrides?: Record<string, string>\n}\n\ninterface ProviderContext extends Omit<ProviderProps, 'children' | 'theme'> {\n modals: Set<string>\n setModals: Dispatch<SetStateAction<Set<string>>>\n currentModal: string | null\n frigade?: Frigade\n}\n\nexport const FrigadeContext = createContext<ProviderContext>({\n apiKey: '',\n modals: new Set(),\n setModals: () => {},\n currentModal: null,\n navigate: () => {},\n})\n\nexport function Provider({ children, navigate, theme, ...props }: ProviderProps) {\n const themeOverrides = theme ? createThemeVariables(theme) : {}\n const [modals, setModals] = useState(new Set<string>())\n\n const frigade = useRef<Frigade>(\n new Frigade(props.apiKey, {\n apiKey: props.apiKey,\n apiUrl: props.apiUrl,\n userId: props.userId,\n groupId: props.groupId,\n __readOnly: props.__readOnly,\n __flowConfigOverrides: props.__flowConfigOverrides,\n })\n )\n\n const navigateHandler =\n navigate ??\n ((url, target = '_self') => {\n window.open(url, target)\n })\n\n useEffect(() => {\n return () => {\n frigade.current?.destroy()\n }\n }, [])\n\n const currentModal = modals.size > 0 ? modals.values().next().value : null\n\n return (\n <FrigadeContext.Provider\n value={{\n modals,\n setModals,\n currentModal,\n navigate: navigateHandler,\n ...props,\n frigade: frigade.current,\n }}\n >\n <Global styles={{ ':root': { ...themeVariables, ...themeOverrides } }} />\n <ThemeProvider theme={themeTokens}>{children}</ThemeProvider>\n </FrigadeContext.Provider>\n )\n}\n","import { MouseEvent, useCallback, useEffect, useRef } from 'react'\n\nimport { Flow } from '@frigade/js'\n\nexport type FlowHandlerProp = (\n flow: Flow,\n event?: React.MouseEvent<unknown>\n) => Promise<boolean | void> | (boolean | void)\n\nexport interface FlowHandlerProps {\n onComplete?: FlowHandlerProp\n onDismiss?: FlowHandlerProp\n}\n\nexport type DismissHandler = (e: React.MouseEvent<unknown>) => Promise<boolean | void>\n\nexport function useFlowHandlers(flow: Flow, { onComplete, onDismiss }: FlowHandlerProps = {}) {\n const lastCompleted = useRef(null)\n\n useEffect(() => {\n if (flow == null) return\n\n if (flow.isCompleted && lastCompleted.current === false) {\n ;(async () => {\n await onComplete?.(flow)\n })()\n }\n\n lastCompleted.current = flow?.isCompleted\n }, [flow?.isCompleted])\n\n return {\n handleDismiss: useCallback<DismissHandler>(\n async (e: React.MouseEvent<unknown>) => {\n const continueDefault = await onDismiss?.(flow, e)\n\n if (continueDefault === false) {\n e.preventDefault()\n return false\n }\n\n await flow.skip()\n },\n [flow]\n ),\n }\n}\n","import { MouseEvent, useCallback, useContext } from 'react'\n\nimport type { FlowStep } from '@frigade/js'\n\nimport { FrigadeContext } from '../components/Provider'\n\nexport type StepHandlerProp = (\n step: FlowStep,\n event?: React.MouseEvent<unknown>\n) => Promise<boolean | void> | (boolean | void)\n\nexport interface StepHandlerProps {\n onPrimary?: StepHandlerProp\n onSecondary?: StepHandlerProp\n}\n\nexport type StepHandler = (e: React.MouseEvent<unknown>) => Promise<boolean | void>\n\nexport function useStepHandlers(step: FlowStep, { onPrimary, onSecondary }: StepHandlerProps = {}) {\n const { navigate } = useContext(FrigadeContext)\n\n return {\n handlePrimary: useCallback<StepHandler>(\n async (e: React.MouseEvent<unknown>) => {\n const continueDefault = await onPrimary?.(step, e)\n\n if (continueDefault === false) {\n e.preventDefault()\n return false\n }\n\n await step.complete()\n\n if (step.primaryButtonUri != null) {\n navigate(step.primaryButtonUri, step.primaryButtonUriTarget)\n }\n },\n [step]\n ),\n\n handleSecondary: useCallback<StepHandler>(\n async (e: React.MouseEvent<unknown>) => {\n const continueDefault = await onSecondary?.(step, e)\n\n if (continueDefault === false) {\n e.preventDefault()\n return false\n }\n\n // Should there be a step.skip method?\n await step.complete()\n\n if (step.secondaryButtonUri != null) {\n navigate(step.secondaryButtonUri, step.secondaryButtonUriTarget)\n }\n },\n [step]\n ),\n }\n}\n","import { useContext, useEffect, useState } from 'react'\n\nimport { FrigadeContext } from '../components/Provider'\n\nexport function useModal(modalId: string) {\n const { currentModal, modals, setModals } = useContext(FrigadeContext)\n const [isCurrentModal, setIsCurrentModal] = useState(false)\n\n useEffect(() => {\n if (modalId != null && !modals.has(modalId)) {\n setModals((prevModals) => new Set(prevModals).add(modalId))\n }\n }, [modalId])\n\n useEffect(() => {\n const newIsCurrentModal = currentModal === modalId\n\n if (modalId != null && newIsCurrentModal !== isCurrentModal) {\n setIsCurrentModal(newIsCurrentModal)\n }\n }, [modalId, currentModal])\n\n function removeModal() {\n if (modals.has(modalId)) {\n setModals((prevModals) => {\n const nextModals = new Set(prevModals)\n nextModals.delete(modalId)\n\n return nextModals\n })\n }\n }\n\n return {\n isCurrentModal,\n removeModal,\n }\n}\n","import { Dialog, type DialogProps } from '../Dialog'\nimport { Flex } from '../Flex'\nimport { type FlowComponentProps } from '@/shared/types'\nimport { useFlowComponent } from '@/hooks/useFlowComponent'\n\nexport interface AnnouncementProps extends FlowComponentProps, Omit<DialogProps, 'container'> {}\n\nexport function Announcement(props: AnnouncementProps) {\n // TODO: Make Dialog subcomponents agnostic once Card is fleshed out, remove forced container='dialog'\n const { FlowComponent } = useFlowComponent({ ...props, container: 'dialog' })\n\n return (\n <FlowComponent>\n {({ flow, handlePrimary, handleSecondary, step }) => (\n <>\n <Dialog.Title>{step.title}</Dialog.Title>\n <Dialog.Subtitle>{step.subtitle}</Dialog.Subtitle>\n\n <Dialog.Media\n src={step.imageUri}\n css={{ aspectRatio: '1.5', objectFit: 'cover', width: '100%' }}\n />\n\n <Dialog.ProgressDots\n current={flow.getNumberOfCompletedSteps()}\n total={flow.getNumberOfAvailableSteps()}\n />\n\n <Flex.Row\n css={{\n '& > button': {\n flexGrow: 1,\n },\n }}\n gap={3}\n >\n {step.secondaryButtonTitle && (\n <Dialog.Secondary title={step.secondaryButtonTitle} onClick={handleSecondary} />\n )}\n <Dialog.Primary title={step.primaryButtonTitle ?? 'Continue'} onClick={handlePrimary} />\n </Flex.Row>\n </>\n )}\n </FlowComponent>\n )\n}\n","import { Button } from '@/components/Button'\nimport { Card } from '@/components/Card'\nimport { Flex } from '@/components/Flex'\nimport { Text } from '@/components/Text'\n\nimport { XMarkIcon } from '@heroicons/react/24/solid'\n\nimport { useFlowComponent } from '@/hooks/useFlowComponent'\n\nimport type { FlowComponentProps } from '@/shared/types'\n\ninterface BannerProps extends FlowComponentProps {}\n\nexport function Banner(props: BannerProps) {\n const { FlowComponent } = useFlowComponent(props)\n\n return (\n <FlowComponent\n as={Card}\n border=\"md\"\n borderColor=\"gray900\"\n display=\"flex\"\n flexDirection=\"row\"\n gap={3}\n justifyContent=\"space-between\"\n >\n {({ handleDismiss, handlePrimary, handleSecondary, step }) => (\n <>\n <Flex.Row gap={3}>\n {step.imageUri && (\n <img src={step.imageUri} style={{ height: 40, width: 40, alignSelf: 'center' }} />\n )}\n <Flex.Column>\n <Text.H4 mb={1}>{step.title}</Text.H4>\n <Text.Body2>{step.subtitle}</Text.Body2>\n </Flex.Column>\n </Flex.Row>\n\n <Flex.Row alignItems=\"center\" gap={3} justifyContent=\"center\">\n {step.secondaryButtonTitle && (\n <Button.Secondary title={step.secondaryButtonTitle} onClick={handleSecondary} />\n )}\n <Button.Primary title={step.primaryButtonTitle} onClick={handlePrimary} />\n {props.dismissible && props.container != 'dialog' && (\n <Button.Plain part=\"banner-close\" onClick={handleDismiss}>\n <XMarkIcon height=\"24\" fill=\"currentColor\" />\n </Button.Plain>\n )}\n </Flex.Row>\n </>\n )}\n </FlowComponent>\n )\n}\n","import { useController, useForm } from 'react-hook-form'\n\nimport { Button } from '@/components/Button'\nimport { Flex } from '@/components/Flex'\n\nimport { type FormFieldData, type FormProps, type ValidationRules } from '.'\n\n// See: https://react-hook-form.com/get-started#Applyvalidation\n// NOTE: \"validate\" is intentionally omitted\nconst ruleProps = new Set(['required', 'min', 'max', 'minLength', 'maxLength', 'pattern'])\n\nfunction FieldWrapper({ fieldComponent: FieldComponent, control, fieldData }) {\n // pattern validator comes as a string from YAML, convert it to RegExp\n if (fieldData.pattern != null) {\n if (typeof fieldData.pattern === 'string') {\n fieldData.pattern = new RegExp(fieldData.pattern.replace(/^\\/|\\/$/g, ''))\n } else if (\n typeof fieldData.pattern === 'object' &&\n typeof fieldData.pattern.value === 'string'\n ) {\n fieldData.pattern.value = new RegExp(fieldData.pattern.value.replace(/^\\/|\\/$/g, ''))\n }\n }\n\n const rules = Object.fromEntries(\n Object.entries(fieldData).filter(([key]) => ruleProps.has(key))\n ) as ValidationRules\n\n const controller = useController({\n name: fieldData.id,\n control,\n rules,\n })\n\n return <FieldComponent {...controller} fieldData={fieldData} />\n}\n\nexport function FormStep({ fieldTypes, step }: Pick<FormProps, 'fieldTypes' | 'step'>) {\n const { control, handleSubmit } = useForm({\n delayError: 2000,\n mode: 'onChange',\n })\n const fields = []\n\n // TODO: Type for data\n function onSubmit(data: unknown) {\n step.complete(data)\n }\n\n step.fields?.forEach((fieldData: FormFieldData) => {\n if (fieldTypes[fieldData.type] != null) {\n fields.push(\n <FieldWrapper\n key={fieldData.id}\n control={control}\n fieldComponent={fieldTypes[fieldData.type]}\n fieldData={fieldData}\n />\n )\n }\n })\n\n return (\n <>\n {fields}\n <Flex.Row key=\"form-footer\" justifyContent=\"flex-end\">\n <Button.Primary\n title={step.primaryButtonTitle ?? 'Submit'}\n onClick={handleSubmit(onSubmit)}\n />\n </Flex.Row>\n </>\n )\n}\n","import * as React from 'react'\nimport * as RadioGroup from '@radix-ui/react-radio-group'\n\nimport { Box } from '@/components/Box'\nimport { Flex } from '@/components/Flex'\nimport { Text } from '@/components/Text'\n\nimport { type FormFieldProps } from '..'\nimport { BaseField } from './BaseField'\n\nexport interface SelectItemProps {\n label: string\n value: string\n}\n\n// NOTE: This isn't quite exactly the same as the HeroIcons checkmark\nconst CheckIcon = () => (\n <Box as=\"svg\" color=\"primary.foreground\" width=\"10px\" height=\"8px\" viewBox=\"0 0 10 8\" fill=\"none\">\n <path\n d=\"M1 4.34664L3.4618 6.99729L3.4459 6.98017L9 1\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </Box>\n)\n\nconst RadioItem = React.forwardRef<HTMLButtonElement, SelectItemProps>(\n ({ label, value }, forwardedRef) => (\n <Box\n as=\"label\"\n htmlFor={value}\n display=\"flex\"\n justifyContent=\"space-between\"\n part=\"field-radio\"\n px={4}\n py={2}\n borderWidth=\"md\"\n borderStyle=\"solid\"\n borderColor=\"neutral.border\"\n borderRadius=\"md\"\n >\n <Text.Body2 part=\"field-radio-label\">{label}</Text.Body2>\n\n <RadioGroup.Item id={value} value={value} ref={forwardedRef} asChild>\n <Box\n as=\"button\"\n backgroundColor=\"neutral.background\"\n borderWidth=\"md\"\n borderStyle=\"solid\"\n borderColor=\"neutral.border\"\n borderRadius=\"100%\"\n padding=\"0\"\n part=\"field-radio-value\"\n position=\"relative\"\n height=\"24px\"\n width=\"24px\"\n >\n <Box\n as={RadioGroup.Indicator}\n alignItems=\"center\"\n bg=\"primary.surface\"\n borderWidth=\"md\"\n borderStyle=\"solid\"\n borderColor=\"primary.border\"\n borderRadius=\"100%\"\n display=\"flex\"\n height=\"calc(100% + 2px)\"\n justifyContent=\"center\"\n left=\"-1px\"\n part=\"field-radio-indicator\"\n position=\"absolute\"\n top=\"-1px\"\n width=\"calc(100% + 2px)\"\n >\n <CheckIcon />\n </Box>\n </Box>\n </RadioGroup.Item>\n </Box>\n )\n)\n\nexport function RadioField(props: FormFieldProps) {\n const {\n field: { onChange, value },\n fieldData: { options = [] },\n } = props\n\n const radioItems = options.map(({ label, value }) => (\n <RadioItem key={value} value={value} label={label} />\n ))\n\n return (\n <BaseField {...props}>\n {() => (\n <RadioGroup.Root value={value} onValueChange={onChange} asChild>\n <Flex.Column gap={2} part=\"field-radio-group\">\n {radioItems}\n </Flex.Column>\n </RadioGroup.Root>\n )}\n </BaseField>\n )\n}\n","import { type FieldError } from 'react-hook-form'\n\nimport { Text } from '@/components/Text'\n\nexport interface ErrorProps {\n error: FieldError\n}\n\nexport function Error({ error }: ErrorProps) {\n if (!error?.message?.length) {\n return null\n }\n\n return (\n <Text.Caption color=\"red500\" display=\"block\" part=\"field-error\" textAlign=\"end\">\n {error?.message}\n </Text.Caption>\n )\n}\n","import { Text } from '@/components/Text'\n\nexport function Label({ children, id, required = false }) {\n return (\n <Text.Body2 as=\"label\" htmlFor={id} fontWeight=\"demibold\" part=\"field-label\">\n {children}\n {required && ' *'}\n </Text.Body2>\n )\n}\n","export const field = {\n marginBottom: '5',\n}\n\nexport const input = {\n px: '4',\n py: '2',\n backgroundColor: 'neutral.background',\n borderColor: 'neutral.border',\n borderStyle: 'solid',\n borderWidth: 'md',\n borderRadius: 'md',\n display: 'block',\n outline: 'none',\n width: '100%',\n}\n","import { Box } from '@/components/Box'\n\nimport { type FormFieldProps } from '..'\nimport { Error } from './Error'\nimport { Label } from './Label'\nimport * as styles from './BaseField.styles'\n\ninterface BaseFieldProps extends FormFieldProps {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO: Tighten up fieldProps type\n children: (fieldProps?: any) => React.ReactNode\n}\n\nexport function BaseField({ children, field, fieldData, fieldState }: BaseFieldProps) {\n const { id, label, placeholder } = fieldData\n const { error } = fieldState\n\n const fieldProps = {\n id,\n ...field,\n ...(placeholder ? { placeholder } : {}),\n ...styles.input,\n 'aria-invalid': !!error,\n value: field.value ?? '',\n }\n\n return (\n <Box {...styles.field} part=\"field\">\n <Label id={id} required={!!fieldData.required}>\n {label}\n </Label>\n\n {children(fieldProps)}\n\n <Error error={error} />\n </Box>\n )\n}\n","import * as React from 'react'\nimport * as Select from '@radix-ui/react-select'\nimport { ChevronDownIcon } from '@heroicons/react/24/outline'\n\nimport { Box } from '@/components/Box'\nimport { Text } from '@/components/Text'\n\nimport { type FormFieldProps } from '..'\nimport { BaseField } from './BaseField'\nimport * as baseStyles from './BaseField.styles'\n\nexport interface SelectItemProps {\n label: string\n value: string\n}\n\nconst SelectItem = React.forwardRef<HTMLDivElement, SelectItemProps>(\n ({ label, value }, forwardedRef) => (\n <Select.Item value={value} ref={forwardedRef} asChild>\n <Box\n backgroundColor:hover=\"blue900\"\n borderRadius=\"md\"\n outline=\"none\"\n part=\"field-select-option\"\n px=\"3\"\n py=\"2\"\n >\n <Select.ItemText asChild>\n <Text.Body2 part=\"field-select-option-label\">{label}</Text.Body2>\n </Select.ItemText>\n </Box>\n </Select.Item>\n )\n)\n\nexport function SelectField(props: FormFieldProps) {\n // TODO: Label doesn't open select automatically. Need to wire that in.\n const {\n field: { onChange, value },\n fieldData: { options = [], placeholder },\n } = props\n\n const selectItems = options.map(({ label, value }) => (\n <SelectItem key={value} value={value} label={label} />\n ))\n\n return (\n <BaseField {...props}>\n {() => (\n <Select.Root value={value} onValueChange={onChange}>\n <Select.Trigger asChild>\n <Text.Body2\n {...baseStyles.input}\n alignItems=\"center\"\n display=\"flex\"\n justifyContent=\"space-between\"\n part=\"field-select\"\n >\n <Select.Value placeholder={placeholder ?? 'Select one'} />\n\n <Select.Icon>\n <Box\n as={ChevronDownIcon}\n color=\"gray100\"\n display=\"block\"\n height=\"24px\"\n part=\"field-select-icon\"\n width=\"24px\"\n />\n </Select.Icon>\n </Text.Body2>\n </Select.Trigger>\n\n <Select.Portal>\n <Select.Content position=\"popper\" sideOffset={4} asChild>\n <Box\n {...baseStyles.input}\n p=\"1\"\n part=\"field-select-options\"\n width=\"var(--radix-popper-anchor-width)\"\n >\n <Select.Viewport>{selectItems}</Select.Viewport>\n </Box>\n </Select.Content>\n </Select.Portal>\n </Select.Root>\n )}\n </BaseField>\n )\n}\n","import { Text } from '@/components/Text'\n\nimport { type FormFieldProps } from '..'\nimport { BaseField } from './BaseField'\n\nexport function TextField(props: FormFieldProps) {\n return (\n <BaseField {...props}>\n {(fieldProps) => <Text.Body2 as=\"input\" part=\"field-text\" type=\"text\" {...fieldProps} />}\n </BaseField>\n )\n}\n","import { Text } from '@/components/Text'\n\nimport { type FormFieldProps } from '..'\nimport { BaseField } from './BaseField'\n\nexport function TextareaField(props: FormFieldProps) {\n return (\n <BaseField {...props}>\n {(fieldProps) => (\n <Text.Body2 as=\"textarea\" part=\"field-textarea\" {...fieldProps}></Text.Body2>\n )}\n </BaseField>\n )\n}\n","import { FlowStep } from '@frigade/js'\nimport { type ControllerFieldState, type ValidationRule, type Message } from 'react-hook-form'\n\nimport { type FlowComponentProps } from '@/shared/types'\nimport { useFlowComponent } from '@/hooks/useFlowComponent'\n\nimport { FormStep } from './FormStep'\nimport { RadioField } from './fields/RadioField'\nimport { SelectField } from './fields/SelectField'\nimport { TextField } from './fields/TextField'\nimport { TextareaField } from './fields/TextareaField'\n\n// stepComponent prop -> can make this global across the SDK\n\n// TODO: Fix center alignment in Dialog component\n\nexport type FieldTypes = Record<string, React.ComponentType<FormFieldProps>>\n\nconst defaultFieldTypes: FieldTypes = {\n radio: RadioField,\n select: SelectField,\n text: TextField,\n textarea: TextareaField,\n}\n\nexport interface ValidationRules {\n required?: Message | ValidationRule<boolean>\n min?: ValidationRule<number | string>\n max?: ValidationRule<number | string>\n maxLength?: ValidationRule<number>\n minLength?: ValidationRule<number>\n pattern?: ValidationRule<RegExp>\n}\n\n// TODO: We should get this interface from JS-API\nexport interface FormFlowStep extends FlowStep {\n fields: FormFieldData[]\n}\n\n// TODO: We should get this interface from JS-API\n// TODO: Add validation properties to this type\nexport interface FormFieldData extends ValidationRules {\n id: string\n options?: { label: string; value: string }[]\n placeholder?: string\n label?: string\n type: string\n}\n\n// TODO: Wire UseControllerReturn into this type\nexport interface FormFieldProps {\n field: any // eslint-disable-line @typescript-eslint/no-explicit-any\n fieldData: FormFieldData\n formState: any // eslint-disable-line @typescript-eslint/no-explicit-any\n fieldState: ControllerFieldState\n}\n\nexport interface FormProps extends FlowComponentProps {\n fieldTypes?: FieldTypes\n}\n\nexport function Form({ fieldTypes = {}, ...props }: FormProps) {\n const { FlowComponent } = useFlowComponent(props)\n\n const mergedFieldTypes = Object.assign({}, defaultFieldTypes, fieldTypes)\n\n return (\n <FlowComponent>\n {({ step }) => <FormStep fieldTypes={mergedFieldTypes} step={step} {...props} />}\n </FlowComponent>\n )\n}\n","import React, { useEffect, useRef, useState } from 'react'\n\nimport { XMarkIcon } from '@heroicons/react/24/solid'\nimport * as Popover from '@radix-ui/react-popover'\n\nimport { useBoundingClientRect } from '../../hooks/useBoundingClientRect'\nimport { Box } from '../Box'\nimport { Button, ButtonProps } from '../Button'\nimport { Card } from '../Card'\nimport { Dot } from './Dot'\nimport { Media, MediaProps } from '../Media'\nimport { Text, TextProps } from '../Text'\nimport { getDotPosition } from './getDotPosition'\nimport { mapTooltipPropsToPopoverProps } from './mapTooltipPropsToPopoverProps'\n\ninterface MergedRadixPopoverProps\n extends Pick<Popover.PopoverProps, 'defaultOpen' | 'modal' | 'onOpenChange' | 'open'>,\n Omit<Popover.PopoverContentProps, 'align' | 'asChild'> {}\nexport interface TooltipProps extends MergedRadixPopoverProps {\n align?: Popover.PopoverContentProps['align'] | 'before' | 'after'\n anchor?: string\n spotlight?: boolean\n style?: React.CSSProperties\n}\n\nexport function Tooltip({\n anchor,\n children,\n className,\n spotlight = false,\n style,\n ...props\n}: TooltipProps) {\n const { node: contentNode, rect: contentRect, ref: contentRef } = useBoundingClientRect()\n const { node: anchorNode, rect: anchorRect, ref: anchorRef } = useBoundingClientRect()\n const { contentProps, rootProps } = mapTooltipPropsToPopoverProps(props, contentRect)\n\n const [alignAttr, setAlignAttr] = useState(contentProps.align)\n const [sideAttr, setSideAttr] = useState(contentProps.side)\n const [spotlightLeft, setSpotlightLeft] = useState(0)\n const [spotlightTop, setSpotlightTop] = useState(0)\n\n // Radix will update data attrs to let us know if Popover.Content has collided\n if (contentNode !== null) {\n const currentAlignAttr = contentNode.getAttribute('data-align')\n const currentSideAttr = contentNode.getAttribute('data-side')\n\n if (alignAttr !== currentAlignAttr) {\n setAlignAttr(currentAlignAttr)\n }\n\n if (sideAttr !== currentSideAttr) {\n setSideAttr(currentSideAttr)\n }\n }\n\n // Radix requires a separate ref to pass anchor through into Popover.Anchor\n const anchorVirtualRef = useRef(null)\n\n useEffect(() => {\n const anchorQuery = document.querySelector(anchor)\n\n if (anchorQuery != null) {\n anchorRef(anchorQuery)\n anchorVirtualRef.current = anchorQuery\n }\n }, [anchor])\n\n useEffect(() => {\n const { scrollX, scrollY } = window\n\n setSpotlightLeft(anchorRect.left + scrollX)\n setSpotlightTop(anchorRect.top + scrollY)\n }, [anchorRect.left, anchorRect.top])\n\n if (anchorNode == null) {\n return null\n }\n\n let anchorRadius = '0'\n if (typeof window !== 'undefined') {\n anchorRadius = window.getComputedStyle(anchorNode).borderRadius\n }\n\n const dotPosition = getDotPosition({ props, alignAttr, sideAttr })\n\n return (\n <Popover.Root defaultOpen={true} {...rootProps}>\n <Popover.Anchor virtualRef={anchorVirtualRef} />\n <Popover.Portal>\n <div\n className={className}\n css={{ bottom: 0, left: 0, position: 'absolute', right: 0, top: 0, zIndex: 9999 }}\n >\n {spotlight && (\n <Box\n part=\"tooltip-spotlight\"\n position=\"absolute\"\n style={{\n borderRadius: anchorRadius,\n boxShadow: '0 0 0 20000px rgb(0 0 0 / 0.5)',\n height: anchorRect.height,\n left: spotlightLeft,\n top: spotlightTop,\n width: anchorRect.width,\n }}\n />\n )}\n <Popover.Content asChild {...contentProps} ref={contentRef}>\n <Card\n boxShadow=\"md\"\n part=\"tooltip-content\"\n position=\"relative\"\n css={{\n maxWidth: '360px',\n ...style,\n }}\n >\n <Dot style={dotPosition} />\n\n {children}\n </Card>\n </Popover.Content>\n </div>\n </Popover.Portal>\n </Popover.Root>\n )\n}\n\nTooltip.Close = (props: ButtonProps) => {\n return (\n <Popover.Close aria-label=\"Close\" asChild>\n <Button.Plain\n css={{\n top: '12px',\n right: '4px',\n }}\n part=\"close\"\n position=\"absolute\"\n {...props}\n >\n <XMarkIcon height=\"24\" fill=\"currentColor\" />\n </Button.Plain>\n </Popover.Close>\n )\n}\n\nTooltip.Media = ({ src, ...props }: MediaProps) => {\n if (src == null) return null\n\n return (\n <Media\n borderRadius=\"md md 0 0\"\n borderWidth=\"0\"\n css={{\n aspectRatio: '2',\n }}\n margin=\"-5 -5 5\"\n src={src}\n {...props}\n />\n )\n}\n\nTooltip.Primary = ({ onClick, title, ...props }: ButtonProps) => {\n if (title == null) return null\n\n return <Button.Primary title={title} onClick={onClick} {...props} />\n}\n\nTooltip.Progress = ({ children, ...props }: TextProps) => {\n if (children == null) return null\n\n return (\n <Text.Body2 fontWeight=\"demibold\" part=\"progress\" {...props}>\n {children}\n </Text.Body2>\n )\n}\n\nTooltip.Secondary = ({ onClick, title, ...props }: ButtonProps) => {\n if (title == null) return null\n\n return <Button.Secondary title={title} onClick={onClick} {...props} />\n}\n\nTooltip.Subtitle = ({ children, ...props }: TextProps) => {\n if (children == null) return null\n\n return (\n <Text.Body2 part=\"subtitle\" {...props}>\n {children}\n </Text.Body2>\n )\n}\n\nTooltip.Title = ({ children, ...props }: TextProps) => {\n if (children == null) return null\n\n return (\n <Text.Body1 fontWeight=\"bold\" mb={1} part=\"title\" {...props}>\n {children}\n </Text.Body1>\n )\n}\n","import { useCallback, useLayoutEffect, useState } from 'react'\n\nexport function useBoundingClientRect() {\n const initialRect =\n 'DOMRect' in globalThis\n ? new DOMRect()\n : {\n height: 0,\n width: 0,\n x: 0,\n y: 0,\n bottom: 0,\n top: 0,\n right: 0,\n left: 0,\n toJSON: () => {},\n }\n const [rect, setRect] = useState(initialRect)\n const [node, setNode] = useState(null)\n\n const ref = useCallback((node: Element) => {\n setNode(node)\n }, [])\n\n useLayoutEffect(() => {\n if (!node) return\n\n const handleResize = () => {\n const newRect = node.getBoundingClientRect()\n setRect(newRect)\n }\n\n handleResize()\n\n window.addEventListener('resize', handleResize)\n\n return () => window.removeEventListener('resize', handleResize)\n }, [node])\n\n return {\n node,\n rect,\n ref,\n }\n}\n","import { keyframes } from '@emotion/react'\nimport { Box, BoxProps } from '../Box'\n\nconst pulse = keyframes({\n '0%': {\n opacity: 0.5,\n transform: 'scale(0.5)',\n },\n '50%': {\n opacity: 0,\n transform: 'scale(1)',\n },\n '100%': {\n opacity: 0,\n transform: 'scale(1)',\n },\n})\n\nexport interface DotProps extends BoxProps {}\n\nexport function Dot({ style = {}, part = '', ...props }: DotProps) {\n return (\n <Box\n part={`dot-wrapper ${part}`}\n style={{\n height: '48px',\n position: 'absolute',\n width: '48px',\n ...style,\n }}\n {...props}\n >\n <Box\n backgroundColor=\"primary.surface\"\n part=\"dot-pulse\"\n css={{\n animation: `2s ease-out infinite ${pulse}`,\n borderRadius: '24px',\n height: '48px',\n left: 0,\n position: 'absolute',\n top: 0,\n transformOrigin: 'center center',\n width: '48px',\n }}\n />\n <Box\n backgroundColor=\"primary.surface\"\n part=\"dot\"\n style={{\n borderRadius: '12px',\n height: '24px',\n left: '12px',\n position: 'absolute',\n top: '12px',\n width: '24px',\n }}\n />\n </Box>\n )\n}\n","export function getDotPosition({ props, alignAttr, sideAttr }) {\n const currentSide = sideAttr ?? 'bottom'\n const dotProps = {}\n\n // Radix's collision system isn't aware of our custom before|after align\n const getCurrentAlign = () => {\n if (['after', 'before'].includes(props.align)) {\n if (alignAttr == 'start') {\n return 'before'\n } else if (alignAttr == 'end') {\n return 'after'\n }\n }\n\n return props.align ?? 'after'\n }\n\n const dotOffset = '-24px'\n\n const oppositeSides = {\n top: 'bottom',\n right: 'left',\n bottom: 'top',\n left: 'right',\n }\n\n /* \n Rules:\n - Dot is opposite to side prop (e.g. side=left -> dot=right)\n - align=before|end -> Dot goes to highest extent (right/bottom) of align-axis\n - align=after|start -> Dot goes to lowest extent (left/top) of align-axis\n - align=center -> Dot goes to the center\n */\n\n dotProps[oppositeSides[currentSide]] = dotOffset\n\n const currentAlign = getCurrentAlign()\n\n if (['before', 'end'].includes(currentAlign)) {\n if (['top', 'bottom'].includes(currentSide)) {\n dotProps['right'] = dotOffset\n } else {\n dotProps['bottom'] = dotOffset\n }\n } else if (['after', 'start'].includes(currentAlign)) {\n if (['top', 'bottom'].includes(currentSide)) {\n dotProps['left'] = dotOffset\n } else {\n dotProps['top'] = dotOffset\n }\n } else {\n // The only option left is align=center\n if (['top', 'bottom'].includes(currentSide)) {\n dotProps['left'] = `calc(50% + ${dotOffset})`\n } else {\n dotProps['top'] = `calc(50% + ${dotOffset})`\n }\n }\n\n return dotProps\n}\n","import { TooltipProps } from '.'\n\nconst RADIX_PROPS = {\n content: [\n 'align',\n 'alignOffset',\n 'arrowPadding',\n 'avoidCollisions',\n 'collisionBoundary',\n 'collisionPadding',\n 'forceMount',\n 'hideWhenDetached',\n 'onCloseAutoFocus',\n 'onEscapeKeyDown',\n 'onFocusOutside',\n 'onInteractOutside',\n 'onOpenAutoFocus',\n 'onPointerDownOutside',\n 'side',\n 'sideOffset',\n 'sticky',\n ],\n root: ['defaultOpen', 'modal', 'onOpenChange', 'open'],\n}\n\nexport function mapTooltipPropsToPopoverProps(props: TooltipProps, contentRect: DOMRect) {\n const contentProps = Object.fromEntries(\n RADIX_PROPS.content\n .map((propName) => [propName, props[propName]])\n .filter((propEntry) => propEntry[1] !== undefined)\n )\n const rootProps = Object.fromEntries(\n RADIX_PROPS.root\n .map((propName) => [propName, props[propName]])\n .filter((propEntry) => propEntry[1] !== undefined)\n )\n\n // Default to align=after, side=bottom\n contentProps.align = contentProps.align ?? 'after'\n contentProps.side = contentProps.side ?? 'bottom'\n\n /*\n Here we're extending Popover.Content's align prop to accept 'before' and\n 'after' in addition to its existing values.\n\n TL;DR:\n 1. Use existing alignOffset prop to push Content to be before/after the\n corresponding edge of the element it's attached to.\n 2. Add a CSS margin to patch alignOffset back onto Content, as Popover\n has a bug that prevents alignOffset from extending past the edge of\n its Trigger/Anchor.\n\n SEE: https://github.com/radix-ui/primitives/issues/2457\n */\n if (['before', 'after'].includes(contentProps.align)) {\n const mapToOriginalAlignValues = {\n after: 'end',\n before: 'start',\n }\n\n const mapAlignOffsetToMargin = (align, side) => {\n /*\n Translate alignOffset to CSS margin based on align and side props:\n bottom || top\n after: marginLeft\n before: marginRight\n left || right\n after: marginTop\n before: marginBottom\n */\n if (['top', 'bottom'].includes(side)) {\n if (align == 'after') {\n return 'marginLeft'\n } else {\n return 'marginRight'\n }\n } else {\n if (align == 'after') {\n return 'marginTop'\n } else {\n return 'marginBottom'\n }\n }\n }\n\n const originalOffset = contentProps.alignOffset ?? 0\n const originalStyleProp = contentProps.style ?? {}\n const currentSide = contentProps.side ?? 'bottom'\n const currentAlign = contentProps.align\n\n // Copy alignOffset value to CSS margin\n contentProps['style'] = {\n ...originalStyleProp,\n [mapAlignOffsetToMargin(currentAlign, currentSide)]: originalOffset,\n }\n\n const lengthOfCurrentSide = ['top', 'bottom'].includes(currentSide)\n ? contentRect.width\n : contentRect.height\n\n // Change alignOffset to be at the end of the positioned side\n contentProps.alignOffset = (lengthOfCurrentSide + originalOffset) * -1\n\n // Flip align prop back to valid Radix option, or default to 'after'\n contentProps['align'] = mapToOriginalAlignValues[currentAlign]\n }\n\n return {\n contentProps,\n rootProps,\n }\n}\n","import { useEffect } from 'react'\n\nimport { type FlowComponentProps } from '../../shared/types'\nimport { type TooltipProps } from '../Tooltip'\nimport { TourStep } from './TourStep'\nimport { useFlow } from '../../hooks/useFlow'\nimport { useFlowHandlers } from '../../hooks/useFlowHandlers'\nimport { useModal } from '../../hooks/useModal'\n\nexport interface TourProps extends TooltipProps, FlowComponentProps {}\n\nexport function Tour({ flowId, onComplete, variables, ...props }: TourProps) {\n const { flow } = useFlow(flowId, {\n variables,\n })\n useFlowHandlers(flow, { onComplete })\n\n const { isCurrentModal, removeModal } = useModal(flow?.id)\n\n useEffect(() => {\n if (!flow?.isVisible && isCurrentModal) {\n removeModal()\n }\n }, [flow?.isVisible, isCurrentModal])\n\n if (flow == null || flow.isVisible === false || !isCurrentModal) {\n return null\n }\n\n flow.start()\n\n const step = flow.getCurrentStep()\n step?.start()\n\n return <TourStep step={step} flow={flow} {...props} />\n}\n","import type { Flow, FlowStep } from '@frigade/js'\n\nimport { TourProps } from '.'\nimport { useFlowHandlers } from '../../hooks/useFlowHandlers'\nimport { useStepHandlers } from '../../hooks/useStepHandlers'\n\nimport { Flex } from '../Flex'\nimport { Tooltip } from '../Tooltip'\n\nexport interface TourStepProps extends Omit<TourProps, 'flowId'> {\n step: FlowStep\n flow: Flow\n}\n\nexport function TourStep({\n dismissible = true,\n flow,\n onDismiss,\n onPrimary,\n onSecondary,\n step,\n ...props\n}: TourStepProps) {\n const { handleDismiss } = useFlowHandlers(flow, {\n onDismiss,\n })\n\n const { handlePrimary, handleSecondary } = useStepHandlers(step, {\n onPrimary,\n onSecondary,\n })\n\n return (\n <Tooltip\n key={step.id}\n anchor={step.selector as string}\n onOpenAutoFocus={(e) => e.preventDefault()}\n onPointerDownOutside={(e) => e.preventDefault()}\n {...props}\n >\n {dismissible && <Tooltip.Close onClick={handleDismiss} />}\n\n <Tooltip.Media\n src={step.videoUri ?? step.imageUri}\n type={step.videoUri ? 'video' : 'image'}\n />\n\n <Tooltip.Title>{step.title}</Tooltip.Title>\n <Tooltip.Subtitle>{step.subtitle}</Tooltip.Subtitle>\n\n <Flex.Row alignItems=\"center\" gap={3} justifyContent=\"flex-end\" part=\"tooltip-footer\" pt={4}>\n <Tooltip.Progress>{`${\n flow.getNumberOfCompletedSteps() + 1\n }/${flow.getNumberOfAvailableSteps()}`}</Tooltip.Progress>\n\n <Tooltip.Secondary\n marginLeft=\"auto\"\n title={step.secondaryButtonTitle}\n onClick={handleSecondary}\n />\n <Tooltip.Primary title={step.primaryButtonTitle} onClick={handlePrimary} />\n </Flex.Row>\n </Tooltip>\n )\n}\n","import { useContext } from 'react'\n\nimport { FrigadeContext } from '../components/Provider'\n\nexport function useFrigade() {\n const { frigade } = useContext(FrigadeContext)\n\n return { frigade }\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frigade/react",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.40",
|
|
4
4
|
"description": "Build better product onboarding, faster.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -61,19 +61,33 @@
|
|
|
61
61
|
"@emotion/react": "^11.11.1",
|
|
62
62
|
"@frigade/js": "*",
|
|
63
63
|
"@heroicons/react": "^2.0.18",
|
|
64
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
64
65
|
"@radix-ui/react-popover": "^1.0.7",
|
|
66
|
+
"@radix-ui/react-radio-group": "^1.1.3",
|
|
67
|
+
"@radix-ui/react-select": "^2.0.0",
|
|
65
68
|
"clsx": "^2.0.0",
|
|
66
|
-
"core-js-pure": "^3.33.0"
|
|
69
|
+
"core-js-pure": "^3.33.0",
|
|
70
|
+
"dompurify": "^3.0.6",
|
|
71
|
+
"jsdom": "^23.0.1",
|
|
72
|
+
"known-css-properties": "^0.29.0",
|
|
73
|
+
"react-hook-form": "^7.49.3"
|
|
67
74
|
},
|
|
68
75
|
"peerDependencies": {
|
|
69
76
|
"react": "17 - 18",
|
|
70
77
|
"react-dom": "17 - 18"
|
|
71
78
|
},
|
|
72
79
|
"devDependencies": {
|
|
80
|
+
"@types/dompurify": "^3.0.5",
|
|
73
81
|
"@types/jest": "^23.3.1",
|
|
82
|
+
"@types/node": "^20.10.5",
|
|
74
83
|
"@types/react": "^18.2.34",
|
|
75
84
|
"@types/react-dom": "^18.2.14",
|
|
76
|
-
"
|
|
85
|
+
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
86
|
+
"@typescript-eslint/parser": "^6.20.0",
|
|
87
|
+
"eslint": "^8.56.0",
|
|
88
|
+
"eslint-config-prettier": "^9.1.0",
|
|
89
|
+
"eslint-plugin-react-refresh": "^0.4.5",
|
|
90
|
+
"jest": "^29.7.0",
|
|
77
91
|
"jest-config": "^29.6.2",
|
|
78
92
|
"jest-environment-jsdom": "^29.6.2",
|
|
79
93
|
"prettier": "^2.4.1",
|