@ornikar/kitt-universal 9.30.1 → 9.30.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/definitions/native-base/KittNativeBaseProvider.d.ts +78 -0
  2. package/dist/definitions/native-base/KittNativeBaseProvider.d.ts.map +1 -1
  3. package/dist/definitions/themes/default.d.ts +1 -3
  4. package/dist/definitions/themes/default.d.ts.map +1 -1
  5. package/dist/definitions/themes/late-ocean/shadows.d.ts +14 -2
  6. package/dist/definitions/themes/late-ocean/shadows.d.ts.map +1 -1
  7. package/dist/index-browser-all.es.android.js +141 -2
  8. package/dist/index-browser-all.es.android.js.map +1 -1
  9. package/dist/index-browser-all.es.ios.js +141 -2
  10. package/dist/index-browser-all.es.ios.js.map +1 -1
  11. package/dist/index-browser-all.es.js +141 -2
  12. package/dist/index-browser-all.es.js.map +1 -1
  13. package/dist/index-browser-all.es.web.js +141 -2
  14. package/dist/index-browser-all.es.web.js.map +1 -1
  15. package/dist/index-node-14.17.cjs.js +141 -2
  16. package/dist/index-node-14.17.cjs.js.map +1 -1
  17. package/dist/index-node-14.17.cjs.web.js +141 -2
  18. package/dist/index-node-14.17.cjs.web.js.map +1 -1
  19. package/dist/linaria-themes-browser-all.es.android.js +62 -1
  20. package/dist/linaria-themes-browser-all.es.android.js.map +1 -1
  21. package/dist/linaria-themes-browser-all.es.ios.js +62 -1
  22. package/dist/linaria-themes-browser-all.es.ios.js.map +1 -1
  23. package/dist/linaria-themes-browser-all.es.js +62 -1
  24. package/dist/linaria-themes-browser-all.es.js.map +1 -1
  25. package/dist/linaria-themes-browser-all.es.web.js +62 -1
  26. package/dist/linaria-themes-browser-all.es.web.js.map +1 -1
  27. package/dist/linaria-themes-node-14.17.cjs.js +62 -1
  28. package/dist/linaria-themes-node-14.17.cjs.js.map +1 -1
  29. package/dist/linaria-themes-node-14.17.cjs.web.js +62 -1
  30. package/dist/linaria-themes-node-14.17.cjs.web.js.map +1 -1
  31. package/dist/tsbuildinfo +1 -1
  32. package/package.json +2 -2
