@ornikar/bumper 2.6.0 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/definitions/components/typography/Typography.d.ts +44 -0
  3. package/dist/definitions/components/typography/Typography.d.ts.map +1 -0
  4. package/dist/definitions/components/typography/utils/{getTypeAndWeightValues.d.ts → getVariantAndWeightValues.d.ts} +2 -2
  5. package/dist/definitions/components/typography/utils/getVariantAndWeightValues.d.ts.map +1 -0
  6. package/dist/definitions/index.d.ts +2 -2
  7. package/dist/definitions/index.d.ts.map +1 -1
  8. package/dist/definitions/story-components/StoryTitle.d.ts +2 -2
  9. package/dist/definitions/tamagui.config.d.ts +3 -3
  10. package/dist/definitions/tokens/fonts.d.ts +7 -5
  11. package/dist/definitions/tokens/fonts.d.ts.map +1 -1
  12. package/dist/index-metro.es.android.js +86 -31
  13. package/dist/index-metro.es.android.js.map +1 -1
  14. package/dist/index-metro.es.ios.js +86 -31
  15. package/dist/index-metro.es.ios.js.map +1 -1
  16. package/dist/index-node-22.17.cjs.js +86 -31
  17. package/dist/index-node-22.17.cjs.js.map +1 -1
  18. package/dist/index-node-22.17.cjs.web.js +86 -31
  19. package/dist/index-node-22.17.cjs.web.js.map +1 -1
  20. package/dist/index-node-22.17.es.mjs +86 -31
  21. package/dist/index-node-22.17.es.mjs.map +1 -1
  22. package/dist/index-node-22.17.es.web.mjs +86 -31
  23. package/dist/index-node-22.17.es.web.mjs.map +1 -1
  24. package/dist/index.es.js +86 -31
  25. package/dist/index.es.js.map +1 -1
  26. package/dist/index.es.web.js +86 -31
  27. package/dist/index.es.web.js.map +1 -1
  28. package/dist/tsbuildinfo +1 -1
  29. package/package.json +1 -1
  30. package/src/components/breakpoints/breakpoints.stories.tsx +1 -1
  31. package/src/components/primitives/Pressable.stories.tsx +1 -1
  32. package/src/components/typography/Typography.stories.tsx +45 -17
  33. package/src/components/typography/{Typograhy.tsx → Typography.tsx} +53 -27
  34. package/src/components/typography/__snapshots__/Typography.stories.tsx.snap +599 -60
  35. package/src/components/typography/__snapshots_web__/Typography.stories.tsx.snap +228 -1
  36. package/src/components/typography/utils/{getTypeAndWeightValues.test.tsx → getVariantAndWeightValues.test.tsx} +32 -2
  37. package/src/components/typography/utils/{getTypeAndWeightValues.tsx → getVariantAndWeightValues.tsx} +14 -3
  38. package/src/index.ts +2 -2
  39. package/src/story-components/StoryTitle.tsx +1 -1
  40. package/src/themes/__snapshots__/light.stories.tsx.snap +1 -1
  41. package/src/themes/light.stories.tsx +1 -1
  42. package/src/tokens/fonts.ts +45 -10
  43. package/src/tokens/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +1 -1
  44. package/src/tokens/palettes/deepPurpleColorPalette.stories.tsx +1 -1
  45. package/dist/definitions/components/typography/Typograhy.d.ts +0 -40
  46. package/dist/definitions/components/typography/Typograhy.d.ts.map +0 -1
  47. package/dist/definitions/components/typography/utils/getTypeAndWeightValues.d.ts.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"index.es.js","sources":["../src/tokens/palettes/deepPurpleColorPalette.ts","../src/themes/light.ts","../src/themes/utils/breakpoints.ts","../src/tokens/fonts.ts","../src/tokens/radius.ts","../src/tokens/size.ts","../src/tokens/space.ts","../src/tamagui.config.ts","../src/core/BumperProvider.tsx","../src/core/BumperDecorator.tsx","../src/components/primitives/Center.ts","../src/components/primitives/Pressable.tsx","../src/components/primitives/Stack.tsx","../src/components/typography/utils/getTypeAndWeightValues.tsx","../src/components/typography/Typograhy.tsx","../src/components/breakpoints/utils/breakpointsUtils.ts","../src/components/breakpoints/hooks/useCurrentBreakpointName.ts","../src/components/breakpoints/hooks/useBreakpointValue.ts","../src/components/breakpoints/SwitchBreakpoins.tsx"],"sourcesContent":["import type { IntRange, UnionToIntersection } from 'type-fest';\n\ninterface ColorScaleKeysMap {\n deepPurple: IntRange<5, 10>;\n beige: IntRange<1, 7>;\n lightning: 4 | 5 | 8 | 9;\n rainbow:\n | 'pink'\n | 'brick'\n | 'orange'\n | 'gold'\n | 'sun'\n | 'green-pine'\n | 'green-grass'\n | 'green-apple'\n | 'blue-electric'\n | 'blue-sky';\n grey: 0 | 1 | 2 | 3 | 5 | 7 | 9;\n blue: 1 | 2 | 6 | 7;\n green: 1 | 2 | 6 | 7;\n yellow: 1 | 2 | 6 | 7;\n red: 1 | 2 | 6 | 7;\n mauve: 1 | 2 | 3 | 4;\n 'beige-alpha': '25' | '40' | '50';\n 'grey-alpha': '25' | '35' | '50';\n 'white-alpha': '10' | '20' | '60' | '80' | '90';\n}\n\ntype CreateColorScale<K extends keyof ColorScaleKeysMap> = Record<ColorScaleKeysMap[K], string>;\n\ntype ColorScales = {\n [K in keyof ColorScaleKeysMap]: CreateColorScale<K>;\n};\n\ntype CreateTokens<K extends keyof ColorScaleKeysMap> = {\n [Key in ColorScaleKeysMap[K] as `${K}.${Key}`]: string;\n};\n\ntype ColorScaleTokens = UnionToIntersection<\n {\n [K in keyof ColorScaleKeysMap]: CreateTokens<K>;\n }[keyof ColorScaleKeysMap]\n>;\n\nconst createColorScale = <const T extends Record<string | number, string>>(colorScale: T): T => colorScale;\n\n// WARNING\n// If you update this palette, don't forget to update the palette in @ornikar/bumper as well.\nexport const colorScales: ColorScales = {\n deepPurple: createColorScale({\n 5: '#936C93',\n 6: '#7A587A',\n 7: '#6E4D6E',\n 8: '#563B56',\n 9: '#452F45',\n }),\n beige: createColorScale({\n 1: '#F7F4EE',\n 2: '#F1ECE4',\n 3: '#EAE3D6',\n 4: '#E5DCCA',\n 5: '#DDD0B8',\n 6: '#C1B59F',\n }),\n lightning: createColorScale({\n 4: '#FFF966',\n 5: '#FFF500',\n 8: '#594D0D',\n 9: '#43390A',\n }),\n rainbow: createColorScale({\n pink: '#E4A4F9',\n brick: '#951D12',\n orange: '#DB6E2E',\n gold: '#9A7600',\n sun: '#EFD346',\n 'green-pine': '#1C5D47',\n 'green-grass': '#4DA00A',\n 'green-apple': '#DEF985',\n 'blue-electric': '#2850C4',\n 'blue-sky': '#B2F0FD',\n }),\n grey: createColorScale({\n 0: '#ffffff',\n 1: '#ECECEC',\n 2: '#CDCED0',\n 3: '#A8A8A8',\n 5: '#838383',\n 7: '#505050',\n 9: '#101010',\n }),\n blue: createColorScale({\n 1: '#E9F4FC',\n 2: '#BCDFF6',\n 6: '#1772AB',\n 7: '#125A87',\n }),\n green: createColorScale({\n 1: '#ECFEDD',\n 2: '#DBFAC1',\n 6: '#438D06',\n 7: '#357105',\n }),\n yellow: createColorScale({\n 1: '#FDF8E7',\n 2: '#FAEBB8',\n 6: '#EFC11F',\n 7: '#BA930B',\n }),\n red: createColorScale({\n 1: '#FDE4E3',\n 2: '#FAB8B8',\n 6: '#E2483D',\n 7: '#BD100F',\n }),\n mauve: createColorScale({\n 1: '#F8E7FF',\n 2: '#F1D0FB',\n 3: '#E4A4F9',\n 4: '#D283EC',\n }),\n 'beige-alpha': createColorScale({\n '25': '#C1B59F40',\n '40': '#C1B59F66',\n '50': '#C1B59F80',\n }),\n 'grey-alpha': createColorScale({\n '25': '#10101040',\n '35': '#10101059',\n '50': '#10101080',\n }),\n 'white-alpha': createColorScale({\n '10': '#FFFFFF1A',\n '20': '#FFFFFF33',\n '60': '#FFFFFF99',\n '80': '#FFFFFFCC',\n '90': '#FFFFFFE5',\n }),\n} as const;\n\nconst transformColorScalesToTokens = (): ColorScaleTokens => {\n return Object.fromEntries(\n Object.entries(colorScales).flatMap(([colorName, colorScale]) => {\n return Object.entries(colorScale).map(([scaleNumber, colorValue]) => {\n return [`${colorName}.${scaleNumber}`, colorValue];\n });\n }),\n ) as ColorScaleTokens;\n};\n\nexport const deepPurpleColorPalette = {\n ...transformColorScalesToTokens(),\n white: '#FFFFFF',\n black: '#000000',\n transparent: 'transparent',\n};\n","import { deepPurpleColorPalette } from '../tokens/palettes/deepPurpleColorPalette';\n\n// WARNING\n// If you modify this theme, don't forget to update the theme in @ornikar/kitt-universal as well\n// https://github.com/ornikar/kitt/blob/79e367e962c957c016c4df67dbcf515c8f45ff0e/@ornikar/kitt-universal/src/themes/late-ocean/colors.ts#L28\nexport const light = {\n // content\n 'content.base.low': deepPurpleColorPalette['grey.5'],\n 'content.base.mid': deepPurpleColorPalette['grey.7'],\n 'content.base.hi': deepPurpleColorPalette['grey.9'],\n 'content.base.onContrasted.low': deepPurpleColorPalette['white-alpha.60'],\n 'content.base.onContrasted.mid': deepPurpleColorPalette['white-alpha.80'],\n 'content.base.onContrasted.hi': deepPurpleColorPalette['grey.0'],\n 'content.accent': deepPurpleColorPalette['deepPurple.8'],\n 'content.promo': deepPurpleColorPalette['lightning.9'],\n 'content.promo.onContrasted': deepPurpleColorPalette['lightning.5'],\n 'content.info': deepPurpleColorPalette['blue.7'],\n 'content.success': deepPurpleColorPalette['green.7'],\n 'content.warning': deepPurpleColorPalette['yellow.7'],\n 'content.danger': deepPurpleColorPalette['red.7'],\n 'content.muted': deepPurpleColorPalette['beige.6'],\n 'content.disabled': deepPurpleColorPalette['grey.3'],\n 'content.disabled.onContrasted': deepPurpleColorPalette['grey.1'],\n\n // backgrounds\n 'bg.base.low.default': deepPurpleColorPalette['grey.0'],\n 'bg.base.low.pressed': deepPurpleColorPalette['beige.1'],\n 'bg.base.mid.default': deepPurpleColorPalette['beige.1'],\n 'bg.base.mid.pressed': deepPurpleColorPalette['beige.2'],\n 'bg.base.hi.default': deepPurpleColorPalette['beige.2'],\n 'bg.base.hi.pressed': deepPurpleColorPalette['beige.3'],\n 'bg.accent.default': deepPurpleColorPalette['deepPurple.8'],\n 'bg.accent.pressed': deepPurpleColorPalette['deepPurple.7'],\n 'bg.promo.mid.default': deepPurpleColorPalette['lightning.5'],\n 'bg.promo.mid.pressed': deepPurpleColorPalette['lightning.4'],\n 'bg.promo.hi.default': deepPurpleColorPalette['lightning.9'],\n 'bg.promo.hi.pressed': deepPurpleColorPalette['lightning.8'],\n 'bg.highlight.mid.default': deepPurpleColorPalette['mauve.1'],\n 'bg.highlight.mid.pressed': deepPurpleColorPalette['mauve.2'],\n 'bg.highlight.hi.default': deepPurpleColorPalette['mauve.3'],\n 'bg.highlight.hi.pressed': deepPurpleColorPalette['mauve.4'],\n 'bg.info.mid': deepPurpleColorPalette['blue.1'],\n 'bg.info.hi': deepPurpleColorPalette['blue.6'],\n 'bg.success.mid': deepPurpleColorPalette['green.1'],\n 'bg.success.hi': deepPurpleColorPalette['green.6'],\n 'bg.warning.mid': deepPurpleColorPalette['yellow.1'],\n 'bg.warning.hi': deepPurpleColorPalette['yellow.6'],\n 'bg.danger.mid': deepPurpleColorPalette['red.1'],\n 'bg.danger.hi': deepPurpleColorPalette['red.6'],\n 'bg.disabled.mid': deepPurpleColorPalette['grey.1'],\n 'bg.disabled.hi': deepPurpleColorPalette['grey.3'],\n 'bg.overlay': deepPurpleColorPalette['grey-alpha.50'],\n\n // borders\n 'border.base.low': deepPurpleColorPalette['beige.2'],\n 'border.base.mid': deepPurpleColorPalette['beige.3'],\n 'border.base.hi': deepPurpleColorPalette['grey.9'],\n 'border.base.onContrasted.mid': deepPurpleColorPalette['white-alpha.20'],\n 'border.base.onContrasted.hi': deepPurpleColorPalette['grey.0'],\n 'border.base.accent': deepPurpleColorPalette['deepPurple.8'],\n 'border.info': deepPurpleColorPalette['blue.6'],\n 'border.success': deepPurpleColorPalette['green.6'],\n 'border.warning': deepPurpleColorPalette['yellow.6'],\n 'border.danger': deepPurpleColorPalette['red.6'],\n 'border.disabled': deepPurpleColorPalette['grey.2'],\n 'border.highlight': deepPurpleColorPalette['mauve.3'],\n};\n","export enum BreakpointNameEnum {\n BASE = 'base',\n SMALL = 'small',\n MEDIUM = 'medium',\n LARGE = 'large',\n WIDE = 'wide',\n}\n\nexport const breakpoints = {\n [BreakpointNameEnum.BASE]: 0,\n [BreakpointNameEnum.SMALL]: 480,\n [BreakpointNameEnum.MEDIUM]: 768,\n [BreakpointNameEnum.LARGE]: 1024,\n [BreakpointNameEnum.WIDE]: 1280,\n};\n","import { createFont } from '@tamagui/core';\n\nexport const HEADING_VARIANTS = [\n 'heading-2xl',\n 'heading-xl',\n 'heading-l',\n 'heading-m',\n 'heading-s',\n 'heading-xs',\n] as const;\nexport const BODY_VARIANTS = ['body-xl', 'body-l', 'body-m', 'body-s', 'body-xs'] as const;\nexport const LABEL_VARIANTS = ['label-xl', 'label-l', 'label-m', 'label-s'] as const;\nexport const VARIANTS = [...HEADING_VARIANTS, ...BODY_VARIANTS, ...LABEL_VARIANTS] as const;\n\nexport type FontVariants = (typeof VARIANTS)[number];\nexport type BodyFontVariants = (typeof BODY_VARIANTS)[number];\nexport type LabelFontVariants = (typeof LABEL_VARIANTS)[number];\nexport type HeadingFontVariants = (typeof HEADING_VARIANTS)[number];\n\nexport type GTStandardFontWeight = '500' | '600' | '700';\n\nconst GTStandardFaces: Record<GTStandardFontWeight, Record<string, string>> = {\n 500: { normal: 'GTStandardRegular' },\n 600: { normal: 'GTStandardSemibold' },\n 700: { normal: 'GTStandardBold' },\n};\n\nconst size: Record<FontVariants, number> = {\n 'heading-2xl': 56,\n 'heading-xl': 48,\n 'heading-l': 38,\n 'heading-m': 24,\n 'heading-s': 20,\n 'heading-xs': 16,\n 'body-xl': 24,\n 'body-l': 18,\n 'body-m': 16,\n 'body-s': 14,\n 'body-xs': 12,\n 'label-xl': 18,\n 'label-l': 16,\n 'label-m': 14,\n 'label-s': 12,\n};\n\nconst lineHeight: Record<FontVariants, number> = {\n 'heading-2xl': 64,\n 'heading-xl': 56,\n 'heading-l': 48,\n 'heading-m': 32,\n 'heading-s': 20,\n 'heading-xs': 18,\n 'body-xl': 32,\n 'body-l': 26,\n 'body-m': 24,\n 'body-s': 20,\n 'body-xs': 16,\n 'label-xl': 26,\n 'label-l': 24,\n 'label-m': 20,\n 'label-s': 16,\n};\n\nconst letterSpacing: Record<FontVariants, number> = {\n 'heading-2xl': 0,\n 'heading-xl': 0,\n 'heading-l': 0,\n 'heading-m': 0,\n 'heading-s': 0,\n 'heading-xs': 0,\n 'body-xl': 0.3,\n 'body-l': 0.3,\n 'body-m': 0.3,\n 'body-s': 0.3,\n 'body-xs': 0.3,\n 'label-xl': 0,\n 'label-l': 0,\n 'label-m': 0,\n 'label-s': 0,\n};\n\nconst weight: Record<string, GTStandardFontWeight> = {\n bold: '700',\n semibold: '600',\n regular: '500',\n};\n\nexport const fonts = createFont({\n family: 'GTStandard',\n size,\n lineHeight,\n letterSpacing,\n weight,\n face: GTStandardFaces,\n});\n","export const radiusTokens = {\n 'radius.none': 0,\n 'radius.s': 2,\n 'radius.m': 4,\n 'radius.l': 8,\n 'radius.circle': 1000,\n};\n","export const sizeTokens = {\n 'size.16': 16,\n 'size.20': 20,\n 'size.24': 24,\n 'size.32': 32,\n 'size.48': 48,\n 'size.64': 64,\n 'size.80': 80,\n 'size.96': 96,\n 'size.120': 120,\n 'size.144': 144,\n 'size.176': 176,\n 'size.208': 208,\n};\n","export const spaceTokens = {\n 'space.none': 0,\n 'space.2': 2,\n 'space.4': 4,\n 'space.8': 8,\n 'space.12': 12,\n 'space.16': 16,\n 'space.24': 24,\n 'space.32': 32,\n 'space.40': 40,\n 'space.48': 48,\n 'space.56': 56,\n 'space.64': 64,\n 'space.80': 80,\n};\n","import { createTamagui, createTokens } from '@tamagui/core';\nimport { light } from './themes/light';\nimport { BreakpointNameEnum, breakpoints } from './themes/utils/breakpoints';\nimport { fonts } from './tokens/fonts';\nimport { radiusTokens } from './tokens/radius';\nimport { sizeTokens } from './tokens/size';\nimport { spaceTokens } from './tokens/space';\n\nconst tokens = createTokens({\n color: {},\n space: spaceTokens,\n size: sizeTokens,\n radius: radiusTokens,\n});\n\nexport const config = createTamagui({\n tokens,\n fonts: {\n GTStandard: fonts,\n },\n themes: {\n light,\n },\n media: {\n [BreakpointNameEnum.BASE]: { minWidth: breakpoints[BreakpointNameEnum.BASE] },\n [BreakpointNameEnum.SMALL]: { minWidth: breakpoints[BreakpointNameEnum.SMALL] },\n [BreakpointNameEnum.MEDIUM]: { minWidth: breakpoints[BreakpointNameEnum.MEDIUM] },\n [BreakpointNameEnum.LARGE]: { minWidth: breakpoints[BreakpointNameEnum.LARGE] },\n [BreakpointNameEnum.WIDE]: { minWidth: breakpoints[BreakpointNameEnum.WIDE] },\n },\n settings: {\n allowedStyleValues: 'strict',\n disableSSR: true,\n styleCompat: 'react-native',\n autocompleteSpecificTokens: 'except-special',\n debug: false,\n },\n});\n\ntype Conf = typeof config;\n\n// make imports typed\ndeclare module '@tamagui/core' {\n interface TamaguiCustomConfig extends Conf {}\n}\n","import { TamaguiProvider } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { config } from '../tamagui.config';\n\nexport interface BumperProviderProps {\n children: ReactNode;\n}\n\nexport function BumperProvider({ children }: BumperProviderProps): ReactNode {\n return (\n <TamaguiProvider config={config} defaultTheme=\"light\">\n {children}\n </TamaguiProvider>\n );\n}\n","import { makeDecorator } from '@storybook/preview-api';\nimport type { ReactNode } from 'react';\nimport { BumperProvider } from './BumperProvider';\n\nexport const BumperDecorator = makeDecorator({\n name: 'BumperDecorator',\n parameterName: 'bumper',\n wrapper: (storyFn, context) => {\n return <BumperProvider>{storyFn(context) as ReactNode}</BumperProvider>;\n },\n});\n","import type { ViewProps } from '@tamagui/core';\nimport { styled } from '@tamagui/core';\nimport { View } from './View';\n\nexport interface CenterProps extends ViewProps {}\n\nexport const Center = styled(View, {\n justifyContent: 'center',\n alignItems: 'center',\n});\n","import type { GetProps, TamaguiComponent } from '@tamagui/core';\nimport { View, styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport type { Except } from 'type-fest';\n\nexport type PressableProps<C extends TamaguiComponent = typeof View> = {\n /**\n * The Tamagui component to render as (`View`, `Stack`, etc.).\n *\n * @default View\n */\n as?: C;\n} & Except<GetProps<C>, 'as'>;\n\n/**\n * A polymorphic Pressable component that can render as any Tamagui primitive.\n *\n * @example\n * <Pressable onPress={() => {}} />\n *\n * @example\n * <Pressable\n * as={HStack}\n * onPress={() => {}}\n * />\n */\nexport function Pressable<C extends TamaguiComponent = typeof View>({ as, ...rest }: PressableProps<C>): ReactNode {\n const Component = styled(as ?? View, {\n name: 'Pressable',\n role: 'button',\n cursor: 'pointer',\n });\n\n return <Component {...(rest as GetProps<C>)} />;\n}\n","import type { GetProps } from '@tamagui/core';\nimport { Stack, styled } from '@tamagui/core';\n\nexport type { StackProps } from '@tamagui/core';\nexport { Stack } from '@tamagui/core';\n\nexport const HStack = styled(Stack, {\n name: 'HStack',\n flexDirection: 'row',\n});\n\nexport type HStackProps = GetProps<typeof HStack>;\n\nexport const VStack = styled(Stack, {\n name: 'VStack',\n flexDirection: 'column',\n});\n\nexport type VStackProps = GetProps<typeof VStack>;\n","import type { FontVariants } from '../../../tokens/fonts';\nimport { BODY_VARIANTS } from '../../../tokens/fonts';\nimport type {\n InternalTypographyProps,\n TypographyTextProps,\n TypographyVariantContextValue,\n TypographyWeightContextValue,\n} from '../Typograhy';\n\ninterface VariantAndWeightValues {\n weight: InternalTypographyProps['weight'] | undefined;\n variant: FontVariants | undefined;\n}\n\nexport function getVariantAndWeightValues(\n weightProp: TypographyTextProps['weight'],\n variantProp: TypographyTextProps['variant'],\n typographyWeightAncestorValue: TypographyWeightContextValue,\n typographyVariantAncestorValue: TypographyVariantContextValue,\n): VariantAndWeightValues {\n const computedVariant = variantProp || typographyVariantAncestorValue || undefined;\n\n if (computedVariant) {\n if ((BODY_VARIANTS as readonly string[]).includes(computedVariant)) {\n const computedWeight = weightProp || typographyWeightAncestorValue || undefined;\n return { weight: computedWeight, variant: computedVariant };\n }\n return { weight: 'semibold', variant: computedVariant };\n }\n\n return { weight: weightProp, variant: undefined };\n}\n","import type { GetProps, GetThemeValueForKey } from '@tamagui/core';\nimport { Text, styled } from '@tamagui/core';\nimport { createContext, useContext } from 'react';\nimport { type Except } from 'type-fest';\nimport type { BodyFontVariants, FontVariants, HeadingFontVariants, LabelFontVariants } from '../../tokens/fonts';\nimport { getVariantAndWeightValues } from './utils/getTypeAndWeightValues';\n\nexport type TypographyVariantContextValue = FontVariants | null;\nexport type TypographyWeightContextValue = 'regular' | 'bold' | null;\nexport type TypograhyColorContextValue = TypograhyColorProps | null;\n\nconst TypographyVariantContext = createContext<TypographyVariantContextValue>(null);\nconst TypographyWeightContext = createContext<TypographyWeightContextValue>(null);\nconst TypograhyColorContext = createContext<TypograhyColorContextValue>(null);\n\nconst InternalTypography = styled(Text, {\n fontFamily: '$GTStandard',\n color: '$content.base.hi',\n '$platform-web': {\n WebkitFontSmoothing: 'antialiased',\n },\n variants: {\n variant: (variant: FontVariants | undefined) => {\n if (!variant) return {};\n\n return {\n fontSize: `$${variant}`,\n lineHeight: `$${variant}`,\n letterSpacing: `$${variant}`,\n };\n },\n weight: {\n regular: {\n fontWeight: '$regular',\n },\n semibold: {\n fontWeight: '$semibold',\n },\n bold: {\n fontWeight: '$bold',\n },\n },\n } as const,\n defaultVariants: {\n variant: 'body-m',\n weight: 'regular',\n },\n});\n\nexport type InternalTypographyProps = GetProps<typeof InternalTypography>;\n\n// Create a type for color props that matches strings containing '$content.'\ntype ContainsOneString<T extends string> = `${string}${T}${string}`;\ntype TypograhyColorProps = ContainsOneString<'$content.'>;\n\n// Remove font-related style props from InternalTypography Props\ntype TypographyExcludedFontStyleProps =\n | 'fontFamily'\n | 'fontSize'\n | 'lineHeight'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight';\ntype TypographyPropsWithoutFontStyleProps = Except<\n InternalTypographyProps,\n TypographyExcludedFontStyleProps | 'color'\n> & {\n color?: TypograhyColorProps;\n};\n\nexport interface BodyProps extends TypographyPropsWithoutFontStyleProps {\n variant?: BodyFontVariants;\n weight?: Exclude<InternalTypographyProps['weight'], 'semibold'>;\n}\nexport interface HeadingLabelProps extends TypographyPropsWithoutFontStyleProps {\n variant: HeadingFontVariants | LabelFontVariants;\n weight?: never;\n}\nexport type TypographyTextProps = BodyProps | HeadingLabelProps;\n\nconst TypographyText = InternalTypography.styleable<TypographyTextProps>((props, ref) => {\n const typographyVariantAncestorValue = useContext(TypographyVariantContext);\n const typographyWeightAncestorValue = useContext(TypographyWeightContext);\n const typographyColorAncestorValue = useContext(TypograhyColorContext);\n\n const { variant, weight } = getVariantAndWeightValues(\n props.weight,\n props.variant,\n typographyWeightAncestorValue,\n typographyVariantAncestorValue,\n );\n const color = props.color || typographyColorAncestorValue || undefined;\n\n let content = (\n <InternalTypography\n ref={ref}\n {...props}\n color={color as GetThemeValueForKey<'color'>}\n weight={weight}\n variant={variant}\n />\n );\n\n content = props.variant ? (\n // If a variant is provided, we set it in the context for children to be able to inherit variant value\n <TypographyVariantContext.Provider value={props.variant}>{content}</TypographyVariantContext.Provider>\n ) : (\n content\n );\n\n content = props.weight ? (\n // If a weight is provided, we set it in the context for children to be able to inherit weight value\n <TypographyWeightContext.Provider value={props.weight}>{content}</TypographyWeightContext.Provider>\n ) : (\n content\n );\n\n content = props.color ? (\n // If a color is provided, we set it in the context for children to be able to inherit color value\n <TypograhyColorContext.Provider value={props.color}>{content}</TypograhyColorContext.Provider>\n ) : (\n content\n );\n\n return content;\n});\n\nexport const Typography = {\n Text: TypographyText,\n};\n","import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';\n\nexport interface ValueForBreakpoint<T> {\n base: T;\n small?: T;\n medium?: T;\n large?: T;\n wide?: T;\n}\n\nexport function getValueForBreakpoint<T>(\n breakpoint: BreakpointNameEnum,\n { base, small, medium, large, wide }: ValueForBreakpoint<T>,\n): T {\n switch (breakpoint) {\n case BreakpointNameEnum.WIDE:\n return wide ?? large ?? medium ?? small ?? base;\n case BreakpointNameEnum.LARGE:\n return large ?? medium ?? small ?? base;\n case BreakpointNameEnum.MEDIUM:\n return medium ?? small ?? base;\n case BreakpointNameEnum.SMALL:\n return small ?? base;\n case BreakpointNameEnum.BASE:\n default:\n return base;\n }\n}\n","import { useMedia } from '@tamagui/core';\nimport { BreakpointNameEnum } from '../../../themes/utils/breakpoints';\n\nexport function useCurrentBreakpointName(): BreakpointNameEnum {\n const media = useMedia();\n\n switch (true) {\n case media.wide:\n return BreakpointNameEnum.WIDE;\n case media.large:\n return BreakpointNameEnum.LARGE;\n case media.medium:\n return BreakpointNameEnum.MEDIUM;\n case media.small:\n return BreakpointNameEnum.SMALL;\n case media.base:\n default:\n return BreakpointNameEnum.BASE;\n }\n}\n","import { useMemo } from 'react';\nimport type { ValueForBreakpoint } from '../utils/breakpointsUtils';\nimport { getValueForBreakpoint } from '../utils/breakpointsUtils';\nimport { useCurrentBreakpointName } from './useCurrentBreakpointName';\n\nexport function useBreakpointValue<T>(values: ValueForBreakpoint<T>): T {\n const breakpoint = useCurrentBreakpointName();\n\n return useMemo(() => {\n return getValueForBreakpoint(breakpoint, values);\n }, [breakpoint, values]);\n}\n","import type { ReactNode } from 'react';\nimport { useCurrentBreakpointName } from './hooks/useCurrentBreakpointName';\nimport type { ValueForBreakpoint } from './utils/breakpointsUtils';\nimport { getValueForBreakpoint } from './utils/breakpointsUtils';\n\nexport type SwitchBreakpointsProps = ValueForBreakpoint<ReactNode>;\n\nexport function SwitchBreakpoints(values: SwitchBreakpointsProps): ReactNode {\n const breakpoint = useCurrentBreakpointName();\n\n return getValueForBreakpoint(breakpoint, values);\n}\n"],"names":["createColorScale","colorScale","colorScales","deepPurple","beige","lightning","rainbow","pink","brick","orange","gold","sun","grey","blue","green","yellow","red","mauve","transformColorScalesToTokens","Object","fromEntries","entries","flatMap","_ref","_ref2","_slicedToArray","colorName","map","_ref3","_ref4","scaleNumber","colorValue","concat","deepPurpleColorPalette","_objectSpread","white","black","transparent","light","BreakpointNameEnum","breakpoints","_defineProperty","BASE","SMALL","MEDIUM","LARGE","WIDE","BODY_VARIANTS","GTStandardFaces","normal","size","lineHeight","letterSpacing","weight","bold","semibold","regular","fonts","createFont","family","face","radiusTokens","sizeTokens","spaceTokens","tokens","createTokens","color","space","radius","config","createTamagui","GTStandard","themes","media","minWidth","settings","allowedStyleValues","disableSSR","styleCompat","autocompleteSpecificTokens","debug","BumperProvider","children","_jsx","TamaguiProvider","defaultTheme","BumperDecorator","makeDecorator","name","parameterName","wrapper","storyFn","context","Center","styled","View","justifyContent","alignItems","Pressable","as","rest","_objectWithoutProperties","_excluded","Component","role","cursor","HStack","Stack","flexDirection","VStack","getVariantAndWeightValues","weightProp","variantProp","typographyWeightAncestorValue","typographyVariantAncestorValue","computedVariant","undefined","includes","computedWeight","variant","TypographyVariantContext","createContext","TypographyWeightContext","TypograhyColorContext","InternalTypography","Text","fontFamily","WebkitFontSmoothing","variants","fontSize","fontWeight","defaultVariants","TypographyText","styleable","props","ref","useContext","typographyColorAncestorValue","_getVariantAndWeightV","content","Provider","value","Typography","getValueForBreakpoint","breakpoint","_ref5","_ref6","_ref7","base","small","medium","large","wide","useCurrentBreakpointName","useMedia","useBreakpointValue","values","useMemo","SwitchBreakpoints"],"mappings":"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"}
