@ornikar/kitt-universal 7.2.0 → 7.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/definitions/Button/BaseStyledButtonPressable.d.ts +1 -0
  2. package/dist/definitions/Button/BaseStyledButtonPressable.d.ts.map +1 -1
  3. package/dist/definitions/Button/Button.d.ts +1 -0
  4. package/dist/definitions/Button/Button.d.ts.map +1 -1
  5. package/dist/definitions/Button/ButtonContent.d.ts.map +1 -1
  6. package/dist/definitions/PageLoader/AnimatedBackgroundCircle.d.ts +3 -0
  7. package/dist/definitions/PageLoader/AnimatedBackgroundCircle.d.ts.map +1 -0
  8. package/dist/definitions/PageLoader/AnimatedFillCircle.d.ts +3 -0
  9. package/dist/definitions/PageLoader/AnimatedFillCircle.d.ts.map +1 -0
  10. package/dist/definitions/PageLoader/AnimatedFillCircleContainer.d.ts +8 -0
  11. package/dist/definitions/PageLoader/AnimatedFillCircleContainer.d.ts.map +1 -0
  12. package/dist/definitions/PageLoader/AnimatedLoaderCircle.d.ts +10 -0
  13. package/dist/definitions/PageLoader/AnimatedLoaderCircle.d.ts.map +1 -0
  14. package/dist/definitions/PageLoader/PageLoader.d.ts.map +1 -1
  15. package/dist/definitions/PageLoader/PageLoader.web.d.ts.map +1 -1
  16. package/dist/definitions/forms/DatePicker/DatePickerInputPart.d.ts.map +1 -1
  17. package/dist/definitions/forms/InputText/InputText.d.ts.map +1 -1
  18. package/dist/definitions/themes/late-ocean/button.d.ts +2 -1
  19. package/dist/definitions/themes/late-ocean/button.d.ts.map +1 -1
  20. package/dist/definitions/themes/late-ocean/input.d.ts +2 -2
  21. package/dist/definitions/themes/late-ocean/input.d.ts.map +1 -1
  22. package/dist/definitions/themes/late-ocean/pageLoader.d.ts +13 -0
  23. package/dist/definitions/themes/late-ocean/pageLoader.d.ts.map +1 -1
  24. package/dist/index-browser-all.es.android.js +218 -29
  25. package/dist/index-browser-all.es.android.js.map +1 -1
  26. package/dist/index-browser-all.es.ios.js +218 -29
  27. package/dist/index-browser-all.es.ios.js.map +1 -1
  28. package/dist/index-browser-all.es.js +218 -29
  29. package/dist/index-browser-all.es.js.map +1 -1
  30. package/dist/index-browser-all.es.web.js +113 -35
  31. package/dist/index-browser-all.es.web.js.map +1 -1
  32. package/dist/index-node-14.17.cjs.js +213 -24
  33. package/dist/index-node-14.17.cjs.js.map +1 -1
  34. package/dist/index-node-14.17.cjs.web.css +1 -1
  35. package/dist/index-node-14.17.cjs.web.js +102 -29
  36. package/dist/index-node-14.17.cjs.web.js.map +1 -1
  37. package/dist/linaria-themes-browser-all.es.android.js +26 -3
  38. package/dist/linaria-themes-browser-all.es.android.js.map +1 -1
  39. package/dist/linaria-themes-browser-all.es.ios.js +26 -3
  40. package/dist/linaria-themes-browser-all.es.ios.js.map +1 -1
  41. package/dist/linaria-themes-browser-all.es.js +26 -3
  42. package/dist/linaria-themes-browser-all.es.js.map +1 -1
  43. package/dist/linaria-themes-browser-all.es.web.js +26 -3
  44. package/dist/linaria-themes-browser-all.es.web.js.map +1 -1
  45. package/dist/linaria-themes-node-14.17.cjs.js +26 -3
  46. package/dist/linaria-themes-node-14.17.cjs.js.map +1 -1
  47. package/dist/linaria-themes-node-14.17.cjs.web.js +26 -3
  48. package/dist/linaria-themes-node-14.17.cjs.web.js.map +1 -1
  49. package/dist/styles.css +1 -1
  50. package/dist/tsbuildinfo +1 -1
  51. package/package.json +9 -4