@@ -1 +1 @@
1
- {"version":3,"file":"linaria-themes-node-14.17.cjs.js","sources":["../src/themes/palettes/lateOceanColorPalette.ts","../src/themes/late-ocean/colors.ts","../src/themes/late-ocean/avatar.ts","../src/themes/late-ocean/spacing.ts","../src/themes/late-ocean/bottomSheet.ts","../src/themes/late-ocean/button.ts","../src/themes/late-ocean/card.ts","../src/themes/late-ocean/cardModal.ts","../src/themes/late-ocean/choices.ts","../src/themes/late-ocean/dialogModal.ts","../src/themes/late-ocean/feedback.ts","../src/themes/late-ocean/checkbox.ts","../src/themes/late-ocean/datePicker.ts","../src/themes/late-ocean/typography.ts","../src/themes/late-ocean/input.ts","../src/themes/late-ocean/inputField.ts","../src/themes/late-ocean/inputTag.ts","../src/themes/late-ocean/radio.ts","../src/themes/late-ocean/radioButtonGroup.ts","../src/themes/late-ocean/textArea.ts","../src/themes/late-ocean/forms.ts","../src/themes/late-ocean/highlight.ts","../src/themes/late-ocean/iconButton.ts","../src/themes/late-ocean/listItem.ts","../src/themes/late-ocean/navigationModal.ts","../src/themes/late-ocean/pageLoader.ts","../src/themes/late-ocean/picker.ts","../src/themes/late-ocean/shadows.ts","../src/themes/late-ocean/skeleton.ts","../src/themes/late-ocean/tag.ts","../src/utils/hexToRgba.ts","../src/themes/late-ocean/tooltip.ts","../src/themes/default.ts"],"sourcesContent":["export const lateOceanColorPalette = {\n lateOcean: '#4C34E0',\n lateOceanLight1: '#705DE6',\n lateOceanLight2: '#9485EC',\n lateOceanLight3: '#D6BAF9',\n\n warmEmbrace: '#F4D3CE',\n warmEmbraceLight1: '#FFEDE6',\n\n black1000: '#000000',\n black800: '#333333',\n black555: '#737373',\n black400: '#999999',\n black200: '#CCCCCC',\n black100: '#E5E5E5',\n black50: '#F2F2F2',\n black25: '#F9F9F9',\n white: '#FFFFFF',\n\n viride: '#38836D',\n englishVermillon: '#D44148',\n goldCrayola: '#F8C583',\n aero: '#89BDDD',\n\n transparent: 'transparent',\n\n moonPurple: '#DBD6F9',\n moonPurpleLight1: '#EDEBFC',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const colors = {\n primary: lateOceanColorPalette.lateOcean,\n primaryLight: lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n accentLight: lateOceanColorPalette.warmEmbraceLight1,\n success: lateOceanColorPalette.viride,\n correct: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\n info: lateOceanColorPalette.aero,\n warning: lateOceanColorPalette.goldCrayola,\n separator: lateOceanColorPalette.black100,\n hover: lateOceanColorPalette.black100,\n white: lateOceanColorPalette.white,\n black: lateOceanColorPalette.black1000,\n blackDisabled: lateOceanColorPalette.black400,\n blackLight: lateOceanColorPalette.black555,\n blackAnthracite: lateOceanColorPalette.black800,\n uiBackground: lateOceanColorPalette.black25,\n uiBackgroundLight: lateOceanColorPalette.white,\n transparent: lateOceanColorPalette.transparent,\n disabled: lateOceanColorPalette.black50,\n overlay: {\n dark: 'rgba(41, 48, 51, 0.25)',\n light: 'rgba(255, 255, 255, 0.90)',\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport const defaultAvatarSize = 40;\nexport const defaultAvatarIconSize = 20;\n\nexport const largeAvatarSize = 120;\nexport const largeAvatarIconSize = 30;\n\nexport interface AvatarThemeColorVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarThemeSizeVariant {\n borderRadius: number;\n size: number;\n iconSize: number;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n size: number;\n iconSize: number;\n default: AvatarThemeColorVariant;\n light: AvatarThemeColorVariant;\n large: AvatarThemeSizeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n size: defaultAvatarSize,\n iconSize: defaultAvatarIconSize,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n large: {\n borderRadius: 30,\n size: largeAvatarSize,\n iconSize: largeAvatarIconSize,\n },\n};\n","export const spacing = 4;\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { spacing } from './spacing';\n\nexport interface BottomSheetTheme {\n container: {\n padding: number;\n };\n handle: {\n backgroundColor: string;\n };\n}\n\nexport const bottomSheet: BottomSheetTheme = {\n container: {\n padding: spacing * 4,\n },\n handle: {\n backgroundColor: lateOceanColorPalette.black200,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface BaseVariantTheme {\n backgroundColor: string;\n pressedBackgroundColor: string;\n hoverBackgroundColor: string;\n focusBorderColor: string;\n}\n\nexport interface GhostVariantTheme extends BaseVariantTheme {\n color: string;\n hoverColor: string;\n activeColor: string;\n}\nexport interface BaseButtonTheme {\n default: BaseVariantTheme;\n}\n\nexport interface BaseButtonWithVariant extends BaseButtonTheme {\n ghost: GhostVariantTheme;\n}\n\nexport interface SubtleBaseVariantTheme extends BaseVariantTheme {\n color: string;\n hoverColor: string;\n activeColor: string;\n}\n\nexport interface SubtleButtonTheme extends BaseButtonTheme {\n default: SubtleBaseVariantTheme;\n}\n\nexport interface DisabledBaseVariantTheme extends BaseVariantTheme {\n borderColor: string;\n}\n\nexport interface DisabledButtonTheme extends BaseButtonTheme {\n default: DisabledBaseVariantTheme;\n}\n\ninterface ButtonPadding {\n horizontal: number;\n vertical: number;\n}\n\nexport interface ButtonTheme {\n borderRadius: number;\n borderWidth: {\n disabled: number;\n focus: number;\n };\n minHeight: number;\n minWidth: number;\n maxWidth: number;\n scale: {\n base: {\n default: number;\n hover: number;\n active: number;\n };\n medium: {\n hover: number;\n };\n };\n /**\n * @deprecated use `padding` instead\n */\n contentPadding: {\n default: string;\n large: string;\n xLarge: string;\n disabled: string;\n };\n padding: {\n default: ButtonPadding;\n large: ButtonPadding;\n xLarge: ButtonPadding;\n disabled: ButtonPadding;\n };\n transition: {\n duration: string;\n timingFunction: string;\n };\n default: BaseButtonWithVariant;\n primary: BaseButtonWithVariant;\n white: BaseButtonTheme;\n subtle: SubtleButtonTheme;\n 'subtle-dark': SubtleButtonTheme;\n disabled: DisabledButtonTheme;\n}\n\nexport const button: ButtonTheme = {\n borderRadius: 30,\n borderWidth: {\n disabled: 2,\n focus: 3,\n },\n minHeight: 40,\n minWidth: 40,\n maxWidth: 335,\n scale: {\n base: {\n default: 1,\n hover: 0.95,\n active: 0.95,\n },\n medium: {\n hover: 1.05,\n },\n },\n contentPadding: {\n default: '7px 16px 7px',\n large: '11px 24px 11px',\n xLarge: '15px 24px 15px',\n disabled: '5px 14px 5px',\n },\n padding: {\n default: {\n horizontal: 16,\n vertical: 7,\n },\n large: {\n horizontal: 24,\n vertical: 11,\n },\n xLarge: {\n horizontal: 24,\n vertical: 15,\n },\n disabled: {\n horizontal: 14,\n vertical: 5,\n },\n },\n transition: {\n duration: '200ms',\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1)',\n },\n default: {\n default: {\n backgroundColor: 'rgba(0, 0, 0, 0.05)',\n pressedBackgroundColor: 'rgba(0, 0, 0, 0.1)',\n hoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',\n focusBorderColor: 'rgba(0, 0, 0, 0.1)',\n },\n ghost: {\n backgroundColor: 'rgba(255, 255, 255, 0.1)',\n pressedBackgroundColor: 'rgba(255, 255, 255, 0.05)',\n hoverBackgroundColor: 'rgba(255, 255, 255, 0.05)',\n focusBorderColor: 'rgba(255, 255, 255, 0.4)',\n color: lateOceanColorPalette.white,\n hoverColor: lateOceanColorPalette.white,\n activeColor: lateOceanColorPalette.white,\n },\n },\n primary: {\n default: {\n backgroundColor: colors.primary,\n pressedBackgroundColor: colors.primaryLight,\n hoverBackgroundColor: colors.primaryLight,\n focusBorderColor: 'rgba(76, 52, 224, 0.2)',\n },\n ghost: {\n backgroundColor: colors.uiBackgroundLight,\n pressedBackgroundColor: colors.uiBackground,\n hoverBackgroundColor: colors.hover,\n focusBorderColor: 'rgba(255,255,255, 0.4)',\n color: colors.primary,\n hoverColor: colors.hover,\n activeColor: colors.hover,\n },\n },\n white: {\n default: {\n backgroundColor: 'rgba(255, 255, 255, 0.05)',\n pressedBackgroundColor: 'rgba(255, 255, 255, 0.1)',\n hoverBackgroundColor: 'rgba(255, 255, 255, 0.1)',\n focusBorderColor: 'rgba(255, 255, 255, 0.1)',\n },\n },\n subtle: {\n default: {\n backgroundColor: colors.transparent,\n pressedBackgroundColor: colors.transparent,\n hoverBackgroundColor: colors.transparent,\n focusBorderColor: 'rgba(76, 52, 224, 0.2)',\n color: colors.primary,\n hoverColor: 'rgba(76, 52, 224, 0.8)',\n activeColor: 'rgba(76, 52, 224, 0.8)',\n },\n },\n 'subtle-dark': {\n default: {\n backgroundColor: colors.transparent,\n pressedBackgroundColor: colors.transparent,\n hoverBackgroundColor: colors.transparent,\n focusBorderColor: 'rgba(0, 0, 0, 0.1)',\n color: colors.black,\n hoverColor: 'rgba(0, 0, 0, 0.8)',\n activeColor: 'rgba(0, 0, 0, 0.8)',\n },\n },\n disabled: {\n default: {\n backgroundColor: colors.disabled,\n pressedBackgroundColor: colors.disabled,\n hoverBackgroundColor: colors.disabled,\n focusBorderColor: lateOceanColorPalette.black100,\n borderColor: lateOceanColorPalette.black100,\n },\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface CardThemeType {\n backgroundColor: string;\n borderColor: string;\n}\nexport interface CardTheme {\n borderRadius: number;\n borderWidth: number;\n primary: CardThemeType;\n secondary: CardThemeType;\n subtle: CardThemeType;\n}\n\nexport const card: CardTheme = {\n borderRadius: 20,\n borderWidth: 2,\n primary: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.primary,\n },\n secondary: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n },\n subtle: {\n backgroundColor: lateOceanColorPalette.black50,\n borderColor: colors.separator,\n },\n};\n","import { colors } from './colors';\n\nexport interface CardModalTheme {\n borderRadius: number;\n maxWidth: number;\n maxWidthWithPadding: number;\n shadow: {\n color: string;\n offsetX: number;\n offsetY: number;\n opacity: number;\n radius: number;\n };\n header: {\n height: number;\n borderWidth: number;\n borderColor: string;\n };\n footer: {\n borderWidth: number;\n borderColor: string;\n };\n overlayPadding: {\n horizontal: number;\n vertical: number;\n };\n animation: {\n overlay: {\n duration: number;\n easing: number[];\n };\n content: {\n duration: number;\n easing: number[];\n };\n };\n}\n\nexport const webAnimationContentDuration = 400;\nexport const webAnimationContentEasing = [0.77, 0, 0.175, 1];\n\nexport const webAnimationOverlayDuration = 250;\nexport const webAnimationOverlayEasing = [0.42, 0, 1, 1];\n\nconst maxWidth = 540;\nconst overlayHorizontalPadding = 24;\n\nexport const cardModal: CardModalTheme = {\n borderRadius: 20,\n maxWidth,\n maxWidthWithPadding: maxWidth + overlayHorizontalPadding * 2,\n shadow: {\n color: colors.black,\n offsetX: 0,\n offsetY: 10,\n opacity: 0.15,\n radius: 20,\n },\n header: {\n height: 56,\n borderWidth: 1,\n borderColor: colors.separator,\n },\n footer: {\n borderWidth: 1,\n borderColor: colors.separator,\n },\n overlayPadding: {\n horizontal: 24,\n vertical: 32,\n },\n animation: {\n overlay: {\n duration: webAnimationOverlayDuration,\n easing: webAnimationOverlayEasing,\n },\n content: {\n duration: webAnimationContentDuration,\n easing: webAnimationContentEasing,\n },\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface ChoicesItemTheme {\n borderRadius: number;\n padding: {\n base: number;\n small: number;\n };\n backgroundColor: {\n default: string;\n disabled: string;\n selected: string;\n pressed: string;\n hover: string;\n hoverWhenSelected: string;\n };\n disabled: {\n border: {\n width: number;\n color: string;\n };\n };\n transition: {\n property: string;\n duration: number;\n timingFunction: string;\n };\n}\n\nexport interface ChoicesTheme {\n spacing: {\n row: number;\n column: number;\n };\n item: ChoicesItemTheme;\n}\n\nexport const choices: ChoicesTheme = {\n spacing: {\n row: 12,\n column: 12,\n },\n item: {\n borderRadius: 10,\n padding: {\n base: 16,\n small: 24,\n },\n backgroundColor: {\n default: lateOceanColorPalette.black50,\n disabled: colors.disabled,\n selected: colors.primary,\n pressed: lateOceanColorPalette.lateOceanLight1,\n hover: lateOceanColorPalette.black100,\n hoverWhenSelected: lateOceanColorPalette.lateOceanLight1,\n },\n disabled: {\n border: {\n width: 2,\n color: lateOceanColorPalette.black100,\n },\n },\n transition: {\n property: 'all',\n duration: 300,\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1)',\n },\n },\n};\n","import { colors } from './colors';\n\nexport interface DialogModalTheme {\n borderRadius: number;\n maxWidth: number;\n overlayPadding: {\n horizontal: number;\n vertical: number;\n };\n shadow: {\n color: string;\n offsetX: number;\n offsetY: number;\n opacity: number;\n radius: number;\n };\n animation: {\n overlay: {\n duration: number;\n easing: number[];\n };\n content: {\n duration: number;\n easing: number[];\n };\n };\n}\n\nexport const webAnimationContentDuration = 400;\nexport const webAnimationContentEasing = [0.77, 0, 0.175, 1];\n\nexport const webAnimationOverlayDuration = 250;\nexport const webAnimationOverlayEasing = [0.42, 0, 1, 1];\n\nexport const dialogModal: DialogModalTheme = {\n borderRadius: 20,\n maxWidth: 540,\n overlayPadding: {\n horizontal: 24,\n vertical: 32,\n },\n shadow: {\n color: colors.black,\n offsetX: 0,\n offsetY: 10,\n opacity: 0.15,\n radius: 20,\n },\n animation: {\n overlay: {\n duration: webAnimationOverlayDuration,\n easing: webAnimationOverlayEasing,\n },\n content: {\n duration: webAnimationContentDuration,\n easing: webAnimationContentEasing,\n },\n },\n};\n","import { colors } from './colors';\n\nexport interface FeedbackMessageVariantTheme {\n backgroundColor: string;\n}\n\nexport interface FeedbackMessageTheme {\n danger: FeedbackMessageVariantTheme;\n info: FeedbackMessageVariantTheme;\n success: FeedbackMessageVariantTheme;\n warning: FeedbackMessageVariantTheme;\n}\n\nexport const feedbackMessage: FeedbackMessageTheme = {\n danger: {\n backgroundColor: colors.danger,\n },\n success: {\n backgroundColor: colors.success,\n },\n info: {\n backgroundColor: colors.info,\n },\n warning: {\n backgroundColor: colors.warning,\n },\n};\n","import { colors } from './colors';\n\nexport const checkbox = {\n borderWidth: 2,\n borderRadius: 5,\n height: 20,\n width: 20,\n iconSize: 14,\n borderColor: colors.separator,\n backgroundColor: colors.uiBackgroundLight,\n checkedBorderColor: colors.primary,\n checkedBackgroundColor: colors.primary,\n markColor: colors.uiBackgroundLight,\n};\n","interface DatePickerPartTheme {\n minWidth: number;\n}\n\nexport interface DatePickerTheme {\n day: DatePickerPartTheme;\n month: DatePickerPartTheme;\n year: DatePickerPartTheme;\n}\n\nexport const datePicker: DatePickerTheme = {\n day: {\n minWidth: 64,\n },\n month: {\n minWidth: 64,\n },\n year: {\n minWidth: 82,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors as kittColors } from './colors';\n\nexport const calcLineHeight = (fontSize: number, lineHeightMultiplier: number): number =>\n Math.round(fontSize * lineHeightMultiplier);\n\nexport interface TypographyTypeBreakpointRangeConfig {\n fontSize: number;\n lineHeight: number;\n}\n\nexport interface TypographyTypeConfig {\n baseAndSmall: TypographyTypeBreakpointRangeConfig;\n mediumAndWide: TypographyTypeBreakpointRangeConfig;\n}\n\nexport const createTypographyTypeConfig = (\n lineHeightMultiplier: number,\n baseAndSmallFontSize: number,\n mediumAndWideFontSize: number,\n): TypographyTypeConfig => ({\n baseAndSmall: {\n fontSize: baseAndSmallFontSize,\n lineHeight: calcLineHeight(baseAndSmallFontSize, lineHeightMultiplier),\n },\n mediumAndWide: {\n fontSize: mediumAndWideFontSize,\n lineHeight: calcLineHeight(mediumAndWideFontSize, lineHeightMultiplier),\n },\n});\n\nexport const typography = {\n colors: {\n black: kittColors.black,\n 'black-anthracite': kittColors.blackAnthracite,\n 'black-disabled': lateOceanColorPalette.black400,\n 'black-light': lateOceanColorPalette.black555,\n white: kittColors.white,\n 'white-light': kittColors.white,\n primary: kittColors.primary,\n 'primary-light': kittColors.primaryLight,\n accent: kittColors.accent,\n success: kittColors.success,\n danger: kittColors.danger,\n warning: kittColors.warning,\n },\n types: {\n headers: {\n fontFamily: {\n native: {\n regular: 'Moderat-Extended-Bold',\n bold: 'Moderat-Extended-Bold',\n },\n web: {\n regular: 'Moderat',\n bold: 'Moderat',\n },\n },\n fontWeight: 400,\n fontStyle: 'normal',\n configs: {\n // also known as xxlarge\n header1: createTypographyTypeConfig(1.3, 38, 62),\n // also known as xlarge\n header2: createTypographyTypeConfig(1.3, 32, 48),\n // also known as medium\n header3: createTypographyTypeConfig(1.3, 24, 36),\n // also known as xsmall\n header4: createTypographyTypeConfig(1.3, 18, 24),\n // also known as xxsmall\n header5: createTypographyTypeConfig(1.3, 18, 18),\n },\n },\n bodies: {\n fontFamily: {\n web: {\n regular: 'Noto Sans',\n bold: 'Noto Sans',\n },\n native: {\n regular: 'NotoSans',\n bold: 'NotoSans-Bold',\n },\n },\n fontWeight: {\n regular: 400,\n bold: 700,\n },\n fontStyle: {\n regular: 'normal',\n bold: 'normal',\n },\n configs: {\n 'body-large': createTypographyTypeConfig(1.6, 18, 24),\n 'body-medium': createTypographyTypeConfig(1.6, 18, 18),\n body: createTypographyTypeConfig(1.6, 16, 16),\n 'body-small': createTypographyTypeConfig(1.6, 14, 14),\n 'body-xsmall': createTypographyTypeConfig(1.6, 12, 12),\n },\n },\n },\n link: {\n disabledColor: kittColors.blackDisabled,\n },\n};\n","import type { InputUIState } from '../../forms/utils';\nimport { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\nimport { typography } from './typography';\n\nexport interface InputStateStyle {\n backgroundColor?: string;\n borderColor: string;\n color: string;\n}\n\nexport type InputStateTheme = Record<InputUIState, InputStateStyle>;\n\nconst inputStatesStyle: InputStateTheme = {\n default: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: colors.black,\n },\n pending: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: colors.black,\n },\n valid: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: lateOceanColorPalette.black100,\n color: colors.black,\n },\n hover: {\n borderColor: lateOceanColorPalette.black200,\n color: colors.black,\n },\n focus: {\n borderColor: colors.primary,\n color: colors.black,\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n color: colors.blackDisabled,\n },\n invalid: {\n borderColor: colors.separator,\n color: colors.black,\n },\n};\n\nexport interface InputTheme {\n minHeight: number;\n color: {\n selection: string;\n placeholder: string;\n };\n borderWidth: number;\n borderRadius: number;\n icon: {\n size: number;\n };\n padding: {\n horizontal: number;\n vertical: number;\n };\n rightContainer: {\n padding: number;\n };\n transition: {\n property: string;\n duration: string;\n timingFunction: string;\n };\n states: InputStateTheme;\n}\n\nexport const input: InputTheme = {\n minHeight: 40,\n color: {\n selection: colors.primary,\n placeholder: typography.colors['black-light'],\n },\n borderWidth: 2,\n borderRadius: 10,\n icon: {\n size: 20,\n },\n rightContainer: {\n padding: 10,\n },\n padding: {\n horizontal: 16,\n vertical: 5,\n },\n transition: {\n property: 'border-color',\n duration: '200ms',\n timingFunction: 'ease-in-out',\n },\n states: inputStatesStyle,\n};\n","export const inputField = {\n containerPaddingTop: 5,\n containerPaddingBottom: 10,\n feedbackPaddingTop: { base: 5, small: 10 },\n labelContainerPaddingBottom: 5,\n labelFeedbackMarginLeft: 6,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\ninterface InputTagTypeTheme {\n backgroundColor: string;\n labelColor: string;\n}\nexport interface InputTagTheme {\n borderRadius: number;\n iconSize: number;\n default: InputTagTypeTheme;\n success: InputTagTypeTheme;\n danger: InputTagTypeTheme;\n}\n\nexport const inputTag: InputTagTheme = {\n success: {\n backgroundColor: colors.success,\n labelColor: colors.uiBackgroundLight,\n },\n danger: {\n backgroundColor: colors.danger,\n labelColor: colors.uiBackgroundLight,\n },\n default: {\n backgroundColor: lateOceanColorPalette.black50,\n labelColor: colors.black,\n },\n borderRadius: 10,\n iconSize: 13.5,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface RadioTheme {\n size: number;\n unchecked: {\n backgroundColor: string;\n borderColor: string;\n borderWidth: number;\n };\n checked: {\n backgroundColor: string;\n innerBackgroundColor: string;\n innerSize: number;\n };\n disabled: {\n backgroundColor: string;\n borderColor: string;\n };\n}\n\nexport const radio: RadioTheme = {\n size: 18,\n unchecked: {\n backgroundColor: colors.uiBackgroundLight,\n borderWidth: 2,\n borderColor: lateOceanColorPalette.black200,\n },\n checked: {\n backgroundColor: colors.primary,\n innerSize: 5,\n innerBackgroundColor: colors.uiBackgroundLight,\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n },\n};\n","import { colors } from './colors';\n\nexport interface RadioButtonGroupTheme {\n item: {\n minHeight: number;\n borderWidth: number;\n borderColor: {\n default: string;\n hover: string;\n pressed: string;\n active: string;\n disabled: string;\n [key: string]: string;\n };\n backgroundColor: {\n default: string;\n hover: string;\n pressed: string;\n active: string;\n disabled: string;\n };\n borderRadius: number;\n padding: {\n horizontal: number;\n vertical: number;\n };\n transition: {\n property: string;\n duration: string;\n timingFunction: string;\n };\n };\n}\n\nexport const radioButtonGroup: RadioButtonGroupTheme = {\n item: {\n minHeight: 40,\n borderWidth: 2,\n borderRadius: 20,\n borderColor: {\n default: colors.separator,\n hover: colors.primary,\n pressed: colors.primary,\n active: colors.primary,\n disabled: colors.separator,\n },\n backgroundColor: {\n default: colors.uiBackgroundLight,\n hover: colors.white,\n pressed: colors.primary,\n active: colors.primary,\n disabled: colors.disabled,\n },\n padding: {\n horizontal: 18,\n vertical: 6,\n },\n transition: {\n property: 'all',\n duration: '200ms',\n timingFunction: 'ease-in-out',\n },\n },\n};\n","export interface TextAreaTheme {\n minHeight: number;\n}\n\nexport const textArea: TextAreaTheme = {\n minHeight: 120,\n};\n","import { checkbox } from './checkbox';\nimport { datePicker } from './datePicker';\nimport { input } from './input';\nimport { inputField } from './inputField';\nimport { inputTag } from './inputTag';\nimport { radio } from './radio';\nimport { radioButtonGroup } from './radioButtonGroup';\nimport { textArea } from './textArea';\n\nexport const forms = {\n datePicker,\n input,\n radio,\n inputField,\n textArea,\n checkbox,\n inputTag,\n radioButtonGroup,\n};\n","import type { KittResponsivePropOrValue } from '../../KittBreakpoints';\nimport { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\nimport { spacing } from './spacing';\n\nexport interface HighlightThemeType {\n backgroundColor: string;\n}\n\nexport interface HighlightTheme {\n borderRadius: KittResponsivePropOrValue<number>;\n padding: KittResponsivePropOrValue<number>;\n regular: HighlightThemeType;\n dark: HighlightThemeType;\n}\n\nexport const highlight: HighlightTheme = {\n borderRadius: {\n base: spacing * 5,\n },\n regular: {\n backgroundColor: colors.accentLight,\n },\n dark: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n padding: {\n base: spacing * 5,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { button } from './button';\n\ninterface IconButtonVariationValues {\n pressedBackgroundColor: string;\n}\n\nexport interface IconButtonTheme {\n backgroundColor: string;\n width: number;\n height: number;\n borderRadius: number;\n borderWidth: number;\n borderColor: string;\n transition: {\n property: string;\n duration: string;\n timingFunction: string;\n };\n scale: {\n base: {\n default: number;\n hover: number;\n active: number;\n };\n medium: {\n hover: number;\n };\n };\n disabled: {\n scale: number;\n backgroundColor: string;\n borderColor: string;\n };\n default: IconButtonVariationValues;\n white: IconButtonVariationValues;\n primary: IconButtonVariationValues;\n}\n\nexport const iconButton: IconButtonTheme = {\n backgroundColor: 'transparent',\n width: 40,\n height: 40,\n borderRadius: 20,\n borderWidth: 2,\n borderColor: 'transparent',\n transition: {\n property: 'all',\n duration: '200ms',\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1);',\n },\n scale: {\n base: {\n default: 1,\n hover: 0.95,\n active: 0.95,\n },\n medium: {\n hover: 1.05,\n },\n },\n disabled: {\n scale: 1,\n backgroundColor: button.disabled.default.backgroundColor,\n borderColor: button.disabled.default.borderColor,\n },\n default: {\n pressedBackgroundColor: button.default.default.pressedBackgroundColor,\n },\n white: {\n pressedBackgroundColor: button.white.default.hoverBackgroundColor,\n },\n primary: {\n pressedBackgroundColor: lateOceanColorPalette.moonPurpleLight1,\n },\n};\n","import { colors } from './colors';\n\nexport interface ListItemTheme {\n padding: string;\n borderColor: string;\n borderWidth: number;\n innerMargin: number;\n}\n\nexport const listItem: ListItemTheme = {\n padding: '12px 16px',\n borderColor: colors.separator,\n borderWidth: 1,\n innerMargin: 8,\n};\n","export interface NavigationModalTheme {\n height: number;\n padding: number;\n animation: {\n overlay: {\n duration: number;\n easing: number[];\n };\n content: {\n duration: number;\n easing: number[];\n };\n };\n}\n\nexport const webAnimationContentDuration = 600;\nexport const webAnimationContentEasing = [0.77, 0, 0.175, 1];\n\nexport const webAnimationOverlayDuration = 250;\nexport const webAnimationOverlayEasing = [0.42, 0, 1, 1];\n\nexport const navigationModal: NavigationModalTheme = {\n height: 56,\n padding: 16,\n animation: {\n overlay: {\n duration: webAnimationOverlayDuration,\n easing: webAnimationOverlayEasing,\n },\n content: {\n duration: webAnimationContentDuration,\n easing: webAnimationContentEasing,\n },\n },\n};\n","import { colors } from './colors';\n\nexport interface PageLoaderTheme {\n size: number;\n strokeWidth: number;\n colors: {\n base: string;\n fill: string;\n };\n animation: {\n delay: number;\n circleBackgroundFillDuration: number;\n filledCircleFillDuration: number;\n groupFilledCircleRotationDuration: number;\n filledCircleRotationDuration: number;\n fillEasingFunction: [number, number, number, number];\n };\n}\n\nexport const pageLoader: PageLoaderTheme = {\n size: 60,\n strokeWidth: 3,\n colors: {\n base: colors.separator,\n fill: colors.primary,\n },\n animation: {\n delay: 500,\n circleBackgroundFillDuration: 1000,\n filledCircleFillDuration: 1800,\n groupFilledCircleRotationDuration: 1800,\n filledCircleRotationDuration: 2160,\n fillEasingFunction: [0.39, 0.575, 0.565, 1],\n },\n};\n","import type { TextStyle } from 'react-native';\nimport { colors } from './colors';\nimport { typography } from './typography';\n\nexport interface PickerTheme {\n ios: {\n default: TextStyle;\n selected: {\n color: string;\n };\n };\n android: {\n padding: string;\n default: {\n backgroundColor: string;\n };\n selected: {\n backgroundColor: string;\n color: string;\n };\n };\n}\n\nexport const picker: PickerTheme = {\n ios: {\n default: {\n fontFamily: typography.types.bodies.fontFamily.native.regular,\n ...typography.types.bodies.configs.body.baseAndSmall,\n fontSize: 16,\n color: typography.colors['black-light'],\n },\n selected: {\n color: typography.colors.primary,\n },\n },\n android: {\n padding: '12px 24px',\n default: {\n backgroundColor: colors.transparent,\n },\n selected: {\n backgroundColor: colors.primary,\n color: typography.colors.white,\n },\n },\n};\n","export const shadows = {\n medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\ninterface SkeletonShapeTheme {\n size: number;\n borderRadius: number;\n}\nexport interface SkeletonTheme {\n backgroundColor: string;\n flareColor: string;\n animationDuration: number;\n shape: Record<string, SkeletonShapeTheme>;\n}\n\nexport const skeleton: SkeletonTheme = {\n backgroundColor: lateOceanColorPalette.black100,\n flareColor: lateOceanColorPalette.black200,\n animationDuration: 1000,\n shape: {\n bar: {\n size: 8,\n borderRadius: 4,\n },\n circle: {\n size: 48,\n borderRadius: 24,\n },\n square: {\n size: 48,\n borderRadius: 6,\n },\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface TagVariantTheme {\n borderWidth: number;\n backgroundColor: string;\n borderColor: string;\n}\n\nexport interface TagTypeTheme {\n fill: TagVariantTheme;\n outline: TagVariantTheme;\n}\n\nexport interface TagTheme {\n borderRadius: number;\n padding: string;\n primary: TagTypeTheme;\n default: TagTypeTheme;\n danger: TagTypeTheme;\n warn: TagTypeTheme;\n}\n\nexport const tag: TagTheme = {\n borderRadius: 10,\n padding: '2px 12px',\n primary: {\n fill: {\n backgroundColor: lateOceanColorPalette.moonPurpleLight1,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.primary,\n },\n },\n default: {\n fill: {\n backgroundColor: lateOceanColorPalette.black50,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.black,\n },\n },\n danger: {\n fill: {\n backgroundColor: lateOceanColorPalette.warmEmbrace,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.danger,\n },\n },\n warn: {\n fill: {\n backgroundColor: colors.warning,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.warning,\n },\n },\n};\n","export const hex2rgba = (hex: string, alpha = 1): string => {\n const r = parseInt(hex.slice(1, 3), 16);\n const g = parseInt(hex.slice(3, 5), 16);\n const b = parseInt(hex.slice(5, 7), 16);\n\n return `rgba(${r}, ${g}, ${b}, ${alpha})`;\n};\n","import { hex2rgba } from '../../utils/hexToRgba';\nimport { colors } from './colors';\n\ninterface TooltipTransition {\n duration: string;\n timingFunction: string;\n property: string;\n}\n\nexport interface TooltipTheme {\n backgroundColor: string;\n borderRadius: number;\n opacity: number;\n horizontalPadding: number;\n verticalPadding: number;\n floatingPadding: number;\n maxWidth: number;\n transition: {\n in: TooltipTransition;\n out: TooltipTransition;\n };\n arrow: {\n width: number;\n height: number;\n };\n}\n\nexport const tooltip: TooltipTheme = {\n backgroundColor: hex2rgba(colors.black, 0.95),\n borderRadius: 10,\n opacity: 0.95,\n horizontalPadding: 16,\n verticalPadding: 8,\n floatingPadding: 8,\n maxWidth: 328,\n transition: {\n in: {\n duration: '150ms',\n timingFunction: 'ease-out',\n property: 'opacity',\n },\n out: {\n duration: '75ms',\n timingFunction: 'ease-out',\n property: 'opacity',\n },\n },\n arrow: {\n width: 39,\n height: 9,\n },\n};\n","import { avatar } from './late-ocean/avatar';\nimport { bottomSheet } from './late-ocean/bottomSheet';\nimport { button } from './late-ocean/button';\nimport { card } from './late-ocean/card';\nimport { cardModal } from './late-ocean/cardModal';\nimport { choices } from './late-ocean/choices';\nimport { colors } from './late-ocean/colors';\nimport { dialogModal } from './late-ocean/dialogModal';\nimport { feedbackMessage } from './late-ocean/feedback';\nimport { forms } from './late-ocean/forms';\nimport { highlight } from './late-ocean/highlight';\nimport { iconButton } from './late-ocean/iconButton';\nimport { listItem } from './late-ocean/listItem';\nimport { navigationModal } from './late-ocean/navigationModal';\nimport { pageLoader } from './late-ocean/pageLoader';\nimport { picker } from './late-ocean/picker';\nimport { shadows } from './late-ocean/shadows';\nimport { skeleton } from './late-ocean/skeleton';\nimport { spacing } from './late-ocean/spacing';\nimport { tag } from './late-ocean/tag';\nimport { tooltip } from './late-ocean/tooltip';\nimport { typography } from './late-ocean/typography';\nimport { lateOceanColorPalette } from './palettes/lateOceanColorPalette';\n\nconst breakpoints = {\n values: {\n base: 0,\n small: 480,\n medium: 768,\n large: 1024,\n wide: 1280,\n },\n min: {\n smallBreakpoint: 'min-width: 480px',\n mediumBreakpoint: 'min-width: 768px',\n largeBreakpoint: 'min-width: 1024px',\n wideBreakpoint: 'min-width: 1280px',\n },\n max: {\n smallBreakpoint: 'max-width: 479px',\n mediumBreakpoint: 'max-width: 767px',\n largeBreakpoint: 'max-width: 1023px',\n wideBreakpoint: 'max-width: 1279px',\n },\n};\n\n// eslint-disable-next-line unicorn/expiring-todo-comments\n// TODO : seperate brand color usage definition from proper theme definition and add typings - https://ornikar.atlassian.net/browse/CME-156\nexport const theme = {\n spacing,\n colors,\n palettes: { lateOcean: lateOceanColorPalette },\n avatar,\n breakpoints,\n button,\n bottomSheet,\n card,\n cardModal,\n choices,\n dialogModal,\n feedbackMessage,\n forms,\n highlight,\n iconButton,\n listItem,\n pageLoader,\n picker,\n shadows,\n skeleton,\n tag,\n tooltip,\n typography,\n navigationModal,\n};\n\nexport type Theme = typeof theme;\n"],"names":["lateOceanColorPalette","lateOcean","lateOceanLight1","lateOceanLight2","lateOceanLight3","warmEmbrace","warmEmbraceLight1","black1000","black800","black555","black400","black200","black100","black50","black25","white","viride","englishVermillon","goldCrayola","aero","transparent","moonPurple","moonPurpleLight1","colors","primary","primaryLight","accent","accentLight","success","correct","danger","info","warning","separator","hover","black","blackDisabled","blackLight","blackAnthracite","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","defaultAvatarSize","defaultAvatarIconSize","largeAvatarSize","largeAvatarIconSize","avatar","borderRadius","size","iconSize","default","backgroundColor","large","spacing","bottomSheet","container","padding","handle","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","xLarge","horizontal","vertical","transition","duration","timingFunction","pressedBackgroundColor","hoverBackgroundColor","focusBorderColor","ghost","color","hoverColor","activeColor","subtle","borderColor","card","secondary","webAnimationContentDuration","webAnimationContentEasing","webAnimationOverlayDuration","webAnimationOverlayEasing","overlayHorizontalPadding","cardModal","maxWidthWithPadding","shadow","offsetX","offsetY","opacity","radius","header","height","footer","overlayPadding","animation","easing","content","choices","row","column","item","small","selected","pressed","hoverWhenSelected","border","width","property","dialogModal","feedbackMessage","checkbox","checkedBorderColor","checkedBackgroundColor","markColor","datePicker","day","month","year","calcLineHeight","fontSize","lineHeightMultiplier","Math","round","createTypographyTypeConfig","baseAndSmallFontSize","mediumAndWideFontSize","baseAndSmall","lineHeight","mediumAndWide","typography","kittColors","types","headers","fontFamily","native","regular","bold","web","fontWeight","fontStyle","configs","header1","header2","header3","header4","header5","bodies","body","link","disabledColor","inputStatesStyle","pending","valid","invalid","input","selection","placeholder","icon","rightContainer","states","inputField","containerPaddingTop","containerPaddingBottom","feedbackPaddingTop","labelContainerPaddingBottom","labelFeedbackMarginLeft","inputTag","labelColor","radio","unchecked","checked","innerSize","innerBackgroundColor","radioButtonGroup","textArea","forms","highlight","iconButton","listItem","innerMargin","navigationModal","pageLoader","strokeWidth","fill","delay","circleBackgroundFillDuration","filledCircleFillDuration","groupFilledCircleRotationDuration","filledCircleRotationDuration","fillEasingFunction","picker","ios","android","shadows","skeleton","flareColor","animationDuration","shape","bar","circle","square","tag","outline","warn","hex2rgba","hex","alpha","r","parseInt","slice","g","b","tooltip","horizontalPadding","verticalPadding","floatingPadding","in","out","arrow","breakpoints","values","wide","min","smallBreakpoint","mediumBreakpoint","largeBreakpoint","wideBreakpoint","max","theme","palettes"],"mappings":"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"}
1
+ {"version":3,"file":"linaria-themes-node-14.17.cjs.js","sources":["../src/themes/palettes/lateOceanColorPalette.ts","../src/themes/late-ocean/colors.ts","../src/themes/late-ocean/avatar.ts","../src/themes/late-ocean/spacing.ts","../src/themes/late-ocean/bottomSheet.ts","../src/themes/late-ocean/button.ts","../src/themes/late-ocean/card.ts","../src/themes/late-ocean/cardModal.ts","../src/themes/late-ocean/choices.ts","../src/themes/late-ocean/dialogModal.ts","../src/themes/late-ocean/feedback.ts","../src/themes/late-ocean/checkbox.ts","../src/themes/late-ocean/datePicker.ts","../src/themes/late-ocean/typography.ts","../src/themes/late-ocean/input.ts","../src/themes/late-ocean/inputField.ts","../src/themes/late-ocean/inputTag.ts","../src/themes/late-ocean/radio.ts","../src/themes/late-ocean/radioButtonGroup.ts","../src/themes/late-ocean/textArea.ts","../src/themes/late-ocean/forms.ts","../src/themes/late-ocean/highlight.ts","../src/themes/late-ocean/iconButton.ts","../src/themes/late-ocean/listItem.ts","../src/themes/late-ocean/navigationModal.ts","../src/themes/late-ocean/pageLoader.ts","../src/themes/late-ocean/picker.ts","../src/themes/late-ocean/shadows.ts","../src/themes/late-ocean/skeleton.ts","../src/themes/late-ocean/tag.ts","../src/utils/hexToRgba.ts","../src/themes/late-ocean/tooltip.ts","../src/themes/default.ts"],"sourcesContent":["export const lateOceanColorPalette = {\n lateOcean: '#4C34E0',\n lateOceanLight1: '#705DE6',\n lateOceanLight2: '#9485EC',\n lateOceanLight3: '#D6BAF9',\n\n warmEmbrace: '#F4D3CE',\n warmEmbraceLight1: '#FFEDE6',\n\n black1000: '#000000',\n black800: '#333333',\n black555: '#737373',\n black400: '#999999',\n black200: '#CCCCCC',\n black100: '#E5E5E5',\n black50: '#F2F2F2',\n black25: '#F9F9F9',\n white: '#FFFFFF',\n\n viride: '#38836D',\n englishVermillon: '#D44148',\n goldCrayola: '#F8C583',\n aero: '#89BDDD',\n\n transparent: 'transparent',\n\n moonPurple: '#DBD6F9',\n moonPurpleLight1: '#EDEBFC',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const colors = {\n primary: lateOceanColorPalette.lateOcean,\n primaryLight: lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n accentLight: lateOceanColorPalette.warmEmbraceLight1,\n success: lateOceanColorPalette.viride,\n correct: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\n info: lateOceanColorPalette.aero,\n warning: lateOceanColorPalette.goldCrayola,\n separator: lateOceanColorPalette.black100,\n hover: lateOceanColorPalette.black100,\n white: lateOceanColorPalette.white,\n black: lateOceanColorPalette.black1000,\n blackDisabled: lateOceanColorPalette.black400,\n blackLight: lateOceanColorPalette.black555,\n blackAnthracite: lateOceanColorPalette.black800,\n uiBackground: lateOceanColorPalette.black25,\n uiBackgroundLight: lateOceanColorPalette.white,\n transparent: lateOceanColorPalette.transparent,\n disabled: lateOceanColorPalette.black50,\n overlay: {\n dark: 'rgba(41, 48, 51, 0.25)',\n light: 'rgba(255, 255, 255, 0.90)',\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport const defaultAvatarSize = 40;\nexport const defaultAvatarIconSize = 20;\n\nexport const largeAvatarSize = 120;\nexport const largeAvatarIconSize = 30;\n\nexport interface AvatarThemeColorVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarThemeSizeVariant {\n borderRadius: number;\n size: number;\n iconSize: number;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n size: number;\n iconSize: number;\n default: AvatarThemeColorVariant;\n light: AvatarThemeColorVariant;\n large: AvatarThemeSizeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n size: defaultAvatarSize,\n iconSize: defaultAvatarIconSize,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n large: {\n borderRadius: 30,\n size: largeAvatarSize,\n iconSize: largeAvatarIconSize,\n },\n};\n","export const spacing = 4;\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { spacing } from './spacing';\n\nexport interface BottomSheetTheme {\n container: {\n padding: number;\n };\n handle: {\n backgroundColor: string;\n };\n}\n\nexport const bottomSheet: BottomSheetTheme = {\n container: {\n padding: spacing * 4,\n },\n handle: {\n backgroundColor: lateOceanColorPalette.black200,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface BaseVariantTheme {\n backgroundColor: string;\n pressedBackgroundColor: string;\n hoverBackgroundColor: string;\n focusBorderColor: string;\n}\n\nexport interface GhostVariantTheme extends BaseVariantTheme {\n color: string;\n hoverColor: string;\n activeColor: string;\n}\nexport interface BaseButtonTheme {\n default: BaseVariantTheme;\n}\n\nexport interface BaseButtonWithVariant extends BaseButtonTheme {\n ghost: GhostVariantTheme;\n}\n\nexport interface SubtleBaseVariantTheme extends BaseVariantTheme {\n color: string;\n hoverColor: string;\n activeColor: string;\n}\n\nexport interface SubtleButtonTheme extends BaseButtonTheme {\n default: SubtleBaseVariantTheme;\n}\n\nexport interface DisabledBaseVariantTheme extends BaseVariantTheme {\n borderColor: string;\n}\n\nexport interface DisabledButtonTheme extends BaseButtonTheme {\n default: DisabledBaseVariantTheme;\n}\n\ninterface ButtonPadding {\n horizontal: number;\n vertical: number;\n}\n\nexport interface ButtonTheme {\n borderRadius: number;\n borderWidth: {\n disabled: number;\n focus: number;\n };\n minHeight: number;\n minWidth: number;\n maxWidth: number;\n scale: {\n base: {\n default: number;\n hover: number;\n active: number;\n };\n medium: {\n hover: number;\n };\n };\n /**\n * @deprecated use `padding` instead\n */\n contentPadding: {\n default: string;\n large: string;\n xLarge: string;\n disabled: string;\n };\n padding: {\n default: ButtonPadding;\n large: ButtonPadding;\n xLarge: ButtonPadding;\n disabled: ButtonPadding;\n };\n transition: {\n duration: string;\n timingFunction: string;\n };\n default: BaseButtonWithVariant;\n primary: BaseButtonWithVariant;\n white: BaseButtonTheme;\n subtle: SubtleButtonTheme;\n 'subtle-dark': SubtleButtonTheme;\n disabled: DisabledButtonTheme;\n}\n\nexport const button: ButtonTheme = {\n borderRadius: 30,\n borderWidth: {\n disabled: 2,\n focus: 3,\n },\n minHeight: 40,\n minWidth: 40,\n maxWidth: 335,\n scale: {\n base: {\n default: 1,\n hover: 0.95,\n active: 0.95,\n },\n medium: {\n hover: 1.05,\n },\n },\n contentPadding: {\n default: '7px 16px 7px',\n large: '11px 24px 11px',\n xLarge: '15px 24px 15px',\n disabled: '5px 14px 5px',\n },\n padding: {\n default: {\n horizontal: 16,\n vertical: 7,\n },\n large: {\n horizontal: 24,\n vertical: 11,\n },\n xLarge: {\n horizontal: 24,\n vertical: 15,\n },\n disabled: {\n horizontal: 14,\n vertical: 5,\n },\n },\n transition: {\n duration: '200ms',\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1)',\n },\n default: {\n default: {\n backgroundColor: 'rgba(0, 0, 0, 0.05)',\n pressedBackgroundColor: 'rgba(0, 0, 0, 0.1)',\n hoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',\n focusBorderColor: 'rgba(0, 0, 0, 0.1)',\n },\n ghost: {\n backgroundColor: 'rgba(255, 255, 255, 0.1)',\n pressedBackgroundColor: 'rgba(255, 255, 255, 0.05)',\n hoverBackgroundColor: 'rgba(255, 255, 255, 0.05)',\n focusBorderColor: 'rgba(255, 255, 255, 0.4)',\n color: lateOceanColorPalette.white,\n hoverColor: lateOceanColorPalette.white,\n activeColor: lateOceanColorPalette.white,\n },\n },\n primary: {\n default: {\n backgroundColor: colors.primary,\n pressedBackgroundColor: colors.primaryLight,\n hoverBackgroundColor: colors.primaryLight,\n focusBorderColor: 'rgba(76, 52, 224, 0.2)',\n },\n ghost: {\n backgroundColor: colors.uiBackgroundLight,\n pressedBackgroundColor: colors.uiBackground,\n hoverBackgroundColor: colors.hover,\n focusBorderColor: 'rgba(255,255,255, 0.4)',\n color: colors.primary,\n hoverColor: colors.hover,\n activeColor: colors.hover,\n },\n },\n white: {\n default: {\n backgroundColor: 'rgba(255, 255, 255, 0.05)',\n pressedBackgroundColor: 'rgba(255, 255, 255, 0.1)',\n hoverBackgroundColor: 'rgba(255, 255, 255, 0.1)',\n focusBorderColor: 'rgba(255, 255, 255, 0.1)',\n },\n },\n subtle: {\n default: {\n backgroundColor: colors.transparent,\n pressedBackgroundColor: colors.transparent,\n hoverBackgroundColor: colors.transparent,\n focusBorderColor: 'rgba(76, 52, 224, 0.2)',\n color: colors.primary,\n hoverColor: 'rgba(76, 52, 224, 0.8)',\n activeColor: 'rgba(76, 52, 224, 0.8)',\n },\n },\n 'subtle-dark': {\n default: {\n backgroundColor: colors.transparent,\n pressedBackgroundColor: colors.transparent,\n hoverBackgroundColor: colors.transparent,\n focusBorderColor: 'rgba(0, 0, 0, 0.1)',\n color: colors.black,\n hoverColor: 'rgba(0, 0, 0, 0.8)',\n activeColor: 'rgba(0, 0, 0, 0.8)',\n },\n },\n disabled: {\n default: {\n backgroundColor: colors.disabled,\n pressedBackgroundColor: colors.disabled,\n hoverBackgroundColor: colors.disabled,\n focusBorderColor: lateOceanColorPalette.black100,\n borderColor: lateOceanColorPalette.black100,\n },\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface CardThemeType {\n backgroundColor: string;\n borderColor: string;\n}\nexport interface CardTheme {\n borderRadius: number;\n borderWidth: number;\n primary: CardThemeType;\n secondary: CardThemeType;\n subtle: CardThemeType;\n}\n\nexport const card: CardTheme = {\n borderRadius: 20,\n borderWidth: 2,\n primary: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.primary,\n },\n secondary: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n },\n subtle: {\n backgroundColor: lateOceanColorPalette.black50,\n borderColor: colors.separator,\n },\n};\n","import { colors } from './colors';\n\nexport interface CardModalTheme {\n borderRadius: number;\n maxWidth: number;\n maxWidthWithPadding: number;\n shadow: {\n color: string;\n offsetX: number;\n offsetY: number;\n opacity: number;\n radius: number;\n };\n header: {\n height: number;\n borderWidth: number;\n borderColor: string;\n };\n footer: {\n borderWidth: number;\n borderColor: string;\n };\n overlayPadding: {\n horizontal: number;\n vertical: number;\n };\n animation: {\n overlay: {\n duration: number;\n easing: number[];\n };\n content: {\n duration: number;\n easing: number[];\n };\n };\n}\n\nexport const webAnimationContentDuration = 400;\nexport const webAnimationContentEasing = [0.77, 0, 0.175, 1];\n\nexport const webAnimationOverlayDuration = 250;\nexport const webAnimationOverlayEasing = [0.42, 0, 1, 1];\n\nconst maxWidth = 540;\nconst overlayHorizontalPadding = 24;\n\nexport const cardModal: CardModalTheme = {\n borderRadius: 20,\n maxWidth,\n maxWidthWithPadding: maxWidth + overlayHorizontalPadding * 2,\n shadow: {\n color: colors.black,\n offsetX: 0,\n offsetY: 10,\n opacity: 0.15,\n radius: 20,\n },\n header: {\n height: 56,\n borderWidth: 1,\n borderColor: colors.separator,\n },\n footer: {\n borderWidth: 1,\n borderColor: colors.separator,\n },\n overlayPadding: {\n horizontal: 24,\n vertical: 32,\n },\n animation: {\n overlay: {\n duration: webAnimationOverlayDuration,\n easing: webAnimationOverlayEasing,\n },\n content: {\n duration: webAnimationContentDuration,\n easing: webAnimationContentEasing,\n },\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface ChoicesItemTheme {\n borderRadius: number;\n padding: {\n base: number;\n small: number;\n };\n backgroundColor: {\n default: string;\n disabled: string;\n selected: string;\n pressed: string;\n hover: string;\n hoverWhenSelected: string;\n };\n disabled: {\n border: {\n width: number;\n color: string;\n };\n };\n transition: {\n property: string;\n duration: number;\n timingFunction: string;\n };\n}\n\nexport interface ChoicesTheme {\n spacing: {\n row: number;\n column: number;\n };\n item: ChoicesItemTheme;\n}\n\nexport const choices: ChoicesTheme = {\n spacing: {\n row: 12,\n column: 12,\n },\n item: {\n borderRadius: 10,\n padding: {\n base: 16,\n small: 24,\n },\n backgroundColor: {\n default: lateOceanColorPalette.black50,\n disabled: colors.disabled,\n selected: colors.primary,\n pressed: lateOceanColorPalette.lateOceanLight1,\n hover: lateOceanColorPalette.black100,\n hoverWhenSelected: lateOceanColorPalette.lateOceanLight1,\n },\n disabled: {\n border: {\n width: 2,\n color: lateOceanColorPalette.black100,\n },\n },\n transition: {\n property: 'all',\n duration: 300,\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1)',\n },\n },\n};\n","import { colors } from './colors';\n\nexport interface DialogModalTheme {\n borderRadius: number;\n maxWidth: number;\n overlayPadding: {\n horizontal: number;\n vertical: number;\n };\n shadow: {\n color: string;\n offsetX: number;\n offsetY: number;\n opacity: number;\n radius: number;\n };\n animation: {\n overlay: {\n duration: number;\n easing: number[];\n };\n content: {\n duration: number;\n easing: number[];\n };\n };\n}\n\nexport const webAnimationContentDuration = 400;\nexport const webAnimationContentEasing = [0.77, 0, 0.175, 1];\n\nexport const webAnimationOverlayDuration = 250;\nexport const webAnimationOverlayEasing = [0.42, 0, 1, 1];\n\nexport const dialogModal: DialogModalTheme = {\n borderRadius: 20,\n maxWidth: 540,\n overlayPadding: {\n horizontal: 24,\n vertical: 32,\n },\n shadow: {\n color: colors.black,\n offsetX: 0,\n offsetY: 10,\n opacity: 0.15,\n radius: 20,\n },\n animation: {\n overlay: {\n duration: webAnimationOverlayDuration,\n easing: webAnimationOverlayEasing,\n },\n content: {\n duration: webAnimationContentDuration,\n easing: webAnimationContentEasing,\n },\n },\n};\n","import { colors } from './colors';\n\nexport interface FeedbackMessageVariantTheme {\n backgroundColor: string;\n}\n\nexport interface FeedbackMessageTheme {\n danger: FeedbackMessageVariantTheme;\n info: FeedbackMessageVariantTheme;\n success: FeedbackMessageVariantTheme;\n warning: FeedbackMessageVariantTheme;\n}\n\nexport const feedbackMessage: FeedbackMessageTheme = {\n danger: {\n backgroundColor: colors.danger,\n },\n success: {\n backgroundColor: colors.success,\n },\n info: {\n backgroundColor: colors.info,\n },\n warning: {\n backgroundColor: colors.warning,\n },\n};\n","import { colors } from './colors';\n\nexport const checkbox = {\n borderWidth: 2,\n borderRadius: 5,\n height: 20,\n width: 20,\n iconSize: 14,\n borderColor: colors.separator,\n backgroundColor: colors.uiBackgroundLight,\n checkedBorderColor: colors.primary,\n checkedBackgroundColor: colors.primary,\n markColor: colors.uiBackgroundLight,\n};\n","interface DatePickerPartTheme {\n minWidth: number;\n}\n\nexport interface DatePickerTheme {\n day: DatePickerPartTheme;\n month: DatePickerPartTheme;\n year: DatePickerPartTheme;\n}\n\nexport const datePicker: DatePickerTheme = {\n day: {\n minWidth: 64,\n },\n month: {\n minWidth: 64,\n },\n year: {\n minWidth: 82,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors as kittColors } from './colors';\n\nexport const calcLineHeight = (fontSize: number, lineHeightMultiplier: number): number =>\n Math.round(fontSize * lineHeightMultiplier);\n\nexport interface TypographyTypeBreakpointRangeConfig {\n fontSize: number;\n lineHeight: number;\n}\n\nexport interface TypographyTypeConfig {\n baseAndSmall: TypographyTypeBreakpointRangeConfig;\n mediumAndWide: TypographyTypeBreakpointRangeConfig;\n}\n\nexport const createTypographyTypeConfig = (\n lineHeightMultiplier: number,\n baseAndSmallFontSize: number,\n mediumAndWideFontSize: number,\n): TypographyTypeConfig => ({\n baseAndSmall: {\n fontSize: baseAndSmallFontSize,\n lineHeight: calcLineHeight(baseAndSmallFontSize, lineHeightMultiplier),\n },\n mediumAndWide: {\n fontSize: mediumAndWideFontSize,\n lineHeight: calcLineHeight(mediumAndWideFontSize, lineHeightMultiplier),\n },\n});\n\nexport const typography = {\n colors: {\n black: kittColors.black,\n 'black-anthracite': kittColors.blackAnthracite,\n 'black-disabled': lateOceanColorPalette.black400,\n 'black-light': lateOceanColorPalette.black555,\n white: kittColors.white,\n 'white-light': kittColors.white,\n primary: kittColors.primary,\n 'primary-light': kittColors.primaryLight,\n accent: kittColors.accent,\n success: kittColors.success,\n danger: kittColors.danger,\n warning: kittColors.warning,\n },\n types: {\n headers: {\n fontFamily: {\n native: {\n regular: 'Moderat-Extended-Bold',\n bold: 'Moderat-Extended-Bold',\n },\n web: {\n regular: 'Moderat',\n bold: 'Moderat',\n },\n },\n fontWeight: 400,\n fontStyle: 'normal',\n configs: {\n // also known as xxlarge\n header1: createTypographyTypeConfig(1.3, 38, 62),\n // also known as xlarge\n header2: createTypographyTypeConfig(1.3, 32, 48),\n // also known as medium\n header3: createTypographyTypeConfig(1.3, 24, 36),\n // also known as xsmall\n header4: createTypographyTypeConfig(1.3, 18, 24),\n // also known as xxsmall\n header5: createTypographyTypeConfig(1.3, 18, 18),\n },\n },\n bodies: {\n fontFamily: {\n web: {\n regular: 'Noto Sans',\n bold: 'Noto Sans',\n },\n native: {\n regular: 'NotoSans',\n bold: 'NotoSans-Bold',\n },\n },\n fontWeight: {\n regular: 400,\n bold: 700,\n },\n fontStyle: {\n regular: 'normal',\n bold: 'normal',\n },\n configs: {\n 'body-large': createTypographyTypeConfig(1.6, 18, 24),\n 'body-medium': createTypographyTypeConfig(1.6, 18, 18),\n body: createTypographyTypeConfig(1.6, 16, 16),\n 'body-small': createTypographyTypeConfig(1.6, 14, 14),\n 'body-xsmall': createTypographyTypeConfig(1.6, 12, 12),\n },\n },\n },\n link: {\n disabledColor: kittColors.blackDisabled,\n },\n};\n","import type { InputUIState } from '../../forms/utils';\nimport { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\nimport { typography } from './typography';\n\nexport interface InputStateStyle {\n backgroundColor?: string;\n borderColor: string;\n color: string;\n}\n\nexport type InputStateTheme = Record<InputUIState, InputStateStyle>;\n\nconst inputStatesStyle: InputStateTheme = {\n default: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: colors.black,\n },\n pending: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: colors.black,\n },\n valid: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: lateOceanColorPalette.black100,\n color: colors.black,\n },\n hover: {\n borderColor: lateOceanColorPalette.black200,\n color: colors.black,\n },\n focus: {\n borderColor: colors.primary,\n color: colors.black,\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n color: colors.blackDisabled,\n },\n invalid: {\n borderColor: colors.separator,\n color: colors.black,\n },\n};\n\nexport interface InputTheme {\n minHeight: number;\n color: {\n selection: string;\n placeholder: string;\n };\n borderWidth: number;\n borderRadius: number;\n icon: {\n size: number;\n };\n padding: {\n horizontal: number;\n vertical: number;\n };\n rightContainer: {\n padding: number;\n };\n transition: {\n property: string;\n duration: string;\n timingFunction: string;\n };\n states: InputStateTheme;\n}\n\nexport const input: InputTheme = {\n minHeight: 40,\n color: {\n selection: colors.primary,\n placeholder: typography.colors['black-light'],\n },\n borderWidth: 2,\n borderRadius: 10,\n icon: {\n size: 20,\n },\n rightContainer: {\n padding: 10,\n },\n padding: {\n horizontal: 16,\n vertical: 5,\n },\n transition: {\n property: 'border-color',\n duration: '200ms',\n timingFunction: 'ease-in-out',\n },\n states: inputStatesStyle,\n};\n","export const inputField = {\n containerPaddingTop: 5,\n containerPaddingBottom: 10,\n feedbackPaddingTop: { base: 5, small: 10 },\n labelContainerPaddingBottom: 5,\n labelFeedbackMarginLeft: 6,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\ninterface InputTagTypeTheme {\n backgroundColor: string;\n labelColor: string;\n}\nexport interface InputTagTheme {\n borderRadius: number;\n iconSize: number;\n default: InputTagTypeTheme;\n success: InputTagTypeTheme;\n danger: InputTagTypeTheme;\n}\n\nexport const inputTag: InputTagTheme = {\n success: {\n backgroundColor: colors.success,\n labelColor: colors.uiBackgroundLight,\n },\n danger: {\n backgroundColor: colors.danger,\n labelColor: colors.uiBackgroundLight,\n },\n default: {\n backgroundColor: lateOceanColorPalette.black50,\n labelColor: colors.black,\n },\n borderRadius: 10,\n iconSize: 13.5,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface RadioTheme {\n size: number;\n unchecked: {\n backgroundColor: string;\n borderColor: string;\n borderWidth: number;\n };\n checked: {\n backgroundColor: string;\n innerBackgroundColor: string;\n innerSize: number;\n };\n disabled: {\n backgroundColor: string;\n borderColor: string;\n };\n}\n\nexport const radio: RadioTheme = {\n size: 18,\n unchecked: {\n backgroundColor: colors.uiBackgroundLight,\n borderWidth: 2,\n borderColor: lateOceanColorPalette.black200,\n },\n checked: {\n backgroundColor: colors.primary,\n innerSize: 5,\n innerBackgroundColor: colors.uiBackgroundLight,\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n },\n};\n","import { colors } from './colors';\n\nexport interface RadioButtonGroupTheme {\n item: {\n minHeight: number;\n borderWidth: number;\n borderColor: {\n default: string;\n hover: string;\n pressed: string;\n active: string;\n disabled: string;\n [key: string]: string;\n };\n backgroundColor: {\n default: string;\n hover: string;\n pressed: string;\n active: string;\n disabled: string;\n };\n borderRadius: number;\n padding: {\n horizontal: number;\n vertical: number;\n };\n transition: {\n property: string;\n duration: string;\n timingFunction: string;\n };\n };\n}\n\nexport const radioButtonGroup: RadioButtonGroupTheme = {\n item: {\n minHeight: 40,\n borderWidth: 2,\n borderRadius: 20,\n borderColor: {\n default: colors.separator,\n hover: colors.primary,\n pressed: colors.primary,\n active: colors.primary,\n disabled: colors.separator,\n },\n backgroundColor: {\n default: colors.uiBackgroundLight,\n hover: colors.white,\n pressed: colors.primary,\n active: colors.primary,\n disabled: colors.disabled,\n },\n padding: {\n horizontal: 18,\n vertical: 6,\n },\n transition: {\n property: 'all',\n duration: '200ms',\n timingFunction: 'ease-in-out',\n },\n },\n};\n","export interface TextAreaTheme {\n minHeight: number;\n}\n\nexport const textArea: TextAreaTheme = {\n minHeight: 120,\n};\n","import { checkbox } from './checkbox';\nimport { datePicker } from './datePicker';\nimport { input } from './input';\nimport { inputField } from './inputField';\nimport { inputTag } from './inputTag';\nimport { radio } from './radio';\nimport { radioButtonGroup } from './radioButtonGroup';\nimport { textArea } from './textArea';\n\nexport const forms = {\n datePicker,\n input,\n radio,\n inputField,\n textArea,\n checkbox,\n inputTag,\n radioButtonGroup,\n};\n","import type { KittResponsivePropOrValue } from '../../KittBreakpoints';\nimport { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\nimport { spacing } from './spacing';\n\nexport interface HighlightThemeType {\n backgroundColor: string;\n}\n\nexport interface HighlightTheme {\n borderRadius: KittResponsivePropOrValue<number>;\n padding: KittResponsivePropOrValue<number>;\n regular: HighlightThemeType;\n dark: HighlightThemeType;\n}\n\nexport const highlight: HighlightTheme = {\n borderRadius: {\n base: spacing * 5,\n },\n regular: {\n backgroundColor: colors.accentLight,\n },\n dark: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n padding: {\n base: spacing * 5,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { button } from './button';\n\ninterface IconButtonVariationValues {\n pressedBackgroundColor: string;\n}\n\nexport interface IconButtonTheme {\n backgroundColor: string;\n width: number;\n height: number;\n borderRadius: number;\n borderWidth: number;\n borderColor: string;\n transition: {\n property: string;\n duration: string;\n timingFunction: string;\n };\n scale: {\n base: {\n default: number;\n hover: number;\n active: number;\n };\n medium: {\n hover: number;\n };\n };\n disabled: {\n scale: number;\n backgroundColor: string;\n borderColor: string;\n };\n default: IconButtonVariationValues;\n white: IconButtonVariationValues;\n primary: IconButtonVariationValues;\n}\n\nexport const iconButton: IconButtonTheme = {\n backgroundColor: 'transparent',\n width: 40,\n height: 40,\n borderRadius: 20,\n borderWidth: 2,\n borderColor: 'transparent',\n transition: {\n property: 'all',\n duration: '200ms',\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1);',\n },\n scale: {\n base: {\n default: 1,\n hover: 0.95,\n active: 0.95,\n },\n medium: {\n hover: 1.05,\n },\n },\n disabled: {\n scale: 1,\n backgroundColor: button.disabled.default.backgroundColor,\n borderColor: button.disabled.default.borderColor,\n },\n default: {\n pressedBackgroundColor: button.default.default.pressedBackgroundColor,\n },\n white: {\n pressedBackgroundColor: button.white.default.hoverBackgroundColor,\n },\n primary: {\n pressedBackgroundColor: lateOceanColorPalette.moonPurpleLight1,\n },\n};\n","import { colors } from './colors';\n\nexport interface ListItemTheme {\n padding: string;\n borderColor: string;\n borderWidth: number;\n innerMargin: number;\n}\n\nexport const listItem: ListItemTheme = {\n padding: '12px 16px',\n borderColor: colors.separator,\n borderWidth: 1,\n innerMargin: 8,\n};\n","export interface NavigationModalTheme {\n height: number;\n padding: number;\n animation: {\n overlay: {\n duration: number;\n easing: number[];\n };\n content: {\n duration: number;\n easing: number[];\n };\n };\n}\n\nexport const webAnimationContentDuration = 600;\nexport const webAnimationContentEasing = [0.77, 0, 0.175, 1];\n\nexport const webAnimationOverlayDuration = 250;\nexport const webAnimationOverlayEasing = [0.42, 0, 1, 1];\n\nexport const navigationModal: NavigationModalTheme = {\n height: 56,\n padding: 16,\n animation: {\n overlay: {\n duration: webAnimationOverlayDuration,\n easing: webAnimationOverlayEasing,\n },\n content: {\n duration: webAnimationContentDuration,\n easing: webAnimationContentEasing,\n },\n },\n};\n","import { colors } from './colors';\n\nexport interface PageLoaderTheme {\n size: number;\n strokeWidth: number;\n colors: {\n base: string;\n fill: string;\n };\n animation: {\n delay: number;\n circleBackgroundFillDuration: number;\n filledCircleFillDuration: number;\n groupFilledCircleRotationDuration: number;\n filledCircleRotationDuration: number;\n fillEasingFunction: [number, number, number, number];\n };\n}\n\nexport const pageLoader: PageLoaderTheme = {\n size: 60,\n strokeWidth: 3,\n colors: {\n base: colors.separator,\n fill: colors.primary,\n },\n animation: {\n delay: 500,\n circleBackgroundFillDuration: 1000,\n filledCircleFillDuration: 1800,\n groupFilledCircleRotationDuration: 1800,\n filledCircleRotationDuration: 2160,\n fillEasingFunction: [0.39, 0.575, 0.565, 1],\n },\n};\n","import type { TextStyle } from 'react-native';\nimport { colors } from './colors';\nimport { typography } from './typography';\n\nexport interface PickerTheme {\n ios: {\n default: TextStyle;\n selected: {\n color: string;\n };\n };\n android: {\n padding: string;\n default: {\n backgroundColor: string;\n };\n selected: {\n backgroundColor: string;\n color: string;\n };\n };\n}\n\nexport const picker: PickerTheme = {\n ios: {\n default: {\n fontFamily: typography.types.bodies.fontFamily.native.regular,\n ...typography.types.bodies.configs.body.baseAndSmall,\n fontSize: 16,\n color: typography.colors['black-light'],\n },\n selected: {\n color: typography.colors.primary,\n },\n },\n android: {\n padding: '12px 24px',\n default: {\n backgroundColor: colors.transparent,\n },\n selected: {\n backgroundColor: colors.primary,\n color: typography.colors.white,\n },\n },\n};\n","import { colors } from './colors';\n\ninterface ShadowShapeTheme {\n color: string;\n offsetX: number;\n offsetY: number;\n opacity: number;\n radius: number;\n}\n\nexport interface ShadowsTheme {\n medium: string;\n cards: Record<string, ShadowShapeTheme>;\n navigation: Record<string, ShadowShapeTheme>;\n panel: ShadowShapeTheme;\n}\n\nexport const shadows: ShadowsTheme = {\n /** @deprecated: use cards.medium instead - shorthand shadow doesnt work with Native Base */\n medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',\n cards: {\n low: {\n color: colors.black,\n offsetX: 0,\n offsetY: 5,\n opacity: 0.1,\n radius: 20,\n },\n medium: {\n color: colors.black,\n offsetX: 0,\n offsetY: 10,\n opacity: 0.15,\n radius: 20,\n },\n highBase: {\n color: colors.black,\n offsetX: 0,\n offsetY: 10,\n opacity: 0.15,\n radius: 20,\n },\n highMedium: {\n color: colors.black,\n offsetX: 0,\n offsetY: 60,\n opacity: 0.08,\n radius: 40,\n },\n highLarge: {\n color: colors.black,\n offsetX: 0,\n offsetY: 80,\n opacity: 0.08,\n radius: 60,\n },\n },\n navigation: {\n left: {\n color: colors.black,\n offsetX: 10,\n offsetY: 0,\n opacity: 0.15,\n radius: 30,\n },\n right: {\n color: colors.black,\n offsetX: -10,\n offsetY: 0,\n opacity: 0.15,\n radius: 30,\n },\n },\n panel: {\n color: colors.black,\n offsetX: 0,\n offsetY: 20,\n opacity: 1,\n radius: 40,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\ninterface SkeletonShapeTheme {\n size: number;\n borderRadius: number;\n}\nexport interface SkeletonTheme {\n backgroundColor: string;\n flareColor: string;\n animationDuration: number;\n shape: Record<string, SkeletonShapeTheme>;\n}\n\nexport const skeleton: SkeletonTheme = {\n backgroundColor: lateOceanColorPalette.black100,\n flareColor: lateOceanColorPalette.black200,\n animationDuration: 1000,\n shape: {\n bar: {\n size: 8,\n borderRadius: 4,\n },\n circle: {\n size: 48,\n borderRadius: 24,\n },\n square: {\n size: 48,\n borderRadius: 6,\n },\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface TagVariantTheme {\n borderWidth: number;\n backgroundColor: string;\n borderColor: string;\n}\n\nexport interface TagTypeTheme {\n fill: TagVariantTheme;\n outline: TagVariantTheme;\n}\n\nexport interface TagTheme {\n borderRadius: number;\n padding: string;\n primary: TagTypeTheme;\n default: TagTypeTheme;\n danger: TagTypeTheme;\n warn: TagTypeTheme;\n}\n\nexport const tag: TagTheme = {\n borderRadius: 10,\n padding: '2px 12px',\n primary: {\n fill: {\n backgroundColor: lateOceanColorPalette.moonPurpleLight1,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.primary,\n },\n },\n default: {\n fill: {\n backgroundColor: lateOceanColorPalette.black50,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.black,\n },\n },\n danger: {\n fill: {\n backgroundColor: lateOceanColorPalette.warmEmbrace,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.danger,\n },\n },\n warn: {\n fill: {\n backgroundColor: colors.warning,\n borderWidth: 0,\n borderColor: colors.transparent,\n },\n outline: {\n backgroundColor: colors.transparent,\n borderWidth: 1,\n borderColor: colors.warning,\n },\n },\n};\n","export const hex2rgba = (hex: string, alpha = 1): string => {\n const r = parseInt(hex.slice(1, 3), 16);\n const g = parseInt(hex.slice(3, 5), 16);\n const b = parseInt(hex.slice(5, 7), 16);\n\n return `rgba(${r}, ${g}, ${b}, ${alpha})`;\n};\n","import { hex2rgba } from '../../utils/hexToRgba';\nimport { colors } from './colors';\n\ninterface TooltipTransition {\n duration: string;\n timingFunction: string;\n property: string;\n}\n\nexport interface TooltipTheme {\n backgroundColor: string;\n borderRadius: number;\n opacity: number;\n horizontalPadding: number;\n verticalPadding: number;\n floatingPadding: number;\n maxWidth: number;\n transition: {\n in: TooltipTransition;\n out: TooltipTransition;\n };\n arrow: {\n width: number;\n height: number;\n };\n}\n\nexport const tooltip: TooltipTheme = {\n backgroundColor: hex2rgba(colors.black, 0.95),\n borderRadius: 10,\n opacity: 0.95,\n horizontalPadding: 16,\n verticalPadding: 8,\n floatingPadding: 8,\n maxWidth: 328,\n transition: {\n in: {\n duration: '150ms',\n timingFunction: 'ease-out',\n property: 'opacity',\n },\n out: {\n duration: '75ms',\n timingFunction: 'ease-out',\n property: 'opacity',\n },\n },\n arrow: {\n width: 39,\n height: 9,\n },\n};\n","import { avatar } from './late-ocean/avatar';\nimport { bottomSheet } from './late-ocean/bottomSheet';\nimport { button } from './late-ocean/button';\nimport { card } from './late-ocean/card';\nimport { cardModal } from './late-ocean/cardModal';\nimport { choices } from './late-ocean/choices';\nimport { colors } from './late-ocean/colors';\nimport { dialogModal } from './late-ocean/dialogModal';\nimport { feedbackMessage } from './late-ocean/feedback';\nimport { forms } from './late-ocean/forms';\nimport { highlight } from './late-ocean/highlight';\nimport { iconButton } from './late-ocean/iconButton';\nimport { listItem } from './late-ocean/listItem';\nimport { navigationModal } from './late-ocean/navigationModal';\nimport { pageLoader } from './late-ocean/pageLoader';\nimport { picker } from './late-ocean/picker';\nimport { shadows } from './late-ocean/shadows';\nimport { skeleton } from './late-ocean/skeleton';\nimport { spacing } from './late-ocean/spacing';\nimport { tag } from './late-ocean/tag';\nimport { tooltip } from './late-ocean/tooltip';\nimport { typography } from './late-ocean/typography';\nimport { lateOceanColorPalette } from './palettes/lateOceanColorPalette';\n\nconst breakpoints = {\n values: {\n base: 0,\n small: 480,\n medium: 768,\n large: 1024,\n wide: 1280,\n },\n min: {\n smallBreakpoint: 'min-width: 480px',\n mediumBreakpoint: 'min-width: 768px',\n largeBreakpoint: 'min-width: 1024px',\n wideBreakpoint: 'min-width: 1280px',\n },\n max: {\n smallBreakpoint: 'max-width: 479px',\n mediumBreakpoint: 'max-width: 767px',\n largeBreakpoint: 'max-width: 1023px',\n wideBreakpoint: 'max-width: 1279px',\n },\n};\n\n// eslint-disable-next-line unicorn/expiring-todo-comments\n// TODO : seperate brand color usage definition from proper theme definition and add typings - https://ornikar.atlassian.net/browse/CME-156\nexport const theme = {\n spacing,\n colors,\n palettes: { lateOcean: lateOceanColorPalette },\n avatar,\n breakpoints,\n button,\n bottomSheet,\n card,\n cardModal,\n choices,\n dialogModal,\n feedbackMessage,\n forms,\n highlight,\n iconButton,\n listItem,\n pageLoader,\n picker,\n shadows,\n skeleton,\n tag,\n tooltip,\n typography,\n navigationModal,\n};\n\nexport type Theme = typeof theme;\n"],"names":["lateOceanColorPalette","lateOcean","lateOceanLight1","lateOceanLight2","lateOceanLight3","warmEmbrace","warmEmbraceLight1","black1000","black800","black555","black400","black200","black100","black50","black25","white","viride","englishVermillon","goldCrayola","aero","transparent","moonPurple","moonPurpleLight1","colors","primary","primaryLight","accent","accentLight","success","correct","danger","info","warning","separator","hover","black","blackDisabled","blackLight","blackAnthracite","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","defaultAvatarSize","defaultAvatarIconSize","largeAvatarSize","largeAvatarIconSize","avatar","borderRadius","size","iconSize","default","backgroundColor","large","spacing","bottomSheet","container","padding","handle","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","xLarge","horizontal","vertical","transition","duration","timingFunction","pressedBackgroundColor","hoverBackgroundColor","focusBorderColor","ghost","color","hoverColor","activeColor","subtle","borderColor","card","secondary","webAnimationContentDuration","webAnimationContentEasing","webAnimationOverlayDuration","webAnimationOverlayEasing","overlayHorizontalPadding","cardModal","maxWidthWithPadding","shadow","offsetX","offsetY","opacity","radius","header","height","footer","overlayPadding","animation","easing","content","choices","row","column","item","small","selected","pressed","hoverWhenSelected","border","width","property","dialogModal","feedbackMessage","checkbox","checkedBorderColor","checkedBackgroundColor","markColor","datePicker","day","month","year","calcLineHeight","fontSize","lineHeightMultiplier","Math","round","createTypographyTypeConfig","baseAndSmallFontSize","mediumAndWideFontSize","baseAndSmall","lineHeight","mediumAndWide","typography","kittColors","types","headers","fontFamily","native","regular","bold","web","fontWeight","fontStyle","configs","header1","header2","header3","header4","header5","bodies","body","link","disabledColor","inputStatesStyle","pending","valid","invalid","input","selection","placeholder","icon","rightContainer","states","inputField","containerPaddingTop","containerPaddingBottom","feedbackPaddingTop","labelContainerPaddingBottom","labelFeedbackMarginLeft","inputTag","labelColor","radio","unchecked","checked","innerSize","innerBackgroundColor","radioButtonGroup","textArea","forms","highlight","iconButton","listItem","innerMargin","navigationModal","pageLoader","strokeWidth","fill","delay","circleBackgroundFillDuration","filledCircleFillDuration","groupFilledCircleRotationDuration","filledCircleRotationDuration","fillEasingFunction","picker","ios","android","shadows","cards","low","highBase","highMedium","highLarge","navigation","left","right","panel","skeleton","flareColor","animationDuration","shape","bar","circle","square","tag","outline","warn","hex2rgba","hex","alpha","r","parseInt","slice","g","b","tooltip","horizontalPadding","verticalPadding","floatingPadding","in","out","arrow","breakpoints","values","wide","min","smallBreakpoint","mediumBreakpoint","largeBreakpoint","wideBreakpoint","max","theme","palettes"],"mappings":";;;;AAAO,MAAMA,qBAAqB,GAAG;EACnCC,SAAS,EAAE,SAAS;EACpBC,eAAe,EAAE,SAAS;EAC1BC,eAAe,EAAE,SAAS;EAC1BC,eAAe,EAAE,SAAS;EAE1BC,WAAW,EAAE,SAAS;EACtBC,iBAAiB,EAAE,SAAS;EAE5BC,SAAS,EAAE,SAAS;EACpBC,QAAQ,EAAE,SAAS;EACnBC,QAAQ,EAAE,SAAS;EACnBC,QAAQ,EAAE,SAAS;EACnBC,QAAQ,EAAE,SAAS;EACnBC,QAAQ,EAAE,SAAS;EACnBC,OAAO,EAAE,SAAS;EAClBC,OAAO,EAAE,SAAS;EAClBC,KAAK,EAAE,SAAS;EAEhBC,MAAM,EAAE,SAAS;EACjBC,gBAAgB,EAAE,SAAS;EAC3BC,WAAW,EAAE,SAAS;EACtBC,IAAI,EAAE,SAAS;EAEfC,WAAW,EAAE,aAAa;EAE1BC,UAAU,EAAE,SAAS;EACrBC,gBAAgB,EAAE;AACpB,CAAC;;AC1BM,MAAMC,MAAM,GAAG;EACpBC,OAAO,EAAExB,qBAAqB,CAACC,SAAS;EACxCwB,YAAY,EAAEzB,qBAAqB,CAACE,eAAe;EACnDwB,MAAM,EAAE1B,qBAAqB,CAACK,WAAW;EACzCsB,WAAW,EAAE3B,qBAAqB,CAACM,iBAAiB;EACpDsB,OAAO,EAAE5B,qBAAqB,CAACgB,MAAM;EACrCa,OAAO,EAAE7B,qBAAqB,CAACgB,MAAM;EACrCc,MAAM,EAAE9B,qBAAqB,CAACiB,gBAAgB;EAC9Cc,IAAI,EAAE/B,qBAAqB,CAACmB,IAAI;EAChCa,OAAO,EAAEhC,qBAAqB,CAACkB,WAAW;EAC1Ce,SAAS,EAAEjC,qBAAqB,CAACY,QAAQ;EACzCsB,KAAK,EAAElC,qBAAqB,CAACY,QAAQ;EACrCG,KAAK,EAAEf,qBAAqB,CAACe,KAAK;EAClCoB,KAAK,EAAEnC,qBAAqB,CAACO,SAAS;EACtC6B,aAAa,EAAEpC,qBAAqB,CAACU,QAAQ;EAC7C2B,UAAU,EAAErC,qBAAqB,CAACS,QAAQ;EAC1C6B,eAAe,EAAEtC,qBAAqB,CAACQ,QAAQ;EAC/C+B,YAAY,EAAEvC,qBAAqB,CAACc,OAAO;EAC3C0B,iBAAiB,EAAExC,qBAAqB,CAACe,KAAK;EAC9CK,WAAW,EAAEpB,qBAAqB,CAACoB,WAAW;EAC9CqB,QAAQ,EAAEzC,qBAAqB,CAACa,OAAO;EACvC6B,OAAO,EAAE;IACPC,IAAI,EAAE,wBAAwB;IAC9BC,KAAK,EAAE;;AAEX,CAAC;;ACxBM,MAAMC,iBAAiB,GAAG,EAAE;AAC5B,MAAMC,qBAAqB,GAAG,EAAE;AAEhC,MAAMC,eAAe,GAAG,GAAG;AAC3B,MAAMC,mBAAmB,GAAG,EAAE;AAqB9B,MAAMC,MAAmB,GAAG;EACjCC,YAAY,EAAE,EAAE;EAChBC,IAAI,EAAEN,iBAAiB;EACvBO,QAAQ,EAAEN,qBAAqB;EAC/BO,OAAO,EAAE;IACPC,eAAe,EAAE/B,MAAM,CAACC;GACzB;EACDoB,KAAK,EAAE;IACLU,eAAe,EAAEtD,qBAAqB,CAACY;GACxC;EACD2C,KAAK,EAAE;IACLL,YAAY,EAAE,EAAE;IAChBC,IAAI,EAAEJ,eAAe;IACrBK,QAAQ,EAAEJ;;AAEd,CAAC;;AC3CM,MAAMQ,OAAO,GAAG,CAAC;;ACYjB,MAAMC,WAA6B,GAAG;EAC3CC,SAAS,EAAE;IACTC,OAAO,EAAEH,OAAO,GAAG;GACpB;EACDI,MAAM,EAAE;IACNN,eAAe,EAAEtD,qBAAqB,CAACW;;AAE3C,CAAC;;ACyEM,MAAMkD,MAAmB,GAAG;EACjCX,YAAY,EAAE,EAAE;EAChBY,WAAW,EAAE;IACXrB,QAAQ,EAAE,CAAC;IACXsB,KAAK,EAAE;GACR;EACDC,SAAS,EAAE,EAAE;EACbC,QAAQ,EAAE,EAAE;EACZC,QAAQ,EAAE,GAAG;EACbC,KAAK,EAAE;IACLC,IAAI,EAAE;MACJf,OAAO,EAAE,CAAC;MACVnB,KAAK,EAAE,IAAI;MACXmC,MAAM,EAAE;KACT;IACDC,MAAM,EAAE;MACNpC,KAAK,EAAE;;GAEV;EACDqC,cAAc,EAAE;IACdlB,OAAO,EAAE,cAAc;IACvBE,KAAK,EAAE,gBAAgB;IACvBiB,MAAM,EAAE,gBAAgB;IACxB/B,QAAQ,EAAE;GACX;EACDkB,OAAO,EAAE;IACPN,OAAO,EAAE;MACPoB,UAAU,EAAE,EAAE;MACdC,QAAQ,EAAE;KACX;IACDnB,KAAK,EAAE;MACLkB,UAAU,EAAE,EAAE;MACdC,QAAQ,EAAE;KACX;IACDF,MAAM,EAAE;MACNC,UAAU,EAAE,EAAE;MACdC,QAAQ,EAAE;KACX;IACDjC,QAAQ,EAAE;MACRgC,UAAU,EAAE,EAAE;MACdC,QAAQ,EAAE;;GAEb;EACDC,UAAU,EAAE;IACVC,QAAQ,EAAE,OAAO;IACjBC,cAAc,EAAE;GACjB;EACDxB,OAAO,EAAE;IACPA,OAAO,EAAE;MACPC,eAAe,EAAE,qBAAqB;MACtCwB,sBAAsB,EAAE,oBAAoB;MAC5CC,oBAAoB,EAAE,oBAAoB;MAC1CC,gBAAgB,EAAE;KACnB;IACDC,KAAK,EAAE;MACL3B,eAAe,EAAE,0BAA0B;MAC3CwB,sBAAsB,EAAE,2BAA2B;MACnDC,oBAAoB,EAAE,2BAA2B;MACjDC,gBAAgB,EAAE,0BAA0B;MAC5CE,KAAK,EAAElF,qBAAqB,CAACe,KAAK;MAClCoE,UAAU,EAAEnF,qBAAqB,CAACe,KAAK;MACvCqE,WAAW,EAAEpF,qBAAqB,CAACe;;GAEtC;EACDS,OAAO,EAAE;IACP6B,OAAO,EAAE;MACPC,eAAe,EAAE/B,MAAM,CAACC,OAAO;MAC/BsD,sBAAsB,EAAEvD,MAAM,CAACE,YAAY;MAC3CsD,oBAAoB,EAAExD,MAAM,CAACE,YAAY;MACzCuD,gBAAgB,EAAE;KACnB;IACDC,KAAK,EAAE;MACL3B,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;MACzCsC,sBAAsB,EAAEvD,MAAM,CAACgB,YAAY;MAC3CwC,oBAAoB,EAAExD,MAAM,CAACW,KAAK;MAClC8C,gBAAgB,EAAE,wBAAwB;MAC1CE,KAAK,EAAE3D,MAAM,CAACC,OAAO;MACrB2D,UAAU,EAAE5D,MAAM,CAACW,KAAK;MACxBkD,WAAW,EAAE7D,MAAM,CAACW;;GAEvB;EACDnB,KAAK,EAAE;IACLsC,OAAO,EAAE;MACPC,eAAe,EAAE,2BAA2B;MAC5CwB,sBAAsB,EAAE,0BAA0B;MAClDC,oBAAoB,EAAE,0BAA0B;MAChDC,gBAAgB,EAAE;;GAErB;EACDK,MAAM,EAAE;IACNhC,OAAO,EAAE;MACPC,eAAe,EAAE/B,MAAM,CAACH,WAAW;MACnC0D,sBAAsB,EAAEvD,MAAM,CAACH,WAAW;MAC1C2D,oBAAoB,EAAExD,MAAM,CAACH,WAAW;MACxC4D,gBAAgB,EAAE,wBAAwB;MAC1CE,KAAK,EAAE3D,MAAM,CAACC,OAAO;MACrB2D,UAAU,EAAE,wBAAwB;MACpCC,WAAW,EAAE;;GAEhB;EACD,aAAa,EAAE;IACb/B,OAAO,EAAE;MACPC,eAAe,EAAE/B,MAAM,CAACH,WAAW;MACnC0D,sBAAsB,EAAEvD,MAAM,CAACH,WAAW;MAC1C2D,oBAAoB,EAAExD,MAAM,CAACH,WAAW;MACxC4D,gBAAgB,EAAE,oBAAoB;MACtCE,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnBgD,UAAU,EAAE,oBAAoB;MAChCC,WAAW,EAAE;;GAEhB;EACD3C,QAAQ,EAAE;IACRY,OAAO,EAAE;MACPC,eAAe,EAAE/B,MAAM,CAACkB,QAAQ;MAChCqC,sBAAsB,EAAEvD,MAAM,CAACkB,QAAQ;MACvCsC,oBAAoB,EAAExD,MAAM,CAACkB,QAAQ;MACrCuC,gBAAgB,EAAEhF,qBAAqB,CAACY,QAAQ;MAChD0E,WAAW,EAAEtF,qBAAqB,CAACY;;;AAGzC,CAAC;;ACrMM,MAAM2E,IAAe,GAAG;EAC7BrC,YAAY,EAAE,EAAE;EAChBY,WAAW,EAAE,CAAC;EACdtC,OAAO,EAAE;IACP8B,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;IACzC8C,WAAW,EAAE/D,MAAM,CAACC;GACrB;EACDgE,SAAS,EAAE;IACTlC,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;IACzC8C,WAAW,EAAE/D,MAAM,CAACU;GACrB;EACDoD,MAAM,EAAE;IACN/B,eAAe,EAAEtD,qBAAqB,CAACa,OAAO;IAC9CyE,WAAW,EAAE/D,MAAM,CAACU;;AAExB,CAAC;;ACQM,MAAMwD,6BAA2B,GAAG,GAAG;AACvC,MAAMC,2BAAyB,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;AAErD,MAAMC,6BAA2B,GAAG,GAAG;AACvC,MAAMC,2BAAyB,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;AAExD,MAAM1B,QAAQ,GAAG,GAAG;AACpB,MAAM2B,wBAAwB,GAAG,EAAE;AAE5B,MAAMC,SAAyB,GAAG;EACvC5C,YAAY,EAAE,EAAE;EAChBgB,QAAQ;EACR6B,mBAAmB,EAAE7B,QAAQ,GAAG2B,wBAAwB,GAAG,CAAC;EAC5DG,MAAM,EAAE;IACNd,KAAK,EAAE3D,MAAM,CAACY,KAAK;IACnB8D,OAAO,EAAE,CAAC;IACVC,OAAO,EAAE,EAAE;IACXC,OAAO,EAAE,IAAI;IACbC,MAAM,EAAE;GACT;EACDC,MAAM,EAAE;IACNC,MAAM,EAAE,EAAE;IACVxC,WAAW,EAAE,CAAC;IACdwB,WAAW,EAAE/D,MAAM,CAACU;GACrB;EACDsE,MAAM,EAAE;IACNzC,WAAW,EAAE,CAAC;IACdwB,WAAW,EAAE/D,MAAM,CAACU;GACrB;EACDuE,cAAc,EAAE;IACd/B,UAAU,EAAE,EAAE;IACdC,QAAQ,EAAE;GACX;EACD+B,SAAS,EAAE;IACT/D,OAAO,EAAE;MACPkC,QAAQ,EAAEe,6BAA2B;MACrCe,MAAM,EAAEd;KACT;IACDe,OAAO,EAAE;MACP/B,QAAQ,EAAEa,6BAA2B;MACrCiB,MAAM,EAAEhB;;;AAGd,CAAC;;AC3CM,MAAMkB,OAAqB,GAAG;EACnCpD,OAAO,EAAE;IACPqD,GAAG,EAAE,EAAE;IACPC,MAAM,EAAE;GACT;EACDC,IAAI,EAAE;IACJ7D,YAAY,EAAE,EAAE;IAChBS,OAAO,EAAE;MACPS,IAAI,EAAE,EAAE;MACR4C,KAAK,EAAE;KACR;IACD1D,eAAe,EAAE;MACfD,OAAO,EAAErD,qBAAqB,CAACa,OAAO;MACtC4B,QAAQ,EAAElB,MAAM,CAACkB,QAAQ;MACzBwE,QAAQ,EAAE1F,MAAM,CAACC,OAAO;MACxB0F,OAAO,EAAElH,qBAAqB,CAACE,eAAe;MAC9CgC,KAAK,EAAElC,qBAAqB,CAACY,QAAQ;MACrCuG,iBAAiB,EAAEnH,qBAAqB,CAACE;KAC1C;IACDuC,QAAQ,EAAE;MACR2E,MAAM,EAAE;QACNC,KAAK,EAAE,CAAC;QACRnC,KAAK,EAAElF,qBAAqB,CAACY;;KAEhC;IACD+D,UAAU,EAAE;MACV2C,QAAQ,EAAE,KAAK;MACf1C,QAAQ,EAAE,GAAG;MACbC,cAAc,EAAE;;;AAGtB,CAAC;;ACzCM,MAAMY,6BAA2B,GAAG,GAAG;AACvC,MAAMC,2BAAyB,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;AAErD,MAAMC,6BAA2B,GAAG,GAAG;AACvC,MAAMC,2BAAyB,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;AAEjD,MAAM2B,WAA6B,GAAG;EAC3CrE,YAAY,EAAE,EAAE;EAChBgB,QAAQ,EAAE,GAAG;EACbsC,cAAc,EAAE;IACd/B,UAAU,EAAE,EAAE;IACdC,QAAQ,EAAE;GACX;EACDsB,MAAM,EAAE;IACNd,KAAK,EAAE3D,MAAM,CAACY,KAAK;IACnB8D,OAAO,EAAE,CAAC;IACVC,OAAO,EAAE,EAAE;IACXC,OAAO,EAAE,IAAI;IACbC,MAAM,EAAE;GACT;EACDK,SAAS,EAAE;IACT/D,OAAO,EAAE;MACPkC,QAAQ,EAAEe,6BAA2B;MACrCe,MAAM,EAAEd;KACT;IACDe,OAAO,EAAE;MACP/B,QAAQ,EAAEa,6BAA2B;MACrCiB,MAAM,EAAEhB;;;AAGd,CAAC;;AC7CM,MAAM8B,eAAqC,GAAG;EACnD1F,MAAM,EAAE;IACNwB,eAAe,EAAE/B,MAAM,CAACO;GACzB;EACDF,OAAO,EAAE;IACP0B,eAAe,EAAE/B,MAAM,CAACK;GACzB;EACDG,IAAI,EAAE;IACJuB,eAAe,EAAE/B,MAAM,CAACQ;GACzB;EACDC,OAAO,EAAE;IACPsB,eAAe,EAAE/B,MAAM,CAACS;;AAE5B,CAAC;;ACxBM,MAAMyF,QAAQ,GAAG;EACtB3D,WAAW,EAAE,CAAC;EACdZ,YAAY,EAAE,CAAC;EACfoD,MAAM,EAAE,EAAE;EACVe,KAAK,EAAE,EAAE;EACTjE,QAAQ,EAAE,EAAE;EACZkC,WAAW,EAAE/D,MAAM,CAACU,SAAS;EAC7BqB,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;EACzCkF,kBAAkB,EAAEnG,MAAM,CAACC,OAAO;EAClCmG,sBAAsB,EAAEpG,MAAM,CAACC,OAAO;EACtCoG,SAAS,EAAErG,MAAM,CAACiB;AACpB,CAAC;;ACHM,MAAMqF,UAA2B,GAAG;EACzCC,GAAG,EAAE;IACH7D,QAAQ,EAAE;GACX;EACD8D,KAAK,EAAE;IACL9D,QAAQ,EAAE;GACX;EACD+D,IAAI,EAAE;IACJ/D,QAAQ,EAAE;;AAEd,CAAC;;ACjBM,MAAMgE,cAAc,GAAG,CAACC,QAAgB,EAAEC,oBAA4B,KAC3EC,IAAI,CAACC,KAAK,CAACH,QAAQ,GAAGC,oBAAoB,CAAC;AAYtC,MAAMG,0BAA0B,GAAG,CACxCH,oBAA4B,EAC5BI,oBAA4B,EAC5BC,qBAA6B,MACH;EAC1BC,YAAY,EAAE;IACZP,QAAQ,EAAEK,oBAAoB;IAC9BG,UAAU,EAAET,cAAc,CAACM,oBAAoB,EAAEJ,oBAAoB;GACtE;EACDQ,aAAa,EAAE;IACbT,QAAQ,EAAEM,qBAAqB;IAC/BE,UAAU,EAAET,cAAc,CAACO,qBAAqB,EAAEL,oBAAoB;;AAE1E,CAAC,CAAC;AAEK,MAAMS,UAAU,GAAG;EACxBrH,MAAM,EAAE;IACNY,KAAK,EAAE0G,MAAU,CAAC1G,KAAK;IACvB,kBAAkB,EAAE0G,MAAU,CAACvG,eAAe;IAC9C,gBAAgB,EAAEtC,qBAAqB,CAACU,QAAQ;IAChD,aAAa,EAAEV,qBAAqB,CAACS,QAAQ;IAC7CM,KAAK,EAAE8H,MAAU,CAAC9H,KAAK;IACvB,aAAa,EAAE8H,MAAU,CAAC9H,KAAK;IAC/BS,OAAO,EAAEqH,MAAU,CAACrH,OAAO;IAC3B,eAAe,EAAEqH,MAAU,CAACpH,YAAY;IACxCC,MAAM,EAAEmH,MAAU,CAACnH,MAAM;IACzBE,OAAO,EAAEiH,MAAU,CAACjH,OAAO;IAC3BE,MAAM,EAAE+G,MAAU,CAAC/G,MAAM;IACzBE,OAAO,EAAE6G,MAAU,CAAC7G;GACrB;EACD8G,KAAK,EAAE;IACLC,OAAO,EAAE;MACPC,UAAU,EAAE;QACVC,MAAM,EAAE;UACNC,OAAO,EAAE,uBAAuB;UAChCC,IAAI,EAAE;SACP;QACDC,GAAG,EAAE;UACHF,OAAO,EAAE,SAAS;UAClBC,IAAI,EAAE;;OAET;MACDE,UAAU,EAAE,GAAG;MACfC,SAAS,EAAE,QAAQ;MACnBC,OAAO,EAAE;;QAEPC,OAAO,EAAElB,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;;QAEhDmB,OAAO,EAAEnB,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;;QAEhDoB,OAAO,EAAEpB,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;;QAEhDqB,OAAO,EAAErB,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;;QAEhDsB,OAAO,EAAEtB,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE;;KAElD;IACDuB,MAAM,EAAE;MACNb,UAAU,EAAE;QACVI,GAAG,EAAE;UACHF,OAAO,EAAE,WAAW;UACpBC,IAAI,EAAE;SACP;QACDF,MAAM,EAAE;UACNC,OAAO,EAAE,UAAU;UACnBC,IAAI,EAAE;;OAET;MACDE,UAAU,EAAE;QACVH,OAAO,EAAE,GAAG;QACZC,IAAI,EAAE;OACP;MACDG,SAAS,EAAE;QACTJ,OAAO,EAAE,QAAQ;QACjBC,IAAI,EAAE;OACP;MACDI,OAAO,EAAE;QACP,YAAY,EAAEjB,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;QACrD,aAAa,EAAEA,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;QACtDwB,IAAI,EAAExB,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;QAC7C,YAAY,EAAEA,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC;QACrD,aAAa,EAAEA,0BAA0B,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE;;;GAG1D;EACDyB,IAAI,EAAE;IACJC,aAAa,EAAEnB,MAAU,CAACzG;;AAE9B,CAAC;;AC3FD,MAAM6H,gBAAiC,GAAG;EACxC5G,OAAO,EAAE;IACPC,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;IACzC8C,WAAW,EAAE/D,MAAM,CAACU,SAAS;IAC7BiD,KAAK,EAAE3D,MAAM,CAACY;GACf;EACD+H,OAAO,EAAE;IACP5G,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;IACzC8C,WAAW,EAAE/D,MAAM,CAACU,SAAS;IAC7BiD,KAAK,EAAE3D,MAAM,CAACY;GACf;EACDgI,KAAK,EAAE;IACL7G,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;IACzC8C,WAAW,EAAEtF,qBAAqB,CAACY,QAAQ;IAC3CsE,KAAK,EAAE3D,MAAM,CAACY;GACf;EACDD,KAAK,EAAE;IACLoD,WAAW,EAAEtF,qBAAqB,CAACW,QAAQ;IAC3CuE,KAAK,EAAE3D,MAAM,CAACY;GACf;EACD4B,KAAK,EAAE;IACLuB,WAAW,EAAE/D,MAAM,CAACC,OAAO;IAC3B0D,KAAK,EAAE3D,MAAM,CAACY;GACf;EACDM,QAAQ,EAAE;IACRa,eAAe,EAAE/B,MAAM,CAACkB,QAAQ;IAChC6C,WAAW,EAAE/D,MAAM,CAACU,SAAS;IAC7BiD,KAAK,EAAE3D,MAAM,CAACa;GACf;EACDgI,OAAO,EAAE;IACP9E,WAAW,EAAE/D,MAAM,CAACU,SAAS;IAC7BiD,KAAK,EAAE3D,MAAM,CAACY;;AAElB,CAAC;AA4BM,MAAMkI,KAAiB,GAAG;EAC/BrG,SAAS,EAAE,EAAE;EACbkB,KAAK,EAAE;IACLoF,SAAS,EAAE/I,MAAM,CAACC,OAAO;IACzB+I,WAAW,EAAE3B,UAAU,CAACrH,MAAM,CAAC,aAAa;GAC7C;EACDuC,WAAW,EAAE,CAAC;EACdZ,YAAY,EAAE,EAAE;EAChBsH,IAAI,EAAE;IACJrH,IAAI,EAAE;GACP;EACDsH,cAAc,EAAE;IACd9G,OAAO,EAAE;GACV;EACDA,OAAO,EAAE;IACPc,UAAU,EAAE,EAAE;IACdC,QAAQ,EAAE;GACX;EACDC,UAAU,EAAE;IACV2C,QAAQ,EAAE,cAAc;IACxB1C,QAAQ,EAAE,OAAO;IACjBC,cAAc,EAAE;GACjB;EACD6F,MAAM,EAAET;AACV,CAAC;;AClGM,MAAMU,UAAU,GAAG;EACxBC,mBAAmB,EAAE,CAAC;EACtBC,sBAAsB,EAAE,EAAE;EAC1BC,kBAAkB,EAAE;IAAE1G,IAAI,EAAE,CAAC;IAAE4C,KAAK,EAAE;GAAI;EAC1C+D,2BAA2B,EAAE,CAAC;EAC9BC,uBAAuB,EAAE;AAC3B,CAAC;;ACSM,MAAMC,QAAuB,GAAG;EACrCrJ,OAAO,EAAE;IACP0B,eAAe,EAAE/B,MAAM,CAACK,OAAO;IAC/BsJ,UAAU,EAAE3J,MAAM,CAACiB;GACpB;EACDV,MAAM,EAAE;IACNwB,eAAe,EAAE/B,MAAM,CAACO,MAAM;IAC9BoJ,UAAU,EAAE3J,MAAM,CAACiB;GACpB;EACDa,OAAO,EAAE;IACPC,eAAe,EAAEtD,qBAAqB,CAACa,OAAO;IAC9CqK,UAAU,EAAE3J,MAAM,CAACY;GACpB;EACDe,YAAY,EAAE,EAAE;EAChBE,QAAQ,EAAE;AACZ,CAAC;;ACTM,MAAM+H,KAAiB,GAAG;EAC/BhI,IAAI,EAAE,EAAE;EACRiI,SAAS,EAAE;IACT9H,eAAe,EAAE/B,MAAM,CAACiB,iBAAiB;IACzCsB,WAAW,EAAE,CAAC;IACdwB,WAAW,EAAEtF,qBAAqB,CAACW;GACpC;EACD0K,OAAO,EAAE;IACP/H,eAAe,EAAE/B,MAAM,CAACC,OAAO;IAC/B8J,SAAS,EAAE,CAAC;IACZC,oBAAoB,EAAEhK,MAAM,CAACiB;GAC9B;EACDC,QAAQ,EAAE;IACRa,eAAe,EAAE/B,MAAM,CAACkB,QAAQ;IAChC6C,WAAW,EAAE/D,MAAM,CAACU;;AAExB,CAAC;;ACHM,MAAMuJ,gBAAuC,GAAG;EACrDzE,IAAI,EAAE;IACJ/C,SAAS,EAAE,EAAE;IACbF,WAAW,EAAE,CAAC;IACdZ,YAAY,EAAE,EAAE;IAChBoC,WAAW,EAAE;MACXjC,OAAO,EAAE9B,MAAM,CAACU,SAAS;MACzBC,KAAK,EAAEX,MAAM,CAACC,OAAO;MACrB0F,OAAO,EAAE3F,MAAM,CAACC,OAAO;MACvB6C,MAAM,EAAE9C,MAAM,CAACC,OAAO;MACtBiB,QAAQ,EAAElB,MAAM,CAACU;KAClB;IACDqB,eAAe,EAAE;MACfD,OAAO,EAAE9B,MAAM,CAACiB,iBAAiB;MACjCN,KAAK,EAAEX,MAAM,CAACR,KAAK;MACnBmG,OAAO,EAAE3F,MAAM,CAACC,OAAO;MACvB6C,MAAM,EAAE9C,MAAM,CAACC,OAAO;MACtBiB,QAAQ,EAAElB,MAAM,CAACkB;KAClB;IACDkB,OAAO,EAAE;MACPc,UAAU,EAAE,EAAE;MACdC,QAAQ,EAAE;KACX;IACDC,UAAU,EAAE;MACV2C,QAAQ,EAAE,KAAK;MACf1C,QAAQ,EAAE,OAAO;MACjBC,cAAc,EAAE;;;AAGtB,CAAC;;AC3DM,MAAM4G,QAAuB,GAAG;EACrCzH,SAAS,EAAE;AACb,CAAC;;ACGM,MAAM0H,KAAK,GAAG;EACnB7D,UAAU;EACVwC,KAAK;EACLc,KAAK;EACLR,UAAU;EACVc,QAAQ;EACRhE,QAAQ;EACRwD,QAAQ;EACRO;AACF,CAAC;;ACFM,MAAMG,SAAyB,GAAG;EACvCzI,YAAY,EAAE;IACZkB,IAAI,EAAEZ,OAAO,GAAG;GACjB;EACD0F,OAAO,EAAE;IACP5F,eAAe,EAAE/B,MAAM,CAACI;GACzB;EACDgB,IAAI,EAAE;IACJW,eAAe,EAAEtD,qBAAqB,CAACY;GACxC;EACD+C,OAAO,EAAE;IACPS,IAAI,EAAEZ,OAAO,GAAG;;AAEpB,CAAC;;ACUM,MAAMoI,UAA2B,GAAG;EACzCtI,eAAe,EAAE,aAAa;EAC9B+D,KAAK,EAAE,EAAE;EACTf,MAAM,EAAE,EAAE;EACVpD,YAAY,EAAE,EAAE;EAChBY,WAAW,EAAE,CAAC;EACdwB,WAAW,EAAE,aAAa;EAC1BX,UAAU,EAAE;IACV2C,QAAQ,EAAE,KAAK;IACf1C,QAAQ,EAAE,OAAO;IACjBC,cAAc,EAAE;GACjB;EACDV,KAAK,EAAE;IACLC,IAAI,EAAE;MACJf,OAAO,EAAE,CAAC;MACVnB,KAAK,EAAE,IAAI;MACXmC,MAAM,EAAE;KACT;IACDC,MAAM,EAAE;MACNpC,KAAK,EAAE;;GAEV;EACDO,QAAQ,EAAE;IACR0B,KAAK,EAAE,CAAC;IACRb,eAAe,EAAEO,MAAM,CAACpB,QAAQ,CAACY,OAAO,CAACC,eAAe;IACxDgC,WAAW,EAAEzB,MAAM,CAACpB,QAAQ,CAACY,OAAO,CAACiC;GACtC;EACDjC,OAAO,EAAE;IACPyB,sBAAsB,EAAEjB,MAAM,CAACR,OAAO,CAACA,OAAO,CAACyB;GAChD;EACD/D,KAAK,EAAE;IACL+D,sBAAsB,EAAEjB,MAAM,CAAC9C,KAAK,CAACsC,OAAO,CAAC0B;GAC9C;EACDvD,OAAO,EAAE;IACPsD,sBAAsB,EAAE9E,qBAAqB,CAACsB;;AAElD,CAAC;;AClEM,MAAMuK,QAAuB,GAAG;EACrClI,OAAO,EAAE,WAAW;EACpB2B,WAAW,EAAE/D,MAAM,CAACU,SAAS;EAC7B6B,WAAW,EAAE,CAAC;EACdgI,WAAW,EAAE;AACf,CAAC;;ACCM,MAAMrG,2BAA2B,GAAG,GAAG;AACvC,MAAMC,yBAAyB,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;AAErD,MAAMC,2BAA2B,GAAG,GAAG;AACvC,MAAMC,yBAAyB,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;AAEjD,MAAMmG,eAAqC,GAAG;EACnDzF,MAAM,EAAE,EAAE;EACV3C,OAAO,EAAE,EAAE;EACX8C,SAAS,EAAE;IACT/D,OAAO,EAAE;MACPkC,QAAQ,EAAEe,2BAA2B;MACrCe,MAAM,EAAEd;KACT;IACDe,OAAO,EAAE;MACP/B,QAAQ,EAAEa,2BAA2B;MACrCiB,MAAM,EAAEhB;;;AAGd,CAAC;;ACfM,MAAMsG,UAA2B,GAAG;EACzC7I,IAAI,EAAE,EAAE;EACR8I,WAAW,EAAE,CAAC;EACd1K,MAAM,EAAE;IACN6C,IAAI,EAAE7C,MAAM,CAACU,SAAS;IACtBiK,IAAI,EAAE3K,MAAM,CAACC;GACd;EACDiF,SAAS,EAAE;IACT0F,KAAK,EAAE,GAAG;IACVC,4BAA4B,EAAE,IAAI;IAClCC,wBAAwB,EAAE,IAAI;IAC9BC,iCAAiC,EAAE,IAAI;IACvCC,4BAA4B,EAAE,IAAI;IAClCC,kBAAkB,EAAE,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC;;AAE9C,CAAC;;ACXM,MAAMC,MAAmB,GAAG;EACjCC,GAAG,EAAE;IACHrJ,OAAO,EAAE;MACP2F,UAAU,EAAEJ,UAAU,CAACE,KAAK,CAACe,MAAM,CAACb,UAAU,CAACC,MAAM,CAACC,OAAO;MAC7D,GAAGN,UAAU,CAACE,KAAK,CAACe,MAAM,CAACN,OAAO,CAACO,IAAI,CAACrB,YAAY;MACpDP,QAAQ,EAAE,EAAE;MACZhD,KAAK,EAAE0D,UAAU,CAACrH,MAAM,CAAC,aAAa;KACvC;IACD0F,QAAQ,EAAE;MACR/B,KAAK,EAAE0D,UAAU,CAACrH,MAAM,CAACC;;GAE5B;EACDmL,OAAO,EAAE;IACPhJ,OAAO,EAAE,WAAW;IACpBN,OAAO,EAAE;MACPC,eAAe,EAAE/B,MAAM,CAACH;KACzB;IACD6F,QAAQ,EAAE;MACR3D,eAAe,EAAE/B,MAAM,CAACC,OAAO;MAC/B0D,KAAK,EAAE0D,UAAU,CAACrH,MAAM,CAACR;;;AAG/B,CAAC;;AC5BM,MAAM6L,OAAqB,GAAG;;EAEnCtI,MAAM,EAAE,sCAAsC;EAC9CuI,KAAK,EAAE;IACLC,GAAG,EAAE;MACH5H,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnB8D,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,GAAG;MACZC,MAAM,EAAE;KACT;IACD9B,MAAM,EAAE;MACNY,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnB8D,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,EAAE;MACXC,OAAO,EAAE,IAAI;MACbC,MAAM,EAAE;KACT;IACD2G,QAAQ,EAAE;MACR7H,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnB8D,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,EAAE;MACXC,OAAO,EAAE,IAAI;MACbC,MAAM,EAAE;KACT;IACD4G,UAAU,EAAE;MACV9H,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnB8D,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,EAAE;MACXC,OAAO,EAAE,IAAI;MACbC,MAAM,EAAE;KACT;IACD6G,SAAS,EAAE;MACT/H,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnB8D,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,EAAE;MACXC,OAAO,EAAE,IAAI;MACbC,MAAM,EAAE;;GAEX;EACD8G,UAAU,EAAE;IACVC,IAAI,EAAE;MACJjI,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnB8D,OAAO,EAAE,EAAE;MACXC,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,IAAI;MACbC,MAAM,EAAE;KACT;IACDgH,KAAK,EAAE;MACLlI,KAAK,EAAE3D,MAAM,CAACY,KAAK;MACnB8D,OAAO,EAAE,CAAC,EAAE;MACZC,OAAO,EAAE,CAAC;MACVC,OAAO,EAAE,IAAI;MACbC,MAAM,EAAE;;GAEX;EACDiH,KAAK,EAAE;IACLnI,KAAK,EAAE3D,MAAM,CAACY,KAAK;IACnB8D,OAAO,EAAE,CAAC;IACVC,OAAO,EAAE,EAAE;IACXC,OAAO,EAAE,CAAC;IACVC,MAAM,EAAE;;AAEZ,CAAC;;ACnEM,MAAMkH,QAAuB,GAAG;EACrChK,eAAe,EAAEtD,qBAAqB,CAACY,QAAQ;EAC/C2M,UAAU,EAAEvN,qBAAqB,CAACW,QAAQ;EAC1C6M,iBAAiB,EAAE,IAAI;EACvBC,KAAK,EAAE;IACLC,GAAG,EAAE;MACHvK,IAAI,EAAE,CAAC;MACPD,YAAY,EAAE;KACf;IACDyK,MAAM,EAAE;MACNxK,IAAI,EAAE,EAAE;MACRD,YAAY,EAAE;KACf;IACD0K,MAAM,EAAE;MACNzK,IAAI,EAAE,EAAE;MACRD,YAAY,EAAE;;;AAGpB,CAAC;;ACRM,MAAM2K,GAAa,GAAG;EAC3B3K,YAAY,EAAE,EAAE;EAChBS,OAAO,EAAE,UAAU;EACnBnC,OAAO,EAAE;IACP0K,IAAI,EAAE;MACJ5I,eAAe,EAAEtD,qBAAqB,CAACsB,gBAAgB;MACvDwC,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACH;KACrB;IACD0M,OAAO,EAAE;MACPxK,eAAe,EAAE/B,MAAM,CAACH,WAAW;MACnC0C,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACC;;GAEvB;EACD6B,OAAO,EAAE;IACP6I,IAAI,EAAE;MACJ5I,eAAe,EAAEtD,qBAAqB,CAACa,OAAO;MAC9CiD,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACH;KACrB;IACD0M,OAAO,EAAE;MACPxK,eAAe,EAAE/B,MAAM,CAACH,WAAW;MACnC0C,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACY;;GAEvB;EACDL,MAAM,EAAE;IACNoK,IAAI,EAAE;MACJ5I,eAAe,EAAEtD,qBAAqB,CAACK,WAAW;MAClDyD,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACH;KACrB;IACD0M,OAAO,EAAE;MACPxK,eAAe,EAAE/B,MAAM,CAACH,WAAW;MACnC0C,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACO;;GAEvB;EACDiM,IAAI,EAAE;IACJ7B,IAAI,EAAE;MACJ5I,eAAe,EAAE/B,MAAM,CAACS,OAAO;MAC/B8B,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACH;KACrB;IACD0M,OAAO,EAAE;MACPxK,eAAe,EAAE/B,MAAM,CAACH,WAAW;MACnC0C,WAAW,EAAE,CAAC;MACdwB,WAAW,EAAE/D,MAAM,CAACS;;;AAG1B,CAAC;;AC1EM,MAAMgM,QAAQ,GAAG,CAACC,GAAW,EAAEC,KAAK,GAAG,CAAC,KAAa;EAC1D,MAAMC,CAAC,GAAGC,QAAQ,CAACH,GAAG,CAACI,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;EACvC,MAAMC,CAAC,GAAGF,QAAQ,CAACH,GAAG,CAACI,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;EACvC,MAAME,CAAC,GAAGH,QAAQ,CAACH,GAAG,CAACI,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC;EAEvC,OAAQ,QAAOF,CAAE,KAAIG,CAAE,KAAIC,CAAE,KAAIL,KAAM,GAAE;AAC3C,CAAC;;ACqBM,MAAMM,OAAqB,GAAG;EACnClL,eAAe,EAAE0K,QAAQ,CAACzM,MAAM,CAACY,KAAK,EAAE,IAAI,CAAC;EAC7Ce,YAAY,EAAE,EAAE;EAChBiD,OAAO,EAAE,IAAI;EACbsI,iBAAiB,EAAE,EAAE;EACrBC,eAAe,EAAE,CAAC;EAClBC,eAAe,EAAE,CAAC;EAClBzK,QAAQ,EAAE,GAAG;EACbS,UAAU,EAAE;IACViK,EAAE,EAAE;MACFhK,QAAQ,EAAE,OAAO;MACjBC,cAAc,EAAE,UAAU;MAC1ByC,QAAQ,EAAE;KACX;IACDuH,GAAG,EAAE;MACHjK,QAAQ,EAAE,MAAM;MAChBC,cAAc,EAAE,UAAU;MAC1ByC,QAAQ,EAAE;;GAEb;EACDwH,KAAK,EAAE;IACLzH,KAAK,EAAE,EAAE;IACTf,MAAM,EAAE;;AAEZ,CAAC;;AC3BD,MAAMyI,WAAW,GAAG;EAClBC,MAAM,EAAE;IACN5K,IAAI,EAAE,CAAC;IACP4C,KAAK,EAAE,GAAG;IACV1C,MAAM,EAAE,GAAG;IACXf,KAAK,EAAE,IAAI;IACX0L,IAAI,EAAE;GACP;EACDC,GAAG,EAAE;IACHC,eAAe,EAAE,kBAAkB;IACnCC,gBAAgB,EAAE,kBAAkB;IACpCC,eAAe,EAAE,mBAAmB;IACpCC,cAAc,EAAE;GACjB;EACDC,GAAG,EAAE;IACHJ,eAAe,EAAE,kBAAkB;IACnCC,gBAAgB,EAAE,kBAAkB;IACpCC,eAAe,EAAE,mBAAmB;IACpCC,cAAc,EAAE;;AAEpB,CAAC;;AAED;AACA;MACaE,KAAK,GAAG;EACnBhM,OAAO;EACPjC,MAAM;EACNkO,QAAQ,EAAE;IAAExP,SAAS,EAAED;GAAuB;EAC9CiD,MAAM;EACN8L,WAAW;EACXlL,MAAM;EACNJ,WAAW;EACX8B,IAAI;EACJO,SAAS;EACTc,OAAO;EACPW,WAAW;EACXC,eAAe;EACfkE,KAAK;EACLC,SAAS;EACTC,UAAU;EACVC,QAAQ;EACRG,UAAU;EACVS,MAAM;EACNG,OAAO;EACPU,QAAQ;EACRO,GAAG;EACHW,OAAO;EACP5F,UAAU;EACVmD;AACF;;;;"}
@@ -729,7 +729,68 @@ const picker = {
729
729
  };
