@ornikar/bumper 3.0.3 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/definitions/shared/storybook/StoryTitle.d.ts +2 -2
- package/dist/definitions/system/content/typography/Typography.d.ts +57 -15
- package/dist/definitions/system/content/typography/Typography.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/TypographyLink.d.ts +12 -4
- package/dist/definitions/system/content/typography/TypographyLink.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/index.d.ts +10 -16
- package/dist/definitions/system/content/typography/index.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/utils/getVariantAndWeightValues.d.ts +2 -2
- package/dist/definitions/system/content/typography/utils/getVariantAndWeightValues.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/utils/typographyContext.d.ts +2 -2
- package/dist/definitions/system/content/typography/utils/typographyContext.d.ts.map +1 -1
- package/dist/definitions/system/dataDisplays/Badge/Badge.d.ts +3 -3
- package/dist/definitions/system/dataDisplays/Badge/Badge.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +22 -19
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +22 -19
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.22.cjs.js +26 -18
- package/dist/index-node-22.22.cjs.js.map +1 -1
- package/dist/index-node-22.22.cjs.web.js +26 -18
- package/dist/index-node-22.22.cjs.web.js.map +1 -1
- package/dist/index-node-22.22.es.mjs +27 -19
- package/dist/index-node-22.22.es.mjs.map +1 -1
- package/dist/index-node-22.22.es.web.mjs +27 -19
- package/dist/index-node-22.22.es.web.mjs.map +1 -1
- package/dist/index.es.js +22 -19
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +22 -19
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/shared/storybook/StoryTitle.tsx +2 -2
- package/src/system/content/typography/Typography.tsx +38 -43
- package/src/system/content/typography/TypographyLink.features.stories.tsx +12 -10
- package/src/system/content/typography/TypographyLink.stories.tsx +3 -1
- package/src/system/content/typography/TypographyLink.tsx +16 -4
- package/src/system/content/typography/utils/getVariantAndWeightValues.tsx +2 -2
- package/src/system/content/typography/utils/typographyContext.ts +2 -2
- package/src/system/dataDisplays/Badge/Badge.tsx +18 -16
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-node-22.22.cjs.web.js","sources":["../src/system/core/tokens/palettes/deepPurpleColorPalette.ts","../src/system/core/themes/light/light.ts","../src/system/core/tokens/GTStandardFont.ts","../src/system/core/tokens/GTStandardNarrowFont.ts","../src/system/core/tokens/breakpoints.ts","../src/system/core/tokens/bumperIcon.ts","../src/system/core/tokens/radius.ts","../src/system/core/tokens/size.ts","../src/system/core/tokens/space.ts","../src/tamagui.config.ts","../src/system/core/provider/BumperProvider.tsx","../src/system/core/primitives/Center.ts","../src/system/core/primitives/Pressable.tsx","../src/system/core/primitives/Stack.tsx","../src/system/content/typography/utils/getVariantAndWeightValues.tsx","../src/system/content/typography/utils/typographyContext.ts","../src/system/content/typography/Typography.tsx","../src/system/content/icon/Icon.tsx","../src/system/content/typography/TypographyView.tsx","../src/system/content/typography/TypographyIcon.tsx","../src/system/content/typography/TypographyLink.tsx","../src/system/content/typography/index.ts","../src/system/dataDisplays/Badge/Badge.tsx","../src/system/core/breakpoints/utils/breakpointsUtils.ts","../src/system/core/breakpoints/hooks/useCurrentBreakpointName.ts","../src/system/core/breakpoints/hooks/useBreakpointValue.ts","../src/system/core/breakpoints/SwitchBreakpoins.tsx","../src/system/loading/loader/loaderConfig.ts","../src/system/loading/loader/LoaderBackgroundCircle.tsx","../src/system/loading/loader/LoaderCircleWrapper.tsx","../src/system/loading/loader/LoaderForegroundCircle.tsx","../src/system/loading/loader/Loader.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","// WARNING\n// If you modify this theme, don't forget to update the theme in @ornikar/kitt-universal as well\n\nimport { deepPurpleColorPalette } from '../../tokens/palettes/deepPurpleColorPalette';\nimport type { Theme } from '../themes';\n\n// https://github.com/ornikar/kitt/blob/79e367e962c957c016c4df67dbcf515c8f45ff0e/@ornikar/kitt-universal/src/themes/late-ocean/colors.ts#L28\nexport const light: Theme = {\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 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-l', 'label-m', 'label-s'] as const;\n\nexport type GTStandardVariants =\n | (typeof HEADING_VARIANTS)[number]\n | (typeof BODY_VARIANTS)[number]\n | (typeof LABEL_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\nexport const GTStandardFaces: Record<GTStandardFontWeight, Record<string, string>> = {\n 500: { normal: 'GTStandardRegular' },\n 600: { normal: 'GTStandardSemibold' },\n 700: { normal: 'GTStandardBold' },\n};\n\nexport const GTStandardSizes: Record<GTStandardVariants, 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': 16,\n 'body-xl': 24,\n 'body-l': 18,\n 'body-m': 16,\n 'body-s': 14,\n 'body-xs': 12,\n 'label-l': 16,\n 'label-m': 14,\n 'label-s': 12,\n};\n\nexport const GTStandardLineHeights: Record<GTStandardVariants, 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-l': 20,\n 'label-m': 18,\n 'label-s': 14,\n};\n\nexport const GTStandardLetterSpacings: Record<GTStandardVariants, 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-l': 0,\n 'label-m': 0,\n 'label-s': 0,\n};\n\nexport const GTStandardWeights: Record<string, GTStandardFontWeight> = {\n bold: '700',\n semibold: '600',\n regular: '500',\n};\n","export 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;\n\nexport type ContentCapsVariants = (typeof CONTENT_CAPS_VARIANTS)[number];\n\nexport type GTStandardNarrowFontWeight = '700';\n\nexport const GTStandardNarrowFaces: Record<GTStandardNarrowFontWeight, Record<string, string>> = {\n 700: { normal: 'GTStandardNarrowBold' },\n};\n\nexport const GTStandardNarrowSizes: Record<ContentCapsVariants, number> = {\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\nexport const GTStandardNarrowLineHeights: Record<ContentCapsVariants, number> = {\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\nexport const GTStandardNarrowLetterSpacings: Record<ContentCapsVariants, number> = {\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\nexport const GTStandardNarrowWeights: Record<string, GTStandardNarrowFontWeight> = {\n bold: '700',\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 type { GetTokenString, TamaguiConfig } from '@tamagui/core';\nimport { px } from '@tamagui/core';\n\nexport const bumperIconTokens = {\n 'icon.s': px(16),\n 'icon.m': px(20),\n 'icon.l': px(24),\n};\n\nexport type BumperIconTokens = GetTokenString<keyof TamaguiConfig['tokens']['bumperIcon']>;\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 { createFont, createTamagui, createTokens } from '@tamagui/core';\nimport { light } from './system/core/themes/light/light';\nimport {\n GTStandardFaces,\n GTStandardLetterSpacings,\n GTStandardLineHeights,\n GTStandardSizes,\n GTStandardWeights,\n} from './system/core/tokens/GTStandardFont';\nimport {\n GTStandardNarrowFaces,\n GTStandardNarrowLetterSpacings,\n GTStandardNarrowLineHeights,\n GTStandardNarrowSizes,\n GTStandardNarrowWeights,\n} from './system/core/tokens/GTStandardNarrowFont';\nimport { BreakpointNameEnum, breakpoints } from './system/core/tokens/breakpoints';\nimport { bumperIconTokens } from './system/core/tokens/bumperIcon';\nimport { radiusTokens } from './system/core/tokens/radius';\nimport { sizeTokens } from './system/core/tokens/size';\nimport { spaceTokens } from './system/core/tokens/space';\n\nexport const GTStandardFont = createFont({\n family: 'GTStandard',\n size: GTStandardSizes,\n lineHeight: GTStandardLineHeights,\n letterSpacing: GTStandardLetterSpacings,\n weight: GTStandardWeights,\n face: GTStandardFaces,\n});\n\nexport const GTStandardNarrowFont = createFont({\n family: 'GTStandardNarrow',\n size: GTStandardNarrowSizes,\n lineHeight: GTStandardNarrowLineHeights,\n letterSpacing: GTStandardNarrowLetterSpacings,\n weight: GTStandardNarrowWeights,\n face: GTStandardNarrowFaces,\n});\n\nconst tokens = createTokens({\n color: {},\n space: spaceTokens,\n size: sizeTokens,\n radius: radiusTokens,\n bumperIcon: bumperIconTokens,\n});\n\nexport const config = createTamagui({\n tokens,\n fonts: {\n GTStandard: GTStandardFont,\n GTStandardNarrow: GTStandardNarrowFont,\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 { styled } from '@tamagui/core';\nimport type { ViewProps } from './View';\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 { styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport type { Except } from 'type-fest';\nimport { View } from './View';\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 */\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 { BODY_VARIANTS, HEADING_VARIANTS, LABEL_VARIANTS } from '../../../core/tokens/GTStandardFont';\nimport { CONTENT_CAPS_VARIANTS } from '../../../core/tokens/GTStandardNarrowFont';\nimport type { FontVariants } from '../../../core/tokens/fonts';\nimport type { InternalTypographyProps, TypographyTextProps } from '../Typography';\nimport type { TypographyVariantContextValue, TypographyWeightContextValue } from './typographyContext';\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 { createContext, useContext } from 'react';\nimport type { FontVariants } from '../../../core/tokens/fonts';\nimport type { TypographyTextProps } from '../Typography';\n\nexport type TypographyVariantContextValue = FontVariants | null;\nexport type TypographyWeightContextValue = 'regular' | 'bold' | 'semibold' | null;\nexport type TypograhyColorContextValue = TypographyTextProps['color'] | null;\ntype TypographyContextValue = boolean;\n\nexport const TypographyVariantContext = createContext<TypographyVariantContextValue>(null);\nexport const TypographyWeightContext = createContext<TypographyWeightContextValue>(null);\nexport const TypograhyColorContext = createContext<TypograhyColorContextValue>(null);\nexport const TypographyContext = createContext<boolean>(false);\n\nexport const useTypographyColor = (): TypograhyColorContextValue => {\n return useContext(TypograhyColorContext);\n};\n\nexport const useTypographyVariant = (): TypographyVariantContextValue => {\n return useContext(TypographyVariantContext);\n};\n\nexport const useTypographyWeight = (): TypographyWeightContextValue => {\n return useContext(TypographyWeightContext);\n};\n\nexport const useTypographyContext = (): TypographyContextValue => {\n return useContext(TypographyContext);\n};\n","import type { ColorTokens, GetProps, TamaguiComponent } from '@tamagui/core';\nimport { Text, styled } from '@tamagui/core';\nimport { type Except } from 'type-fest';\nimport type { BodyFontVariants, HeadingFontVariants, LabelFontVariants } from '../../core/tokens/GTStandardFont';\nimport { CONTENT_CAPS_VARIANTS, type ContentCapsVariants } from '../../core/tokens/GTStandardNarrowFont';\nimport type { FontVariants } from '../../core/tokens/fonts';\nimport type { TamaguiMediaProps } from '../../types';\nimport { getVariantAndWeightValues } from './utils/getVariantAndWeightValues';\nimport {\n TypograhyColorContext,\n TypographyContext,\n TypographyVariantContext,\n TypographyWeightContext,\n useTypographyColor,\n useTypographyContext,\n useTypographyVariant,\n useTypographyWeight,\n} from './utils/typographyContext';\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 const isContentCapsVariant = (CONTENT_CAPS_VARIANTS as readonly string[]).includes(variant);\n\n return {\n fontFamily: isContentCapsVariant ? '$GTStandardNarrow' : '$GTStandard',\n textTransform: isContentCapsVariant ? 'uppercase' : undefined,\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// Remove font-related style props from InternalTypography Props\ntype TypographyExcludedFontStyleProps =\n | 'fontFamily'\n | 'fontSize'\n | 'lineHeight'\n | 'fontStyle'\n | 'fontVariant'\n | 'fontWeight'\n | 'color';\n\ntype TypographyPropsWithoutFontStyleProps = Except<InternalTypographyProps, TypographyExcludedFontStyleProps> & {\n color?: ColorTokens;\n};\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 | TamaguiMediaProps<BodyProps>\n | TamaguiMediaProps<HeadingLabelProps>\n | TamaguiMediaProps<ContentCapsProps>;\n\nexport const TypographyBase = InternalTypography.styleable<TypographyTextProps, TypographyTextProps>((props, ref) => {\n const typographyVariantAncestorValue = useTypographyVariant();\n const typographyWeightAncestorValue = useTypographyWeight();\n const typographyColorAncestorValue = useTypographyColor();\n const typographyContext = useTypographyContext();\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 } : undefined)}\n {...(weight ? { weight } : undefined)}\n {...(variant ? { variant } : undefined)}\n />\n );\n\n content = typographyContext ? content : <TypographyContext.Provider value>{content}</TypographyContext.Provider>;\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\nexport const 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","import type { ColorTokens, GetProps } from '@tamagui/core';\nimport { styled, useStyle } from '@tamagui/core';\nimport type { ReactElement, ReactNode } from 'react';\nimport { cloneElement } from 'react';\nimport { View } from '../../core/primitives/View';\nimport type { BumperIconTokens } from '../../core/tokens/bumperIcon';\nimport type { TamaguiMediaProps } from '../../types';\n\nconst IconContainer = styled(View, {\n name: 'Icon',\n variants: {\n size: (iconSize: BumperIconTokens, { tokens }) => {\n return {\n width: tokens.bumperIcon[iconSize],\n height: tokens.bumperIcon[iconSize],\n };\n },\n } as const,\n});\n\ntype IconContainerProps = GetProps<typeof IconContainer>;\n\ninterface IconElementProps {\n color?: ColorTokens;\n}\n\ninterface InternalIconProps {\n icon: ReactElement<IconElementProps>;\n color?: ColorTokens;\n size?: IconContainerProps['size'];\n testID?: IconContainerProps['testID'];\n /** @ignore */\n alignSelf?: IconContainerProps['alignSelf'];\n}\n\nexport type IconProps = TamaguiMediaProps<InternalIconProps>;\n\nexport function Icon({ icon, color = '$content.base.hi', size = '$icon.m', testID, alignSelf }: IconProps): ReactNode {\n const style = useStyle({ color });\n\n const clonedIcon = cloneElement(icon, { color: style.color });\n\n return (\n <IconContainer size={size} testID={testID} alignSelf={alignSelf}>\n {clonedIcon}\n </IconContainer>\n );\n}\n","import type { GetProps } from '@tamagui/core';\nimport { styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { View } from '../../core/primitives/View';\nimport { useTypographyContext } from './utils/typographyContext';\n\nconst InternalTypographyView = styled(View, {\n name: 'TypographyView',\n});\n\ntype TypographyViewProps = GetProps<typeof InternalTypographyView>;\n\n/**\n *\n * A wrapper component that applies typography styles to its children in order to maintain consistent style between web and native\n * In native, it simply renders a View as it renders correctly by default\n * In web, it ensures that the display is set to inline-flex when inside a Typography context\n *\n * React Native Web includes this implementation in its codebase\n * but Tamagui does not use React Native Webview, we need to implement it ourselves\n *\n * Inside a Typography component, always use TypographyView to wrap external components like Icon or Svg\n */\nexport function TypographyView(props: TypographyViewProps): ReactNode {\n const isInTypographyContext = useTypographyContext();\n\n return (\n <InternalTypographyView\n {...props}\n $platform-web={\n isInTypographyContext ? { ...props['$platform-web'], display: 'inline-flex' } : props['$platform-web']\n }\n />\n );\n}\n","import { type ReactNode } from 'react';\nimport type { Except } from 'type-fest';\nimport type { IconProps } from '../icon/Icon';\nimport { Icon } from '../icon/Icon';\nimport type { TypographyTextProps } from './Typography';\nimport { TypographyView } from './TypographyView';\nimport { useTypographyColor } from './utils/typographyContext';\n\nexport interface TypographyIconProps extends Except<IconProps, 'color'> {\n color?: TypographyTextProps['color'];\n}\n\nfunction TypographyIconInternal(props: TypographyIconProps): ReactNode {\n return (\n <TypographyView>\n <Icon {...props} />\n </TypographyView>\n );\n}\n\nfunction TypographyIconInheritColor(props: TypographyIconProps): ReactNode {\n const typographyColorAncestorValue = useTypographyColor();\n\n return <TypographyIconInternal color={typographyColorAncestorValue || undefined} {...props} />;\n}\n\nexport function TypographyIcon({ color, ...props }: TypographyIconProps): ReactNode {\n if (color) {\n return <TypographyIconInternal color={color} {...props} />;\n }\n\n return <TypographyIconInheritColor {...props} />;\n}\n","import type { GetProps } from '@tamagui/core';\nimport { styled } from '@tamagui/core';\nimport { TypographyBase } from './Typography';\n\nexport const TypographyLink = styled(TypographyBase, {\n name: 'TypographyLink',\n role: 'link',\n variants: {\n disabled: {\n true: {\n cursor: 'not-allowed',\n onPress: undefined,\n color: '$content.disabled',\n hoverStyle: undefined,\n },\n false: {\n cursor: 'pointer',\n hoverStyle: {\n textDecorationLine: 'none',\n },\n },\n },\n noUnderline: {\n true: {\n textDecorationLine: 'none',\n },\n false: {\n textDecorationLine: 'underline',\n },\n },\n } as const,\n defaultVariants: {\n disabled: false,\n noUnderline: false,\n },\n});\n\nexport type TypographyLinkProps = GetProps<typeof TypographyLink>;\n","import { TypographyBase, createHeading } from './Typography';\nimport { TypographyIcon } from './TypographyIcon';\nimport { TypographyLink } from './TypographyLink';\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 Icon: TypographyIcon,\n Link: TypographyLink,\n};\n","import { styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { Typography } from '../../content/typography';\nimport { Center } from '../../core/primitives/Center';\nimport type { TamaguiMediaProps } from '../../types';\n\nconst DOT_SIZE = 8;\nconst MIN_COUNT_WIDTH = 16;\n\nconst BadgeBase = styled(Center, {\n borderRadius: '$radius.circle',\n backgroundColor: '$bg.danger.hi',\n});\n\nconst BadgeDot = styled(BadgeBase, {\n width: DOT_SIZE,\n height: DOT_SIZE,\n});\n\nconst BadgeCount = styled(BadgeBase, {\n alignSelf: 'flex-start',\n minWidth: MIN_COUNT_WIDTH,\n minHeight: MIN_COUNT_WIDTH,\n paddingHorizontal: '$space.4',\n});\n\nexport interface InternalBadgeProps {\n /** The count to display. If undefined, it renders as a dot. */\n count?: number;\n /**\n * Maximum count to display. Shows \"{max}+\" when count exceeds max.\n * @default 9\n */\n maxCount?: number;\n}\n\nexport type BadgeProps = TamaguiMediaProps<InternalBadgeProps>;\n\nexport function Badge({ count, maxCount = 9 }: BadgeProps): ReactNode {\n if (count === undefined) {\n return <BadgeDot />;\n }\n\n const displayCount = count > maxCount ? `${maxCount}+` : `${count}`;\n\n return (\n <BadgeCount>\n <Typography.Text\n variant=\"content-caps-xs\"\n weight=\"bold\"\n color=\"$content.base.onContrasted.hi\"\n // Adjust the line-height of the component\n paddingBottom={1}\n >\n {displayCount}\n </Typography.Text>\n </BadgeCount>\n );\n}\n","import { BreakpointNameEnum } from '../../tokens/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 '../../tokens/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","import { Easing } from 'react-native-reanimated';\n\nexport type LoaderSize = 'icon' | 'page';\ninterface LoaderConfig {\n size: number;\n strokeWidth: number;\n center: number;\n radius: number;\n circumference: number;\n viewBox: string;\n}\n\nfunction createLoaderSizeConfig(size: number, strokeWidth: number): LoaderConfig {\n const center = size / 2;\n const radius = center - strokeWidth;\n const circumference = 2 * Math.PI * radius;\n\n return {\n size,\n strokeWidth,\n center,\n radius,\n circumference,\n viewBox: `0 0 ${size} ${size}`,\n };\n}\n\nexport const LOADER_SIZE_CONFIG: Record<LoaderSize, LoaderConfig> = {\n icon: createLoaderSizeConfig(20, 1.5),\n page: createLoaderSizeConfig(48, 3),\n};\n\nexport const LOADER_ANIMATION = {\n duration: 2000,\n easing: Easing.inOut(Easing.ease),\n};\n","import { styled } from '@tamagui/core';\nimport { Circle } from 'react-native-svg';\nimport { LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst { icon, page } = LOADER_SIZE_CONFIG;\n\nexport const LoaderBackgroundCircle = styled(Circle, {\n fill: 'none',\n variants: {\n size: {\n icon: { strokeWidth: icon.strokeWidth, cx: icon.center, cy: icon.center, r: icon.radius },\n page: { strokeWidth: page.strokeWidth, cx: page.center, cy: page.center, r: page.radius },\n },\n } as const,\n});\n","import { styled } from '@tamagui/core';\nimport Svg from 'react-native-svg';\nimport { LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst { icon, page } = LOADER_SIZE_CONFIG;\n\nexport const LoaderCircleWrapper = styled(Svg, {\n variants: {\n size: {\n icon: { width: icon.size, height: icon.size, viewBox: icon.viewBox },\n page: { width: page.size, height: page.size, viewBox: page.viewBox },\n },\n isForeground: {\n true: {\n position: 'absolute',\n },\n },\n } as const,\n});\n","import type { ReactNode } from 'react';\nimport type { SharedValue } from 'react-native-reanimated';\nimport Animated, { useAnimatedProps } from 'react-native-reanimated';\nimport { Circle } from 'react-native-svg';\nimport type { LoaderSize } from './loaderConfig';\nimport { LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst AnimatedCircle = Animated.createAnimatedComponent(Circle);\n\ninterface LoaderForegroundCircleProps {\n color: string;\n size: LoaderSize;\n progress: SharedValue<number>;\n}\n\nexport function LoaderForegroundCircle({ color, size, progress }: LoaderForegroundCircleProps): ReactNode {\n const { center, radius, circumference, strokeWidth } = LOADER_SIZE_CONFIG[size];\n\n const animatedProps = useAnimatedProps(\n () => ({\n strokeDashoffset: circumference - 2 * circumference * progress.value,\n }),\n [circumference, progress],\n );\n\n return (\n <AnimatedCircle\n cx={center}\n cy={center}\n r={radius}\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n fill=\"none\"\n strokeDasharray={circumference}\n animatedProps={animatedProps}\n />\n );\n}\n","import { styled, useStyle } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { useEffect } from 'react';\nimport { useSharedValue, withRepeat, withTiming } from 'react-native-reanimated';\nimport { View } from '../../core/primitives/View';\nimport type { TamaguiMediaProps } from '../../types';\nimport { LoaderBackgroundCircle } from './LoaderBackgroundCircle';\nimport { LoaderCircleWrapper } from './LoaderCircleWrapper';\nimport { LoaderForegroundCircle } from './LoaderForegroundCircle';\nimport type { LoaderSize } from './loaderConfig';\nimport { LOADER_ANIMATION, LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst { icon, page } = LOADER_SIZE_CONFIG;\n\nconst LoaderContainer = styled(View, {\n name: 'Loader',\n position: 'relative',\n rotate: '-90deg',\n variants: {\n size: {\n icon: { width: icon.size, height: icon.size },\n page: { width: page.size, height: page.size },\n },\n } as const,\n});\n\ninterface InternalLoaderProps {\n /** The size of the loader. `'icon'` renders a small 20px loader, `'page'` renders a larger 48px loader.\n * @default 'page'\n * */\n size?: LoaderSize;\n /** Whether the loader is displayed on a contrasted (dark) background. When `true`, uses a high-contrast foreground color.\n * @default false\n * */\n isOnContrasted?: boolean;\n /** Test ID passed to the root container for testing purposes. */\n testID?: string;\n}\n\nexport type LoaderProps = TamaguiMediaProps<InternalLoaderProps>;\n\nexport function Loader({ size = 'page', isOnContrasted = false, testID }: LoaderProps): ReactNode {\n const backgroundStyle = useStyle({ color: '$border.base.mid' });\n const foregroundStyle = useStyle({\n color: isOnContrasted ? '$border.base.onContrasted.hi' : '$content.accent',\n });\n\n const progress = useSharedValue(0);\n\n useEffect(() => {\n progress.value = withRepeat(withTiming(1, LOADER_ANIMATION), -1, false);\n }, [progress]);\n\n return (\n <LoaderContainer size={size} testID={testID}>\n <LoaderCircleWrapper size={size}>\n <LoaderBackgroundCircle size={size} stroke={backgroundStyle.color} />\n </LoaderCircleWrapper>\n\n <LoaderCircleWrapper isForeground size={size}>\n <LoaderForegroundCircle color={String(foregroundStyle.color)} size={size} progress={progress} />\n </LoaderCircleWrapper>\n </LoaderContainer>\n );\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","colorName","map","scaleNumber","colorValue","deepPurpleColorPalette","white","black","transparent","light","HEADING_VARIANTS","BODY_VARIANTS","LABEL_VARIANTS","GTStandardFaces","normal","GTStandardSizes","GTStandardLineHeights","GTStandardLetterSpacings","GTStandardWeights","bold","semibold","regular","CONTENT_CAPS_VARIANTS","GTStandardNarrowFaces","GTStandardNarrowSizes","GTStandardNarrowLineHeights","GTStandardNarrowLetterSpacings","GTStandardNarrowWeights","BreakpointNameEnum","breakpoints","BASE","SMALL","MEDIUM","LARGE","WIDE","bumperIconTokens","px","radiusTokens","sizeTokens","spaceTokens","GTStandardFont","createFont","family","size","lineHeight","letterSpacing","weight","face","GTStandardNarrowFont","tokens","createTokens","color","space","radius","bumperIcon","config","createTamagui","fonts","GTStandard","GTStandardNarrow","themes","media","minWidth","settings","allowedStyleValues","disableSSR","styleCompat","autocompleteSpecificTokens","debug","BumperProvider","children","_jsx","TamaguiProvider","defaultTheme","Center","styled","View","justifyContent","alignItems","Pressable","as","rest","Component","name","role","cursor","HStack","Stack","flexDirection","VStack","getVariantAndWeightValues","weightProp","variantProp","typographyWeightAncestorValue","typographyVariantAncestorValue","computedVariant","undefined","includes","computedWeight","variant","TypographyVariantContext","createContext","TypographyWeightContext","TypograhyColorContext","TypographyContext","useTypographyColor","useContext","useTypographyVariant","useTypographyWeight","useTypographyContext","InternalTypography","Text","fontFamily","WebkitFontSmoothing","variants","isContentCapsVariant","textTransform","fontSize","fontWeight","defaultVariants","TypographyBase","styleable","props","ref","typographyColorAncestorValue","typographyContext","content","Provider","value","createHeading","level","IconContainer","iconSize","width","height","Icon","icon","testID","alignSelf","style","useStyle","clonedIcon","cloneElement","InternalTypographyView","TypographyView","isInTypographyContext","display","TypographyIconInternal","TypographyIconInheritColor","TypographyIcon","TypographyLink","disabled","true","onPress","hoverStyle","false","textDecorationLine","noUnderline","Typography","Header1","Header2","Header3","Header4","Header5","Header6","Link","DOT_SIZE","MIN_COUNT_WIDTH","BadgeBase","borderRadius","backgroundColor","BadgeDot","BadgeCount","minHeight","paddingHorizontal","Badge","count","maxCount","displayCount","paddingBottom","getValueForBreakpoint","breakpoint","base","small","medium","large","wide","useCurrentBreakpointName","useMedia","useBreakpointValue","values","useMemo","SwitchBreakpoints","createLoaderSizeConfig","strokeWidth","center","circumference","Math","PI","viewBox","LOADER_SIZE_CONFIG","page","LOADER_ANIMATION","duration","easing","Easing","inOut","ease","LoaderBackgroundCircle","Circle","fill","cx","cy","r","LoaderCircleWrapper","Svg","isForeground","position","AnimatedCircle","Animated","createAnimatedComponent","LoaderForegroundCircle","progress","animatedProps","useAnimatedProps","strokeDashoffset","stroke","strokeLinecap","strokeDasharray","LoaderContainer","rotate","Loader","isOnContrasted","backgroundStyle","foregroundStyle","useSharedValue","useEffect","withRepeat","withTiming","_jsxs","String"],"mappings":";;;;;;;;;;;;;;;;;;AA4CA,MAAMA,gBAAgB,GAAqDC,UAAa,IAAQA,UAAU,CAAA;;AAE1G;AACA;AACO,MAAMC,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,MAAMkB,4BAA4B,GAAGA,MAAwB;AAC3D,EAAA,OAAOC,MAAM,CAACC,WAAW,CACvBD,MAAM,CAACE,OAAO,CAACnB,WAAW,CAAC,CAACoB,OAAO,CAAC,CAAC,CAACC,SAAS,EAAEtB,UAAU,CAAC,KAAK;AAC/D,IAAA,OAAOkB,MAAM,CAACE,OAAO,CAACpB,UAAU,CAAC,CAACuB,GAAG,CAAC,CAAC,CAACC,WAAW,EAAEC,UAAU,CAAC,KAAK;MACnE,OAAO,CAAC,GAAGH,SAAS,CAAA,CAAA,EAAIE,WAAW,CAAE,CAAA,EAAEC,UAAU,CAAC,CAAA;AACpD,KAAC,CAAC,CAAA;AACJ,GAAC,CACH,CAAC,CAAA;AACH,CAAC,CAAA;AAEM,MAAMC,sBAAsB,GAAG;EACpC,GAAGT,4BAA4B,EAAE;AACjCU,EAAAA,KAAK,EAAE,SAAS;AAChBC,EAAAA,KAAK,EAAE,SAAS;AAChBC,EAAAA,WAAW,EAAE,aAAA;AACf,CAAC;;AC3JD;AAMA;AACO,MAAMC,KAAY,GAAG;AAC1B;AACA,EAAA,kBAAkB,EAAEJ,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;;ACpEM,MAAMK,gBAAgB,GAAG,CAC9B,aAAa,EACb,YAAY,EACZ,WAAW,EACX,WAAW,EACX,WAAW,EACX,YAAY,EACZ,aAAa,CACL,CAAA;AACH,MAAMC,aAAa,GAAG,CAAC,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,CAAU,CAAA;AACnF,MAAMC,cAAc,GAAG,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,CAAU,CAAA;AAYjE,MAAMC,eAAqE,GAAG;AACnF,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;AAEM,MAAMC,eAAmD,GAAG;AACjE,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,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAA;AACb,CAAC,CAAA;AAEM,MAAMC,qBAAyD,GAAG;AACvE,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,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAE;AACb,EAAA,SAAS,EAAE,EAAA;AACb,CAAC,CAAA;AAEM,MAAMC,wBAA4D,GAAG;AAC1E,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,SAAS,EAAE,CAAC;AACZ,EAAA,SAAS,EAAE,CAAC;AACZ,EAAA,SAAS,EAAE,CAAA;AACb,CAAC,CAAA;AAEM,MAAMC,iBAAuD,GAAG;AACrEC,EAAAA,IAAI,EAAE,KAAK;AACXC,EAAAA,QAAQ,EAAE,KAAK;AACfC,EAAAA,OAAO,EAAE,KAAA;AACX,CAAC;;ACtFM,MAAMC,qBAAqB,GAAG,CACnC,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,CACT,CAAA;AAMH,MAAMC,qBAAiF,GAAG;AAC/F,EAAA,GAAG,EAAE;AAAET,IAAAA,MAAM,EAAE,sBAAA;AAAuB,GAAA;AACxC,CAAC,CAAA;AAEM,MAAMU,qBAA0D,GAAG;AACxE,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;AAEM,MAAMC,2BAAgE,GAAG;AAC9E,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;AAEM,MAAMC,8BAAmE,GAAG;AACjF,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;AAEM,MAAMC,uBAAmE,GAAG;AACjFR,EAAAA,IAAI,EAAE,KAAA;AACR,CAAC;;AClDWS,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,MAAMC,WAAW,GAAG;AACzB,EAAA,CAACD,kBAAkB,CAACE,IAAI,GAAG,CAAC;AAC5B,EAAA,CAACF,kBAAkB,CAACG,KAAK,GAAG,GAAG;AAC/B,EAAA,CAACH,kBAAkB,CAACI,MAAM,GAAG,GAAG;AAChC,EAAA,CAACJ,kBAAkB,CAACK,KAAK,GAAG,IAAI;EAChC,CAACL,kBAAkB,CAACM,IAAI,GAAG,IAAA;AAC7B,CAAC;;ACXM,MAAMC,gBAAgB,GAAG;AAC9B,EAAA,QAAQ,EAAEC,OAAE,CAAC,EAAE,CAAC;AAChB,EAAA,QAAQ,EAAEA,OAAE,CAAC,EAAE,CAAC;EAChB,QAAQ,EAAEA,OAAE,CAAC,EAAE,CAAA;AACjB,CAAC;;ACPM,MAAMC,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,MAAMC,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,MAAMC,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;;ACQM,MAAMC,cAAc,GAAGC,eAAU,CAAC;AACvCC,EAAAA,MAAM,EAAE,YAAY;AACpBC,EAAAA,IAAI,EAAE5B,eAAe;AACrB6B,EAAAA,UAAU,EAAE5B,qBAAqB;AACjC6B,EAAAA,aAAa,EAAE5B,wBAAwB;AACvC6B,EAAAA,MAAM,EAAE5B,iBAAiB;AACzB6B,EAAAA,IAAI,EAAElC,eAAAA;AACR,CAAC,CAAC,CAAA;AAEK,MAAMmC,oBAAoB,GAAGP,eAAU,CAAC;AAC7CC,EAAAA,MAAM,EAAE,kBAAkB;AAC1BC,EAAAA,IAAI,EAAEnB,qBAAqB;AAC3BoB,EAAAA,UAAU,EAAEnB,2BAA2B;AACvCoB,EAAAA,aAAa,EAAEnB,8BAA8B;AAC7CoB,EAAAA,MAAM,EAAEnB,uBAAuB;AAC/BoB,EAAAA,IAAI,EAAExB,qBAAAA;AACR,CAAC,CAAC,CAAA;AAEF,MAAM0B,MAAM,GAAGC,iBAAY,CAAC;EAC1BC,KAAK,EAAE,EAAE;AACTC,EAAAA,KAAK,EAAEb,WAAW;AAClBI,EAAAA,IAAI,EAAEL,UAAU;AAChBe,EAAAA,MAAM,EAAEhB,YAAY;AACpBiB,EAAAA,UAAU,EAAEnB,gBAAAA;AACd,CAAC,CAAC,CAAA;AAEK,MAAMoB,MAAM,GAAGC,kBAAa,CAAC;EAClCP,MAAM;AACNQ,EAAAA,KAAK,EAAE;AACLC,IAAAA,UAAU,EAAElB,cAAc;AAC1BmB,IAAAA,gBAAgB,EAAEX,oBAAAA;GACnB;AACDY,EAAAA,MAAM,EAAE;AACNnD,IAAAA,KAAAA;GACD;AACDoD,EAAAA,KAAK,EAAE;IACL,CAACjC,kBAAkB,CAACE,IAAI,GAAG;AAAEgC,MAAAA,QAAQ,EAAEjC,WAAW,CAACD,kBAAkB,CAACE,IAAI,CAAA;KAAG;IAC7E,CAACF,kBAAkB,CAACG,KAAK,GAAG;AAAE+B,MAAAA,QAAQ,EAAEjC,WAAW,CAACD,kBAAkB,CAACG,KAAK,CAAA;KAAG;IAC/E,CAACH,kBAAkB,CAACI,MAAM,GAAG;AAAE8B,MAAAA,QAAQ,EAAEjC,WAAW,CAACD,kBAAkB,CAACI,MAAM,CAAA;KAAG;IACjF,CAACJ,kBAAkB,CAACK,KAAK,GAAG;AAAE6B,MAAAA,QAAQ,EAAEjC,WAAW,CAACD,kBAAkB,CAACK,KAAK,CAAA;KAAG;IAC/E,CAACL,kBAAkB,CAACM,IAAI,GAAG;AAAE4B,MAAAA,QAAQ,EAAEjC,WAAW,CAACD,kBAAkB,CAACM,IAAI,CAAA;AAAE,KAAA;GAC7E;AACD6B,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;;ACnEO,SAASC,cAAcA,CAAC;AAAEC,EAAAA,QAAAA;AAA8B,CAAC,EAAa;EAC3E,oBACEC,cAAA,CAACC,oBAAe,EAAA;AAACjB,IAAAA,MAAM,EAAEA,MAAO;AAACkB,IAAAA,YAAY,EAAC,OAAO;AAAAH,IAAAA,QAAA,EAClDA,QAAAA;AAAQ,GACM,CAAC,CAAA;AAEtB;;MCRaI,MAAM,GAAGC,WAAM,CAACC,SAAI,EAAE;AACjCC,EAAAA,cAAc,EAAE,QAAQ;AACxBC,EAAAA,UAAU,EAAE,QAAA;AACd,CAAC;;ACMD;AACA;AACA;AACO,SAASC,SAASA,CAA2C;EAAEC,EAAE;EAAE,GAAGC,IAAAA;AAAwB,CAAC,EAAa;AACjH,EAAA,MAAMC,SAAS,GAAGP,WAAM,CAACK,EAAE,IAAIJ,SAAI,EAAE;AACnCO,IAAAA,IAAI,EAAE,WAAW;AACjBC,IAAAA,IAAI,EAAE,QAAQ;AACdC,IAAAA,MAAM,EAAE,SAAA;AACV,GAAC,CAAC,CAAA;EAEF,oBAAOd,cAAA,CAACW,SAAS,EAAA;IAAA,GAAMD,IAAAA;AAAI,GAAmB,CAAC,CAAA;AACjD;;MCpBaK,MAAM,GAAGX,WAAM,CAACY,UAAK,EAAE;AAClCJ,EAAAA,IAAI,EAAE,QAAQ;AACdK,EAAAA,aAAa,EAAE,KAAA;AACjB,CAAC,EAAC;MAIWC,MAAM,GAAGd,WAAM,CAACY,UAAK,EAAE;AAClCJ,EAAAA,IAAI,EAAE,QAAQ;AACdK,EAAAA,aAAa,EAAE,QAAA;AACjB,CAAC;;ACLM,SAASE,yBAAyBA,CACvCC,UAAyC,EACzCC,WAA2C,EAC3CC,6BAA2D,EAC3DC,8BAA6D,EACrC;AACxB,EAAA,MAAMC,eAAe,GAAGH,WAAW,IAAIE,8BAA8B,IAAIE,SAAS,CAAA;AAElF,EAAA,IAAID,eAAe,EAAE;AACnB,IAAA,IAAKpF,aAAa,CAAuBsF,QAAQ,CAACF,eAAe,CAAC,EAAE;AAClE,MAAA,MAAMG,cAAc,GAAGP,UAAU,IAAIE,6BAA6B,IAAIG,SAAS,CAAA;MAC/E,OAAO;AAAElD,QAAAA,MAAM,EAAEoD,cAAc;AAAEC,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AAC7D,KAAA;AACA;AACA,IAAA,IAAKzE,qBAAqB,CAAuB2E,QAAQ,CAACF,eAAe,CAAC,EAAE;MAC1E,OAAO;AAAEjD,QAAAA,MAAM,EAAE,MAAM;AAAEqD,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AACrD,KAAA;AACA;AACA,IAAA,IAAKrF,gBAAgB,CAAuBuF,QAAQ,CAACF,eAAe,CAAC,EAAE;MACrE,OAAO;AAAEjD,QAAAA,MAAM,EAAE,UAAU;AAAEqD,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AACzD,KAAA;AACA;AACA,IAAA,IAAKnF,cAAc,CAAuBqF,QAAQ,CAACF,eAAe,CAAC,EAAE;MACnE,OAAO;AAAEjD,QAAAA,MAAM,EAAE,UAAU;AAAEqD,QAAAA,OAAO,EAAEJ,eAAAA;OAAiB,CAAA;AACzD,KAAA;AACF,GAAA;EAEA,OAAO;AAAEjD,IAAAA,MAAM,EAAE6C,UAAU;AAAEQ,IAAAA,OAAO,EAAEH,SAAAA;GAAW,CAAA;AACnD;;AC9BO,MAAMI,wBAAwB,gBAAGC,mBAAa,CAAgC,IAAI,CAAC,CAAA;AACnF,MAAMC,uBAAuB,gBAAGD,mBAAa,CAA+B,IAAI,CAAC,CAAA;AACjF,MAAME,qBAAqB,gBAAGF,mBAAa,CAA6B,IAAI,CAAC,CAAA;AAC7E,MAAMG,iBAAiB,gBAAGH,mBAAa,CAAU,KAAK,CAAC,CAAA;AAEvD,MAAMI,kBAAkB,GAAGA,MAAkC;EAClE,OAAOC,gBAAU,CAACH,qBAAqB,CAAC,CAAA;AAC1C,CAAC,CAAA;AAEM,MAAMI,oBAAoB,GAAGA,MAAqC;EACvE,OAAOD,gBAAU,CAACN,wBAAwB,CAAC,CAAA;AAC7C,CAAC,CAAA;AAEM,MAAMQ,mBAAmB,GAAGA,MAAoC;EACrE,OAAOF,gBAAU,CAACJ,uBAAuB,CAAC,CAAA;AAC5C,CAAC,CAAA;AAEM,MAAMO,oBAAoB,GAAGA,MAA8B;EAChE,OAAOH,gBAAU,CAACF,iBAAiB,CAAC,CAAA;AACtC,CAAC;;ACTD,MAAMM,kBAAkB,GAAGnC,WAAM,CAACoC,SAAI,EAAE;AACtCC,EAAAA,UAAU,EAAE,aAAa;AACzB7D,EAAAA,KAAK,EAAE,kBAAkB;AACzB,EAAA,eAAe,EAAE;AACf8D,IAAAA,mBAAmB,EAAE,aAAA;GACtB;AACDC,EAAAA,QAAQ,EAAE;IACRf,OAAO,EAAGA,OAAiC,IAAK;AAC9C,MAAA,IAAI,CAACA,OAAO,EAAE,OAAO,EAAE,CAAA;AACvB,MAAA,MAAMgB,oBAAoB,GAAI7F,qBAAqB,CAAuB2E,QAAQ,CAACE,OAAO,CAAC,CAAA;MAE3F,OAAO;AACLa,QAAAA,UAAU,EAAEG,oBAAoB,GAAG,mBAAmB,GAAG,aAAa;AACtEC,QAAAA,aAAa,EAAED,oBAAoB,GAAG,WAAW,GAAGnB,SAAS;QAC7DqB,QAAQ,EAAE,CAAIlB,CAAAA,EAAAA,OAAO,CAAE,CAAA;QACvBvD,UAAU,EAAE,CAAIuD,CAAAA,EAAAA,OAAO,CAAE,CAAA;QACzBtD,aAAa,EAAE,IAAIsD,OAAO,CAAA,CAAA;OAC3B,CAAA;KACF;AACDrD,IAAAA,MAAM,EAAE;AACNzB,MAAAA,OAAO,EAAE;AACPiG,QAAAA,UAAU,EAAE,UAAA;OACb;AACDlG,MAAAA,QAAQ,EAAE;AACRkG,QAAAA,UAAU,EAAE,WAAA;OACb;AACDnG,MAAAA,IAAI,EAAE;AACJmG,QAAAA,UAAU,EAAE,OAAA;AACd,OAAA;AACF,KAAA;GACQ;AACVC,EAAAA,eAAe,EAAE;AACfpB,IAAAA,OAAO,EAAE,QAAQ;AACjBrD,IAAAA,MAAM,EAAE,SAAA;AACV,GAAA;AACF,CAAC,CAAC,CAAA;;AAIF;;AAgCO,MAAM0E,cAAc,GAAGV,kBAAkB,CAACW,SAAS,CAA2C,CAACC,KAAK,EAAEC,GAAG,KAAK;AACnH,EAAA,MAAM7B,8BAA8B,GAAGa,oBAAoB,EAAE,CAAA;AAC7D,EAAA,MAAMd,6BAA6B,GAAGe,mBAAmB,EAAE,CAAA;AAC3D,EAAA,MAAMgB,4BAA4B,GAAGnB,kBAAkB,EAAE,CAAA;AACzD,EAAA,MAAMoB,iBAAiB,GAAGhB,oBAAoB,EAAE,CAAA;EAEhD,MAAM;IAAEV,OAAO;AAAErD,IAAAA,MAAAA;AAAO,GAAC,GAAG4C,yBAAyB,CACnDgC,KAAK,CAAC5E,MAAM,EACZ4E,KAAK,CAACvB,OAAO,EACbN,6BAA6B,EAC7BC,8BACF,CAAC,CAAA;EACD,MAAM3C,KAAK,GAAGuE,KAAK,CAACvE,KAAK,IAAIyE,4BAA4B,IAAI5B,SAAS,CAAA;AAEtE,EAAA,IAAI8B,OAAO,gBACTvD,cAAA,CAACuC,kBAAkB,EAAA;AACjBa,IAAAA,GAAG,EAAEA,GAAI;AAAA,IAAA,GACLD,KAAK;AAAA,IAAA,IACJvE,KAAK,GAAG;AAAEA,MAAAA,KAAAA;AAAM,KAAC,GAAG6C,SAAS,CAAA;AAAA,IAAA,IAC7BlD,MAAM,GAAG;AAAEA,MAAAA,MAAAA;AAAO,KAAC,GAAGkD,SAAS,CAAA;AAAA,IAAA,IAC/BG,OAAO,GAAG;AAAEA,MAAAA,OAAAA;AAAQ,KAAC,GAAGH,SAAS,CAAA;AAAA,GACvC,CACF,CAAA;EAED8B,OAAO,GAAGD,iBAAiB,GAAGC,OAAO,gBAAGvD,cAAA,CAACiC,iBAAiB,CAACuB,QAAQ,EAAA;IAACC,KAAK,EAAA,IAAA;AAAA1D,IAAAA,QAAA,EAAEwD,OAAAA;AAAO,GAA6B,CAAC,CAAA;;AAEhH;EACAA,OAAO,GAAGJ,KAAK,CAACvB,OAAO,gBACrB5B,cAAA,CAAC6B,wBAAwB,CAAC2B,QAAQ,EAAA;IAACC,KAAK,EAAEN,KAAK,CAACvB,OAAQ;AAAA7B,IAAAA,QAAA,EAAEwD,OAAAA;GAA2C,CAAC,GAEtGA,OACD,CAAA;;AAED;EACAA,OAAO,GAAGJ,KAAK,CAAC5E,MAAM,gBACpByB,cAAA,CAAC+B,uBAAuB,CAACyB,QAAQ,EAAA;IAACC,KAAK,EAAEN,KAAK,CAAC5E,MAAO;AAAAwB,IAAAA,QAAA,EAAEwD,OAAAA;GAA0C,CAAC,GAEnGA,OACD,CAAA;;AAED;EACAA,OAAO,GAAGJ,KAAK,CAACvE,KAAK,gBACnBoB,cAAA,CAACgC,qBAAqB,CAACwB,QAAQ,EAAA;IAACC,KAAK,EAAEN,KAAK,CAACvE,KAAM;AAAAmB,IAAAA,QAAA,EAAEwD,OAAAA;GAAwC,CAAC,GAE9FA,OACD,CAAA;AAED,EAAA,OAAOA,OAAO,CAAA;AAChB,CAAC,CAAC,CAAA;AAEK,MAAMG,aAAa,GAAIC,KAAa,IAA4C;EACrF,OAAOV,cAAc,CAACC,SAAS,CAA2C,CAACC,KAAK,EAAEC,GAAG,KAAK;IACxF,oBAAOpD,cAAA,CAACiD,cAAc,EAAA;AAACG,MAAAA,GAAG,EAAEA,GAAI;AAAA,MAAA,GAAKD,KAAK;AAAEtC,MAAAA,IAAI,EAAC,SAAS;MAAC,YAAY8C,EAAAA,KAAAA;AAAM,KAAE,CAAC,CAAA;AAClF,GAAC,CAAC,CAAA;AACJ,CAAC;;ACxID,MAAMC,aAAa,GAAGxD,WAAM,CAACC,SAAI,EAAE;AACjCO,EAAAA,IAAI,EAAE,MAAM;AACZ+B,EAAAA,QAAQ,EAAE;IACRvE,IAAI,EAAEA,CAACyF,QAA0B,EAAE;AAAEnF,MAAAA,MAAAA;AAAO,KAAC,KAAK;MAChD,OAAO;AACLoF,QAAAA,KAAK,EAAEpF,MAAM,CAACK,UAAU,CAAC8E,QAAQ,CAAC;AAClCE,QAAAA,MAAM,EAAErF,MAAM,CAACK,UAAU,CAAC8E,QAAQ,CAAA;OACnC,CAAA;AACH,KAAA;AACF,GAAA;AACF,CAAC,CAAC,CAAA;AAmBK,SAASG,IAAIA,CAAC;EAAEC,IAAI;AAAErF,EAAAA,KAAK,GAAG,kBAAkB;AAAER,EAAAA,IAAI,GAAG,SAAS;EAAE8F,MAAM;AAAEC,EAAAA,SAAAA;AAAqB,CAAC,EAAa;EACpH,MAAMC,KAAK,GAAGC,aAAQ,CAAC;AAAEzF,IAAAA,KAAAA;AAAM,GAAC,CAAC,CAAA;AAEjC,EAAA,MAAM0F,UAAU,gBAAGC,kBAAY,CAACN,IAAI,EAAE;IAAErF,KAAK,EAAEwF,KAAK,CAACxF,KAAAA;AAAM,GAAC,CAAC,CAAA;EAE7D,oBACEoB,cAAA,CAAC4D,aAAa,EAAA;AAACxF,IAAAA,IAAI,EAAEA,IAAK;AAAC8F,IAAAA,MAAM,EAAEA,MAAO;AAACC,IAAAA,SAAS,EAAEA,SAAU;AAAApE,IAAAA,QAAA,EAC7DuE,UAAAA;AAAU,GACE,CAAC,CAAA;AAEpB;;ACzCA,MAAME,sBAAsB,GAAGpE,WAAM,CAACC,SAAI,EAAE;AAC1CO,EAAAA,IAAI,EAAE,gBAAA;AACR,CAAC,CAAC,CAAA;AAIF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS6D,cAAcA,CAACtB,KAA0B,EAAa;AACpE,EAAA,MAAMuB,qBAAqB,GAAGpC,oBAAoB,EAAE,CAAA;EAEpD,oBACEtC,cAAA,CAACwE,sBAAsB,EAAA;AAAA,IAAA,GACjBrB,KAAK;AACT,IAAA,eAAA,EACEuB,qBAAqB,GAAG;MAAE,GAAGvB,KAAK,CAAC,eAAe,CAAC;AAAEwB,MAAAA,OAAO,EAAE,aAAA;KAAe,GAAGxB,KAAK,CAAC,eAAe,CAAA;AACtG,GACF,CAAC,CAAA;AAEN;;ACtBA,SAASyB,sBAAsBA,CAACzB,KAA0B,EAAa;EACrE,oBACEnD,cAAA,CAACyE,cAAc,EAAA;IAAA1E,QAAA,eACbC,cAAA,CAACgE,IAAI,EAAA;MAAA,GAAKb,KAAAA;KAAQ,CAAA;AAAC,GACL,CAAC,CAAA;AAErB,CAAA;AAEA,SAAS0B,0BAA0BA,CAAC1B,KAA0B,EAAa;AACzE,EAAA,MAAME,4BAA4B,GAAGnB,kBAAkB,EAAE,CAAA;EAEzD,oBAAOlC,cAAA,CAAC4E,sBAAsB,EAAA;IAAChG,KAAK,EAAEyE,4BAA4B,IAAI5B,SAAU;IAAA,GAAK0B,KAAAA;AAAK,GAAG,CAAC,CAAA;AAChG,CAAA;AAEO,SAAS2B,cAAcA,CAAC;EAAElG,KAAK;EAAE,GAAGuE,KAAAA;AAA2B,CAAC,EAAa;AAClF,EAAA,IAAIvE,KAAK,EAAE;IACT,oBAAOoB,cAAA,CAAC4E,sBAAsB,EAAA;AAAChG,MAAAA,KAAK,EAAEA,KAAM;MAAA,GAAKuE,KAAAA;AAAK,KAAG,CAAC,CAAA;AAC5D,GAAA;EAEA,oBAAOnD,cAAA,CAAC6E,0BAA0B,EAAA;IAAA,GAAK1B,KAAAA;AAAK,GAAG,CAAC,CAAA;AAClD;;AC5BO,MAAM4B,cAAc,GAAG3E,WAAM,CAAC6C,cAAc,EAAE;AACnDrC,EAAAA,IAAI,EAAE,gBAAgB;AACtBC,EAAAA,IAAI,EAAE,MAAM;AACZ8B,EAAAA,QAAQ,EAAE;AACRqC,IAAAA,QAAQ,EAAE;AACRC,MAAAA,IAAI,EAAE;AACJnE,QAAAA,MAAM,EAAE,aAAa;AACrBoE,QAAAA,OAAO,EAAEzD,SAAS;AAClB7C,QAAAA,KAAK,EAAE,mBAAmB;AAC1BuG,QAAAA,UAAU,EAAE1D,SAAAA;OACb;AACD2D,MAAAA,KAAK,EAAE;AACLtE,QAAAA,MAAM,EAAE,SAAS;AACjBqE,QAAAA,UAAU,EAAE;AACVE,UAAAA,kBAAkB,EAAE,MAAA;AACtB,SAAA;AACF,OAAA;KACD;AACDC,IAAAA,WAAW,EAAE;AACXL,MAAAA,IAAI,EAAE;AACJI,QAAAA,kBAAkB,EAAE,MAAA;OACrB;AACDD,MAAAA,KAAK,EAAE;AACLC,QAAAA,kBAAkB,EAAE,WAAA;AACtB,OAAA;AACF,KAAA;GACQ;AACVrC,EAAAA,eAAe,EAAE;AACfgC,IAAAA,QAAQ,EAAE,KAAK;AACfM,IAAAA,WAAW,EAAE,KAAA;AACf,GAAA;AACF,CAAC,CAAC;;AC/BK,MAAMC,UAAU,GAAG;AACxB/C,EAAAA,IAAI,EAAES,cAAc;AACpBuC,EAAAA,OAAO,EAAE9B,aAAa,CAAC,CAAC,CAAC;AACzB+B,EAAAA,OAAO,EAAE/B,aAAa,CAAC,CAAC,CAAC;AACzBgC,EAAAA,OAAO,EAAEhC,aAAa,CAAC,CAAC,CAAC;AACzBiC,EAAAA,OAAO,EAAEjC,aAAa,CAAC,CAAC,CAAC;AACzBkC,EAAAA,OAAO,EAAElC,aAAa,CAAC,CAAC,CAAC;AACzBmC,EAAAA,OAAO,EAAEnC,aAAa,CAAC,CAAC,CAAC;AACzBM,EAAAA,IAAI,EAAEc,cAAc;AACpBgB,EAAAA,IAAI,EAAEf,cAAAA;AACR;;ACRA,MAAMgB,QAAQ,GAAG,CAAC,CAAA;AAClB,MAAMC,eAAe,GAAG,EAAE,CAAA;AAE1B,MAAMC,SAAS,GAAG7F,WAAM,CAACD,MAAM,EAAE;AAC/B+F,EAAAA,YAAY,EAAE,gBAAgB;AAC9BC,EAAAA,eAAe,EAAE,eAAA;AACnB,CAAC,CAAC,CAAA;AAEF,MAAMC,QAAQ,GAAGhG,WAAM,CAAC6F,SAAS,EAAE;AACjCnC,EAAAA,KAAK,EAAEiC,QAAQ;AACfhC,EAAAA,MAAM,EAAEgC,QAAAA;AACV,CAAC,CAAC,CAAA;AAEF,MAAMM,UAAU,GAAGjG,WAAM,CAAC6F,SAAS,EAAE;AACnC9B,EAAAA,SAAS,EAAE,YAAY;AACvB5E,EAAAA,QAAQ,EAAEyG,eAAe;AACzBM,EAAAA,SAAS,EAAEN,eAAe;AAC1BO,EAAAA,iBAAiB,EAAE,UAAA;AACrB,CAAC,CAAC,CAAA;AAcK,SAASC,KAAKA,CAAC;EAAEC,KAAK;AAAEC,EAAAA,QAAQ,GAAG,CAAA;AAAc,CAAC,EAAa;EACpE,IAAID,KAAK,KAAKhF,SAAS,EAAE;AACvB,IAAA,oBAAOzB,cAAA,CAACoG,QAAQ,EAAA,EAAE,CAAC,CAAA;AACrB,GAAA;AAEA,EAAA,MAAMO,YAAY,GAAGF,KAAK,GAAGC,QAAQ,GAAG,CAAGA,EAAAA,QAAQ,CAAG,CAAA,CAAA,GAAG,CAAGD,EAAAA,KAAK,CAAE,CAAA,CAAA;EAEnE,oBACEzG,cAAA,CAACqG,UAAU,EAAA;AAAAtG,IAAAA,QAAA,eACTC,cAAA,CAACuF,UAAU,CAAC/C,IAAI,EAAA;AACdZ,MAAAA,OAAO,EAAC,iBAAiB;AACzBrD,MAAAA,MAAM,EAAC,MAAM;AACbK,MAAAA,KAAK,EAAC,+BAAA;AACN;AAAA;AACAgI,MAAAA,aAAa,EAAE,CAAE;AAAA7G,MAAAA,QAAA,EAEhB4G,YAAAA;KACc,CAAA;AAAC,GACR,CAAC,CAAA;AAEjB;;AChDO,SAASE,qBAAqBA,CACnCC,UAA8B,EAC9B;EAAEC,IAAI;EAAEC,KAAK;EAAEC,MAAM;EAAEC,KAAK;AAAEC,EAAAA,IAAAA;AAA4B,CAAC,EACxD;AACH,EAAA,QAAQL,UAAU;IAChB,KAAKzJ,kBAAkB,CAACM,IAAI;MAC1B,OAAOwJ,IAAI,IAAID,KAAK,IAAID,MAAM,IAAID,KAAK,IAAID,IAAI,CAAA;IACjD,KAAK1J,kBAAkB,CAACK,KAAK;AAC3B,MAAA,OAAOwJ,KAAK,IAAID,MAAM,IAAID,KAAK,IAAID,IAAI,CAAA;IACzC,KAAK1J,kBAAkB,CAACI,MAAM;AAC5B,MAAA,OAAOwJ,MAAM,IAAID,KAAK,IAAID,IAAI,CAAA;IAChC,KAAK1J,kBAAkB,CAACG,KAAK;MAC3B,OAAOwJ,KAAK,IAAID,IAAI,CAAA;IACtB,KAAK1J,kBAAkB,CAACE,IAAI,CAAA;AAC5B,IAAA;AACE,MAAA,OAAOwJ,IAAI,CAAA;AACf,GAAA;AACF;;ACxBO,SAASK,wBAAwBA,GAAuB;AAC7D,EAAA,MAAM9H,KAAK,GAAG+H,aAAQ,EAAE,CAAA;AAExB,EAAA,QAAQ,IAAI;IACV,KAAK/H,KAAK,CAAC6H,IAAI;MACb,OAAO9J,kBAAkB,CAACM,IAAI,CAAA;IAChC,KAAK2B,KAAK,CAAC4H,KAAK;MACd,OAAO7J,kBAAkB,CAACK,KAAK,CAAA;IACjC,KAAK4B,KAAK,CAAC2H,MAAM;MACf,OAAO5J,kBAAkB,CAACI,MAAM,CAAA;IAClC,KAAK6B,KAAK,CAAC0H,KAAK;MACd,OAAO3J,kBAAkB,CAACG,KAAK,CAAA;IACjC,KAAK8B,KAAK,CAACyH,IAAI,CAAA;AACf,IAAA;MACE,OAAO1J,kBAAkB,CAACE,IAAI,CAAA;AAClC,GAAA;AACF;;ACdO,SAAS+J,kBAAkBA,CAAIC,MAA6B,EAAK;AACtE,EAAA,MAAMT,UAAU,GAAGM,wBAAwB,EAAE,CAAA;EAE7C,OAAOI,aAAO,CAAC,MAAM;AACnB,IAAA,OAAOX,qBAAqB,CAACC,UAAU,EAAES,MAAM,CAAC,CAAA;AAClD,GAAC,EAAE,CAACT,UAAU,EAAES,MAAM,CAAC,CAAC,CAAA;AAC1B;;ACJO,SAASE,iBAAiBA,CAACF,MAA8B,EAAa;AAC3E,EAAA,MAAMT,UAAU,GAAGM,wBAAwB,EAAE,CAAA;AAE7C,EAAA,OAAOP,qBAAqB,CAACC,UAAU,EAAES,MAAM,CAAC,CAAA;AAClD;;ACCA,SAASG,sBAAsBA,CAACtJ,IAAY,EAAEuJ,WAAmB,EAAgB;AAC/E,EAAA,MAAMC,MAAM,GAAGxJ,IAAI,GAAG,CAAC,CAAA;AACvB,EAAA,MAAMU,MAAM,GAAG8I,MAAM,GAAGD,WAAW,CAAA;EACnC,MAAME,aAAa,GAAG,CAAC,GAAGC,IAAI,CAACC,EAAE,GAAGjJ,MAAM,CAAA;EAE1C,OAAO;IACLV,IAAI;IACJuJ,WAAW;IACXC,MAAM;IACN9I,MAAM;IACN+I,aAAa;AACbG,IAAAA,OAAO,EAAE,CAAA,IAAA,EAAO5J,IAAI,CAAA,CAAA,EAAIA,IAAI,CAAA,CAAA;GAC7B,CAAA;AACH,CAAA;AAEO,MAAM6J,kBAAoD,GAAG;AAClEhE,EAAAA,IAAI,EAAEyD,sBAAsB,CAAC,EAAE,EAAE,GAAG,CAAC;AACrCQ,EAAAA,IAAI,EAAER,sBAAsB,CAAC,EAAE,EAAE,CAAC,CAAA;AACpC,CAAC,CAAA;AAEM,MAAMS,gBAAgB,GAAG;AAC9BC,EAAAA,QAAQ,EAAE,IAAI;AACdC,EAAAA,MAAM,EAAEC,eAAM,CAACC,KAAK,CAACD,eAAM,CAACE,IAAI,CAAA;AAClC,CAAC;;AC/BD,MAAM;QAAEvE,MAAI;AAAEiE,QAAAA,MAAAA;AAAK,CAAC,GAAGD,kBAAkB,CAAA;AAElC,MAAMQ,sBAAsB,GAAGrI,WAAM,CAACsI,UAAM,EAAE;AACnDC,EAAAA,IAAI,EAAE,MAAM;AACZhG,EAAAA,QAAQ,EAAE;AACRvE,IAAAA,IAAI,EAAE;AACJ6F,MAAAA,IAAI,EAAE;QAAE0D,WAAW,EAAE1D,MAAI,CAAC0D,WAAW;QAAEiB,EAAE,EAAE3E,MAAI,CAAC2D,MAAM;QAAEiB,EAAE,EAAE5E,MAAI,CAAC2D,MAAM;QAAEkB,CAAC,EAAE7E,MAAI,CAACnF,MAAAA;OAAQ;AACzFoJ,MAAAA,IAAI,EAAE;QAAEP,WAAW,EAAEO,MAAI,CAACP,WAAW;QAAEiB,EAAE,EAAEV,MAAI,CAACN,MAAM;QAAEiB,EAAE,EAAEX,MAAI,CAACN,MAAM;QAAEkB,CAAC,EAAEZ,MAAI,CAACpJ,MAAAA;AAAO,OAAA;AAC1F,KAAA;AACF,GAAA;AACF,CAAC,CAAC;;ACVF,MAAM;QAAEmF,MAAI;AAAEiE,QAAAA,MAAAA;AAAK,CAAC,GAAGD,kBAAkB,CAAA;AAElC,MAAMc,mBAAmB,GAAG3I,WAAM,CAAC4I,YAAG,EAAE;AAC7CrG,EAAAA,QAAQ,EAAE;AACRvE,IAAAA,IAAI,EAAE;AACJ6F,MAAAA,IAAI,EAAE;QAAEH,KAAK,EAAEG,MAAI,CAAC7F,IAAI;QAAE2F,MAAM,EAAEE,MAAI,CAAC7F,IAAI;QAAE4J,OAAO,EAAE/D,MAAI,CAAC+D,OAAAA;OAAS;AACpEE,MAAAA,IAAI,EAAE;QAAEpE,KAAK,EAAEoE,MAAI,CAAC9J,IAAI;QAAE2F,MAAM,EAAEmE,MAAI,CAAC9J,IAAI;QAAE4J,OAAO,EAAEE,MAAI,CAACF,OAAAA;AAAQ,OAAA;KACpE;AACDiB,IAAAA,YAAY,EAAE;AACZhE,MAAAA,IAAI,EAAE;AACJiE,QAAAA,QAAQ,EAAE,UAAA;AACZ,OAAA;AACF,KAAA;AACF,GAAA;AACF,CAAC,CAAC;;ACXF,MAAMC,cAAc,GAAGC,iBAAQ,CAACC,uBAAuB,CAACX,UAAM,CAAC,CAAA;AAQxD,SAASY,sBAAsBA,CAAC;EAAE1K,KAAK;EAAER,IAAI;AAAEmL,EAAAA,QAAAA;AAAsC,CAAC,EAAa;EACxG,MAAM;IAAE3B,MAAM;IAAE9I,MAAM;IAAE+I,aAAa;AAAEF,IAAAA,WAAAA;AAAY,GAAC,GAAGM,kBAAkB,CAAC7J,IAAI,CAAC,CAAA;AAE/E,EAAA,MAAMoL,aAAa,GAAGC,yBAAgB,CACpC,OAAO;IACLC,gBAAgB,EAAE7B,aAAa,GAAG,CAAC,GAAGA,aAAa,GAAG0B,QAAQ,CAAC9F,KAAAA;AACjE,GAAC,CAAC,EACF,CAACoE,aAAa,EAAE0B,QAAQ,CAC1B,CAAC,CAAA;EAED,oBACEvJ,cAAA,CAACmJ,cAAc,EAAA;AACbP,IAAAA,EAAE,EAAEhB,MAAO;AACXiB,IAAAA,EAAE,EAAEjB,MAAO;AACXkB,IAAAA,CAAC,EAAEhK,MAAO;AACV6K,IAAAA,MAAM,EAAE/K,KAAM;AACd+I,IAAAA,WAAW,EAAEA,WAAY;AACzBiC,IAAAA,aAAa,EAAC,OAAO;AACrBjB,IAAAA,IAAI,EAAC,MAAM;AACXkB,IAAAA,eAAe,EAAEhC,aAAc;AAC/B2B,IAAAA,aAAa,EAAEA,aAAAA;AAAc,GAC9B,CAAC,CAAA;AAEN;;AC1BA,MAAM;EAAEvF,IAAI;AAAEiE,EAAAA,IAAAA;AAAK,CAAC,GAAGD,kBAAkB,CAAA;AAEzC,MAAM6B,eAAe,GAAG1J,WAAM,CAACC,SAAI,EAAE;AACnCO,EAAAA,IAAI,EAAE,QAAQ;AACdsI,EAAAA,QAAQ,EAAE,UAAU;AACpBa,EAAAA,MAAM,EAAE,QAAQ;AAChBpH,EAAAA,QAAQ,EAAE;AACRvE,IAAAA,IAAI,EAAE;AACJ6F,MAAAA,IAAI,EAAE;QAAEH,KAAK,EAAEG,IAAI,CAAC7F,IAAI;QAAE2F,MAAM,EAAEE,IAAI,CAAC7F,IAAAA;OAAM;AAC7C8J,MAAAA,IAAI,EAAE;QAAEpE,KAAK,EAAEoE,IAAI,CAAC9J,IAAI;QAAE2F,MAAM,EAAEmE,IAAI,CAAC9J,IAAAA;AAAK,OAAA;AAC9C,KAAA;AACF,GAAA;AACF,CAAC,CAAC,CAAA;AAiBK,SAAS4L,MAAMA,CAAC;AAAE5L,EAAAA,IAAI,GAAG,MAAM;AAAE6L,EAAAA,cAAc,GAAG,KAAK;AAAE/F,EAAAA,MAAAA;AAAoB,CAAC,EAAa;EAChG,MAAMgG,eAAe,GAAG7F,aAAQ,CAAC;AAAEzF,IAAAA,KAAK,EAAE,kBAAA;AAAmB,GAAC,CAAC,CAAA;EAC/D,MAAMuL,eAAe,GAAG9F,aAAQ,CAAC;AAC/BzF,IAAAA,KAAK,EAAEqL,cAAc,GAAG,8BAA8B,GAAG,iBAAA;AAC3D,GAAC,CAAC,CAAA;AAEF,EAAA,MAAMV,QAAQ,GAAGa,uBAAc,CAAC,CAAC,CAAC,CAAA;AAElCC,EAAAA,eAAS,CAAC,MAAM;AACdd,IAAAA,QAAQ,CAAC9F,KAAK,GAAG6G,mBAAU,CAACC,mBAAU,CAAC,CAAC,EAAEpC,gBAAgB,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;AACzE,GAAC,EAAE,CAACoB,QAAQ,CAAC,CAAC,CAAA;EAEd,oBACEiB,eAAA,CAACV,eAAe,EAAA;AAAC1L,IAAAA,IAAI,EAAEA,IAAK;AAAC8F,IAAAA,MAAM,EAAEA,MAAO;IAAAnE,QAAA,EAAA,cAC1CC,cAAA,CAAC+I,mBAAmB,EAAA;AAAC3K,MAAAA,IAAI,EAAEA,IAAK;MAAA2B,QAAA,eAC9BC,cAAA,CAACyI,sBAAsB,EAAA;AAACrK,QAAAA,IAAI,EAAEA,IAAK;QAACuL,MAAM,EAAEO,eAAe,CAACtL,KAAAA;OAAQ,CAAA;AAAC,KAClD,CAAC,eAEtBoB,cAAA,CAAC+I,mBAAmB,EAAA;MAACE,YAAY,EAAA,IAAA;AAAC7K,MAAAA,IAAI,EAAEA,IAAK;MAAA2B,QAAA,eAC3CC,cAAA,CAACsJ,sBAAsB,EAAA;AAAC1K,QAAAA,KAAK,EAAE6L,MAAM,CAACN,eAAe,CAACvL,KAAK,CAAE;AAACR,QAAAA,IAAI,EAAEA,IAAK;AAACmL,QAAAA,QAAQ,EAAEA,QAAAA;OAAW,CAAA;AAAC,KAC7E,CAAC,CAAA;AAAA,GACP,CAAC,CAAA;AAEtB;;;;;;;;;;;;;;;;;;;;"}
|
|
1
|
+
{"version":3,"file":"index-node-22.22.cjs.web.js","sources":["../src/system/core/tokens/palettes/deepPurpleColorPalette.ts","../src/system/core/themes/light/light.ts","../src/system/core/tokens/GTStandardFont.ts","../src/system/core/tokens/GTStandardNarrowFont.ts","../src/system/core/tokens/breakpoints.ts","../src/system/core/tokens/bumperIcon.ts","../src/system/core/tokens/radius.ts","../src/system/core/tokens/size.ts","../src/system/core/tokens/space.ts","../src/tamagui.config.ts","../src/system/core/provider/BumperProvider.tsx","../src/system/core/primitives/Center.ts","../src/system/core/primitives/Pressable.tsx","../src/system/core/primitives/Stack.tsx","../src/system/content/typography/utils/getVariantAndWeightValues.tsx","../src/system/content/typography/utils/typographyContext.ts","../src/system/content/typography/Typography.tsx","../src/system/content/icon/Icon.tsx","../src/system/content/typography/TypographyView.tsx","../src/system/content/typography/TypographyIcon.tsx","../src/system/content/typography/TypographyLink.tsx","../src/system/content/typography/index.ts","../src/system/dataDisplays/Badge/Badge.tsx","../src/system/core/breakpoints/utils/breakpointsUtils.ts","../src/system/core/breakpoints/hooks/useCurrentBreakpointName.ts","../src/system/core/breakpoints/hooks/useBreakpointValue.ts","../src/system/core/breakpoints/SwitchBreakpoins.tsx","../src/system/loading/loader/loaderConfig.ts","../src/system/loading/loader/LoaderBackgroundCircle.tsx","../src/system/loading/loader/LoaderCircleWrapper.tsx","../src/system/loading/loader/LoaderForegroundCircle.tsx","../src/system/loading/loader/Loader.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","// WARNING\n// If you modify this theme, don't forget to update the theme in @ornikar/kitt-universal as well\n\nimport { deepPurpleColorPalette } from '../../tokens/palettes/deepPurpleColorPalette';\nimport type { Theme } from '../themes';\n\n// https://github.com/ornikar/kitt/blob/79e367e962c957c016c4df67dbcf515c8f45ff0e/@ornikar/kitt-universal/src/themes/late-ocean/colors.ts#L28\nexport const light: Theme = {\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 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-l', 'label-m', 'label-s'] as const;\n\nexport type GTStandardVariants =\n | (typeof HEADING_VARIANTS)[number]\n | (typeof BODY_VARIANTS)[number]\n | (typeof LABEL_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\nexport const GTStandardFaces: Record<GTStandardFontWeight, Record<string, string>> = {\n 500: { normal: 'GTStandardRegular' },\n 600: { normal: 'GTStandardSemibold' },\n 700: { normal: 'GTStandardBold' },\n};\n\nexport const GTStandardSizes: Record<GTStandardVariants, 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': 16,\n 'body-xl': 24,\n 'body-l': 18,\n 'body-m': 16,\n 'body-s': 14,\n 'body-xs': 12,\n 'label-l': 16,\n 'label-m': 14,\n 'label-s': 12,\n};\n\nexport const GTStandardLineHeights: Record<GTStandardVariants, 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-l': 20,\n 'label-m': 18,\n 'label-s': 14,\n};\n\nexport const GTStandardLetterSpacings: Record<GTStandardVariants, 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-l': 0,\n 'label-m': 0,\n 'label-s': 0,\n};\n\nexport const GTStandardWeights: Record<string, GTStandardFontWeight> = {\n bold: '700',\n semibold: '600',\n regular: '500',\n};\n","export 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;\n\nexport type ContentCapsVariants = (typeof CONTENT_CAPS_VARIANTS)[number];\n\nexport type GTStandardNarrowFontWeight = '700';\n\nexport const GTStandardNarrowFaces: Record<GTStandardNarrowFontWeight, Record<string, string>> = {\n 700: { normal: 'GTStandardNarrowBold' },\n};\n\nexport const GTStandardNarrowSizes: Record<ContentCapsVariants, number> = {\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\nexport const GTStandardNarrowLineHeights: Record<ContentCapsVariants, number> = {\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\nexport const GTStandardNarrowLetterSpacings: Record<ContentCapsVariants, number> = {\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\nexport const GTStandardNarrowWeights: Record<string, GTStandardNarrowFontWeight> = {\n bold: '700',\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 type { GetTokenString, TamaguiConfig } from '@tamagui/core';\nimport { px } from '@tamagui/core';\n\nexport const bumperIconTokens = {\n 'icon.s': px(16),\n 'icon.m': px(20),\n 'icon.l': px(24),\n};\n\nexport type BumperIconTokens = GetTokenString<keyof TamaguiConfig['tokens']['bumperIcon']>;\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 { createFont, createTamagui, createTokens } from '@tamagui/core';\nimport { light } from './system/core/themes/light/light';\nimport {\n GTStandardFaces,\n GTStandardLetterSpacings,\n GTStandardLineHeights,\n GTStandardSizes,\n GTStandardWeights,\n} from './system/core/tokens/GTStandardFont';\nimport {\n GTStandardNarrowFaces,\n GTStandardNarrowLetterSpacings,\n GTStandardNarrowLineHeights,\n GTStandardNarrowSizes,\n GTStandardNarrowWeights,\n} from './system/core/tokens/GTStandardNarrowFont';\nimport { BreakpointNameEnum, breakpoints } from './system/core/tokens/breakpoints';\nimport { bumperIconTokens } from './system/core/tokens/bumperIcon';\nimport { radiusTokens } from './system/core/tokens/radius';\nimport { sizeTokens } from './system/core/tokens/size';\nimport { spaceTokens } from './system/core/tokens/space';\n\nexport const GTStandardFont = createFont({\n family: 'GTStandard',\n size: GTStandardSizes,\n lineHeight: GTStandardLineHeights,\n letterSpacing: GTStandardLetterSpacings,\n weight: GTStandardWeights,\n face: GTStandardFaces,\n});\n\nexport const GTStandardNarrowFont = createFont({\n family: 'GTStandardNarrow',\n size: GTStandardNarrowSizes,\n lineHeight: GTStandardNarrowLineHeights,\n letterSpacing: GTStandardNarrowLetterSpacings,\n weight: GTStandardNarrowWeights,\n face: GTStandardNarrowFaces,\n});\n\nconst tokens = createTokens({\n color: {},\n space: spaceTokens,\n size: sizeTokens,\n radius: radiusTokens,\n bumperIcon: bumperIconTokens,\n});\n\nexport const config = createTamagui({\n tokens,\n fonts: {\n GTStandard: GTStandardFont,\n GTStandardNarrow: GTStandardNarrowFont,\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 { styled } from '@tamagui/core';\nimport type { ViewProps } from './View';\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 { styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport type { Except } from 'type-fest';\nimport { View } from './View';\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 */\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 { BODY_VARIANTS, HEADING_VARIANTS, LABEL_VARIANTS } from '../../../core/tokens/GTStandardFont';\nimport { CONTENT_CAPS_VARIANTS } from '../../../core/tokens/GTStandardNarrowFont';\nimport type { FontVariants } from '../../../core/tokens/fonts';\nimport type { TypographyTextProps } from '../Typography';\nimport type { TypographyVariantContextValue, TypographyWeightContextValue } from './typographyContext';\n\ninterface VariantAndWeightValues {\n weight: TypographyTextProps['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 { ColorTokens } from '@tamagui/core';\nimport { createContext, useContext } from 'react';\nimport type { FontVariants } from '../../../core/tokens/fonts';\n\nexport type TypographyVariantContextValue = FontVariants | null;\nexport type TypographyWeightContextValue = 'regular' | 'bold' | 'semibold' | null;\nexport type TypograhyColorContextValue = ColorTokens | null;\ntype TypographyContextValue = boolean;\n\nexport const TypographyVariantContext = createContext<TypographyVariantContextValue>(null);\nexport const TypographyWeightContext = createContext<TypographyWeightContextValue>(null);\nexport const TypograhyColorContext = createContext<TypograhyColorContextValue>(null);\nexport const TypographyContext = createContext<boolean>(false);\n\nexport const useTypographyColor = (): TypograhyColorContextValue => {\n return useContext(TypograhyColorContext);\n};\n\nexport const useTypographyVariant = (): TypographyVariantContextValue => {\n return useContext(TypographyVariantContext);\n};\n\nexport const useTypographyWeight = (): TypographyWeightContextValue => {\n return useContext(TypographyWeightContext);\n};\n\nexport const useTypographyContext = (): TypographyContextValue => {\n return useContext(TypographyContext);\n};\n","import type { ColorTokens, TextStyle } from '@tamagui/core';\nimport { Text, styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport type { BodyFontVariants, HeadingFontVariants, LabelFontVariants } from '../../core/tokens/GTStandardFont';\nimport { CONTENT_CAPS_VARIANTS, type ContentCapsVariants } from '../../core/tokens/GTStandardNarrowFont';\nimport type { FontVariants } from '../../core/tokens/fonts';\nimport type { TamaguiMediaProps } from '../../types';\nimport { getVariantAndWeightValues } from './utils/getVariantAndWeightValues';\nimport {\n TypograhyColorContext,\n TypographyContext,\n TypographyVariantContext,\n TypographyWeightContext,\n useTypographyColor,\n useTypographyContext,\n useTypographyVariant,\n useTypographyWeight,\n} from './utils/typographyContext';\n\ninterface TypographyWithoutMediaProps {\n color?: ColorTokens;\n textAlign?: TextStyle['textAlign'];\n children: ReactNode;\n}\n\nexport interface BodyProps extends TypographyWithoutMediaProps {\n variant?: BodyFontVariants;\n weight?: 'regular' | 'bold';\n}\nexport interface HeadingLabelProps extends TypographyWithoutMediaProps {\n variant: HeadingFontVariants | LabelFontVariants;\n weight?: 'semibold';\n}\nexport interface ContentCapsProps extends TypographyWithoutMediaProps {\n variant: ContentCapsVariants;\n weight?: 'bold';\n}\n\nexport type TypographyTextProps =\n | TamaguiMediaProps<BodyProps>\n | TamaguiMediaProps<HeadingLabelProps>\n | TamaguiMediaProps<ContentCapsProps>;\n\nconst InternalTypographyBase = 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 const isContentCapsVariant = (CONTENT_CAPS_VARIANTS as readonly string[]).includes(variant);\n\n return {\n fontFamily: isContentCapsVariant ? '$GTStandardNarrow' : '$GTStandard',\n textTransform: isContentCapsVariant ? 'uppercase' : undefined,\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 const InternalTypography = InternalTypographyBase.styleable<TypographyTextProps>((props, ref) => {\n const typographyVariantAncestorValue = useTypographyVariant();\n const typographyWeightAncestorValue = useTypographyWeight();\n const typographyColorAncestorValue = useTypographyColor();\n const typographyContext = useTypographyContext();\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 <InternalTypographyBase\n ref={ref}\n {...props}\n {...(color ? { color } : undefined)}\n {...(weight ? { weight } : undefined)}\n {...(variant ? { variant } : undefined)}\n />\n );\n\n content = typographyContext ? content : <TypographyContext.Provider value>{content}</TypographyContext.Provider>;\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\nexport function TypographyBase(props: TypographyTextProps): ReactNode {\n return <InternalTypography {...props} />;\n}\n\nexport const createHeading = (level: number): ((props: TypographyTextProps) => ReactNode) => {\n // eslint-disable-next-line func-names\n return function (props: TypographyTextProps): ReactNode {\n return <InternalTypography role=\"heading\" aria-level={level} {...props} />;\n };\n};\n","import type { ColorTokens, GetProps } from '@tamagui/core';\nimport { styled, useStyle } from '@tamagui/core';\nimport type { ReactElement, ReactNode } from 'react';\nimport { cloneElement } from 'react';\nimport { View } from '../../core/primitives/View';\nimport type { BumperIconTokens } from '../../core/tokens/bumperIcon';\nimport type { TamaguiMediaProps } from '../../types';\n\nconst IconContainer = styled(View, {\n name: 'Icon',\n variants: {\n size: (iconSize: BumperIconTokens, { tokens }) => {\n return {\n width: tokens.bumperIcon[iconSize],\n height: tokens.bumperIcon[iconSize],\n };\n },\n } as const,\n});\n\ntype IconContainerProps = GetProps<typeof IconContainer>;\n\ninterface IconElementProps {\n color?: ColorTokens;\n}\n\ninterface InternalIconProps {\n icon: ReactElement<IconElementProps>;\n color?: ColorTokens;\n size?: IconContainerProps['size'];\n testID?: IconContainerProps['testID'];\n /** @ignore */\n alignSelf?: IconContainerProps['alignSelf'];\n}\n\nexport type IconProps = TamaguiMediaProps<InternalIconProps>;\n\nexport function Icon({ icon, color = '$content.base.hi', size = '$icon.m', testID, alignSelf }: IconProps): ReactNode {\n const style = useStyle({ color });\n\n const clonedIcon = cloneElement(icon, { color: style.color });\n\n return (\n <IconContainer size={size} testID={testID} alignSelf={alignSelf}>\n {clonedIcon}\n </IconContainer>\n );\n}\n","import type { GetProps } from '@tamagui/core';\nimport { styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { View } from '../../core/primitives/View';\nimport { useTypographyContext } from './utils/typographyContext';\n\nconst InternalTypographyView = styled(View, {\n name: 'TypographyView',\n});\n\ntype TypographyViewProps = GetProps<typeof InternalTypographyView>;\n\n/**\n *\n * A wrapper component that applies typography styles to its children in order to maintain consistent style between web and native\n * In native, it simply renders a View as it renders correctly by default\n * In web, it ensures that the display is set to inline-flex when inside a Typography context\n *\n * React Native Web includes this implementation in its codebase\n * but Tamagui does not use React Native Webview, we need to implement it ourselves\n *\n * Inside a Typography component, always use TypographyView to wrap external components like Icon or Svg\n */\nexport function TypographyView(props: TypographyViewProps): ReactNode {\n const isInTypographyContext = useTypographyContext();\n\n return (\n <InternalTypographyView\n {...props}\n $platform-web={\n isInTypographyContext ? { ...props['$platform-web'], display: 'inline-flex' } : props['$platform-web']\n }\n />\n );\n}\n","import { type ReactNode } from 'react';\nimport type { Except } from 'type-fest';\nimport type { IconProps } from '../icon/Icon';\nimport { Icon } from '../icon/Icon';\nimport type { TypographyTextProps } from './Typography';\nimport { TypographyView } from './TypographyView';\nimport { useTypographyColor } from './utils/typographyContext';\n\nexport interface TypographyIconProps extends Except<IconProps, 'color'> {\n color?: TypographyTextProps['color'];\n}\n\nfunction TypographyIconInternal(props: TypographyIconProps): ReactNode {\n return (\n <TypographyView>\n <Icon {...props} />\n </TypographyView>\n );\n}\n\nfunction TypographyIconInheritColor(props: TypographyIconProps): ReactNode {\n const typographyColorAncestorValue = useTypographyColor();\n\n return <TypographyIconInternal color={typographyColorAncestorValue || undefined} {...props} />;\n}\n\nexport function TypographyIcon({ color, ...props }: TypographyIconProps): ReactNode {\n if (color) {\n return <TypographyIconInternal color={color} {...props} />;\n }\n\n return <TypographyIconInheritColor {...props} />;\n}\n","import { styled } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport type { TamaguiMediaProps } from '../../types';\nimport type { TypographyTextProps } from './Typography';\nimport { InternalTypography } from './Typography';\n\nexport interface TypographyLinkWithoutMediaProps {\n disabled?: boolean;\n noUnderline?: boolean;\n onPress: () => void;\n}\n\nexport type TypographyLinkProps = TypographyTextProps & TamaguiMediaProps<TypographyLinkWithoutMediaProps>;\n\nexport const InternalTypographyLink = styled(InternalTypography, {\n name: 'TypographyLink',\n role: 'link',\n variants: {\n disabled: {\n true: {\n cursor: 'not-allowed',\n onPress: undefined,\n color: '$content.disabled',\n hoverStyle: undefined,\n },\n false: {\n cursor: 'pointer',\n hoverStyle: {\n textDecorationLine: 'none',\n },\n },\n },\n noUnderline: {\n true: {\n textDecorationLine: 'none',\n },\n false: {\n textDecorationLine: 'underline',\n },\n },\n } as const,\n defaultVariants: {\n disabled: false,\n noUnderline: false,\n },\n});\n\nexport function TypographyLink(props: TypographyLinkProps): ReactNode {\n return <InternalTypographyLink {...props} />;\n}\n","import { TypographyBase, createHeading } from './Typography';\nimport { TypographyIcon } from './TypographyIcon';\nimport { TypographyLink } from './TypographyLink';\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 Icon: TypographyIcon,\n Link: TypographyLink,\n};\n","import { styled, useProps } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { InternalTypography } from '../../content/typography/Typography';\nimport { Center } from '../../core/primitives/Center';\nimport type { TamaguiMediaProps } from '../../types';\n\nexport interface BadgeWithoutMediaProps {\n /** The count to display. If undefined, it renders as a dot. */\n count?: number;\n /**\n * Maximum count to display. Shows \"{max}+\" when count exceeds max.\n * @default 9\n */\n maxCount?: number;\n}\n\nexport type BadgeProps = TamaguiMediaProps<BadgeWithoutMediaProps>;\n\nconst DOT_SIZE = 8;\nconst MIN_COUNT_WIDTH = 16;\n\nconst BadgeBase = styled(Center, {\n borderRadius: '$radius.circle',\n backgroundColor: '$bg.danger.hi',\n});\n\nconst BadgeDot = styled(BadgeBase, {\n width: DOT_SIZE,\n height: DOT_SIZE,\n});\n\nconst BadgeCount = styled(BadgeBase, {\n alignSelf: 'flex-start',\n minWidth: MIN_COUNT_WIDTH,\n minHeight: MIN_COUNT_WIDTH,\n paddingHorizontal: '$space.4',\n});\n\nexport function Badge(props: BadgeProps): ReactNode {\n const { count, maxCount = 9 } = useProps(props);\n\n if (count === undefined) {\n return <BadgeDot />;\n }\n\n const displayCount = count > maxCount ? `${maxCount}+` : `${count}`;\n\n return (\n <BadgeCount>\n <InternalTypography\n variant=\"content-caps-xs\"\n weight=\"bold\"\n color=\"$content.base.onContrasted.hi\"\n // Adjust the line-height of the component\n paddingBottom={1}\n >\n {displayCount}\n </InternalTypography>\n </BadgeCount>\n );\n}\n","import { BreakpointNameEnum } from '../../tokens/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 '../../tokens/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","import { Easing } from 'react-native-reanimated';\n\nexport type LoaderSize = 'icon' | 'page';\ninterface LoaderConfig {\n size: number;\n strokeWidth: number;\n center: number;\n radius: number;\n circumference: number;\n viewBox: string;\n}\n\nfunction createLoaderSizeConfig(size: number, strokeWidth: number): LoaderConfig {\n const center = size / 2;\n const radius = center - strokeWidth;\n const circumference = 2 * Math.PI * radius;\n\n return {\n size,\n strokeWidth,\n center,\n radius,\n circumference,\n viewBox: `0 0 ${size} ${size}`,\n };\n}\n\nexport const LOADER_SIZE_CONFIG: Record<LoaderSize, LoaderConfig> = {\n icon: createLoaderSizeConfig(20, 1.5),\n page: createLoaderSizeConfig(48, 3),\n};\n\nexport const LOADER_ANIMATION = {\n duration: 2000,\n easing: Easing.inOut(Easing.ease),\n};\n","import { styled } from '@tamagui/core';\nimport { Circle } from 'react-native-svg';\nimport { LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst { icon, page } = LOADER_SIZE_CONFIG;\n\nexport const LoaderBackgroundCircle = styled(Circle, {\n fill: 'none',\n variants: {\n size: {\n icon: { strokeWidth: icon.strokeWidth, cx: icon.center, cy: icon.center, r: icon.radius },\n page: { strokeWidth: page.strokeWidth, cx: page.center, cy: page.center, r: page.radius },\n },\n } as const,\n});\n","import { styled } from '@tamagui/core';\nimport Svg from 'react-native-svg';\nimport { LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst { icon, page } = LOADER_SIZE_CONFIG;\n\nexport const LoaderCircleWrapper = styled(Svg, {\n variants: {\n size: {\n icon: { width: icon.size, height: icon.size, viewBox: icon.viewBox },\n page: { width: page.size, height: page.size, viewBox: page.viewBox },\n },\n isForeground: {\n true: {\n position: 'absolute',\n },\n },\n } as const,\n});\n","import type { ReactNode } from 'react';\nimport type { SharedValue } from 'react-native-reanimated';\nimport Animated, { useAnimatedProps } from 'react-native-reanimated';\nimport { Circle } from 'react-native-svg';\nimport type { LoaderSize } from './loaderConfig';\nimport { LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst AnimatedCircle = Animated.createAnimatedComponent(Circle);\n\ninterface LoaderForegroundCircleProps {\n color: string;\n size: LoaderSize;\n progress: SharedValue<number>;\n}\n\nexport function LoaderForegroundCircle({ color, size, progress }: LoaderForegroundCircleProps): ReactNode {\n const { center, radius, circumference, strokeWidth } = LOADER_SIZE_CONFIG[size];\n\n const animatedProps = useAnimatedProps(\n () => ({\n strokeDashoffset: circumference - 2 * circumference * progress.value,\n }),\n [circumference, progress],\n );\n\n return (\n <AnimatedCircle\n cx={center}\n cy={center}\n r={radius}\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n fill=\"none\"\n strokeDasharray={circumference}\n animatedProps={animatedProps}\n />\n );\n}\n","import { styled, useStyle } from '@tamagui/core';\nimport type { ReactNode } from 'react';\nimport { useEffect } from 'react';\nimport { useSharedValue, withRepeat, withTiming } from 'react-native-reanimated';\nimport { View } from '../../core/primitives/View';\nimport type { TamaguiMediaProps } from '../../types';\nimport { LoaderBackgroundCircle } from './LoaderBackgroundCircle';\nimport { LoaderCircleWrapper } from './LoaderCircleWrapper';\nimport { LoaderForegroundCircle } from './LoaderForegroundCircle';\nimport type { LoaderSize } from './loaderConfig';\nimport { LOADER_ANIMATION, LOADER_SIZE_CONFIG } from './loaderConfig';\n\nconst { icon, page } = LOADER_SIZE_CONFIG;\n\nconst LoaderContainer = styled(View, {\n name: 'Loader',\n position: 'relative',\n rotate: '-90deg',\n variants: {\n size: {\n icon: { width: icon.size, height: icon.size },\n page: { width: page.size, height: page.size },\n },\n } as const,\n});\n\ninterface InternalLoaderProps {\n /** The size of the loader. `'icon'` renders a small 20px loader, `'page'` renders a larger 48px loader.\n * @default 'page'\n * */\n size?: LoaderSize;\n /** Whether the loader is displayed on a contrasted (dark) background. When `true`, uses a high-contrast foreground color.\n * @default false\n * */\n isOnContrasted?: boolean;\n /** Test ID passed to the root container for testing purposes. */\n testID?: string;\n}\n\nexport type LoaderProps = TamaguiMediaProps<InternalLoaderProps>;\n\nexport function Loader({ size = 'page', isOnContrasted = false, testID }: LoaderProps): ReactNode {\n const backgroundStyle = useStyle({ color: '$border.base.mid' });\n const foregroundStyle = useStyle({\n color: isOnContrasted ? '$border.base.onContrasted.hi' : '$content.accent',\n });\n\n const progress = useSharedValue(0);\n\n useEffect(() => {\n progress.value = withRepeat(withTiming(1, LOADER_ANIMATION), -1, false);\n }, [progress]);\n\n return (\n <LoaderContainer size={size} testID={testID}>\n <LoaderCircleWrapper size={size}>\n <LoaderBackgroundCircle size={size} stroke={backgroundStyle.color} />\n </LoaderCircleWrapper>\n\n <LoaderCircleWrapper isForeground size={size}>\n <LoaderForegroundCircle color={String(foregroundStyle.color)} size={size} progress={progress} />\n </LoaderCircleWrapper>\n </LoaderContainer>\n );\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","colorName","map","scaleNumber","colorValue","deepPurpleColorPalette","white","black","transparent","light","HEADING_VARIANTS","BODY_VARIANTS","LABEL_VARIANTS","GTStandardFaces","normal","GTStandardSizes","GTStandardLineHeights","GTStandardLetterSpacings","GTStandardWeights","bold","semibold","regular","CONTENT_CAPS_VARIANTS","GTStandardNarrowFaces","GTStandardNarrowSizes","GTStandardNarrowLineHeights","GTStandardNarrowLetterSpacings","GTStandardNarrowWeights","BreakpointNameEnum","breakpoints","BASE","SMALL","MEDIUM","LARGE","WIDE","bumperIconTokens","px","radiusTokens","sizeTokens","spaceTokens","GTStandardFont","createFont","family","size","lineHeight","letterSpacing","weight","face","GTStandardNarrowFont","tokens","createTokens","color","space","radius","bumperIcon","config","createTamagui","fonts","GTStandard","GTStandardNarrow","themes","media","minWidth","settings","allowedStyleValues","disableSSR","styleCompat","autocompleteSpecificTokens","debug","BumperProvider","children","_jsx","TamaguiProvider","defaultTheme","Center","styled","View","justifyContent","alignItems","Pressable","as","rest","Component","name","role","cursor","HStack","Stack","flexDirection","VStack","getVariantAndWeightValues","weightProp","variantProp","typographyWeightAncestorValue","typographyVariantAncestorValue","computedVariant","undefined","includes","computedWeight","variant","TypographyVariantContext","createContext","TypographyWeightContext","TypograhyColorContext","TypographyContext","useTypographyColor","useContext","useTypographyVariant","useTypographyWeight","useTypographyContext","InternalTypographyBase","Text","fontFamily","WebkitFontSmoothing","variants","isContentCapsVariant","textTransform","fontSize","fontWeight","defaultVariants","InternalTypography","styleable","props","ref","typographyColorAncestorValue","typographyContext","content","Provider","value","TypographyBase","createHeading","level","IconContainer","iconSize","width","height","Icon","icon","testID","alignSelf","style","useStyle","clonedIcon","cloneElement","InternalTypographyView","TypographyView","isInTypographyContext","display","TypographyIconInternal","TypographyIconInheritColor","TypographyIcon","InternalTypographyLink","disabled","true","onPress","hoverStyle","false","textDecorationLine","noUnderline","TypographyLink","Typography","Header1","Header2","Header3","Header4","Header5","Header6","Link","DOT_SIZE","MIN_COUNT_WIDTH","BadgeBase","borderRadius","backgroundColor","BadgeDot","BadgeCount","minHeight","paddingHorizontal","Badge","count","maxCount","useProps","displayCount","paddingBottom","getValueForBreakpoint","breakpoint","base","small","medium","large","wide","useCurrentBreakpointName","useMedia","useBreakpointValue","values","useMemo","SwitchBreakpoints","createLoaderSizeConfig","strokeWidth","center","circumference","Math","PI","viewBox","LOADER_SIZE_CONFIG","page","LOADER_ANIMATION","duration","easing","Easing","inOut","ease","LoaderBackgroundCircle","Circle","fill","cx","cy","r","LoaderCircleWrapper","Svg","isForeground","position","AnimatedCircle","Animated","createAnimatedComponent","LoaderForegroundCircle","progress","animatedProps","useAnimatedProps","strokeDashoffset","stroke","strokeLinecap","strokeDasharray","LoaderContainer","rotate","Loader","isOnContrasted","backgroundStyle","foregroundStyle","useSharedValue","useEffect","withRepeat","withTiming","_jsxs","String"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { px, createFont, createTokens, createTamagui, TamaguiProvider, styled, View, Stack, Text, useStyle, useMedia } from '@tamagui/core';
|
|
1
|
+
import { px, createFont, createTokens, createTamagui, TamaguiProvider, styled, View, Stack, Text, useStyle, useProps, useMedia } from '@tamagui/core';
|
|
2
2
|
export { Stack, View } from '@tamagui/core';
|
|
3
3
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
4
4
|
import { createContext, useContext, cloneElement, useMemo, useEffect } from 'react';
|
|
@@ -505,7 +505,7 @@ const useTypographyContext = () => {
|
|
|
505
505
|
return useContext(TypographyContext);
|
|
506
506
|
};
|
|
507
507
|
|
|
508
|
-
const
|
|
508
|
+
const InternalTypographyBase = styled(Text, {
|
|
509
509
|
fontFamily: '$GTStandard',
|
|
510
510
|
color: '$content.base.hi',
|
|
511
511
|
'$platform-web': {
|
|
@@ -540,10 +540,7 @@ const InternalTypography = styled(Text, {
|
|
|
540
540
|
weight: 'regular'
|
|
541
541
|
}
|
|
542
542
|
});
|
|
543
|
-
|
|
544
|
-
// Remove font-related style props from InternalTypography Props
|
|
545
|
-
|
|
546
|
-
const TypographyBase = InternalTypography.styleable((props, ref) => {
|
|
543
|
+
const InternalTypography = InternalTypographyBase.styleable((props, ref) => {
|
|
547
544
|
const typographyVariantAncestorValue = useTypographyVariant();
|
|
548
545
|
const typographyWeightAncestorValue = useTypographyWeight();
|
|
549
546
|
const typographyColorAncestorValue = useTypographyColor();
|
|
@@ -553,7 +550,7 @@ const TypographyBase = InternalTypography.styleable((props, ref) => {
|
|
|
553
550
|
weight
|
|
554
551
|
} = getVariantAndWeightValues(props.weight, props.variant, typographyWeightAncestorValue, typographyVariantAncestorValue);
|
|
555
552
|
const color = props.color || typographyColorAncestorValue || undefined;
|
|
556
|
-
let content = /*#__PURE__*/jsx(
|
|
553
|
+
let content = /*#__PURE__*/jsx(InternalTypographyBase, {
|
|
557
554
|
ref: ref,
|
|
558
555
|
...props,
|
|
559
556
|
...(color ? {
|
|
@@ -590,15 +587,20 @@ const TypographyBase = InternalTypography.styleable((props, ref) => {
|
|
|
590
587
|
}) : content;
|
|
591
588
|
return content;
|
|
592
589
|
});
|
|
590
|
+
function TypographyBase(props) {
|
|
591
|
+
return /*#__PURE__*/jsx(InternalTypography, {
|
|
592
|
+
...props
|
|
593
|
+
});
|
|
594
|
+
}
|
|
593
595
|
const createHeading = level => {
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
...props,
|
|
596
|
+
// eslint-disable-next-line func-names
|
|
597
|
+
return function (props) {
|
|
598
|
+
return /*#__PURE__*/jsx(InternalTypography, {
|
|
598
599
|
role: "heading",
|
|
599
|
-
"aria-level": level
|
|
600
|
+
"aria-level": level,
|
|
601
|
+
...props
|
|
600
602
|
});
|
|
601
|
-
}
|
|
603
|
+
};
|
|
602
604
|
};
|
|
603
605
|
|
|
604
606
|
const IconContainer = styled(View, {
|
|
@@ -689,7 +691,7 @@ function TypographyIcon({
|
|
|
689
691
|
});
|
|
690
692
|
}
|
|
691
693
|
|
|
692
|
-
const
|
|
694
|
+
const InternalTypographyLink = styled(InternalTypography, {
|
|
693
695
|
name: 'TypographyLink',
|
|
694
696
|
role: 'link',
|
|
695
697
|
variants: {
|
|
@@ -721,6 +723,11 @@ const TypographyLink = styled(TypographyBase, {
|
|
|
721
723
|
noUnderline: false
|
|
722
724
|
}
|
|
723
725
|
});
|
|
726
|
+
function TypographyLink(props) {
|
|
727
|
+
return /*#__PURE__*/jsx(InternalTypographyLink, {
|
|
728
|
+
...props
|
|
729
|
+
});
|
|
730
|
+
}
|
|
724
731
|
|
|
725
732
|
const Typography = {
|
|
726
733
|
Text: TypographyBase,
|
|
@@ -750,16 +757,17 @@ const BadgeCount = styled(BadgeBase, {
|
|
|
750
757
|
minHeight: MIN_COUNT_WIDTH,
|
|
751
758
|
paddingHorizontal: '$space.4'
|
|
752
759
|
});
|
|
753
|
-
function Badge({
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
760
|
+
function Badge(props) {
|
|
761
|
+
const {
|
|
762
|
+
count,
|
|
763
|
+
maxCount = 9
|
|
764
|
+
} = useProps(props);
|
|
757
765
|
if (count === undefined) {
|
|
758
766
|
return /*#__PURE__*/jsx(BadgeDot, {});
|
|
759
767
|
}
|
|
760
768
|
const displayCount = count > maxCount ? `${maxCount}+` : `${count}`;
|
|
761
769
|
return /*#__PURE__*/jsx(BadgeCount, {
|
|
762
|
-
children: /*#__PURE__*/jsx(
|
|
770
|
+
children: /*#__PURE__*/jsx(InternalTypography, {
|
|
763
771
|
variant: "content-caps-xs",
|
|
764
772
|
weight: "bold",
|
|
765
773
|
color: "$content.base.onContrasted.hi"
|