@ornikar/kitt-universal 6.1.0 → 7.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/definitions/Avatar/Avatar.d.ts +5 -4
- package/dist/definitions/Avatar/Avatar.d.ts.map +1 -1
- package/dist/definitions/Icon/Icon.d.ts +1 -1
- package/dist/definitions/Icon/Icon.d.ts.map +1 -1
- package/dist/definitions/Icon/SpinningIcon.d.ts +4 -3
- package/dist/definitions/Icon/SpinningIcon.d.ts.map +1 -1
- package/dist/definitions/Icon/SpinningIcon.web.d.ts +1 -1
- package/dist/definitions/Icon/SpinningIcon.web.d.ts.map +1 -1
- package/dist/definitions/LoaderIcon/LoaderIcon.d.ts +7 -0
- package/dist/definitions/LoaderIcon/LoaderIcon.d.ts.map +1 -0
- package/dist/definitions/Overlay/Overlay.d.ts +1 -1
- package/dist/definitions/Overlay/Overlay.d.ts.map +1 -1
- package/dist/definitions/PageLoader/PageLoader.d.ts +4 -0
- package/dist/definitions/PageLoader/PageLoader.d.ts.map +1 -0
- package/dist/definitions/PageLoader/PageLoader.web.d.ts +3 -0
- package/dist/definitions/PageLoader/PageLoader.web.d.ts.map +1 -0
- package/dist/definitions/TimePicker/useTimePicker.d.ts +2 -0
- package/dist/definitions/TimePicker/useTimePicker.d.ts.map +1 -1
- package/dist/definitions/index.d.ts +5 -6
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/definitions/themes/default.d.ts +37 -36
- package/dist/definitions/themes/default.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/avatar.d.ts +7 -3
- package/dist/definitions/themes/late-ocean/avatar.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/pageLoader.d.ts +5 -0
- package/dist/definitions/themes/late-ocean/pageLoader.d.ts.map +1 -0
- package/dist/index-browser-all.es.android.js +107 -137
- package/dist/index-browser-all.es.android.js.map +1 -1
- package/dist/index-browser-all.es.ios.js +107 -137
- package/dist/index-browser-all.es.ios.js.map +1 -1
- package/dist/index-browser-all.es.js +107 -137
- package/dist/index-browser-all.es.js.map +1 -1
- package/dist/index-browser-all.es.web.js +107 -142
- package/dist/index-browser-all.es.web.js.map +1 -1
- package/dist/index-node-14.17.cjs.js +63 -92
- package/dist/index-node-14.17.cjs.js.map +1 -1
- package/dist/index-node-14.17.cjs.web.css +1 -1
- package/dist/index-node-14.17.cjs.web.js +75 -104
- package/dist/index-node-14.17.cjs.web.js.map +1 -1
- package/dist/linaria-themes-browser-all.es.android.js +13 -5
- package/dist/linaria-themes-browser-all.es.android.js.map +1 -1
- package/dist/linaria-themes-browser-all.es.ios.js +13 -5
- package/dist/linaria-themes-browser-all.es.ios.js.map +1 -1
- package/dist/linaria-themes-browser-all.es.js +13 -5
- package/dist/linaria-themes-browser-all.es.js.map +1 -1
- package/dist/linaria-themes-browser-all.es.web.js +13 -5
- package/dist/linaria-themes-browser-all.es.web.js.map +1 -1
- package/dist/linaria-themes-node-14.17.cjs.js +13 -5
- package/dist/linaria-themes-node-14.17.cjs.js.map +1 -1
- package/dist/linaria-themes-node-14.17.cjs.web.js +13 -5
- package/dist/linaria-themes-node-14.17.cjs.web.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +4 -4
- package/dist/definitions/Loader/LargeLoader.d.ts +0 -7
- package/dist/definitions/Loader/LargeLoader.d.ts.map +0 -1
- package/dist/definitions/Loader/LargeLoader.web.d.ts +0 -3
- package/dist/definitions/Loader/LargeLoader.web.d.ts.map +0 -1
- package/dist/definitions/Loader/Loader.d.ts +0 -8
- package/dist/definitions/Loader/Loader.d.ts.map +0 -1
- package/dist/definitions/Loader/Loader.web.d.ts +0 -8
- package/dist/definitions/Loader/Loader.web.d.ts.map +0 -1
- package/dist/definitions/typography/TypographySpinningIcon.d.ts +0 -9
- package/dist/definitions/typography/TypographySpinningIcon.d.ts.map +0 -1
|
@@ -55,6 +55,9 @@ var avatar = {
|
|
|
55
55
|
},
|
|
56
56
|
light: {
|
|
57
57
|
backgroundColor: lateOceanColorPalette.black100
|
|
58
|
+
},
|
|
59
|
+
large: {
|
|
60
|
+
borderRadius: 30
|
|
58
61
|
}
|
|
59
62
|
};
|
|
60
63
|
|
|
@@ -446,6 +449,10 @@ var listItem = {
|
|
|
446
449
|
innerMargin: 8
|
|
447
450
|
};
|
|
448
451
|
|
|
452
|
+
var pageLoader = {
|
|
453
|
+
size: 60
|
|
454
|
+
};
|
|
455
|
+
|
|
449
456
|
var shadows = {
|
|
450
457
|
medium: '0px 10px 20px rgba(41, 48, 51, 0.25)'
|
|
451
458
|
};
|
|
@@ -536,19 +543,20 @@ var theme = {
|
|
|
536
543
|
lateOcean: lateOceanColorPalette
|
|
537
544
|
},
|
|
538
545
|
avatar: avatar,
|
|
546
|
+
breakpoints: breakpoints,
|
|
539
547
|
button: button,
|
|
540
548
|
card: card,
|
|
541
549
|
feedbackMessage: feedbackMessage,
|
|
542
550
|
forms: forms,
|
|
543
|
-
typography: typography,
|
|
544
|
-
tag: tag,
|
|
545
|
-
shadows: shadows,
|
|
546
551
|
fullScreenModal: fullScreenModal,
|
|
547
552
|
iconButton: iconButton,
|
|
548
553
|
listItem: listItem,
|
|
549
|
-
|
|
554
|
+
pageLoader: pageLoader,
|
|
555
|
+
shadows: shadows,
|
|
550
556
|
skeleton: skeleton,
|
|
551
|
-
|
|
557
|
+
tag: tag,
|
|
558
|
+
tooltip: tooltip,
|
|
559
|
+
typography: typography
|
|
552
560
|
};
|
|
553
561
|
|
|
554
562
|
export { theme as defaultThemeLinaria };
|
|
@@ -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/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 black: lateOceanColorPalette.black1000,\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 AvatarThemeVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n default: AvatarThemeVariant;\n light: AvatarThemeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\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';\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: lateOceanColorPalette.black1000,\n 'black-anthracite': lateOceanColorPalette.black800,\n 'black-light': lateOceanColorPalette.black555,\n white: lateOceanColorPalette.white,\n 'white-light': lateOceanColorPalette.white,\n primary: lateOceanColorPalette.lateOcean,\n 'primary-light': lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n success: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\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 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 { 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 button,\n card,\n feedbackMessage,\n forms,\n typography,\n tag,\n shadows,\n fullScreenModal,\n iconButton,\n listItem,\n tooltip,\n skeleton,\n breakpoints,\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","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","fullscreenLoader","avatar","borderRadius","backgroundColor","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","large","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","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","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 black: lateOceanColorPalette.black1000,\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';\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: lateOceanColorPalette.black1000,\n 'black-anthracite': lateOceanColorPalette.black800,\n 'black-light': lateOceanColorPalette.black555,\n white: lateOceanColorPalette.white,\n 'white-light': lateOceanColorPalette.white,\n primary: lateOceanColorPalette.lateOcean,\n 'primary-light': lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n success: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\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","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","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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"}
|
|
@@ -55,6 +55,9 @@ var avatar = {
|
|
|
55
55
|
},
|
|
56
56
|
light: {
|
|
57
57
|
backgroundColor: lateOceanColorPalette.black100
|
|
58
|
+
},
|
|
59
|
+
large: {
|
|
60
|
+
borderRadius: 30
|
|
58
61
|
}
|
|
59
62
|
};
|
|
60
63
|
|
|
@@ -446,6 +449,10 @@ var listItem = {
|
|
|
446
449
|
innerMargin: 8
|
|
447
450
|
};
|
|
448
451
|
|
|
452
|
+
var pageLoader = {
|
|
453
|
+
size: 60
|
|
454
|
+
};
|
|
455
|
+
|
|
449
456
|
var shadows = {
|
|
450
457
|
medium: '0px 10px 20px rgba(41, 48, 51, 0.25)'
|
|
451
458
|
};
|
|
@@ -536,19 +543,20 @@ var theme = {
|
|
|
536
543
|
lateOcean: lateOceanColorPalette
|
|
537
544
|
},
|
|
538
545
|
avatar: avatar,
|
|
546
|
+
breakpoints: breakpoints,
|
|
539
547
|
button: button,
|
|
540
548
|
card: card,
|
|
541
549
|
feedbackMessage: feedbackMessage,
|
|
542
550
|
forms: forms,
|
|
543
|
-
typography: typography,
|
|
544
|
-
tag: tag,
|
|
545
|
-
shadows: shadows,
|
|
546
551
|
fullScreenModal: fullScreenModal,
|
|
547
552
|
iconButton: iconButton,
|
|
548
553
|
listItem: listItem,
|
|
549
|
-
|
|
554
|
+
pageLoader: pageLoader,
|
|
555
|
+
shadows: shadows,
|
|
550
556
|
skeleton: skeleton,
|
|
551
|
-
|
|
557
|
+
tag: tag,
|
|
558
|
+
tooltip: tooltip,
|
|
559
|
+
typography: typography
|
|
552
560
|
};
|
|
553
561
|
|
|
554
562
|
export { theme as defaultThemeLinaria };
|
|
@@ -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/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 black: lateOceanColorPalette.black1000,\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 AvatarThemeVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarTheme {\n borderRadius: number;\n default: AvatarThemeVariant;\n light: AvatarThemeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: 10,\n default: {\n backgroundColor: colors.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\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';\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: lateOceanColorPalette.black1000,\n 'black-anthracite': lateOceanColorPalette.black800,\n 'black-light': lateOceanColorPalette.black555,\n white: lateOceanColorPalette.white,\n 'white-light': lateOceanColorPalette.white,\n primary: lateOceanColorPalette.lateOcean,\n 'primary-light': lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n success: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\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 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 { 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 button,\n card,\n feedbackMessage,\n forms,\n typography,\n tag,\n shadows,\n fullScreenModal,\n iconButton,\n listItem,\n tooltip,\n skeleton,\n breakpoints,\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","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","fullscreenLoader","avatar","borderRadius","backgroundColor","button","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","large","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","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","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 black: lateOceanColorPalette.black1000,\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';\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: lateOceanColorPalette.black1000,\n 'black-anthracite': lateOceanColorPalette.black800,\n 'black-light': lateOceanColorPalette.black555,\n white: lateOceanColorPalette.white,\n 'white-light': lateOceanColorPalette.white,\n primary: lateOceanColorPalette.lateOcean,\n 'primary-light': lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n success: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\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","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","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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"}
|
|
@@ -55,6 +55,9 @@ var avatar = {
|
|
|
55
55
|
},
|
|
56
56
|
light: {
|
|
57
57
|
backgroundColor: lateOceanColorPalette.black100
|
|
58
|
+
},
|
|
59
|
+
large: {
|
|
60
|
+
borderRadius: 30
|
|
58
61
|
}
|
|
59
62
|
};
|
|
60
63
|
|
|
@@ -446,6 +449,10 @@ var listItem = {
|
|
|
446
449
|
innerMargin: 8
|
|
447
450
|
};
|
|
448
451
|
|
|
452
|
+
var pageLoader = {
|
|
453
|
+
size: 60
|
|
454
|
+
};
|
|
455
|
+
|
|
449
456
|
var shadows = {
|
|
450
457
|
medium: '0px 10px 20px rgba(41, 48, 51, 0.25)'
|
|
451
458
|
};
|
|
@@ -536,19 +543,20 @@ var theme = {
|
|
|
536
543
|
lateOcean: lateOceanColorPalette
|
|
537
544
|
},
|
|
538
545
|
avatar: avatar,
|
|
546
|
+
breakpoints: breakpoints,
|
|
539
547
|
button: button,
|
|
540
548
|
card: card,
|
|
541
549
|
feedbackMessage: feedbackMessage,
|
|
542
550
|
forms: forms,
|
|
543
|
-
typography: typography,
|
|
544
|
-
tag: tag,
|
|
545
|
-
shadows: shadows,
|
|
546
551
|
fullScreenModal: fullScreenModal,
|
|
547
552
|
iconButton: iconButton,
|
|
548
553
|
listItem: listItem,
|
|
549
|
-
|
|
554
|
+
pageLoader: pageLoader,
|
|
555
|
+
shadows: shadows,
|
|
550
556
|
skeleton: skeleton,
|
|
551
|
-
|
|
557
|
+
tag: tag,
|
|
558
|
+
tooltip: tooltip,
|
|
559
|
+
typography: typography
|
|
552
560
|
};
|
|
553
561
|
|
|
554
562
|
export { theme as defaultThemeLinaria };
|