730
730
 
731
731
  const shadows = {
732
- medium: '0px 10px 20px rgba(41, 48, 51, 0.25)'
732
+ /** @deprecated: use cards.medium instead - shorthand shadow doesnt work with Native Base */
733
+ medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',
734
+ cards: {
735
+ low: {
736
+ color: colors.black,
737
+ offsetX: 0,
738
+ offsetY: 5,
739
+ opacity: 0.1,
740
+ radius: 20
741
+ },
742
+ medium: {
743
+ color: colors.black,
744
+ offsetX: 0,
745
+ offsetY: 10,
746
+ opacity: 0.15,
747
+ radius: 20
748
+ },
749
+ highBase: {
750
+ color: colors.black,
751
+ offsetX: 0,
752
+ offsetY: 10,
753
+ opacity: 0.15,
754
+ radius: 20
755
+ },
756
+ highMedium: {
757
+ color: colors.black,
758
+ offsetX: 0,
759
+ offsetY: 60,
760
+ opacity: 0.08,
761
+ radius: 40
762
+ },
763
+ highLarge: {
764
+ color: colors.black,
765
+ offsetX: 0,
766
+ offsetY: 80,
767
+ opacity: 0.08,
768
+ radius: 60
769
+ }
770
+ },
771
+ navigation: {
772
+ left: {
773
+ color: colors.black,
774
+ offsetX: 10,
775
+ offsetY: 0,
776
+ opacity: 0.15,
777
+ radius: 30
778
+ },
779
+ right: {
780
+ color: colors.black,
781
+ offsetX: -10,
782
+ offsetY: 0,
783
+ opacity: 0.15,
784
+ radius: 30
785
+ }
786
+ },
787
+ panel: {
788
+ color: colors.black,
789
+ offsetX: 0,
790
+ offsetY: 20,
791
+ opacity: 1,
792
+ radius: 40
793
+ }
733
794
  };
734
795
 
735
796
  const skeleton = {