1
+ {"version":3,"file":"index.es.js","sources":["../src/tokens/palettes/deepPurpleColorPalette.ts","../src/themes/light.ts","../src/themes/utils/breakpoints.ts","../src/tokens/fonts.ts","../src/tokens/radius.ts","../src/tokens/size.ts","../src/tokens/space.ts","../src/tamagui.config.ts","../src/core/BumperProvider.tsx","../src/core/BumperDecorator.tsx","../src/components/primitives/Center.ts","../src/components/primitives/Pressable.tsx","../src/components/primitives/Stack.tsx","../src/components/typography/utils/getVariantAndWeightValues.tsx","../src/components/typography/Typography.tsx","../src/components/breakpoints/utils/breakpointsUtils.ts","../src/components/breakpoints/hooks/useCurrentBreakpointName.ts","../src/components/breakpoints/hooks/useBreakpointValue.ts","../src/components/breakpoints/SwitchBreakpoins.tsx"],"sourcesContent":["import type { IntRange, UnionToIntersection } from 'type-fest';\n\ninterface ColorScaleKeysMap {\n deepPurple: IntRange<5, 10>;\n beige: IntRange<1, 7>;\n lightning: 4 | 5 | 8 | 9;\n rainbow:\n | 'pink'\n | 'brick'\n | 'orange'\n | 'gold'\n | 'sun'\n | 'green-pine'\n | 'green-grass'\n | 'green-apple'\n | 'blue-electric'\n | 'blue-sky';\n grey: 0 | 1 | 2 | 3 | 5 | 7 | 9;\n blue: 1 | 2 | 6 | 7;\n green: 1 | 2 | 6 | 7;\n yellow: 1 | 2 | 6 | 7;\n red: 1 | 2 | 6 | 7;\n mauve: 1 | 2 | 3 | 4;\n 'beige-alpha': '25' | '40' | '50';\n 'grey-alpha': '25' | '35' | '50';\n 'white-alpha': '10' | '20' | '60' | '80' | '90';\n}\n\ntype CreateColorScale<K extends keyof ColorScaleKeysMap> = Record<ColorScaleKeysMap[K], string>;\n\ntype ColorScales = {\n [K in keyof ColorScaleKeysMap]: CreateColorScale<K>;\n};\n\ntype CreateTokens<K extends keyof ColorScaleKeysMap> = {\n [Key in ColorScaleKeysMap[K] as `${K}.${Key}`]: string;\n};\n\ntype ColorScaleTokens = UnionToIntersection<\n {\n [K in keyof ColorScaleKeysMap]: CreateTokens<K>;\n }[keyof ColorScaleKeysMap]\n>;\n\nconst createColorScale = <const T extends Record<string | number, string>>(colorScale: T): T => colorScale;\n\n// WARNING\n// If you update this palette, don't forget to update the palette in @ornikar/bumper as well.\nexport const colorScales: ColorScales = {\n deepPurple: createColorScale({\n 5: '#936C93',\n 6: '#7A587A',\n 7: '#6E4D6E',\n 8: '#563B56',\n 9: '#452F45',\n }),\n beige: createColorScale({\n 1: '#F7F4EE',\n 2: '#F1ECE4',\n 3: '#EAE3D6',\n 4: '#E5DCCA',\n 5: '#DDD0B8',\n 6: '#C1B59F',\n }),\n lightning: createColorScale({\n 4: '#FFF966',\n 5: '#FFF500',\n 8: '#594D0D',\n 9: '#43390A',\n }),\n rainbow: createColorScale({\n pink: '#E4A4F9',\n brick: '#951D12',\n orange: '#DB6E2E',\n gold: '#9A7600',\n sun: '#EFD346',\n 'green-pine': '#1C5D47',\n 'green-grass': '#4DA00A',\n 'green-apple': '#DEF985',\n 'blue-electric': '#2850C4',\n 'blue-sky': '#B2F0FD',\n }),\n grey: createColorScale({\n 0: '#ffffff',\n 1: '#ECECEC',\n 2: '#CDCED0',\n 3: '#A8A8A8',\n 5: '#838383',\n 7: '#505050',\n 9: '#101010',\n }),\n blue: createColorScale({\n 1: '#E9F4FC',\n 2: '#BCDFF6',\n 6: '#1772AB',\n 7: '#125A87',\n }),\n green: createColorScale({\n 1: '#ECFEDD',\n 2: '#DBFAC1',\n 6: '#438D06',\n 7: '#357105',\n }),\n yellow: createColorScale({\n 1: '#FDF8E7',\n 2: '#FAEBB8',\n 6: '#EFC11F',\n 7: '#BA930B',\n }),\n red: createColorScale({\n 1: '#FDE4E3',\n 2: '#FAB8B8',\n 6: '#E2483D',\n 7: '#BD100F',\n }),\n mauve: createColorScale({\n 1: '#F8E7FF',\n 2: '#F1D0FB',\n 3: '#E4A4F9',\n 4: '#D283EC',\n }),\n 'beige-alpha': createColorScale({\n '25': '#C1B59F40',\n '40': '#C1B59F66',\n '50': '#C1B59F80',\n }),\n 'grey-alpha': createColorScale({\n '25': '#10101040',\n '35': '#10101059',\n '50': '#10101080',\n }),\n 'white-alpha': createColorScale({\n '10': '#FFFFFF1A',\n '20': '#FFFFFF33',\n '60': '#FFFFFF99',\n '80': '#FFFFFFCC',\n '90': '#FFFFFFE5',\n }),\n} as const;\n\nconst transformColorScalesToTokens = (): ColorScaleTokens => {\n return Object.fromEntries(\n Object.entries(colorScales).flatMap(([colorName, colorScale]) => {\n return Object.entries(colorScale).map(([scaleNumber, colorValue]) => {\n return [`${colorName}.${scaleNumber}`, colorValue];\n });\n }),\n ) as ColorScaleTokens;\n};\n\nexport const deepPurpleColorPalette = {\n ...transformColorScalesToTokens(),\n white: '#FFFFFF',\n black: '#000000',\n transparent: 'transparent',\n};\n","import { deepPurpleColorPalette } from '../tokens/palettes/deepPurpleColorPalette';\n\n// WARNING\n// If you modify this theme, don't forget to update the theme in @ornikar/kitt-universal as well\n// https://github.com/ornikar/kitt/blob/79e367e962c957c016c4df67dbcf515c8f45ff0e/@ornikar/kitt-universal/src/themes/late-ocean/colors.ts#L28\nexport const light = {\n // content\n 'content.base.low': deepPurpleColorPalette['grey.5'],\n 'content.base.mid': deepPurpleColorPalette['grey.7'],\n 'content.base.hi': deepPurpleColorPalette['grey.9'],\n 'content.base.onContrasted.low': deepPurpleColorPalette['white-alpha.60'],\n 'content.base.onContrasted.mid': deepPurpleColorPalette['white-alpha.80'],\n 'content.base.onContrasted.hi': deepPurpleColorPalette['grey.0'],\n 'content.accent': deepPurpleColorPalette['deepPurple.8'],\n 'content.promo': deepPurpleColorPalette['lightning.9'],\n 'content.promo.onContrasted': deepPurpleColorPalette['lightning.5'],\n 'content.info': deepPurpleColorPalette['blue.7'],\n 'content.success': deepPurpleColorPalette['green.7'],\n 'content.warning': deepPurpleColorPalette['yellow.7'],\n 'content.danger': deepPurpleColorPalette['red.7'],\n 'content.muted': deepPurpleColorPalette['beige.6'],\n 'content.disabled': deepPurpleColorPalette['grey.3'],\n 'content.disabled.onContrasted': deepPurpleColorPalette['grey.1'],\n\n // backgrounds\n 'bg.base.low.default': deepPurpleColorPalette['grey.0'],\n 'bg.base.low.pressed': deepPurpleColorPalette['beige.1'],\n 'bg.base.mid.default': deepPurpleColorPalette['beige.1'],\n 'bg.base.mid.pressed': deepPurpleColorPalette['beige.2'],\n 'bg.base.hi.default': deepPurpleColorPalette['beige.2'],\n 'bg.base.hi.pressed': deepPurpleColorPalette['beige.3'],\n 'bg.accent.default': deepPurpleColorPalette['deepPurple.8'],\n 'bg.accent.pressed': deepPurpleColorPalette['deepPurple.7'],\n 'bg.promo.mid.default': deepPurpleColorPalette['lightning.5'],\n 'bg.promo.mid.pressed': deepPurpleColorPalette['lightning.4'],\n 'bg.promo.hi.default': deepPurpleColorPalette['lightning.9'],\n 'bg.promo.hi.pressed': deepPurpleColorPalette['lightning.8'],\n 'bg.highlight.mid.default': deepPurpleColorPalette['mauve.1'],\n 'bg.highlight.mid.pressed': deepPurpleColorPalette['mauve.2'],\n 'bg.highlight.hi.default': deepPurpleColorPalette['mauve.3'],\n 'bg.highlight.hi.pressed': deepPurpleColorPalette['mauve.4'],\n 'bg.info.mid': deepPurpleColorPalette['blue.1'],\n 'bg.info.hi': deepPurpleColorPalette['blue.6'],\n 'bg.success.mid': deepPurpleColorPalette['green.1'],\n 'bg.success.hi': deepPurpleColorPalette['green.6'],\n 'bg.warning.mid': deepPurpleColorPalette['yellow.1'],\n 'bg.warning.hi': deepPurpleColorPalette['yellow.6'],\n 'bg.danger.mid': deepPurpleColorPalette['red.1'],\n 'bg.danger.hi': deepPurpleColorPalette['red.6'],\n 'bg.disabled.mid': deepPurpleColorPalette['grey.1'],\n 'bg.disabled.hi': deepPurpleColorPalette['grey.3'],\n 'bg.overlay': deepPurpleColorPalette['grey-alpha.50'],\n\n // borders\n 'border.base.low': deepPurpleColorPalette['beige.2'],\n 'border.base.mid': deepPurpleColorPalette['beige.3'],\n 'border.base.hi': deepPurpleColorPalette['grey.9'],\n 'border.base.onContrasted.mid': deepPurpleColorPalette['white-alpha.20'],\n 'border.base.onContrasted.hi': deepPurpleColorPalette['grey.0'],\n 'border.base.accent': deepPurpleColorPalette['deepPurple.8'],\n 'border.info': deepPurpleColorPalette['blue.6'],\n 'border.success': deepPurpleColorPalette['green.6'],\n 'border.warning': deepPurpleColorPalette['yellow.6'],\n 'border.danger': deepPurpleColorPalette['red.6'],\n 'border.disabled': deepPurpleColorPalette['grey.2'],\n 'border.highlight': deepPurpleColorPalette['mauve.3'],\n};\n","export enum BreakpointNameEnum {\n BASE = 'base',\n SMALL = 'small',\n MEDIUM = 'medium',\n LARGE = 'large',\n WIDE = 'wide',\n}\n\nexport const breakpoints = {\n [BreakpointNameEnum.BASE]: 0,\n [BreakpointNameEnum.SMALL]: 480,\n [BreakpointNameEnum.MEDIUM]: 768,\n [BreakpointNameEnum.LARGE]: 1024,\n [BreakpointNameEnum.WIDE]: 1280,\n};\n","import { createFont } from '@tamagui/core';\n\nexport const HEADING_VARIANTS = [\n 'heading-2xl',\n 'heading-xl',\n 'heading-l',\n 'heading-m',\n 'heading-s',\n 'heading-xs',\n 'heading-2xs',\n] as const;\nexport const BODY_VARIANTS = ['body-xl', 'body-l', 'body-m', 'body-s', 'body-xs'] as const;\nexport const LABEL_VARIANTS = ['label-xl', 'label-l', 'label-m', 'label-s'] as const;\nexport const CONTENT_CAPS_VARIANTS = [\n 'content-caps-3xl',\n 'content-caps-2xl',\n 'content-caps-xl',\n 'content-caps-l',\n 'content-caps-m',\n 'content-caps-s',\n 'content-caps-xs',\n] as const;\nexport const VARIANTS = [...HEADING_VARIANTS, ...BODY_VARIANTS, ...LABEL_VARIANTS, ...CONTENT_CAPS_VARIANTS] as const;\n\nexport type FontVariants = (typeof VARIANTS)[number];\nexport type BodyFontVariants = (typeof BODY_VARIANTS)[number];\nexport type LabelFontVariants = (typeof LABEL_VARIANTS)[number];\nexport type HeadingFontVariants = (typeof HEADING_VARIANTS)[number];\nexport type ContentCapsVariants = (typeof CONTENT_CAPS_VARIANTS)[number];\n\nexport type GTStandardFontWeight = '500' | '600' | '700';\n\nconst GTStandardFaces: Record<GTStandardFontWeight, Record<string, string>> = {\n 500: { normal: 'GTStandardRegular' },\n 600: { normal: 'GTStandardSemibold' },\n 700: { normal: 'GTStandardBold' },\n};\n\nconst size: Record<FontVariants, number> = {\n 'heading-2xl': 56,\n 'heading-xl': 48,\n 'heading-l': 38,\n 'heading-m': 28,\n 'heading-s': 24,\n 'heading-xs': 20,\n 'heading-2xs': 20,\n 'body-xl': 24,\n 'body-l': 18,\n 'body-m': 16,\n 'body-s': 14,\n 'body-xs': 12,\n 'label-xl': 18,\n 'label-l': 16,\n 'label-m': 14,\n 'label-s': 12,\n 'content-caps-3xl': 40,\n 'content-caps-2xl': 32,\n 'content-caps-xl': 24,\n 'content-caps-l': 18,\n 'content-caps-m': 16,\n 'content-caps-s': 14,\n 'content-caps-xs': 12,\n};\n\nconst lineHeight: Record<FontVariants, number> = {\n 'heading-2xl': 64,\n 'heading-xl': 56,\n 'heading-l': 44,\n 'heading-m': 32,\n 'heading-s': 28,\n 'heading-xs': 24,\n 'heading-2xs': 20,\n 'body-xl': 32,\n 'body-l': 26,\n 'body-m': 24,\n 'body-s': 20,\n 'body-xs': 16,\n 'label-xl': 26,\n 'label-l': 20,\n 'label-m': 18,\n 'label-s': 14,\n 'content-caps-3xl': 40,\n 'content-caps-2xl': 40,\n 'content-caps-xl': 28,\n 'content-caps-l': 20,\n 'content-caps-m': 18,\n 'content-caps-s': 16,\n 'content-caps-xs': 14,\n};\n\nconst letterSpacing: Record<FontVariants, number> = {\n 'heading-2xl': 0,\n 'heading-xl': 0,\n 'heading-l': 0,\n 'heading-m': 0,\n 'heading-s': 0,\n 'heading-xs': 0,\n 'heading-2xs': 0,\n 'body-xl': 0.3,\n 'body-l': 0.3,\n 'body-m': 0.3,\n 'body-s': 0.3,\n 'body-xs': 0.3,\n 'label-xl': 0,\n 'label-l': 0,\n 'label-m': 0,\n 'label-s': 0,\n 'content-caps-3xl': 0,\n 'content-caps-2xl': 0,\n 'content-caps-xl': 0,\n 'content-caps-l': 0,\n 'content-caps-m': 0,\n 'content-caps-s': 0,\n 'content-caps-xs': 0,\n};\n\nconst weight: Record<string, GTStandardFontWeight> = {\n bold: '700',\n semibold: '600',\n regular: '500',\n};\n\nexport const fonts = createFont({\n family: 'GTStandard',\n size,\n lineHeight,\n letterSpacing,\n weight,\n face: GTStandardFaces,\n});\n","export const radiusTokens = {\n 'radius.none': 0,\n 'radius.s': 2,\n 'radius.m': 4,\n 'radius.l': 8,\n 'radius.circle': 1000,\n};\n","export const sizeTokens = {\n 'size.16': 16,\n 'size.20': 20,\n 'size.24': 24,\n 'size.32': 32,\n 'size.48': 48,\n 'size.64': 64,\n 'size.80': 80,\n 'size.96': 96,\n 'size.120': 120,\n 'size.144': 144,\n 'size.176': 176,\n 'size.208': 208,\n};\n","export const spaceTokens = {\n 'space.none': 0,\n 'space.2': 2,\n 'space.4': 4,\n 'space.8': 8,\n 'space.12': 12,\n 'space.16': 16,\n 'space.24': 24,\n 'space.32': 32,\n 'space.40': 40,\n 'space.48': 48,\n 'space.56': 56,\n 'space.64': 64,\n 'space.80': 80,\n};\n","import { createTamagui, createTokens } from '@tamagui/core';\nimport { light } from './themes/light';\nimport { BreakpointNameEnum, breakpoints } from './themes/utils/breakpoints';\nimport { fonts } from './tokens/fonts';\nimport { radiusTokens } from './tokens/radius';\nimport { sizeTokens } from './tokens/size';\nimport { spaceTokens } from './tokens/space';\n\nconst tokens = createTokens({\n color: {},\n space: spaceTokens,\n size: sizeTokens,\n radius: radiusTokens,\n});\n\nexport const config = createTamagui({\n tokens,\n fonts: {\n GTStandard: fonts,\n },\n themes: {\n light,\n },\n media: {\n [BreakpointNameEnum.BASE]: { minWidth: breakpoints[BreakpointNameEnum.BASE] },\n [BreakpointNameEnum.SMALL]: { minWidth: breakpoints[BreakpointNameEnum.SMALL] },\n [BreakpointNameEnum.MEDIUM]: { minWidth: breakpoints[BreakpointNameEnum.MEDIUM] },\n [BreakpointNameEnum.LARGE]: { minWidth: breakpoints[BreakpointNameEnum.LARGE] },\n [BreakpointNameEnum.WIDE]: { minWidth: breakpoints[BreakpointNameEnum.WIDE] },\n },\n settings: {\n allowedStyleValues: 'strict',\n disableSSR: true,\n styleCompat: 'react-native',\n autocompleteSpecificTokens: 'except-special',\n debug: false,\n },\n});\n\ntype Conf = typeof config;\n\n// make imports typed\ndeclare module '@tamagui/core' {\n interface TamaguiCustomConfig extends Conf {}\n}\n","import { TamaguiProvider } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { config } from '../tamagui.config';\n\nexport interface BumperProviderProps {\n children: ReactNode;\n}\n\nexport function BumperProvider({ children }: BumperProviderProps): ReactNode {\n return (\n <TamaguiProvider config={config} defaultTheme=\"light\">\n {children}\n </TamaguiProvider>\n );\n}\n","import { makeDecorator } from '@storybook/preview-api';\nimport type { ReactNode } from 'react';\nimport { BumperProvider } from './BumperProvider';\n\nexport const BumperDecorator = makeDecorator({\n name: 'BumperDecorator',\n parameterName: 'bumper',\n wrapper: (storyFn, context) => {\n return <BumperProvider>{storyFn(context) as ReactNode}</BumperProvider>;\n },\n});\n","import type { ViewProps } from '@tamagui/core';\nimport { styled } from '@tamagui/core';\nimport { View } from './View';\n\nexport interface CenterProps extends ViewProps {}\n\nexport const Center = styled(View, {\n justifyContent: 'center',\n alignItems: 'center',\n});\n","import type { GetProps, TamaguiComponent } from '@tamagui/core';\nimport { View, styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport type { Except } from 'type-fest';\n\nexport type PressableProps<C extends TamaguiComponent = typeof View> = {\n /**\n * The Tamagui component to render as (`View`, `Stack`, etc.).\n *\n * @default View\n */\n as?: C;\n} & Except<GetProps<C>, 'as'>;\n\n/**\n * A polymorphic Pressable component that can render as any Tamagui primitive.\n *\n * @example\n * <Pressable onPress={() => {}} />\n *\n * @example\n * <Pressable\n * as={HStack}\n * onPress={() => {}}\n * />\n */\nexport function Pressable<C extends TamaguiComponent = typeof View>({ as, ...rest }: PressableProps<C>): ReactNode {\n const Component = styled(as ?? View, {\n name: 'Pressable',\n role: 'button',\n cursor: 'pointer',\n });\n\n return <Component {...(rest as GetProps<C>)} />;\n}\n","import type { GetProps } from '@tamagui/core';\nimport { Stack, styled } from '@tamagui/core';\n\nexport type { StackProps } from '@tamagui/core';\nexport { Stack } from '@tamagui/core';\n\nexport const HStack = styled(Stack, {\n name: 'HStack',\n flexDirection: 'row',\n});\n\nexport type HStackProps = GetProps<typeof HStack>;\n\nexport const VStack = styled(Stack, {\n name: 'VStack',\n flexDirection: 'column',\n});\n\nexport type VStackProps = GetProps<typeof VStack>;\n","import type { FontVariants } from '../../../tokens/fonts';\nimport { BODY_VARIANTS, CONTENT_CAPS_VARIANTS, HEADING_VARIANTS, LABEL_VARIANTS } from '../../../tokens/fonts';\nimport type {\n InternalTypographyProps,\n TypographyTextProps,\n TypographyVariantContextValue,\n TypographyWeightContextValue,\n} from '../Typography';\n\ninterface VariantAndWeightValues {\n weight: InternalTypographyProps['weight'] | undefined;\n variant: FontVariants | undefined;\n}\n\nexport function getVariantAndWeightValues(\n weightProp: TypographyTextProps['weight'],\n variantProp: TypographyTextProps['variant'],\n typographyWeightAncestorValue: TypographyWeightContextValue,\n typographyVariantAncestorValue: TypographyVariantContextValue,\n): VariantAndWeightValues {\n const computedVariant = variantProp || typographyVariantAncestorValue || undefined;\n\n if (computedVariant) {\n if ((BODY_VARIANTS as readonly string[]).includes(computedVariant)) {\n const computedWeight = weightProp || typographyWeightAncestorValue || undefined;\n return { weight: computedWeight, variant: computedVariant };\n }\n // Content Caps variant have fixed weights so we override any provided weight\n if ((CONTENT_CAPS_VARIANTS as readonly string[]).includes(computedVariant)) {\n return { weight: 'bold', variant: computedVariant };\n }\n // Heading variants have fixed weights so we override any provided weight\n if ((HEADING_VARIANTS as readonly string[]).includes(computedVariant)) {\n return { weight: 'semibold', variant: computedVariant };\n }\n // Label variants have fixed weights so we override any provided weight\n if ((LABEL_VARIANTS as readonly string[]).includes(computedVariant)) {\n return { weight: 'semibold', variant: computedVariant };\n }\n }\n\n return { weight: weightProp, variant: undefined };\n}\n","import type { GetProps, GetThemeValueForKey, TamaguiComponent, WithMediaProps } from '@tamagui/core';\nimport { Text, styled } from '@tamagui/core';\nimport { createContext, useContext } from 'react';\nimport { type Except } from 'type-fest';\nimport type {\n BodyFontVariants,\n ContentCapsVariants,\n FontVariants,\n HeadingFontVariants,\n LabelFontVariants,\n} from '../../tokens/fonts';\nimport { getVariantAndWeightValues } from './utils/getVariantAndWeightValues';\n\n// Should use type from tamagui (PropsWithoutMediaStyles) when fixed: https://github.com/tamagui/tamagui/pull/3783\ntype PropsWithoutMedia<A> = {\n // remove all media\n [Key in keyof A as Key extends `$${string}` ? never : Key]?: A[Key];\n};\n\ntype OverrideTamaguiComponentProps<A> = PropsWithoutMedia<A> & WithMediaProps<PropsWithoutMedia<A>>;\n\nconst InternalTypography = styled(Text, {\n fontFamily: '$GTStandard',\n color: '$content.base.hi',\n '$platform-web': {\n WebkitFontSmoothing: 'antialiased',\n },\n variants: {\n variant: (variant: FontVariants | undefined) => {\n if (!variant) return {};\n\n return {\n fontSize: `$${variant}`,\n lineHeight: `$${variant}`,\n letterSpacing: `$${variant}`,\n };\n },\n weight: {\n regular: {\n fontWeight: '$regular',\n },\n semibold: {\n fontWeight: '$semibold',\n },\n bold: {\n fontWeight: '$bold',\n },\n },\n } as const,\n defaultVariants: {\n variant: 'body-m',\n weight: 'regular',\n },\n});\n\nexport type InternalTypographyProps = GetProps<typeof InternalTypography>;\n\nexport type TypographyVariantContextValue = FontVariants | null;\nexport type TypographyWeightContextValue = 'regular' | 'bold' | 'semibold' | null;\nexport type TypograhyColorContextValue = InternalTypographyProps['color'] | null;\n\nconst TypographyVariantContext = createContext<TypographyVariantContextValue>(null);\nconst TypographyWeightContext = createContext<TypographyWeightContextValue>(null);\nconst TypograhyColorContext = createContext<TypograhyColorContextValue>(null);\n\n// Remove font-related style props from InternalTypography Props\ntype TypographyExcludedFontStyleProps =\n | 'fontFamily'\n | 'fontSize'\n | 'lineHeight'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight';\n\ntype TypographyPropsWithoutFontStyleProps = Except<InternalTypographyProps, TypographyExcludedFontStyleProps>;\n\nexport interface BodyProps extends TypographyPropsWithoutFontStyleProps {\n variant?: BodyFontVariants;\n weight?: 'regular' | 'bold';\n}\nexport interface HeadingLabelProps extends TypographyPropsWithoutFontStyleProps {\n variant: HeadingFontVariants | LabelFontVariants;\n weight?: 'semibold';\n}\nexport interface ContentCapsProps extends TypographyPropsWithoutFontStyleProps {\n variant: ContentCapsVariants;\n weight?: 'bold';\n}\n\nexport type TypographyTextProps =\n | OverrideTamaguiComponentProps<BodyProps>\n | OverrideTamaguiComponentProps<HeadingLabelProps>\n | OverrideTamaguiComponentProps<ContentCapsProps>;\n\nconst TypographyBase = InternalTypography.styleable<TypographyTextProps, TypographyTextProps>((props, ref) => {\n const typographyVariantAncestorValue = useContext(TypographyVariantContext);\n const typographyWeightAncestorValue = useContext(TypographyWeightContext);\n const typographyColorAncestorValue = useContext(TypograhyColorContext);\n\n const { variant, weight } = getVariantAndWeightValues(\n props.weight,\n props.variant,\n typographyWeightAncestorValue,\n typographyVariantAncestorValue,\n );\n const color = props.color || typographyColorAncestorValue || undefined;\n\n let content = (\n <InternalTypography\n ref={ref}\n {...props}\n color={color as GetThemeValueForKey<'color'>}\n weight={weight}\n variant={variant}\n />\n );\n\n // If a variant is provided, we set it in the context for children to be able to inherit variant value\n content = props.variant ? (\n <TypographyVariantContext.Provider value={props.variant}>{content}</TypographyVariantContext.Provider>\n ) : (\n content\n );\n\n // If a weight is provided, we set it in the context for children to be able to inherit weight value\n content = props.weight ? (\n <TypographyWeightContext.Provider value={props.weight}>{content}</TypographyWeightContext.Provider>\n ) : (\n content\n );\n\n // If a color is provided, we set it in the context for children to be able to inherit color value\n content = props.color ? (\n <TypograhyColorContext.Provider value={props.color}>{content}</TypograhyColorContext.Provider>\n ) : (\n content\n );\n\n return content;\n});\n\nconst createHeading = (level: number): TamaguiComponent<TypographyTextProps> => {\n return TypographyBase.styleable<TypographyTextProps, TypographyTextProps>((props, ref) => {\n return <TypographyBase ref={ref} {...props} role=\"heading\" aria-level={level} />;\n });\n};\n\nexport const Typography = {\n Text: TypographyBase,\n Header1: createHeading(1),\n Header2: createHeading(2),\n Header3: createHeading(3),\n Header4: createHeading(4),\n Header5: createHeading(5),\n Header6: createHeading(6),\n};\n","import { BreakpointNameEnum } from '../../../themes/utils/breakpoints';\n\nexport interface ValueForBreakpoint<T> {\n base: T;\n small?: T;\n medium?: T;\n large?: T;\n wide?: T;\n}\n\nexport function getValueForBreakpoint<T>(\n breakpoint: BreakpointNameEnum,\n { base, small, medium, large, wide }: ValueForBreakpoint<T>,\n): T {\n switch (breakpoint) {\n case BreakpointNameEnum.WIDE:\n return wide ?? large ?? medium ?? small ?? base;\n case BreakpointNameEnum.LARGE:\n return large ?? medium ?? small ?? base;\n case BreakpointNameEnum.MEDIUM:\n return medium ?? small ?? base;\n case BreakpointNameEnum.SMALL:\n return small ?? base;\n case BreakpointNameEnum.BASE:\n default:\n return base;\n }\n}\n","import { useMedia } from '@tamagui/core';\nimport { BreakpointNameEnum } from '../../../themes/utils/breakpoints';\n\nexport function useCurrentBreakpointName(): BreakpointNameEnum {\n const media = useMedia();\n\n switch (true) {\n case media.wide:\n return BreakpointNameEnum.WIDE;\n case media.large:\n return BreakpointNameEnum.LARGE;\n case media.medium:\n return BreakpointNameEnum.MEDIUM;\n case media.small:\n return BreakpointNameEnum.SMALL;\n case media.base:\n default:\n return BreakpointNameEnum.BASE;\n }\n}\n","import { useMemo } from 'react';\nimport type { ValueForBreakpoint } from '../utils/breakpointsUtils';\nimport { getValueForBreakpoint } from '../utils/breakpointsUtils';\nimport { useCurrentBreakpointName } from './useCurrentBreakpointName';\n\nexport function useBreakpointValue<T>(values: ValueForBreakpoint<T>): T {\n const breakpoint = useCurrentBreakpointName();\n\n return useMemo(() => {\n return getValueForBreakpoint(breakpoint, values);\n }, [breakpoint, values]);\n}\n","import type { ReactNode } from 'react';\nimport { useCurrentBreakpointName } from './hooks/useCurrentBreakpointName';\nimport type { ValueForBreakpoint } from './utils/breakpointsUtils';\nimport { getValueForBreakpoint } from './utils/breakpointsUtils';\n\nexport type SwitchBreakpointsProps = ValueForBreakpoint<ReactNode>;\n\nexport function SwitchBreakpoints(values: SwitchBreakpointsProps): ReactNode {\n const breakpoint = useCurrentBreakpointName();\n\n return getValueForBreakpoint(breakpoint, values);\n}\n"],"names":["createColorScale","colorScale","colorScales","deepPurple","beige","lightning","rainbow","pink","brick","orange","gold","sun","grey","blue","green","yellow","red","mauve","transformColorScalesToTokens","Object","fromEntries","entries","flatMap","_ref","_ref2","_slicedToArray","colorName","map","_ref3","_ref4","scaleNumber","colorValue","concat","deepPurpleColorPalette","_objectSpread","white","black","transparent","light","BreakpointNameEnum","breakpoints","_defineProperty","BASE","SMALL","MEDIUM","LARGE","WIDE","HEADING_VARIANTS","BODY_VARIANTS","LABEL_VARIANTS","CONTENT_CAPS_VARIANTS","GTStandardFaces","normal","size","lineHeight","letterSpacing","weight","bold","semibold","regular","fonts","createFont","family","face","radiusTokens","sizeTokens","spaceTokens","tokens","createTokens","color","space","radius","config","createTamagui","GTStandard","themes","media","minWidth","settings","allowedStyleValues","disableSSR","styleCompat","autocompleteSpecificTokens","debug","BumperProvider","children","_jsx","TamaguiProvider","defaultTheme","BumperDecorator","makeDecorator","name","parameterName","wrapper","storyFn","context","Center","styled","View","justifyContent","alignItems","Pressable","as","rest","_objectWithoutProperties","_excluded","Component","role","cursor","HStack","Stack","flexDirection","VStack","getVariantAndWeightValues","weightProp","variantProp","typographyWeightAncestorValue","typographyVariantAncestorValue","computedVariant","undefined","includes","computedWeight","variant","InternalTypography","Text","fontFamily","WebkitFontSmoothing","variants","fontSize","fontWeight","defaultVariants","TypographyVariantContext","createContext","TypographyWeightContext","TypograhyColorContext","TypographyBase","styleable","props","ref","useContext","typographyColorAncestorValue","_getVariantAndWeightV","content","Provider","value","createHeading","level","Typography","Header1","Header2","Header3","Header4","Header5","Header6","getValueForBreakpoint","breakpoint","_ref5","_ref6","_ref7","base","small","medium","large","wide","useCurrentBreakpointName","useMedia","useBreakpointValue","values","useMemo","SwitchBreakpoints"],"mappings":";;;;;;;;;;;AA4CA,IAAMA,gBAAgB,GAAG,UAAkDC,UAAa,EAAA;AAAA,EAAA,OAAQA,UAAU,CAAA;AAAA,CAAA,CAAA;;AAE1G;AACA;AACO,IAAMC,WAAwB,GAAG;EACtCC,UAAU,EAAEH,gBAAgB,CAAC;AAC3B,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFI,KAAK,EAAEJ,gBAAgB,CAAC;AACtB,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFK,SAAS,EAAEL,gBAAgB,CAAC;AAC1B,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFM,OAAO,EAAEN,gBAAgB,CAAC;AACxBO,IAAAA,IAAI,EAAE,SAAS;AACfC,IAAAA,KAAK,EAAE,SAAS;AAChBC,IAAAA,MAAM,EAAE,SAAS;AACjBC,IAAAA,IAAI,EAAE,SAAS;AACfC,IAAAA,GAAG,EAAE,SAAS;AACd,IAAA,YAAY,EAAE,SAAS;AACvB,IAAA,aAAa,EAAE,SAAS;AACxB,IAAA,aAAa,EAAE,SAAS;AACxB,IAAA,eAAe,EAAE,SAAS;AAC1B,IAAA,UAAU,EAAE,SAAA;AACd,GAAC,CAAC;EACFC,IAAI,EAAEZ,gBAAgB,CAAC;AACrB,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFa,IAAI,EAAEb,gBAAgB,CAAC;AACrB,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFc,KAAK,EAAEd,gBAAgB,CAAC;AACtB,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFe,MAAM,EAAEf,gBAAgB,CAAC;AACvB,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFgB,GAAG,EAAEhB,gBAAgB,CAAC;AACpB,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACFiB,KAAK,EAAEjB,gBAAgB,CAAC;AACtB,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAS;AACZ,IAAA,CAAC,EAAE,SAAA;AACL,GAAC,CAAC;EACF,aAAa,EAAEA,gBAAgB,CAAC;AAC9B,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAA;AACR,GAAC,CAAC;EACF,YAAY,EAAEA,gBAAgB,CAAC;AAC7B,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAA;AACR,GAAC,CAAC;EACF,aAAa,EAAEA,gBAAgB,CAAC;AAC9B,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAW;AACjB,IAAA,IAAI,EAAE,WAAA;GACP,CAAA;AACH,CAAU,CAAA;AAEV,IAAMkB,4BAA4B,GAAG,YAAwB;AAC3D,EAAA,OAAOC,MAAM,CAACC,WAAW,CACvBD,MAAM,CAACE,OAAO,CAACnB,WAAW,CAAC,CAACoB,OAAO,CAAC,UAAAC,IAAA,EAA6B;AAAA,IAAA,IAAAC,KAAA,GAAAC,cAAA,CAAAF,IAAA,EAAA,CAAA,CAAA;AAA3BG,MAAAA,SAAS,GAAAF,KAAA,CAAA,CAAA,CAAA;AAAEvB,MAAAA,UAAU,GAAAuB,KAAA,CAAA,CAAA,CAAA,CAAA;IACzD,OAAOL,MAAM,CAACE,OAAO,CAACpB,UAAU,CAAC,CAAC0B,GAAG,CAAC,UAAAC,KAAA,EAA+B;AAAA,MAAA,IAAAC,KAAA,GAAAJ,cAAA,CAAAG,KAAA,EAAA,CAAA,CAAA;AAA7BE,QAAAA,WAAW,GAAAD,KAAA,CAAA,CAAA,CAAA;AAAEE,QAAAA,UAAU,GAAAF,KAAA,CAAA,CAAA,CAAA,CAAA;MAC7D,OAAO,CAAA,EAAA,CAAAG,MAAA,CAAIN,SAAS,EAAA,GAAA,CAAA,CAAAM,MAAA,CAAIF,WAAW,CAAIC,EAAAA,UAAU,CAAC,CAAA;AACpD,KAAC,CAAC,CAAA;AACJ,GAAC,CACH,CAAC,CAAA;AACH,CAAC,CAAA;AAEM,IAAME,sBAAsB,GAAAC,aAAA,CAAAA,aAAA,CAAA,EAAA,EAC9BhB,4BAA4B,EAAE,CAAA,EAAA,EAAA,EAAA;AACjCiB,EAAAA,KAAK,EAAE,SAAS;AAChBC,EAAAA,KAAK,EAAE,SAAS;AAChBC,EAAAA,WAAW,EAAE,aAAA;AAAa,CAC3B,CAAA;;ACzJD;AACA;AACA;AACO,IAAMC,KAAK,GAAG;AACnB;AACA,EAAA,kBAAkB,EAAEL,sBAAsB,CAAC,QAAQ,CAAC;AACpD,EAAA,kBAAkB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AACpD,EAAA,iBAAiB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AACnD,EAAA,+BAA+B,EAAEA,sBAAsB,CAAC,gBAAgB,CAAC;AACzE,EAAA,+BAA+B,EAAEA,sBAAsB,CAAC,gBAAgB,CAAC;AACzE,EAAA,8BAA8B,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAChE,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,cAAc,CAAC;AACxD,EAAA,eAAe,EAAEA,sBAAsB,CAAC,aAAa,CAAC;AACtD,EAAA,4BAA4B,EAAEA,sBAAsB,CAAC,aAAa,CAAC;AACnE,EAAA,cAAc,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAChD,EAAA,iBAAiB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACpD,EAAA,iBAAiB,EAAEA,sBAAsB,CAAC,UAAU,CAAC;AACrD,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,OAAO,CAAC;AACjD,EAAA,eAAe,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AAClD,EAAA,kBAAkB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AACpD,EAAA,+BAA+B,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAEjE;AACA,EAAA,qBAAqB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AACvD,EAAA,qBAAqB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACxD,EAAA,qBAAqB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACxD,EAAA,qBAAqB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACxD,EAAA,oBAAoB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACvD,EAAA,oBAAoB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACvD,EAAA,mBAAmB,EAAEA,sBAAsB,CAAC,cAAc,CAAC;AAC3D,EAAA,mBAAmB,EAAEA,sBAAsB,CAAC,cAAc,CAAC;AAC3D,EAAA,sBAAsB,EAAEA,sBAAsB,CAAC,aAAa,CAAC;AAC7D,EAAA,sBAAsB,EAAEA,sBAAsB,CAAC,aAAa,CAAC;AAC7D,EAAA,qBAAqB,EAAEA,sBAAsB,CAAC,aAAa,CAAC;AAC5D,EAAA,qBAAqB,EAAEA,sBAAsB,CAAC,aAAa,CAAC;AAC5D,EAAA,0BAA0B,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AAC7D,EAAA,0BAA0B,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AAC7D,EAAA,yBAAyB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AAC5D,EAAA,yBAAyB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AAC5D,EAAA,aAAa,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAC/C,EAAA,YAAY,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAC9C,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACnD,EAAA,eAAe,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AAClD,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,UAAU,CAAC;AACpD,EAAA,eAAe,EAAEA,sBAAsB,CAAC,UAAU,CAAC;AACnD,EAAA,eAAe,EAAEA,sBAAsB,CAAC,OAAO,CAAC;AAChD,EAAA,cAAc,EAAEA,sBAAsB,CAAC,OAAO,CAAC;AAC/C,EAAA,iBAAiB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AACnD,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAClD,EAAA,YAAY,EAAEA,sBAAsB,CAAC,eAAe,CAAC;AAErD;AACA,EAAA,iBAAiB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACpD,EAAA,iBAAiB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACpD,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAClD,EAAA,8BAA8B,EAAEA,sBAAsB,CAAC,gBAAgB,CAAC;AACxE,EAAA,6BAA6B,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAC/D,EAAA,oBAAoB,EAAEA,sBAAsB,CAAC,cAAc,CAAC;AAC5D,EAAA,aAAa,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;AAC/C,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,SAAS,CAAC;AACnD,EAAA,gBAAgB,EAAEA,sBAAsB,CAAC,UAAU,CAAC;AACpD,EAAA,eAAe,EAAEA,sBAAsB,CAAC,OAAO,CAAC;AAChD,EAAA,iBAAiB,EAAEA,sBAAsB,CAAC,QAAQ,CAAC;EACnD,kBAAkB,EAAEA,sBAAsB,CAAC,SAAS,CAAA;AACtD,CAAC;;AClEWM,IAAAA,kBAAkB,0BAAlBA,kBAAkB,EAAA;EAAlBA,kBAAkB,CAAA,MAAA,CAAA,GAAA,MAAA,CAAA;EAAlBA,kBAAkB,CAAA,OAAA,CAAA,GAAA,OAAA,CAAA;EAAlBA,kBAAkB,CAAA,QAAA,CAAA,GAAA,QAAA,CAAA;EAAlBA,kBAAkB,CAAA,OAAA,CAAA,GAAA,OAAA,CAAA;EAAlBA,kBAAkB,CAAA,MAAA,CAAA,GAAA,MAAA,CAAA;AAAA,EAAA,OAAlBA,kBAAkB,CAAA;AAAA,CAAA,CAAA,EAAA,CAAA,CAAA;AAQvB,IAAMC,WAAW,GAAAC,eAAA,CAAAA,eAAA,CAAAA,eAAA,CAAAA,eAAA,CAAAA,eAAA,KACrBF,kBAAkB,CAACG,IAAI,EAAG,CAAC,GAC3BH,kBAAkB,CAACI,KAAK,EAAG,GAAG,CAC9BJ,EAAAA,kBAAkB,CAACK,MAAM,EAAG,GAAG,CAC/BL,EAAAA,kBAAkB,CAACM,KAAK,EAAG,IAAI,CAC/BN,EAAAA,kBAAkB,CAACO,IAAI,EAAG,IAAI,CAChC;;ACZM,IAAMC,gBAAgB,GAAG,CAC9B,aAAa,EACb,YAAY,EACZ,WAAW,EACX,WAAW,EACX,WAAW,EACX,YAAY,EACZ,aAAa,CACL,CAAA;AACH,IAAMC,aAAa,GAAG,CAAC,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,CAAU,CAAA;AACnF,IAAMC,cAAc,GAAG,CAAC,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,CAAU,CAAA;AAC7E,IAAMC,qBAAqB,GAAG,CACnC,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,CACT,CAAA;AAWV,IAAMC,eAAqE,GAAG;AAC5E,EAAA,GAAG,EAAE;AAAEC,IAAAA,MAAM,EAAE,mBAAA;GAAqB;AACpC,EAAA,GAAG,EAAE;AAAEA,IAAAA,MAAM,EAAE,oBAAA;GAAsB;AACrC,EAAA,GAAG,EAAE;AAAEA,IAAAA,MAAM,EAAE,gBAAA;AAAiB,GAAA;AAClC,CAAC,CAAA;AAED,IAAMC,IAAkC,GAAG;AACzC,EAAA,aAAa,EAAE,EAAE;AACjB,EAAA,YAAY,EAAE,EAAE;AAChB,EAAA,WAAW,EAAE,EAAE;AACf,EAAA,WAAW,EAAE,EAAE;AACf,EAAA,WAAW,EAAE,EAAE;AACf,EAAA,YAAY,EAAE,EAAE;AAChB,EAAA,aAAa,EAAE,EAAE;AACjB,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,QAAQ,EAAE,EAAE;AACZ,EAAA,QAAQ,EAAE,EAAE;AACZ,EAAA,QAAQ,EAAE,EAAE;AACZ,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,kBAAkB,EAAE,EAAE;AACtB,EAAA,kBAAkB,EAAE,EAAE;AACtB,EAAA,iBAAiB,EAAE,EAAE;AACrB,EAAA,gBAAgB,EAAE,EAAE;AACpB,EAAA,gBAAgB,EAAE,EAAE;AACpB,EAAA,gBAAgB,EAAE,EAAE;AACpB,EAAA,iBAAiB,EAAE,EAAA;AACrB,CAAC,CAAA;AAED,IAAMC,UAAwC,GAAG;AAC/C,EAAA,aAAa,EAAE,EAAE;AACjB,EAAA,YAAY,EAAE,EAAE;AAChB,EAAA,WAAW,EAAE,EAAE;AACf,EAAA,WAAW,EAAE,EAAE;AACf,EAAA,WAAW,EAAE,EAAE;AACf,EAAA,YAAY,EAAE,EAAE;AAChB,EAAA,aAAa,EAAE,EAAE;AACjB,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,QAAQ,EAAE,EAAE;AACZ,EAAA,QAAQ,EAAE,EAAE;AACZ,EAAA,QAAQ,EAAE,EAAE;AACZ,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,kBAAkB,EAAE,EAAE;AACtB,EAAA,kBAAkB,EAAE,EAAE;AACtB,EAAA,iBAAiB,EAAE,EAAE;AACrB,EAAA,gBAAgB,EAAE,EAAE;AACpB,EAAA,gBAAgB,EAAE,EAAE;AACpB,EAAA,gBAAgB,EAAE,EAAE;AACpB,EAAA,iBAAiB,EAAE,EAAA;AACrB,CAAC,CAAA;AAED,IAAMC,aAA2C,GAAG;AAClD,EAAA,aAAa,EAAE,CAAC;AAChB,EAAA,YAAY,EAAE,CAAC;AACf,EAAA,WAAW,EAAE,CAAC;AACd,EAAA,WAAW,EAAE,CAAC;AACd,EAAA,WAAW,EAAE,CAAC;AACd,EAAA,YAAY,EAAE,CAAC;AACf,EAAA,aAAa,EAAE,CAAC;AAChB,EAAA,SAAS,EAAE,GAAG;AACd,EAAA,QAAQ,EAAE,GAAG;AACb,EAAA,QAAQ,EAAE,GAAG;AACb,EAAA,QAAQ,EAAE,GAAG;AACb,EAAA,SAAS,EAAE,GAAG;AACd,EAAA,UAAU,EAAE,CAAC;AACb,EAAA,SAAS,EAAE,CAAC;AACZ,EAAA,SAAS,EAAE,CAAC;AACZ,EAAA,SAAS,EAAE,CAAC;AACZ,EAAA,kBAAkB,EAAE,CAAC;AACrB,EAAA,kBAAkB,EAAE,CAAC;AACrB,EAAA,iBAAiB,EAAE,CAAC;AACpB,EAAA,gBAAgB,EAAE,CAAC;AACnB,EAAA,gBAAgB,EAAE,CAAC;AACnB,EAAA,gBAAgB,EAAE,CAAC;AACnB,EAAA,iBAAiB,EAAE,CAAA;AACrB,CAAC,CAAA;AAED,IAAMC,MAA4C,GAAG;AACnDC,EAAAA,IAAI,EAAE,KAAK;AACXC,EAAAA,QAAQ,EAAE,KAAK;AACfC,EAAAA,OAAO,EAAE,KAAA;AACX,CAAC,CAAA;AAEM,IAAMC,KAAK,GAAGC,UAAU,CAAC;AAC9BC,EAAAA,MAAM,EAAE,YAAY;AACpBT,EAAAA,IAAI,EAAJA,IAAI;AACJC,EAAAA,UAAU,EAAVA,UAAU;AACVC,EAAAA,aAAa,EAAbA,aAAa;AACbC,EAAAA,MAAM,EAANA,MAAM;AACNO,EAAAA,IAAI,EAAEZ,eAAAA;AACR,CAAC,CAAC;;ACjIK,IAAMa,YAAY,GAAG;AAC1B,EAAA,aAAa,EAAE,CAAC;AAChB,EAAA,UAAU,EAAE,CAAC;AACb,EAAA,UAAU,EAAE,CAAC;AACb,EAAA,UAAU,EAAE,CAAC;AACb,EAAA,eAAe,EAAE,IAAA;AACnB,CAAC;;ACNM,IAAMC,UAAU,GAAG;AACxB,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,UAAU,EAAE,GAAG;AACf,EAAA,UAAU,EAAE,GAAG;AACf,EAAA,UAAU,EAAE,GAAG;AACf,EAAA,UAAU,EAAE,GAAA;AACd,CAAC;;ACbM,IAAMC,WAAW,GAAG;AACzB,EAAA,YAAY,EAAE,CAAC;AACf,EAAA,SAAS,EAAE,CAAC;AACZ,EAAA,SAAS,EAAE,CAAC;AACZ,EAAA,SAAS,EAAE,CAAC;AACZ,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAE;AACd,EAAA,UAAU,EAAE,EAAA;AACd,CAAC;;ACND,IAAMC,MAAM,GAAGC,YAAY,CAAC;EAC1BC,KAAK,EAAE,EAAE;AACTC,EAAAA,KAAK,EAAEJ,WAAW;AAClBb,EAAAA,IAAI,EAAEY,UAAU;AAChBM,EAAAA,MAAM,EAAEP,YAAAA;AACV,CAAC,CAAC,CAAA;AAEK,IAAMQ,MAAM,GAAGC,aAAa,CAAC;AAClCN,EAAAA,MAAM,EAANA,MAAM;AACNP,EAAAA,KAAK,EAAE;AACLc,IAAAA,UAAU,EAAEd,KAAAA;GACb;AACDe,EAAAA,MAAM,EAAE;AACNrC,IAAAA,KAAK,EAALA,KAAAA;GACD;AACDsC,EAAAA,KAAK,EAAAnC,eAAA,CAAAA,eAAA,CAAAA,eAAA,CAAAA,eAAA,CAAAA,eAAA,CAAA,EAAA,EACFF,kBAAkB,CAACG,IAAI,EAAG;AAAEmC,IAAAA,QAAQ,EAAErC,WAAW,CAACD,kBAAkB,CAACG,IAAI,CAAA;AAAE,GAAC,CAC5EH,EAAAA,kBAAkB,CAACI,KAAK,EAAG;AAAEkC,IAAAA,QAAQ,EAAErC,WAAW,CAACD,kBAAkB,CAACI,KAAK,CAAA;AAAE,GAAC,CAC9EJ,EAAAA,kBAAkB,CAACK,MAAM,EAAG;AAAEiC,IAAAA,QAAQ,EAAErC,WAAW,CAACD,kBAAkB,CAACK,MAAM,CAAA;AAAE,GAAC,CAChFL,EAAAA,kBAAkB,CAACM,KAAK,EAAG;AAAEgC,IAAAA,QAAQ,EAAErC,WAAW,CAACD,kBAAkB,CAACM,KAAK,CAAA;AAAE,GAAC,CAC9EN,EAAAA,kBAAkB,CAACO,IAAI,EAAG;AAAE+B,IAAAA,QAAQ,EAAErC,WAAW,CAACD,kBAAkB,CAACO,IAAI,CAAA;AAAE,GAAC,CAC9E;AACDgC,EAAAA,QAAQ,EAAE;AACRC,IAAAA,kBAAkB,EAAE,QAAQ;AAC5BC,IAAAA,UAAU,EAAE,IAAI;AAChBC,IAAAA,WAAW,EAAE,cAAc;AAC3BC,IAAAA,0BAA0B,EAAE,gBAAgB;AAC5CC,IAAAA,KAAK,EAAE,KAAA;AACT,GAAA;AACF,CAAC,CAAC,CAAA;;AAIF;;ACjCO,SAASC,cAAcA,CAAA7D,IAAA,EAA+C;AAAA,EAAA,IAA5C8D,QAAQ,GAAA9D,IAAA,CAAR8D,QAAQ,CAAA;EACvC,oBACEC,GAAA,CAACC,eAAe,EAAA;AAACf,IAAAA,MAAM,EAAEA,MAAO;AAACgB,IAAAA,YAAY,EAAC,OAAO;AAAAH,IAAAA,QAAA,EAClDA,QAAAA;AAAQ,GACM,CAAC,CAAA;AAEtB;;ACVaI,IAAAA,eAAe,GAAGC,aAAa,CAAC;AAC3CC,EAAAA,IAAI,EAAE,iBAAiB;AACvBC,EAAAA,aAAa,EAAE,QAAQ;AACvBC,EAAAA,OAAO,EAAE,UAACC,OAAO,EAAEC,OAAO,EAAK;IAC7B,oBAAOT,GAAA,CAACF,cAAc,EAAA;MAAAC,QAAA,EAAES,OAAO,CAACC,OAAO,CAAA;AAAC,KAA8B,CAAC,CAAA;AACzE,GAAA;AACF,CAAC;;ICJYC,MAAM,GAAGC,MAAM,CAACC,IAAI,EAAE;AACjCC,EAAAA,cAAc,EAAE,QAAQ;AACxBC,EAAAA,UAAU,EAAE,QAAA;AACd,CAAC;;;ACKD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASC,SAASA,CAAA9E,IAAA,EAA0F;AAAA,EAAA,IAA7C+E,EAAE,GAAA/E,IAAA,CAAF+E,EAAE;AAAKC,IAAAA,IAAI,GAAAC,wBAAA,CAAAjF,IAAA,EAAAkF,SAAA,CAAA,CAAA;EAC/E,IAAMC,SAAS,GAAGT,MAAM,CAACK,EAAE,KAAFA,IAAAA,IAAAA,EAAE,KAAFA,KAAAA,CAAAA,GAAAA,EAAE,GAAIJ,IAAI,EAAE;AACnCP,IAAAA,IAAI,EAAE,WAAW;AACjBgB,IAAAA,IAAI,EAAE,QAAQ;AACdC,IAAAA,MAAM,EAAE,SAAA;AACV,GAAC,CAAC,CAAA;EAEF,oBAAOtB,GAAA,CAACoB,SAAS,EAAAxE,aAAA,CAAMqE,EAAAA,EAAAA,IAAI,CAAmB,CAAC,CAAA;AACjD;;IC5BaM,MAAM,GAAGZ,MAAM,CAACa,KAAK,EAAE;AAClCnB,EAAAA,IAAI,EAAE,QAAQ;AACdoB,EAAAA,aAAa,EAAE,KAAA;AACjB,CAAC,EAAC;IAIWC,MAAM,GAAGf,MAAM,CAACa,KAAK,EAAE;AAClCnB,EAAAA,IAAI,EAAE,QAAQ;AACdoB,EAAAA,aAAa,EAAE,QAAA;AACjB,CAAC;;ACFM,SAASE,yBAAyBA,CACvCC,UAAyC,EACzCC,WAA2C,EAC3CC,6BAA2D,EAC3DC,8BAA6D,EACrC;AACxB,EAAA,IAAMC,eAAe,GAAGH,WAAW,IAAIE,8BAA8B,IAAIE,SAAS,CAAA;AAElF,EAAA,IAAID,eAAe,EAAE;AACnB,IAAA,IAAKtE,aAAa,CAAuBwE,QAAQ,CAACF,eAAe,CAAC,EAAE;AAClE,MAAA,IAAMG,cAAc,GAAGP,UAAU,IAAIE,6BAA6B,IAAIG,SAAS,CAAA;MAC/E,OAAO;AAAE/D,QAAAA,MAAM,EAAEiE,cAAc;AAAEC,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AAC7D,KAAA;AACA;AACA,IAAA,IAAKpE,qBAAqB,CAAuBsE,QAAQ,CAACF,eAAe,CAAC,EAAE;MAC1E,OAAO;AAAE9D,QAAAA,MAAM,EAAE,MAAM;AAAEkE,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AACrD,KAAA;AACA;AACA,IAAA,IAAKvE,gBAAgB,CAAuByE,QAAQ,CAACF,eAAe,CAAC,EAAE;MACrE,OAAO;AAAE9D,QAAAA,MAAM,EAAE,UAAU;AAAEkE,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AACzD,KAAA;AACA;AACA,IAAA,IAAKrE,cAAc,CAAuBuE,QAAQ,CAACF,eAAe,CAAC,EAAE;MACnE,OAAO;AAAE9D,QAAAA,MAAM,EAAE,UAAU;AAAEkE,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AACzD,KAAA;AACF,GAAA;EAEA,OAAO;AAAE9D,IAAAA,MAAM,EAAE0D,UAAU;AAAEQ,IAAAA,OAAO,EAAEH,SAAAA;GAAW,CAAA;AACnD;;ACrBA,IAAMI,kBAAkB,GAAG1B,MAAM,CAAC2B,IAAI,EAAE;AACtCC,EAAAA,UAAU,EAAE,aAAa;AACzBxD,EAAAA,KAAK,EAAE,kBAAkB;AACzB,EAAA,eAAe,EAAE;AACfyD,IAAAA,mBAAmB,EAAE,aAAA;GACtB;AACDC,EAAAA,QAAQ,EAAE;AACRL,IAAAA,OAAO,EAAE,UAACA,QAAiC,EAAK;AAC9C,MAAA,IAAI,CAACA,QAAO,EAAE,OAAO,EAAE,CAAA;MAEvB,OAAO;AACLM,QAAAA,QAAQ,EAAAhG,GAAAA,CAAAA,MAAA,CAAM0F,QAAO,CAAE;AACvBpE,QAAAA,UAAU,EAAAtB,GAAAA,CAAAA,MAAA,CAAM0F,QAAO,CAAE;QACzBnE,aAAa,EAAA,GAAA,CAAAvB,MAAA,CAAM0F,QAAO,CAAA;OAC3B,CAAA;KACF;AACDlE,IAAAA,MAAM,EAAE;AACNG,MAAAA,OAAO,EAAE;AACPsE,QAAAA,UAAU,EAAE,UAAA;OACb;AACDvE,MAAAA,QAAQ,EAAE;AACRuE,QAAAA,UAAU,EAAE,WAAA;OACb;AACDxE,MAAAA,IAAI,EAAE;AACJwE,QAAAA,UAAU,EAAE,OAAA;AACd,OAAA;AACF,KAAA;GACQ;AACVC,EAAAA,eAAe,EAAE;AACfR,IAAAA,OAAO,EAAE,QAAQ;AACjBlE,IAAAA,MAAM,EAAE,SAAA;AACV,GAAA;AACF,CAAC,CAAC,CAAA;AAQF,IAAM2E,wBAAwB,gBAAGC,aAAa,CAAgC,IAAI,CAAC,CAAA;AACnF,IAAMC,uBAAuB,gBAAGD,aAAa,CAA+B,IAAI,CAAC,CAAA;AACjF,IAAME,qBAAqB,gBAAGF,aAAa,CAA6B,IAAI,CAAC,CAAA;;AAE7E;;AA6BA,IAAMG,cAAc,GAAGZ,kBAAkB,CAACa,SAAS,CAA2C,UAACC,KAAK,EAAEC,GAAG,EAAK;AAC5G,EAAA,IAAMrB,8BAA8B,GAAGsB,UAAU,CAACR,wBAAwB,CAAC,CAAA;AAC3E,EAAA,IAAMf,6BAA6B,GAAGuB,UAAU,CAACN,uBAAuB,CAAC,CAAA;AACzE,EAAA,IAAMO,4BAA4B,GAAGD,UAAU,CAACL,qBAAqB,CAAC,CAAA;AAEtE,EAAA,IAAAO,qBAAA,GAA4B5B,yBAAyB,CACnDwB,KAAK,CAACjF,MAAM,EACZiF,KAAK,CAACf,OAAO,EACbN,6BAA6B,EAC7BC,8BACF,CAAC;IALOK,OAAO,GAAAmB,qBAAA,CAAPnB,OAAO;IAAElE,MAAM,GAAAqF,qBAAA,CAANrF,MAAM,CAAA;EAMvB,IAAMa,KAAK,GAAGoE,KAAK,CAACpE,KAAK,IAAIuE,4BAA4B,IAAIrB,SAAS,CAAA;EAEtE,IAAIuB,OAAO,gBACTxD,GAAA,CAACqC,kBAAkB,EAAAzF,aAAA,CAAAA,aAAA,CAAA;AACjBwG,IAAAA,GAAG,EAAEA,GAAAA;AAAI,GAAA,EACLD,KAAK,CAAA,EAAA,EAAA,EAAA;AACTpE,IAAAA,KAAK,EAAEA,KAAsC;AAC7Cb,IAAAA,MAAM,EAAEA,MAAO;AACfkE,IAAAA,OAAO,EAAEA,OAAAA;AAAQ,GAAA,CAClB,CACF,CAAA;;AAED;EACAoB,OAAO,GAAGL,KAAK,CAACf,OAAO,gBACrBpC,GAAA,CAAC6C,wBAAwB,CAACY,QAAQ,EAAA;IAACC,KAAK,EAAEP,KAAK,CAACf,OAAQ;AAAArC,IAAAA,QAAA,EAAEyD,OAAAA;GAA2C,CAAC,GAEtGA,OACD,CAAA;;AAED;EACAA,OAAO,GAAGL,KAAK,CAACjF,MAAM,gBACpB8B,GAAA,CAAC+C,uBAAuB,CAACU,QAAQ,EAAA;IAACC,KAAK,EAAEP,KAAK,CAACjF,MAAO;AAAA6B,IAAAA,QAAA,EAAEyD,OAAAA;GAA0C,CAAC,GAEnGA,OACD,CAAA;;AAED;EACAA,OAAO,GAAGL,KAAK,CAACpE,KAAK,gBACnBiB,GAAA,CAACgD,qBAAqB,CAACS,QAAQ,EAAA;IAACC,KAAK,EAAEP,KAAK,CAACpE,KAAM;AAAAgB,IAAAA,QAAA,EAAEyD,OAAAA;GAAwC,CAAC,GAE9FA,OACD,CAAA;AAED,EAAA,OAAOA,OAAO,CAAA;AAChB,CAAC,CAAC,CAAA;AAEF,IAAMG,aAAa,GAAG,UAACC,KAAa,EAA4C;EAC9E,OAAOX,cAAc,CAACC,SAAS,CAA2C,UAACC,KAAK,EAAEC,GAAG,EAAK;AACxF,IAAA,oBAAOpD,GAAA,CAACiD,cAAc,EAAArG,aAAA,CAAAA,aAAA,CAAA;AAACwG,MAAAA,GAAG,EAAEA,GAAAA;AAAI,KAAA,EAAKD,KAAK,CAAA,EAAA,EAAA,EAAA;AAAE9B,MAAAA,IAAI,EAAC,SAAS;MAAC,YAAYuC,EAAAA,KAAAA;AAAM,KAAA,CAAE,CAAC,CAAA;AAClF,GAAC,CAAC,CAAA;AACJ,CAAC,CAAA;AAEM,IAAMC,UAAU,GAAG;AACxBvB,EAAAA,IAAI,EAAEW,cAAc;AACpBa,EAAAA,OAAO,EAAEH,aAAa,CAAC,CAAC,CAAC;AACzBI,EAAAA,OAAO,EAAEJ,aAAa,CAAC,CAAC,CAAC;AACzBK,EAAAA,OAAO,EAAEL,aAAa,CAAC,CAAC,CAAC;AACzBM,EAAAA,OAAO,EAAEN,aAAa,CAAC,CAAC,CAAC;AACzBO,EAAAA,OAAO,EAAEP,aAAa,CAAC,CAAC,CAAC;EACzBQ,OAAO,EAAER,aAAa,CAAC,CAAC,CAAA;AAC1B;;ACjJO,SAASS,qBAAqBA,CACnCC,UAA8B,EAAApI,IAAA,EAE3B;EAAA,IAAAC,KAAA,EAAAI,KAAA,EAAAC,KAAA,EAAA+H,KAAA,EAAAC,KAAA,EAAAC,KAAA,CAAA;AAAA,EAAA,IADDC,IAAI,GAAAxI,IAAA,CAAJwI,IAAI;IAAEC,KAAK,GAAAzI,IAAA,CAALyI,KAAK;IAAEC,MAAM,GAAA1I,IAAA,CAAN0I,MAAM;IAAEC,KAAK,GAAA3I,IAAA,CAAL2I,KAAK;IAAEC,IAAI,GAAA5I,IAAA,CAAJ4I,IAAI,CAAA;AAElC,EAAA,QAAQR,UAAU;IAChB,KAAKpH,kBAAkB,CAACO,IAAI;AAC1B,MAAA,OAAA,CAAAtB,KAAA,GAAA,CAAAI,KAAA,GAAA,CAAAC,KAAA,GAAOsI,IAAI,KAAA,IAAA,IAAJA,IAAI,KAAA,KAAA,CAAA,GAAJA,IAAI,GAAID,KAAK,MAAArI,IAAAA,IAAAA,KAAA,KAAAA,KAAAA,CAAAA,GAAAA,KAAA,GAAIoI,MAAM,MAAArI,IAAAA,IAAAA,KAAA,KAAAA,KAAAA,CAAAA,GAAAA,KAAA,GAAIoI,KAAK,MAAAxI,IAAAA,IAAAA,KAAA,KAAAA,KAAAA,CAAAA,GAAAA,KAAA,GAAIuI,IAAI,CAAA;IACjD,KAAKxH,kBAAkB,CAACM,KAAK;MAC3B,OAAA+G,CAAAA,KAAA,IAAAC,KAAA,GAAOK,KAAK,KAALA,IAAAA,IAAAA,KAAK,KAALA,KAAAA,CAAAA,GAAAA,KAAK,GAAID,MAAM,cAAAJ,KAAA,KAAA,KAAA,CAAA,GAAAA,KAAA,GAAIG,KAAK,cAAAJ,KAAA,KAAA,KAAA,CAAA,GAAAA,KAAA,GAAIG,IAAI,CAAA;IACzC,KAAKxH,kBAAkB,CAACK,MAAM;AAC5B,MAAA,OAAA,CAAAkH,KAAA,GAAOG,MAAM,KAAA,IAAA,IAANA,MAAM,KAANA,KAAAA,CAAAA,GAAAA,MAAM,GAAID,KAAK,MAAAF,IAAAA,IAAAA,KAAA,KAAAA,KAAAA,CAAAA,GAAAA,KAAA,GAAIC,IAAI,CAAA;IAChC,KAAKxH,kBAAkB,CAACI,KAAK;AAC3B,MAAA,OAAOqH,KAAK,KAALA,IAAAA,IAAAA,KAAK,KAALA,KAAAA,CAAAA,GAAAA,KAAK,GAAID,IAAI,CAAA;IACtB,KAAKxH,kBAAkB,CAACG,IAAI,CAAA;AAC5B,IAAA;AACE,MAAA,OAAOqH,IAAI,CAAA;AACf,GAAA;AACF;;ACxBO,SAASK,wBAAwBA,GAAuB;AAC7D,EAAA,IAAMxF,KAAK,GAAGyF,QAAQ,EAAE,CAAA;AAExB,EAAA,QAAQ,IAAI;IACV,KAAKzF,KAAK,CAACuF,IAAI;MACb,OAAO5H,kBAAkB,CAACO,IAAI,CAAA;IAChC,KAAK8B,KAAK,CAACsF,KAAK;MACd,OAAO3H,kBAAkB,CAACM,KAAK,CAAA;IACjC,KAAK+B,KAAK,CAACqF,MAAM;MACf,OAAO1H,kBAAkB,CAACK,MAAM,CAAA;IAClC,KAAKgC,KAAK,CAACoF,KAAK;MACd,OAAOzH,kBAAkB,CAACI,KAAK,CAAA;IACjC,KAAKiC,KAAK,CAACmF,IAAI,CAAA;AACf,IAAA;MACE,OAAOxH,kBAAkB,CAACG,IAAI,CAAA;AAClC,GAAA;AACF;;ACdO,SAAS4H,kBAAkBA,CAAIC,MAA6B,EAAK;AACtE,EAAA,IAAMZ,UAAU,GAAGS,wBAAwB,EAAE,CAAA;EAE7C,OAAOI,OAAO,CAAC,YAAM;AACnB,IAAA,OAAOd,qBAAqB,CAACC,UAAU,EAAEY,MAAM,CAAC,CAAA;AAClD,GAAC,EAAE,CAACZ,UAAU,EAAEY,MAAM,CAAC,CAAC,CAAA;AAC1B;;ACJO,SAASE,iBAAiBA,CAACF,MAA8B,EAAa;AAC3E,EAAA,IAAMZ,UAAU,GAAGS,wBAAwB,EAAE,CAAA;AAE7C,EAAA,OAAOV,qBAAqB,CAACC,UAAU,EAAEY,MAAM,CAAC,CAAA;AAClD;;;;"}
@@ -199,7 +199,10 @@ var BreakpointNameEnum = /*#__PURE__*/function (BreakpointNameEnum) {
199
199
  }({});