@@ -85,6 +85,7 @@ var button = {
85
85
  contentPadding: {
86
86
  "default": '7px 16px 7px',
87
87
  large: '11px 24px 11px',
88
+ xLarge: '15px 24px 15px',
88
89
  disabled: '5px 14px 5px'
89
90
  },
90
91
  transition: {
@@ -97,6 +98,15 @@ var button = {
97
98
  pressedBackgroundColor: 'rgba(0, 0, 0, 0.1)',
98
99
  hoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',
99
100
  focusBorderColor: 'rgba(0, 0, 0, 0.1)'
101
+ },
102
+ ghost: {
103
+ backgroundColor: 'rgba(255, 255, 255, 0.1)',
104
+ pressedBackgroundColor: 'rgba(255, 255, 255, 0.05)',
105
+ hoverBackgroundColor: 'rgba(255, 255, 255, 0.05)',
106
+ focusBorderColor: 'rgba(255, 255, 255, 0.4)',
107
+ color: lateOceanColorPalette.white,
108
+ hoverColor: lateOceanColorPalette.white,
109
+ activeColor: lateOceanColorPalette.white
100
110
  }
101
111
  },
102
112
  primary: {
@@ -336,8 +346,8 @@ var input = {
336
346
  size: 20
337
347
  },
338
348
  padding: {
339
- "default": '5px 16px',
340
- iOSSingleLine: '7px 16px'
349
+ horizontal: 16,
350
+ vertical: 5
341
351
  },
342
352
  transition: {
343
353
  property: 'border-color',
@@ -452,7 +462,20 @@ var listItem = {
452
462
  };
453
463
 
454
464
  var pageLoader = {
455
- size: 60
465
+ size: 60,
466
+ strokeWidth: 3,
467
+ colors: {
468
+ base: colors.separator,
469
+ fill: colors.primary
470
+ },
471
+ animation: {
472
+ delay: 500,
473
+ circleBackgroundFillDuration: 1000,
474
+ filledCircleFillDuration: 1800,
475
+ groupFilledCircleRotationDuration: 1800,
476
+ filledCircleRotationDuration: 2160,
477
+ fillEasingFunction: [0.39, 0.575, 0.565, 1]
478
+ }
456
479
  };
457
480
 
458
481
  var shadows = {
@@ -1 +1 @@
1
- {"version":3,"file":"linaria-themes-browser-all.es.android.js","sources":["../src/themes/palettes/lateOceanColorPalette.ts","../src/themes/late-ocean/colors.ts","../src/themes/late-ocean/avatar.ts","../src/themes/late-ocean/button.ts","../src/themes/late-ocean/card.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/textArea.ts","../src/themes/late-ocean/forms.ts","../src/themes/late-ocean/fullScreenModal.ts","../src/themes/late-ocean/iconButton.ts","../src/themes/late-ocean/listItem.ts","../src/themes/late-ocean/pageLoader.ts","../src/themes/late-ocean/shadows.ts","../src/themes/late-ocean/skeleton.ts","../src/themes/late-ocean/tag.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: '#2C293D',\n black555: '#737373',\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 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 fullscreenLoader: 'rgba(0, 0, 0, 0.25)',\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface AvatarThemeColorVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarThemeSizeVariant {\n borderRadius: number;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n default: AvatarThemeColorVariant;\n light: AvatarThemeColorVariant;\n large: AvatarThemeSizeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n large: {\n borderRadius: 30,\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\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 contentPadding: {\n default: string;\n large: string;\n disabled: string;\n };\n transition: {\n duration: string;\n timingFunction: string;\n };\n default: BaseButtonTheme;\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 disabled: '5px 14px 5px',\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 },\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 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 { Platform } from 'react-native';\nimport { 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-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 },\n types: {\n headers: {\n fontFamily: {\n regular: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\n bold: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\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 regular: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans',\n bold: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans-Bold',\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: lateOceanColorPalette.black200,\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: keyof typeof typography.colors;\n}\n\nexport type InputStateTheme = Record<InputUIState, InputStateStyle>;\n\nconst inputStatesStyle: InputStateTheme = {\n default: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n pending: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n valid: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: lateOceanColorPalette.black100,\n color: 'black',\n },\n hover: {\n borderColor: lateOceanColorPalette.black200,\n color: 'black',\n },\n focus: {\n borderColor: colors.primary,\n color: 'black',\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n color: 'black-light',\n },\n invalid: {\n borderColor: colors.separator,\n color: '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 default: string;\n iOSSingleLine: string;\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 padding: {\n default: '5px 16px',\n iOSSingleLine: '7px 16px',\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 labelContainerPaddingBottom: 5,\n iconMarginLeft: 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","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 { textArea } from './textArea';\n\nexport const forms = {\n datePicker,\n input,\n radio,\n inputField,\n textArea,\n checkbox,\n inputTag,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const fullScreenModal = {\n header: {\n paddingVertical: 12,\n paddingHorizontal: 16,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { 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}\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};\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 PageLoaderTheme {\n size: number;\n}\n\nexport const pageLoader: PageLoaderTheme = {\n size: 60,\n};\n","export const shadows = {\n medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport interface SkeletonTheme {\n backgroundColor: string;\n flareColor: string;\n animationDuration: number;\n}\n\nexport const skeleton: SkeletonTheme = {\n backgroundColor: lateOceanColorPalette.black100,\n flareColor: lateOceanColorPalette.black200,\n animationDuration: 1000,\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}\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};\n","import { colors } from './colors';\n\nexport interface TooltipTheme {\n backgroundColor: string;\n borderRadius: number;\n opacity: number;\n horizontalPadding: number;\n verticalPadding: number;\n floatingPadding: number;\n}\n\nexport const tooltip: TooltipTheme = {\n backgroundColor: colors.black,\n borderRadius: 10,\n opacity: 0.95,\n horizontalPadding: 16,\n verticalPadding: 4,\n floatingPadding: 8,\n};\n","import { avatar } from './late-ocean/avatar';\nimport { button } from './late-ocean/button';\nimport { card } from './late-ocean/card';\nimport { colors } from './late-ocean/colors';\nimport { feedbackMessage } from './late-ocean/feedback';\nimport { forms } from './late-ocean/forms';\nimport { fullScreenModal } from './late-ocean/fullScreenModal';\nimport { iconButton } from './late-ocean/iconButton';\nimport { listItem } from './late-ocean/listItem';\nimport { pageLoader } from './late-ocean/pageLoader';\nimport { shadows } from './late-ocean/shadows';\nimport { skeleton } from './late-ocean/skeleton';\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: 4,\n colors,\n palettes: { lateOcean: lateOceanColorPalette },\n avatar,\n breakpoints,\n button,\n card,\n feedbackMessage,\n forms,\n fullScreenModal,\n iconButton,\n listItem,\n pageLoader,\n shadows,\n skeleton,\n tag,\n tooltip,\n typography,\n};\n\nexport type Theme = typeof theme;\n"],"names":["lateOceanColorPalette","lateOcean","lateOceanLight1","lateOceanLight2","lateOceanLight3","warmEmbrace","warmEmbraceLight1","black1000","black800","black555","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","blackAnthracite","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","fullscreenLoader","avatar","borderRadius","backgroundColor","large","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","transition","duration","timingFunction","pressedBackgroundColor","hoverBackgroundColor","focusBorderColor","ghost","color","hoverColor","activeColor","subtle","borderColor","card","secondary","feedbackMessage","checkbox","height","width","iconSize","checkedBorderColor","checkedBackgroundColor","markColor","datePicker","day","month","year","calcLineHeight","fontSize","lineHeightMultiplier","Math","round","createTypographyTypeConfig","baseAndSmallFontSize","mediumAndWideFontSize","baseAndSmall","lineHeight","mediumAndWide","typography","kittColors","types","headers","fontFamily","regular","Platform","OS","bold","fontWeight","fontStyle","configs","header1","header2","header3","header4","header5","bodies","body","link","disabledColor","inputStatesStyle","pending","valid","invalid","input","selection","placeholder","icon","size","padding","iOSSingleLine","property","states","inputField","labelContainerPaddingBottom","iconMarginLeft","inputTag","labelColor","radio","unchecked","checked","innerSize","innerBackgroundColor","textArea","forms","fullScreenModal","header","paddingVertical","paddingHorizontal","iconButton","listItem","innerMargin","pageLoader","shadows","skeleton","flareColor","animationDuration","tag","fill","outline","tooltip","opacity","horizontalPadding","verticalPadding","floatingPadding","breakpoints","values","small","wide","min","smallBreakpoint","mediumBreakpoint","largeBreakpoint","wideBreakpoint","max","theme","spacing","palettes"],"mappings":"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"}
1
+ {"version":3,"file":"linaria-themes-browser-all.es.android.js","sources":["../src/themes/palettes/lateOceanColorPalette.ts","../src/themes/late-ocean/colors.ts","../src/themes/late-ocean/avatar.ts","../src/themes/late-ocean/button.ts","../src/themes/late-ocean/card.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/textArea.ts","../src/themes/late-ocean/forms.ts","../src/themes/late-ocean/fullScreenModal.ts","../src/themes/late-ocean/iconButton.ts","../src/themes/late-ocean/listItem.ts","../src/themes/late-ocean/pageLoader.ts","../src/themes/late-ocean/shadows.ts","../src/themes/late-ocean/skeleton.ts","../src/themes/late-ocean/tag.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: '#2C293D',\n black555: '#737373',\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 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 fullscreenLoader: 'rgba(0, 0, 0, 0.25)',\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface AvatarThemeColorVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarThemeSizeVariant {\n borderRadius: number;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n default: AvatarThemeColorVariant;\n light: AvatarThemeColorVariant;\n large: AvatarThemeSizeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n large: {\n borderRadius: 30,\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\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 contentPadding: {\n default: string;\n large: string;\n xLarge: string;\n disabled: string;\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 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 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 { Platform } from 'react-native';\nimport { 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-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 },\n types: {\n headers: {\n fontFamily: {\n regular: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\n bold: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\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 regular: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans',\n bold: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans-Bold',\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: lateOceanColorPalette.black200,\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: keyof typeof typography.colors;\n}\n\nexport type InputStateTheme = Record<InputUIState, InputStateStyle>;\n\nconst inputStatesStyle: InputStateTheme = {\n default: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n pending: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n valid: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: lateOceanColorPalette.black100,\n color: 'black',\n },\n hover: {\n borderColor: lateOceanColorPalette.black200,\n color: 'black',\n },\n focus: {\n borderColor: colors.primary,\n color: 'black',\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n color: 'black-light',\n },\n invalid: {\n borderColor: colors.separator,\n color: '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 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 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 labelContainerPaddingBottom: 5,\n iconMarginLeft: 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","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 { textArea } from './textArea';\n\nexport const forms = {\n datePicker,\n input,\n radio,\n inputField,\n textArea,\n checkbox,\n inputTag,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const fullScreenModal = {\n header: {\n paddingVertical: 12,\n paddingHorizontal: 16,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { 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}\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};\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","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","export const shadows = {\n medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport interface SkeletonTheme {\n backgroundColor: string;\n flareColor: string;\n animationDuration: number;\n}\n\nexport const skeleton: SkeletonTheme = {\n backgroundColor: lateOceanColorPalette.black100,\n flareColor: lateOceanColorPalette.black200,\n animationDuration: 1000,\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}\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};\n","import { colors } from './colors';\n\nexport interface TooltipTheme {\n backgroundColor: string;\n borderRadius: number;\n opacity: number;\n horizontalPadding: number;\n verticalPadding: number;\n floatingPadding: number;\n}\n\nexport const tooltip: TooltipTheme = {\n backgroundColor: colors.black,\n borderRadius: 10,\n opacity: 0.95,\n horizontalPadding: 16,\n verticalPadding: 4,\n floatingPadding: 8,\n};\n","import { avatar } from './late-ocean/avatar';\nimport { button } from './late-ocean/button';\nimport { card } from './late-ocean/card';\nimport { colors } from './late-ocean/colors';\nimport { feedbackMessage } from './late-ocean/feedback';\nimport { forms } from './late-ocean/forms';\nimport { fullScreenModal } from './late-ocean/fullScreenModal';\nimport { iconButton } from './late-ocean/iconButton';\nimport { listItem } from './late-ocean/listItem';\nimport { pageLoader } from './late-ocean/pageLoader';\nimport { shadows } from './late-ocean/shadows';\nimport { skeleton } from './late-ocean/skeleton';\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: 4,\n colors,\n palettes: { lateOcean: lateOceanColorPalette },\n avatar,\n breakpoints,\n button,\n card,\n feedbackMessage,\n forms,\n fullScreenModal,\n iconButton,\n listItem,\n pageLoader,\n shadows,\n skeleton,\n tag,\n tooltip,\n typography,\n};\n\nexport type Theme = typeof theme;\n"],"names":["lateOceanColorPalette","lateOcean","lateOceanLight1","lateOceanLight2","lateOceanLight3","warmEmbrace","warmEmbraceLight1","black1000","black800","black555","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","blackAnthracite","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","fullscreenLoader","avatar","borderRadius","backgroundColor","large","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","xLarge","transition","duration","timingFunction","pressedBackgroundColor","hoverBackgroundColor","focusBorderColor","ghost","color","hoverColor","activeColor","subtle","borderColor","card","secondary","feedbackMessage","checkbox","height","width","iconSize","checkedBorderColor","checkedBackgroundColor","markColor","datePicker","day","month","year","calcLineHeight","fontSize","lineHeightMultiplier","Math","round","createTypographyTypeConfig","baseAndSmallFontSize","mediumAndWideFontSize","baseAndSmall","lineHeight","mediumAndWide","typography","kittColors","types","headers","fontFamily","regular","Platform","OS","bold","fontWeight","fontStyle","configs","header1","header2","header3","header4","header5","bodies","body","link","disabledColor","inputStatesStyle","pending","valid","invalid","input","selection","placeholder","icon","size","padding","horizontal","vertical","property","states","inputField","labelContainerPaddingBottom","iconMarginLeft","inputTag","labelColor","radio","unchecked","checked","innerSize","innerBackgroundColor","textArea","forms","fullScreenModal","header","paddingVertical","paddingHorizontal","iconButton","listItem","innerMargin","pageLoader","strokeWidth","fill","animation","delay","circleBackgroundFillDuration","filledCircleFillDuration","groupFilledCircleRotationDuration","filledCircleRotationDuration","fillEasingFunction","shadows","skeleton","flareColor","animationDuration","tag","outline","tooltip","opacity","horizontalPadding","verticalPadding","floatingPadding","breakpoints","values","small","wide","min","smallBreakpoint","mediumBreakpoint","largeBreakpoint","wideBreakpoint","max","theme","spacing","palettes"],"mappings":"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"}
@@ -85,6 +85,7 @@ var button = {
85
85
  contentPadding: {
86
86
  "default": '7px 16px 7px',
87
87
  large: '11px 24px 11px',
88
+ xLarge: '15px 24px 15px',
88
89
  disabled: '5px 14px 5px'
89
90
  },
90
91
  transition: {
@@ -97,6 +98,15 @@ var button = {
97
98
  pressedBackgroundColor: 'rgba(0, 0, 0, 0.1)',
98
99
  hoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',
99
100
  focusBorderColor: 'rgba(0, 0, 0, 0.1)'
101
+ },
102
+ ghost: {
103
+ backgroundColor: 'rgba(255, 255, 255, 0.1)',
104
+ pressedBackgroundColor: 'rgba(255, 255, 255, 0.05)',
105
+ hoverBackgroundColor: 'rgba(255, 255, 255, 0.05)',
106
+ focusBorderColor: 'rgba(255, 255, 255, 0.4)',
107
+ color: lateOceanColorPalette.white,
108
+ hoverColor: lateOceanColorPalette.white,
109
+ activeColor: lateOceanColorPalette.white
100
110
  }
101
111
  },
102
112
  primary: {
@@ -336,8 +346,8 @@ var input = {
336
346
  size: 20
337
347
  },
338
348
  padding: {
339
- "default": '5px 16px',
340
- iOSSingleLine: '7px 16px'
349
+ horizontal: 16,
350
+ vertical: 5
341
351
  },
342
352
  transition: {
343
353
  property: 'border-color',
@@ -452,7 +462,20 @@ var listItem = {
452
462
  };
453
463
 
454
464
  var pageLoader = {
455
- size: 60
465
+ size: 60,
466
+ strokeWidth: 3,
467
+ colors: {
468
+ base: colors.separator,
469
+ fill: colors.primary
470
+ },
471
+ animation: {
472
+ delay: 500,
473
+ circleBackgroundFillDuration: 1000,
474
+ filledCircleFillDuration: 1800,
475
+ groupFilledCircleRotationDuration: 1800,
476
+ filledCircleRotationDuration: 2160,
477
+ fillEasingFunction: [0.39, 0.575, 0.565, 1]
478
+ }
456
479
  };
457
480
 
458
481
  var shadows = {
@@ -1 +1 @@
1
- {"version":3,"file":"linaria-themes-browser-all.es.ios.js","sources":["../src/themes/palettes/lateOceanColorPalette.ts","../src/themes/late-ocean/colors.ts","../src/themes/late-ocean/avatar.ts","../src/themes/late-ocean/button.ts","../src/themes/late-ocean/card.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/textArea.ts","../src/themes/late-ocean/forms.ts","../src/themes/late-ocean/fullScreenModal.ts","../src/themes/late-ocean/iconButton.ts","../src/themes/late-ocean/listItem.ts","../src/themes/late-ocean/pageLoader.ts","../src/themes/late-ocean/shadows.ts","../src/themes/late-ocean/skeleton.ts","../src/themes/late-ocean/tag.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: '#2C293D',\n black555: '#737373',\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 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 fullscreenLoader: 'rgba(0, 0, 0, 0.25)',\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface AvatarThemeColorVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarThemeSizeVariant {\n borderRadius: number;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n default: AvatarThemeColorVariant;\n light: AvatarThemeColorVariant;\n large: AvatarThemeSizeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n large: {\n borderRadius: 30,\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\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 contentPadding: {\n default: string;\n large: string;\n disabled: string;\n };\n transition: {\n duration: string;\n timingFunction: string;\n };\n default: BaseButtonTheme;\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 disabled: '5px 14px 5px',\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 },\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 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 { Platform } from 'react-native';\nimport { 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-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 },\n types: {\n headers: {\n fontFamily: {\n regular: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\n bold: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\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 regular: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans',\n bold: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans-Bold',\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: lateOceanColorPalette.black200,\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: keyof typeof typography.colors;\n}\n\nexport type InputStateTheme = Record<InputUIState, InputStateStyle>;\n\nconst inputStatesStyle: InputStateTheme = {\n default: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n pending: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n valid: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: lateOceanColorPalette.black100,\n color: 'black',\n },\n hover: {\n borderColor: lateOceanColorPalette.black200,\n color: 'black',\n },\n focus: {\n borderColor: colors.primary,\n color: 'black',\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n color: 'black-light',\n },\n invalid: {\n borderColor: colors.separator,\n color: '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 default: string;\n iOSSingleLine: string;\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 padding: {\n default: '5px 16px',\n iOSSingleLine: '7px 16px',\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 labelContainerPaddingBottom: 5,\n iconMarginLeft: 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","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 { textArea } from './textArea';\n\nexport const forms = {\n datePicker,\n input,\n radio,\n inputField,\n textArea,\n checkbox,\n inputTag,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const fullScreenModal = {\n header: {\n paddingVertical: 12,\n paddingHorizontal: 16,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { 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}\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};\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 PageLoaderTheme {\n size: number;\n}\n\nexport const pageLoader: PageLoaderTheme = {\n size: 60,\n};\n","export const shadows = {\n medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport interface SkeletonTheme {\n backgroundColor: string;\n flareColor: string;\n animationDuration: number;\n}\n\nexport const skeleton: SkeletonTheme = {\n backgroundColor: lateOceanColorPalette.black100,\n flareColor: lateOceanColorPalette.black200,\n animationDuration: 1000,\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}\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};\n","import { colors } from './colors';\n\nexport interface TooltipTheme {\n backgroundColor: string;\n borderRadius: number;\n opacity: number;\n horizontalPadding: number;\n verticalPadding: number;\n floatingPadding: number;\n}\n\nexport const tooltip: TooltipTheme = {\n backgroundColor: colors.black,\n borderRadius: 10,\n opacity: 0.95,\n horizontalPadding: 16,\n verticalPadding: 4,\n floatingPadding: 8,\n};\n","import { avatar } from './late-ocean/avatar';\nimport { button } from './late-ocean/button';\nimport { card } from './late-ocean/card';\nimport { colors } from './late-ocean/colors';\nimport { feedbackMessage } from './late-ocean/feedback';\nimport { forms } from './late-ocean/forms';\nimport { fullScreenModal } from './late-ocean/fullScreenModal';\nimport { iconButton } from './late-ocean/iconButton';\nimport { listItem } from './late-ocean/listItem';\nimport { pageLoader } from './late-ocean/pageLoader';\nimport { shadows } from './late-ocean/shadows';\nimport { skeleton } from './late-ocean/skeleton';\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: 4,\n colors,\n palettes: { lateOcean: lateOceanColorPalette },\n avatar,\n breakpoints,\n button,\n card,\n feedbackMessage,\n forms,\n fullScreenModal,\n iconButton,\n listItem,\n pageLoader,\n shadows,\n skeleton,\n tag,\n tooltip,\n typography,\n};\n\nexport type Theme = typeof theme;\n"],"names":["lateOceanColorPalette","lateOcean","lateOceanLight1","lateOceanLight2","lateOceanLight3","warmEmbrace","warmEmbraceLight1","black1000","black800","black555","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","blackAnthracite","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","fullscreenLoader","avatar","borderRadius","backgroundColor","large","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","transition","duration","timingFunction","pressedBackgroundColor","hoverBackgroundColor","focusBorderColor","ghost","color","hoverColor","activeColor","subtle","borderColor","card","secondary","feedbackMessage","checkbox","height","width","iconSize","checkedBorderColor","checkedBackgroundColor","markColor","datePicker","day","month","year","calcLineHeight","fontSize","lineHeightMultiplier","Math","round","createTypographyTypeConfig","baseAndSmallFontSize","mediumAndWideFontSize","baseAndSmall","lineHeight","mediumAndWide","typography","kittColors","types","headers","fontFamily","regular","Platform","OS","bold","fontWeight","fontStyle","configs","header1","header2","header3","header4","header5","bodies","body","link","disabledColor","inputStatesStyle","pending","valid","invalid","input","selection","placeholder","icon","size","padding","iOSSingleLine","property","states","inputField","labelContainerPaddingBottom","iconMarginLeft","inputTag","labelColor","radio","unchecked","checked","innerSize","innerBackgroundColor","textArea","forms","fullScreenModal","header","paddingVertical","paddingHorizontal","iconButton","listItem","innerMargin","pageLoader","shadows","skeleton","flareColor","animationDuration","tag","fill","outline","tooltip","opacity","horizontalPadding","verticalPadding","floatingPadding","breakpoints","values","small","wide","min","smallBreakpoint","mediumBreakpoint","largeBreakpoint","wideBreakpoint","max","theme","spacing","palettes"],"mappings":"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"}
1
+ {"version":3,"file":"linaria-themes-browser-all.es.ios.js","sources":["../src/themes/palettes/lateOceanColorPalette.ts","../src/themes/late-ocean/colors.ts","../src/themes/late-ocean/avatar.ts","../src/themes/late-ocean/button.ts","../src/themes/late-ocean/card.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/textArea.ts","../src/themes/late-ocean/forms.ts","../src/themes/late-ocean/fullScreenModal.ts","../src/themes/late-ocean/iconButton.ts","../src/themes/late-ocean/listItem.ts","../src/themes/late-ocean/pageLoader.ts","../src/themes/late-ocean/shadows.ts","../src/themes/late-ocean/skeleton.ts","../src/themes/late-ocean/tag.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: '#2C293D',\n black555: '#737373',\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 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 fullscreenLoader: 'rgba(0, 0, 0, 0.25)',\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colors } from './colors';\n\nexport interface AvatarThemeColorVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarThemeSizeVariant {\n borderRadius: number;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n default: AvatarThemeColorVariant;\n light: AvatarThemeColorVariant;\n large: AvatarThemeSizeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n large: {\n borderRadius: 30,\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\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 contentPadding: {\n default: string;\n large: string;\n xLarge: string;\n disabled: string;\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 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 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 { Platform } from 'react-native';\nimport { 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-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 },\n types: {\n headers: {\n fontFamily: {\n regular: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\n bold: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\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 regular: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans',\n bold: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans-Bold',\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: lateOceanColorPalette.black200,\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: keyof typeof typography.colors;\n}\n\nexport type InputStateTheme = Record<InputUIState, InputStateStyle>;\n\nconst inputStatesStyle: InputStateTheme = {\n default: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n pending: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: colors.separator,\n color: 'black',\n },\n valid: {\n backgroundColor: colors.uiBackgroundLight,\n borderColor: lateOceanColorPalette.black100,\n color: 'black',\n },\n hover: {\n borderColor: lateOceanColorPalette.black200,\n color: 'black',\n },\n focus: {\n borderColor: colors.primary,\n color: 'black',\n },\n disabled: {\n backgroundColor: colors.disabled,\n borderColor: colors.separator,\n color: 'black-light',\n },\n invalid: {\n borderColor: colors.separator,\n color: '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 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 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 labelContainerPaddingBottom: 5,\n iconMarginLeft: 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","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 { textArea } from './textArea';\n\nexport const forms = {\n datePicker,\n input,\n radio,\n inputField,\n textArea,\n checkbox,\n inputTag,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const fullScreenModal = {\n header: {\n paddingVertical: 12,\n paddingHorizontal: 16,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { 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}\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};\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","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","export const shadows = {\n medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport interface SkeletonTheme {\n backgroundColor: string;\n flareColor: string;\n animationDuration: number;\n}\n\nexport const skeleton: SkeletonTheme = {\n backgroundColor: lateOceanColorPalette.black100,\n flareColor: lateOceanColorPalette.black200,\n animationDuration: 1000,\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}\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};\n","import { colors } from './colors';\n\nexport interface TooltipTheme {\n backgroundColor: string;\n borderRadius: number;\n opacity: number;\n horizontalPadding: number;\n verticalPadding: number;\n floatingPadding: number;\n}\n\nexport const tooltip: TooltipTheme = {\n backgroundColor: colors.black,\n borderRadius: 10,\n opacity: 0.95,\n horizontalPadding: 16,\n verticalPadding: 4,\n floatingPadding: 8,\n};\n","import { avatar } from './late-ocean/avatar';\nimport { button } from './late-ocean/button';\nimport { card } from './late-ocean/card';\nimport { colors } from './late-ocean/colors';\nimport { feedbackMessage } from './late-ocean/feedback';\nimport { forms } from './late-ocean/forms';\nimport { fullScreenModal } from './late-ocean/fullScreenModal';\nimport { iconButton } from './late-ocean/iconButton';\nimport { listItem } from './late-ocean/listItem';\nimport { pageLoader } from './late-ocean/pageLoader';\nimport { shadows } from './late-ocean/shadows';\nimport { skeleton } from './late-ocean/skeleton';\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: 4,\n colors,\n palettes: { lateOcean: lateOceanColorPalette },\n avatar,\n breakpoints,\n button,\n card,\n feedbackMessage,\n forms,\n fullScreenModal,\n iconButton,\n listItem,\n pageLoader,\n shadows,\n skeleton,\n tag,\n tooltip,\n typography,\n};\n\nexport type Theme = typeof theme;\n"],"names":["lateOceanColorPalette","lateOcean","lateOceanLight1","lateOceanLight2","lateOceanLight3","warmEmbrace","warmEmbraceLight1","black1000","black800","black555","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","blackAnthracite","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","fullscreenLoader","avatar","borderRadius","backgroundColor","large","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","xLarge","transition","duration","timingFunction","pressedBackgroundColor","hoverBackgroundColor","focusBorderColor","ghost","color","hoverColor","activeColor","subtle","borderColor","card","secondary","feedbackMessage","checkbox","height","width","iconSize","checkedBorderColor","checkedBackgroundColor","markColor","datePicker","day","month","year","calcLineHeight","fontSize","lineHeightMultiplier","Math","round","createTypographyTypeConfig","baseAndSmallFontSize","mediumAndWideFontSize","baseAndSmall","lineHeight","mediumAndWide","typography","kittColors","types","headers","fontFamily","regular","Platform","OS","bold","fontWeight","fontStyle","configs","header1","header2","header3","header4","header5","bodies","body","link","disabledColor","inputStatesStyle","pending","valid","invalid","input","selection","placeholder","icon","size","padding","horizontal","vertical","property","states","inputField","labelContainerPaddingBottom","iconMarginLeft","inputTag","labelColor","radio","unchecked","checked","innerSize","innerBackgroundColor","textArea","forms","fullScreenModal","header","paddingVertical","paddingHorizontal","iconButton","listItem","innerMargin","pageLoader","strokeWidth","fill","animation","delay","circleBackgroundFillDuration","filledCircleFillDuration","groupFilledCircleRotationDuration","filledCircleRotationDuration","fillEasingFunction","shadows","skeleton","flareColor","animationDuration","tag","outline","tooltip","opacity","horizontalPadding","verticalPadding","floatingPadding","breakpoints","values","small","wide","min","smallBreakpoint","mediumBreakpoint","largeBreakpoint","wideBreakpoint","max","theme","spacing","palettes"],"mappings":"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"}
@@ -85,6 +85,7 @@ var button = {
85
85
  contentPadding: {
86
86
  "default": '7px 16px 7px',
87
87
  large: '11px 24px 11px',
88
+ xLarge: '15px 24px 15px',
88
89
  disabled: '5px 14px 5px'
89
90
  },
90
91
  transition: {
@@ -97,6 +98,15 @@ var button = {
97
98
  pressedBackgroundColor: 'rgba(0, 0, 0, 0.1)',
98
99
  hoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',
99
100
  focusBorderColor: 'rgba(0, 0, 0, 0.1)'
101
+ },
102
+ ghost: {
103
+ backgroundColor: 'rgba(255, 255, 255, 0.1)',
104
+ pressedBackgroundColor: 'rgba(255, 255, 255, 0.05)',
105
+ hoverBackgroundColor: 'rgba(255, 255, 255, 0.05)',
106
+ focusBorderColor: 'rgba(255, 255, 255, 0.4)',
107
+ color: lateOceanColorPalette.white,
108
+ hoverColor: lateOceanColorPalette.white,
109
+ activeColor: lateOceanColorPalette.white
100
110
  }
101
111
  },
102
112
  primary: {
@@ -336,8 +346,8 @@ var input = {
336
346
  size: 20
337
347
  },
338
348
  padding: {
339
- "default": '5px 16px',
340
- iOSSingleLine: '7px 16px'
349
+ horizontal: 16,
350
+ vertical: 5
341
351
  },
342
352
  transition: {
343
353
  property: 'border-color',
@@ -452,7 +462,20 @@ var listItem = {
452
462
  };
453
463
 
454
464
  var pageLoader = {
455
- size: 60
465
+ size: 60,
466
+ strokeWidth: 3,
467
+ colors: {
468
+ base: colors.separator,
469
+ fill: colors.primary
470
+ },
471
+ animation: {
472
+ delay: 500,
473
+ circleBackgroundFillDuration: 1000,
474
+ filledCircleFillDuration: 1800,
475
+ groupFilledCircleRotationDuration: 1800,
476
+ filledCircleRotationDuration: 2160,
477
+ fillEasingFunction: [0.39, 0.575, 0.565, 1]
478
+ }
456
479
  };
457
480
 
458
481
  var shadows = {