200
200
  var breakpoints = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, BreakpointNameEnum.BASE, 0), BreakpointNameEnum.SMALL, 480), BreakpointNameEnum.MEDIUM, 768), BreakpointNameEnum.LARGE, 1024), BreakpointNameEnum.WIDE, 1280);
201
201
 
202
+ var HEADING_VARIANTS = ['heading-2xl', 'heading-xl', 'heading-l', 'heading-m', 'heading-s', 'heading-xs', 'heading-2xs'];
202
203
  var BODY_VARIANTS = ['body-xl', 'body-l', 'body-m', 'body-s', 'body-xs'];
204
+ var LABEL_VARIANTS = ['label-xl', 'label-l', 'label-m', 'label-s'];
205
+ var CONTENT_CAPS_VARIANTS = ['content-caps-3xl', 'content-caps-2xl', 'content-caps-xl', 'content-caps-l', 'content-caps-m', 'content-caps-s', 'content-caps-xs'];
203
206
  var GTStandardFaces = {
204
207
  500: {
205
208
  normal: 'GTStandardRegular'
@@ -215,9 +218,10 @@ var size = {
215
218
  'heading-2xl': 56,
216
219
  'heading-xl': 48,
217
220
  'heading-l': 38,
218
- 'heading-m': 24,
219
- 'heading-s': 20,
220
- 'heading-xs': 16,
221
+ 'heading-m': 28,
222
+ 'heading-s': 24,
223
+ 'heading-xs': 20,
224
+ 'heading-2xs': 20,
221
225
  'body-xl': 24,
222
226
  'body-l': 18,
223
227
  'body-m': 16,
@@ -226,24 +230,39 @@ var size = {
226
230
  'label-xl': 18,
227
231
  'label-l': 16,
228
232
  'label-m': 14,
229
- 'label-s': 12
233
+ 'label-s': 12,
234
+ 'content-caps-3xl': 40,
235
+ 'content-caps-2xl': 32,
236
+ 'content-caps-xl': 24,
237
+ 'content-caps-l': 18,
238
+ 'content-caps-m': 16,
239
+ 'content-caps-s': 14,
240
+ 'content-caps-xs': 12
230
241
  };
231
242
  var lineHeight = {
232
243
  'heading-2xl': 64,
233
244
  'heading-xl': 56,
234
- 'heading-l': 48,
245
+ 'heading-l': 44,
235
246
  'heading-m': 32,
236
- 'heading-s': 20,
237
- 'heading-xs': 18,
247
+ 'heading-s': 28,
248
+ 'heading-xs': 24,
249
+ 'heading-2xs': 20,
238
250
  'body-xl': 32,
239
251
  'body-l': 26,
240
252
  'body-m': 24,
241
253
  'body-s': 20,
242
254
  'body-xs': 16,
243
255
  'label-xl': 26,
244
- 'label-l': 24,
245
- 'label-m': 20,
246
- 'label-s': 16
256
+ 'label-l': 20,
257
+ 'label-m': 18,
258
+ 'label-s': 14,
259
+ 'content-caps-3xl': 40,
260
+ 'content-caps-2xl': 40,
261
+ 'content-caps-xl': 28,
262
+ 'content-caps-l': 20,
263
+ 'content-caps-m': 18,
264
+ 'content-caps-s': 16,
265
+ 'content-caps-xs': 14
247
266
  };
248
267
  var letterSpacing = {
249
268
  'heading-2xl': 0,
@@ -252,6 +271,7 @@ var letterSpacing = {
252
271
  'heading-m': 0,
253
272
  'heading-s': 0,
254
273
  'heading-xs': 0,
274
+ 'heading-2xs': 0,
255
275
  'body-xl': 0.3,
256
276
  'body-l': 0.3,
257
277
  'body-m': 0.3,
@@ -260,7 +280,14 @@ var letterSpacing = {
260
280
  'label-xl': 0,
261
281
  'label-l': 0,
262
282
  'label-m': 0,
263
- 'label-s': 0
283
+ 'label-s': 0,
284
+ 'content-caps-3xl': 0,
285
+ 'content-caps-2xl': 0,
286
+ 'content-caps-xl': 0,
287
+ 'content-caps-l': 0,
288
+ 'content-caps-m': 0,
289
+ 'content-caps-s': 0,
290
+ 'content-caps-xs': 0
264
291
  };
265
292
  var weight = {
266
293
  bold: '700',
@@ -418,10 +445,27 @@ function getVariantAndWeightValues(weightProp, variantProp, typographyWeightAnce
418
445
  variant: computedVariant
419
446
  };
420
447
  }
421
- return {
422
- weight: 'semibold',
423
- variant: computedVariant
424
- };
448
+ // Content Caps variant have fixed weights so we override any provided weight
449
+ if (CONTENT_CAPS_VARIANTS.includes(computedVariant)) {
450
+ return {
451
+ weight: 'bold',
452
+ variant: computedVariant
453
+ };
454
+ }
455
+ // Heading variants have fixed weights so we override any provided weight
456
+ if (HEADING_VARIANTS.includes(computedVariant)) {
457
+ return {
458
+ weight: 'semibold',
459
+ variant: computedVariant
460
+ };
461
+ }
462
+ // Label variants have fixed weights so we override any provided weight
463
+ if (LABEL_VARIANTS.includes(computedVariant)) {
464
+ return {
465
+ weight: 'semibold',
466
+ variant: computedVariant
467
+ };
468
+ }
425
469
  }
426
470
  return {
427
471
  weight: weightProp,
@@ -429,9 +473,6 @@ function getVariantAndWeightValues(weightProp, variantProp, typographyWeightAnce
429
473
  };
430
474
  }
431
475
 
432
- var TypographyVariantContext = /*#__PURE__*/createContext(null);
433
- var TypographyWeightContext = /*#__PURE__*/createContext(null);
434
- var TypograhyColorContext = /*#__PURE__*/createContext(null);
435
476
  var InternalTypography = styled(Text, {
436
477
  fontFamily: '$GTStandard',
437
478
  color: '$content.base.hi',
@@ -464,12 +505,13 @@ var InternalTypography = styled(Text, {
464
505
  weight: 'regular'
465
506
  }
466
507
  });
467
-
468
- // Create a type for color props that matches strings containing '$content.'
508
+ var TypographyVariantContext = /*#__PURE__*/createContext(null);
509
+ var TypographyWeightContext = /*#__PURE__*/createContext(null);
510
+ var TypograhyColorContext = /*#__PURE__*/createContext(null);
469
511
 
470
512
  // Remove font-related style props from InternalTypography Props
471
513
 
472
- var TypographyText = InternalTypography.styleable(function (props, ref) {
514
+ var TypographyBase = InternalTypography.styleable(function (props, ref) {
473
515
  var typographyVariantAncestorValue = useContext(TypographyVariantContext);
474
516
  var typographyWeightAncestorValue = useContext(TypographyWeightContext);
475
517
  var typographyColorAncestorValue = useContext(TypograhyColorContext);
@@ -484,31 +526,44 @@ var TypographyText = InternalTypography.styleable(function (props, ref) {
484
526
  weight: weight,
485
527
  variant: variant
486
528
  }));
487
- content = props.variant ?
488
- /*#__PURE__*/
529
+
489
530
  // If a variant is provided, we set it in the context for children to be able to inherit variant value
490
- jsx(TypographyVariantContext.Provider, {
531
+ content = props.variant ? /*#__PURE__*/jsx(TypographyVariantContext.Provider, {
491
532
  value: props.variant,
492
533
  children: content
493
534
  }) : content;
494
- content = props.weight ?
495
- /*#__PURE__*/
535
+
496
536
  // If a weight is provided, we set it in the context for children to be able to inherit weight value
497
- jsx(TypographyWeightContext.Provider, {
537
+ content = props.weight ? /*#__PURE__*/jsx(TypographyWeightContext.Provider, {
498
538
  value: props.weight,
499
539
  children: content
500
540
  }) : content;
501
- content = props.color ?
502
- /*#__PURE__*/
541
+
503
542
  // If a color is provided, we set it in the context for children to be able to inherit color value
504
- jsx(TypograhyColorContext.Provider, {
543
+ content = props.color ? /*#__PURE__*/jsx(TypograhyColorContext.Provider, {
505
544
  value: props.color,
506
545
  children: content
507
546
  }) : content;
508
547
  return content;
509
548
  });
549
+ var createHeading = function (level) {
550
+ return TypographyBase.styleable(function (props, ref) {
551
+ return /*#__PURE__*/jsx(TypographyBase, _objectSpread(_objectSpread({
552
+ ref: ref
553
+ }, props), {}, {
554
+ role: "heading",
555
+ "aria-level": level
556
+ }));
557
+ });
558
+ };
510
559
  var Typography = {
511
- Text: TypographyText
560
+ Text: TypographyBase,
561
+ Header1: createHeading(1),
562
+ Header2: createHeading(2),
563
+ Header3: createHeading(3),
564
+ Header4: createHeading(4),
565
+ Header5: createHeading(5),
566
+ Header6: createHeading(6)
512
567
  };
513
568
 
514
569
  function getValueForBreakpoint(breakpoint, _ref) {