From 04470135a1ff0a22f23fc7b70757e89aa0b1a8ef Mon Sep 17 00:00:00 2001 From: Egor Pogadaev Date: Fri, 9 Apr 2021 16:11:07 +0500 Subject: [PATCH 1/5] chore(react-ui): remove obsolete vars that brake types --- packages/react-ui/internal/themes/Theme8px.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages/react-ui/internal/themes/Theme8px.ts b/packages/react-ui/internal/themes/Theme8px.ts index 693f3ac6e93..f4fb1c31c5b 100644 --- a/packages/react-ui/internal/themes/Theme8px.ts +++ b/packages/react-ui/internal/themes/Theme8px.ts @@ -80,17 +80,6 @@ export class Theme8px extends (class {} as typeof DefaultThemeInternal) { public static btnIconSizeSmall = '16px'; public static btnIconSizeMedium = '18px'; public static btnIconSizeLarge = '20px'; - public static btnSmallArrowTop = '7px'; - public static btnSmallArrowRight = '-8px'; - - public static btnSmallArrowLength = '16px'; - public static btnMediumArrowTop = '8px'; - public static btnMediumArrowLength = '21.2px'; - public static btnMediumArrowRight = '-11px'; - public static btnLargeArrowLength = '25px'; - public static btnLargeArrowLeft = '-12px'; - public static btnLargeArrowRight = '-12px'; - //#endregion //#region Input public static get inputHeightSmall() { @@ -159,7 +148,6 @@ export class Theme8px extends (class {} as typeof DefaultThemeInternal) { public static inputIconSizeLarge = '20px'; //#endregion //#region Select - public static selectWidth = '200px'; public static get selectBorderWidth() { return this.controlBorderWidth; } @@ -493,7 +481,6 @@ export class Theme8px extends (class {} as typeof DefaultThemeInternal) { public static sidePageFooterPaddingBottom = '32px'; public static sidePageCloseButtonPadding = '36px'; public static sidePageCloseButtonLegacyPaddingLeft = '36px'; - public static sidePageCloseButtonClickArea = '10px'; //#endregion //#region Tooltip public static tooltipPaddingY = '16px'; From b2e00876762bf7ec4d40a3424110aee713ef33d6 Mon Sep 17 00:00:00 2001 From: Egor Pogadaev Date: Fri, 9 Apr 2021 16:12:09 +0500 Subject: [PATCH 2/5] feat(react-ui): turn on 8px theme by default BREAKING CHANGE: default theme has changed --- packages/react-ui/.creevey/config.js | 21 ++++++++------- packages/react-ui/.storybook/preview.tsx | 12 ++++----- .../internal/ThemePlayground/Playground.tsx | 16 ++++++------ .../ThemeContextPlayground.tsx | 26 +++++++++---------- .../internal/ThemePlayground/constants.ts | 4 +-- packages/react-ui/lib/theming/ThemeContext.ts | 4 +-- packages/react-ui/package.json | 22 ++++++++-------- 7 files changed, 54 insertions(+), 51 deletions(-) diff --git a/packages/react-ui/.creevey/config.js b/packages/react-ui/.creevey/config.js index a672c7525ce..9bd412baaaa 100644 --- a/packages/react-ui/.creevey/config.js +++ b/packages/react-ui/.creevey/config.js @@ -12,56 +12,59 @@ const config = { chrome: { browserName: 'chrome', viewport: { width: 1024, height: 720 }, + storybookUrl: 'http://localhost:6061', platformName: 'linux', limit: 2, }, chrome8px: { browserName: 'chrome', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6061', + storybookUrl: 'http://localhost:6060', platformName: 'linux', limit: 2, }, chromeFlat: { browserName: 'chrome', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6062', + storybookUrl: 'http://localhost:6063', platformName: 'linux', limit: 2, }, chromeFlat8px: { browserName: 'chrome', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6063', + storybookUrl: 'http://localhost:6062', platformName: 'linux', limit: 2, }, firefox: { browserName: 'firefox', viewport: { width: 1024, height: 720 }, + storybookUrl: 'http://localhost:6061', limit: 2, }, firefox8px: { browserName: 'firefox', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6061', + storybookUrl: 'http://localhost:6060', limit: 2, }, firefoxFlat: { browserName: 'firefox', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6062', + storybookUrl: 'http://localhost:6063', limit: 2, }, firefoxFlat8px: { browserName: 'firefox', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6063', + storybookUrl: 'http://localhost:6062', limit: 2, }, ie11: { browserName: 'internet explorer', viewport: { width: 1024, height: 720 }, + storybookUrl: 'http://localhost:6061', limit: 2, // NOTE Enable after switch new separate pool for IE to allow test hover @@ -77,19 +80,19 @@ const config = { ie118px: { browserName: 'internet explorer', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6061', + storybookUrl: 'http://localhost:6060', limit: 2, }, ie11Flat: { browserName: 'internet explorer', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6062', + storybookUrl: 'http://localhost:6063', limit: 2, }, ie11Flat8px: { browserName: 'internet explorer', viewport: { width: 1024, height: 720 }, - storybookUrl: 'http://localhost:6063', + storybookUrl: 'http://localhost:6062', limit: 2, }, }, diff --git a/packages/react-ui/.storybook/preview.tsx b/packages/react-ui/.storybook/preview.tsx index 59e088d8e1a..f3f2a5e58ff 100644 --- a/packages/react-ui/.storybook/preview.tsx +++ b/packages/react-ui/.storybook/preview.tsx @@ -46,18 +46,18 @@ addDecorator(story => ( addDecorator(story => { const getTheme = () => { switch (true) { - case Boolean(process.env.STORYBOOK_8PX): - return DEFAULT_THEME_8PX; - case Boolean(process.env.STORYBOOK_FLAT_8PX): + case Boolean(process.env.STORYBOOK_OLD): + return DEFAULT_THEME; + case Boolean(process.env.STORYBOOK_FLAT): return FLAT_THEME_8PX; - case Boolean(process.env.STORYBOOK_FLAT_UI): + case Boolean(process.env.STORYBOOK_FLAT_OLD): return FLAT_THEME; default: - return DEFAULT_THEME; + return DEFAULT_THEME_8PX; } }; const theme = getTheme(); - if (theme !== DEFAULT_THEME) { + if (theme !== DEFAULT_THEME_8PX) { return {story()}; } return story(); diff --git a/packages/react-ui/internal/ThemePlayground/Playground.tsx b/packages/react-ui/internal/ThemePlayground/Playground.tsx index cbf73ff04e5..155ea0489a3 100644 --- a/packages/react-ui/internal/ThemePlayground/Playground.tsx +++ b/packages/react-ui/internal/ThemePlayground/Playground.tsx @@ -130,10 +130,10 @@ export class Playground extends React.Component { case ThemeType.Dark: return ThemeType.Dark; case ThemeType.Flat: - case ThemeType.Flat8px: + case ThemeType.FlatOld: return ThemeType.Flat; case ThemeType.Default: - case ThemeType.Default8px: + case ThemeType.DefaultOld: default: return ThemeType.Default; } @@ -141,8 +141,8 @@ export class Playground extends React.Component { private get is8pxTheme(): boolean { switch (this.props.currentThemeType) { - case ThemeType.Default8px: - case ThemeType.Flat8px: + case ThemeType.Default: + case ThemeType.Flat: return true; default: return false; @@ -153,15 +153,15 @@ export class Playground extends React.Component { const { currentThemeType, onThemeChange } = this.props; switch (currentThemeType) { case ThemeType.Default: - onThemeChange(ThemeType.Default8px); + onThemeChange(ThemeType.DefaultOld); break; - case ThemeType.Default8px: + case ThemeType.DefaultOld: onThemeChange(ThemeType.Default); break; case ThemeType.Flat: - onThemeChange(ThemeType.Flat8px); + onThemeChange(ThemeType.FlatOld); break; - case ThemeType.Flat8px: + case ThemeType.FlatOld: onThemeChange(ThemeType.Flat); break; } diff --git a/packages/react-ui/internal/ThemePlayground/ThemeContextPlayground.tsx b/packages/react-ui/internal/ThemePlayground/ThemeContextPlayground.tsx index 551998f6c8f..ffe81cbd4e6 100644 --- a/packages/react-ui/internal/ThemePlayground/ThemeContextPlayground.tsx +++ b/packages/react-ui/internal/ThemePlayground/ThemeContextPlayground.tsx @@ -30,17 +30,17 @@ interface PlaygroundState { } interface Themes { default: Theme; - default8px: Theme; + defaultOld: Theme; dark: Theme; flat: Theme; - flat8px: Theme; + flatOld: Theme; } interface ThemesErrors { default: ThemeErrorsType; - default8px: ThemeErrorsType; + defaultOld: ThemeErrorsType; dark: ThemeErrorsType; flat: ThemeErrorsType; - flat8px: ThemeErrorsType; + flatOld: ThemeErrorsType; } interface EditingThemeItem { value: ThemeType; @@ -54,31 +54,31 @@ export type ThemeErrorsType = Writeable<{ [key in keyof Theme]?: boolean }>; export class ThemeContextPlayground extends React.Component { private readonly editableThemesItems = [ { value: ThemeType.Default, label: 'Дефолтная' }, - { value: ThemeType.Default8px, label: 'Дефолтная 8px' }, + { value: ThemeType.DefaultOld, label: 'Старая дефолтная' }, { value: ThemeType.Flat, label: 'Плоская' }, - { value: ThemeType.Flat8px, label: 'Плоская 8px' }, + { value: ThemeType.FlatOld, label: 'Старая Плоская' }, { value: ThemeType.Dark, label: 'Темная' }, ]; constructor(props: PlaygroundProps) { super(props); this.state = { - currentTheme: DEFAULT_THEME, + currentTheme: DEFAULT_THEME_8PX, currentThemeType: ThemeType.Default, editorOpened: false, themes: { - default: DEFAULT_THEME, - default8px: DEFAULT_THEME_8PX, + default: DEFAULT_THEME_8PX, + defaultOld: DEFAULT_THEME, dark: darkTheme, - flat: FLAT_THEME, - flat8px: FLAT_THEME_8PX, + flat: FLAT_THEME_8PX, + flatOld: FLAT_THEME, }, themesErrors: { default: {}, - default8px: {}, + defaultOld: {}, dark: {}, flat: {}, - flat8px: {}, + flatOld: {}, }, }; } diff --git a/packages/react-ui/internal/ThemePlayground/constants.ts b/packages/react-ui/internal/ThemePlayground/constants.ts index 815d57de7f1..7bb7b597b10 100644 --- a/packages/react-ui/internal/ThemePlayground/constants.ts +++ b/packages/react-ui/internal/ThemePlayground/constants.ts @@ -4,8 +4,8 @@ export enum ThemeType { Default = 'default', Flat = 'flat', Dark = 'dark', - Default8px = 'default8px', - Flat8px = 'flat8px', + DefaultOld = 'defaultOld', + FlatOld = 'flatOld', } export const VARIABLES_GROUPS = [ diff --git a/packages/react-ui/lib/theming/ThemeContext.ts b/packages/react-ui/lib/theming/ThemeContext.ts index d3897173d9a..59eccf07714 100644 --- a/packages/react-ui/lib/theming/ThemeContext.ts +++ b/packages/react-ui/lib/theming/ThemeContext.ts @@ -1,7 +1,7 @@ import React from 'react'; -import { DEFAULT_THEME } from './themes/DefaultTheme'; +import { DEFAULT_THEME_8PX } from './themes/DefaultTheme8px'; -export const ThemeContext = React.createContext(DEFAULT_THEME); +export const ThemeContext = React.createContext(DEFAULT_THEME_8PX); ThemeContext.displayName = 'ThemeContext'; diff --git a/packages/react-ui/package.json b/packages/react-ui/package.json index ea5944631ed..5234cb081e5 100644 --- a/packages/react-ui/package.json +++ b/packages/react-ui/package.json @@ -26,24 +26,24 @@ "predeploy": "rimraf .styleguide/deploy && yarn run styleguide:build", "deploy": "gh-pages -a -d .styleguide/deploy -r git@github.com:skbkontur/react-ui.git", "storybook": "start-storybook -p 6060", - "storybook:8px": "cross-env STORYBOOK_8PX=true start-storybook -p 6060", - "storybook:flat": "cross-env STORYBOOK_FLAT_UI=true start-storybook -p 6060", - "storybook:flat8px": "cross-env STORYBOOK_FLAT_8PX=true start-storybook -p 6060", + "storybook:old": "cross-env STORYBOOK_OLD=true start-storybook -p 6060", + "storybook:flat": "cross-env STORYBOOK_FLAT=true start-storybook -p 6060", + "storybook:flatOld": "cross-env STORYBOOK_FLAT_OLD=true start-storybook -p 6060", "storybook:build": "run-s storybook:build:*", "storybook:build:default": "cross-env NODE_ENV=test build-storybook -o .storybook/build/default", - "storybook:build:default8px": "cross-env NODE_ENV=test STORYBOOK_8PX=true build-storybook -o .storybook/build/default8px", - "storybook:build:flat": "cross-env NODE_ENV=test STORYBOOK_FLAT_UI=true build-storybook -o .storybook/build/flat", - "storybook:build:flat8px": "cross-env NODE_ENV=test STORYBOOK_FLAT_8PX=true build-storybook -o .storybook/build/flat8px", + "storybook:build:defaultOld": "cross-env NODE_ENV=test STORYBOOK_OLD=true build-storybook -o .storybook/build/defaultOld", + "storybook:build:flat": "cross-env NODE_ENV=test STORYBOOK_FLAT=true build-storybook -o .storybook/build/flat", + "storybook:build:flatOld": "cross-env NODE_ENV=test STORYBOOK_FLAT_OLD=true build-storybook -o .storybook/build/flatOld", "storybook:test": "run-p storybook:test:*", "storybook:test:default": "cross-env NODE_ENV=test start-storybook --ci -p 6060", - "storybook:test:flat": "cross-env NODE_ENV=test STORYBOOK_FLAT_UI=true start-storybook --ci -p 6062", - "storybook:test:default8px": "cross-env NODE_ENV=test STORYBOOK_8PX=true start-storybook --ci -p 6061", - "storybook:test:flat8px": "cross-env NODE_ENV=test STORYBOOK_FLAT_8PX=true start-storybook --ci -p 6063", + "storybook:test:flat": "cross-env NODE_ENV=test STORYBOOK_FLAT=true start-storybook --ci -p 6062", + "storybook:test:defaultOld": "cross-env NODE_ENV=test STORYBOOK_OLD=true start-storybook --ci -p 6061", + "storybook:test:flatOld": "cross-env NODE_ENV=test STORYBOOK_FLAT_OLD=true start-storybook --ci -p 6063", "storybook:serve": "run-p storybook:serve:*", "storybook:serve:default": "serve -l 6060 .storybook/build/default", - "storybook:serve:default8px": "serve -l 6061 .storybook/build/default8px", + "storybook:serve:defaultOld": "serve -l 6061 .storybook/build/defaultOld", "storybook:serve:flat": "serve -l 6062 .storybook/build/flat", - "storybook:serve:flat8px": "serve -l 6063 .storybook/build/flat8px", + "storybook:serve:flatOld": "serve -l 6063 .storybook/build/flatOld", "styleguide": "styleguidist server --config .styleguide/config/dev.config.js", "styleguide:build": "node .styleguide/build", "lint": "run-p -c lint:*", From 4e3ae415948d4b145827b1bc67de2b51bcce4aa8 Mon Sep 17 00:00:00 2001 From: Egor Pogadaev Date: Sun, 11 Apr 2021 14:29:42 +0500 Subject: [PATCH 3/5] test(react-ui): fix screenshots --- .../playground/dark theme top/ie11/dark theme top.png | 4 ++-- .../default theme bottom/chrome/default theme bottom.png | 4 ++-- .../default theme bottom/chrome8px/default theme bottom.png | 4 ++-- .../default theme bottom/firefox/default theme bottom.png | 4 ++-- .../default theme bottom/firefox8px/default theme bottom.png | 4 ++-- .../default theme bottom/ie11/default theme bottom.png | 4 ++-- .../default theme bottom/ie118px/default theme bottom.png | 4 ++-- .../playground/default theme top/chrome/default theme top.png | 4 ++-- .../default theme top/chrome8px/default theme top.png | 4 ++-- .../default theme top/firefox/default theme top.png | 4 ++-- .../default theme top/firefox8px/default theme top.png | 4 ++-- .../playground/default theme top/ie11/default theme top.png | 4 ++-- .../playground/flat theme bottom/chrome/flat theme bottom.png | 4 ++-- .../flat theme bottom/chrome8px/flat theme bottom.png | 4 ++-- .../flat theme bottom/firefox/flat theme bottom.png | 4 ++-- .../flat theme bottom/firefox8px/flat theme bottom.png | 4 ++-- .../playground/flat theme bottom/ie11/flat theme bottom.png | 4 ++-- .../flat theme bottom/ie118px/flat theme bottom.png | 4 ++-- .../playground/flat theme top/chrome/flat theme top.png | 4 ++-- .../playground/flat theme top/chrome8px/flat theme top.png | 4 ++-- .../playground/flat theme top/firefox/flat theme top.png | 4 ++-- .../playground/flat theme top/firefox8px/flat theme top.png | 4 ++-- .../playground/flat theme top/ie11/flat theme top.png | 4 ++-- .../.creevey/images/Toast/static method/toastShown/chrome.png | 4 ++-- .../images/Toast/static method/toastShown/chrome8px.png | 4 ++-- .../images/Toast/static method/toastShown/firefox.png | 4 ++-- .../images/Toast/static method/toastShown/firefox8px.png | 4 ++-- .../.creevey/images/Toast/static method/toastShown/ie11.png | 4 ++-- .../images/Toast/static method/toastShown/ie118px.png | 4 ++-- 29 files changed, 58 insertions(+), 58 deletions(-) diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/dark theme top/ie11/dark theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/dark theme top/ie11/dark theme top.png index ea6d5ed8500..8661543d8dc 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/dark theme top/ie11/dark theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/dark theme top/ie11/dark theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e4df0b6362b090d3da57d6503c9e95f2ff94985315d69eef64fbae117bd10f6 -size 35794 +oid sha256:6706c642a3b14fad1ff91204fb90a24789d19316d6575da03d46182ef4af33ed +size 35811 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome/default theme bottom.png index 07c2207462d..57967afdce8 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec20633efa38fd46cfcfcb85051763a3dc5c6c35ca2d23bc0b49db76efe3e1e9 -size 58154 +oid sha256:05270034bceee2eef492bb1ed81e111848ea832e12a871115de3189cfd25ed6e +size 56839 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome8px/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome8px/default theme bottom.png index 07c2207462d..57967afdce8 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome8px/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/chrome8px/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec20633efa38fd46cfcfcb85051763a3dc5c6c35ca2d23bc0b49db76efe3e1e9 -size 58154 +oid sha256:05270034bceee2eef492bb1ed81e111848ea832e12a871115de3189cfd25ed6e +size 56839 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox/default theme bottom.png index 89e2795a5e3..044906ee18b 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7087b37fae402e220d6ba801d4eccdaf61236778288486a13f2b7e40c85beeb7 -size 29639 +oid sha256:ec2fb8eb4fc82f36439eea4d0b382045fb4c068081dcde178710d2ed85b3afe7 +size 29231 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox8px/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox8px/default theme bottom.png index 89e2795a5e3..044906ee18b 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox8px/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/firefox8px/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7087b37fae402e220d6ba801d4eccdaf61236778288486a13f2b7e40c85beeb7 -size 29639 +oid sha256:ec2fb8eb4fc82f36439eea4d0b382045fb4c068081dcde178710d2ed85b3afe7 +size 29231 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png index 74fc218b743..ffd4f2e6fd6 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cce97d94a189646b3f5211453cb27d3521b086385e56b2675941f051897dc1fd -size 34051 +oid sha256:3740a6286852dc8fe8f9fdd13f516dfe60a04fda79ba23b3c1882c310a5cb02c +size 31546 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png index 74fc218b743..ffd4f2e6fd6 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cce97d94a189646b3f5211453cb27d3521b086385e56b2675941f051897dc1fd -size 34051 +oid sha256:3740a6286852dc8fe8f9fdd13f516dfe60a04fda79ba23b3c1882c310a5cb02c +size 31546 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome/default theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome/default theme top.png index 0a6b1c1ed68..2337053a278 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome/default theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome/default theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86d01fe7f22c89195467cb0ebd9912bceb8540a30ae3e5e1996d1a7744d98458 -size 58788 +oid sha256:95f20e2d9b94ae29b88f93079f9327660379a01e0c360372796f633b07cdc211 +size 61027 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome8px/default theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome8px/default theme top.png index 0a6b1c1ed68..2337053a278 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome8px/default theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/chrome8px/default theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86d01fe7f22c89195467cb0ebd9912bceb8540a30ae3e5e1996d1a7744d98458 -size 58788 +oid sha256:95f20e2d9b94ae29b88f93079f9327660379a01e0c360372796f633b07cdc211 +size 61027 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox/default theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox/default theme top.png index 5776ac53e5d..87682d56f03 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox/default theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox/default theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f814e1cc67c23d96a9bb5f39b50cfd9e11a1925355eb189cd9bd3d39c6ebe04 -size 32431 +oid sha256:03cf56bfc050fc8177fe526824f19a84f9bde5c556c741157d6860fe4ff1bb7d +size 33150 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox8px/default theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox8px/default theme top.png index 5776ac53e5d..87682d56f03 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox8px/default theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/firefox8px/default theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f814e1cc67c23d96a9bb5f39b50cfd9e11a1925355eb189cd9bd3d39c6ebe04 -size 32431 +oid sha256:03cf56bfc050fc8177fe526824f19a84f9bde5c556c741157d6860fe4ff1bb7d +size 33150 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/ie11/default theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/ie11/default theme top.png index 7d4bf5cd536..603feaf6622 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/ie11/default theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme top/ie11/default theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:065d3ad346ece3a2e0f60986568710666e245805fc96f566cecf66d56f4f7234 -size 36075 +oid sha256:aa93f590537320a43928aaab560c66a2a32687ee64156b44b0295fca94edc306 +size 36916 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome/flat theme bottom.png index e65525eef07..77d56786f14 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:872fa87f2e3fcac229423d7163c7092bc30d676e29965157282356d0a22ed611 -size 58009 +oid sha256:20cc15855449015bd768ec946158c1f47dc2cf95df387843534481da5e400214 +size 56095 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome8px/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome8px/flat theme bottom.png index e65525eef07..77d56786f14 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome8px/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/chrome8px/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:872fa87f2e3fcac229423d7163c7092bc30d676e29965157282356d0a22ed611 -size 58009 +oid sha256:20cc15855449015bd768ec946158c1f47dc2cf95df387843534481da5e400214 +size 56095 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox/flat theme bottom.png index 9ce58b37bf3..2d43bebcef4 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a0ccb97a95aec4429f8a02c1d2d61ff14db48e246520f8c4806fae927269dc0 -size 27300 +oid sha256:ff0e7dbf30dc5cc60f6ddc45b6501b3d32c2bfde20e7b31680dafa007732c882 +size 27016 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox8px/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox8px/flat theme bottom.png index 9ce58b37bf3..2d43bebcef4 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox8px/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/firefox8px/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a0ccb97a95aec4429f8a02c1d2d61ff14db48e246520f8c4806fae927269dc0 -size 27300 +oid sha256:ff0e7dbf30dc5cc60f6ddc45b6501b3d32c2bfde20e7b31680dafa007732c882 +size 27016 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png index 7a4f0e4fb82..3ef38d71c05 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cccd66a869342d55211ff7bb41d330bf8e5ff850dbba1a039c378c4d02643ca -size 31920 +oid sha256:f9a638f993612472089fda5a053ee3f5cf54aa05b459e1757ccf154f3bbaf962 +size 29477 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png index 7a4f0e4fb82..3ef38d71c05 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cccd66a869342d55211ff7bb41d330bf8e5ff850dbba1a039c378c4d02643ca -size 31920 +oid sha256:f9a638f993612472089fda5a053ee3f5cf54aa05b459e1757ccf154f3bbaf962 +size 29477 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome/flat theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome/flat theme top.png index d33d3780f3d..ed50c8944b3 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome/flat theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome/flat theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78cb4eff701a509dfcf7596c09964b0c653955a2a10bba8e580ce0c2c42486c5 -size 57444 +oid sha256:83a9326211d2c28bd8d0c04da0e4d58aabba0779126d9460f2717c874c292e66 +size 58605 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome8px/flat theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome8px/flat theme top.png index d33d3780f3d..ed50c8944b3 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome8px/flat theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/chrome8px/flat theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78cb4eff701a509dfcf7596c09964b0c653955a2a10bba8e580ce0c2c42486c5 -size 57444 +oid sha256:83a9326211d2c28bd8d0c04da0e4d58aabba0779126d9460f2717c874c292e66 +size 58605 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox/flat theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox/flat theme top.png index a7c67c2604b..79f9d18c679 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox/flat theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox/flat theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9106cc28b337d58b9a56b53019f73daab66cd3d563f94c216bebe3489da1158 -size 28715 +oid sha256:835e74773384b6276351a92c223cdef345f3b2b824271fc3890187e2562b8256 +size 28936 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox8px/flat theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox8px/flat theme top.png index a7c67c2604b..79f9d18c679 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox8px/flat theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/firefox8px/flat theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9106cc28b337d58b9a56b53019f73daab66cd3d563f94c216bebe3489da1158 -size 28715 +oid sha256:835e74773384b6276351a92c223cdef345f3b2b824271fc3890187e2562b8256 +size 28936 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/ie11/flat theme top.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/ie11/flat theme top.png index a33e1a8682d..c711031048b 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/ie11/flat theme top.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme top/ie11/flat theme top.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17c5a54d052137ed8ec3224592a793045251f9ff8ef1df00d12efca9dadc23e1 -size 32325 +oid sha256:94f5dca5f9923be99943b41b986d5094d66017a01cd58c42e8b3bc9fe0ab6c15 +size 32734 diff --git a/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome.png b/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome.png index c27261eadcc..bb1b9742208 100644 --- a/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome.png +++ b/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69ba58cb2f8e83f6cd2696d0f4b76cebeb27ac36073fff3ac75f1eebda8637ba -size 4363 +oid sha256:80aee63548b870c6ada27fe728491f702c816bad9079a3f41bb5b935505ffba0 +size 4346 diff --git a/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome8px.png b/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome8px.png index c27261eadcc..bb1b9742208 100644 --- a/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome8px.png +++ b/packages/react-ui/.creevey/images/Toast/static method/toastShown/chrome8px.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69ba58cb2f8e83f6cd2696d0f4b76cebeb27ac36073fff3ac75f1eebda8637ba -size 4363 +oid sha256:80aee63548b870c6ada27fe728491f702c816bad9079a3f41bb5b935505ffba0 +size 4346 diff --git a/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox.png b/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox.png index fef49fdc191..3842ae4559b 100644 --- a/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox.png +++ b/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2c5acea1e6e68760feb80b627f7b1879623d7732e281001bbc8ee386888bcf1 -size 1964 +oid sha256:b4d5609289d870a0cca13a2c45ab56676bb259f696cfb9cf70a8e2515c4feee7 +size 1961 diff --git a/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox8px.png b/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox8px.png index fef49fdc191..3842ae4559b 100644 --- a/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox8px.png +++ b/packages/react-ui/.creevey/images/Toast/static method/toastShown/firefox8px.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2c5acea1e6e68760feb80b627f7b1879623d7732e281001bbc8ee386888bcf1 -size 1964 +oid sha256:b4d5609289d870a0cca13a2c45ab56676bb259f696cfb9cf70a8e2515c4feee7 +size 1961 diff --git a/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie11.png b/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie11.png index 6108aeb2254..f812b39f836 100644 --- a/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie11.png +++ b/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie11.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88b0fe6cf910ba77e07bd4ff50575231274bf664f939b45cb3a08305d3855307 -size 2559 +oid sha256:40e687ae676c4d12669ebea39bb8d41d10ccec31f856dfb40660995a4995a078 +size 2551 diff --git a/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie118px.png b/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie118px.png index 6108aeb2254..f812b39f836 100644 --- a/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie118px.png +++ b/packages/react-ui/.creevey/images/Toast/static method/toastShown/ie118px.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88b0fe6cf910ba77e07bd4ff50575231274bf664f939b45cb3a08305d3855307 -size 2559 +oid sha256:40e687ae676c4d12669ebea39bb8d41d10ccec31f856dfb40660995a4995a078 +size 2551 From 0e0366e9c1a46d9e9a28246a5ecf414151827acc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D0=BE=D0=BB=D1=83=D0=B1=D0=B5=D0=B2=20=D0=9E=D0=BB?= =?UTF-8?q?=D0=B5=D0=B3=20=D0=98=D0=B3=D0=BE=D1=80=D0=B5=D0=B2=D0=B8=D1=87?= Date: Fri, 9 Apr 2021 16:55:45 +0500 Subject: [PATCH 4/5] test(Tabs, Input): fix render tests --- packages/react-ui/components/Input/__tests__/Input-test.tsx | 6 +++--- packages/react-ui/components/Tabs/__tests__/Tabs-test.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/react-ui/components/Input/__tests__/Input-test.tsx b/packages/react-ui/components/Input/__tests__/Input-test.tsx index dbdda4a7724..6de835ffdf7 100644 --- a/packages/react-ui/components/Input/__tests__/Input-test.tsx +++ b/packages/react-ui/components/Input/__tests__/Input-test.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { mount } from 'enzyme'; import MaskedInput from 'react-input-mask'; -import { DEFAULT_THEME } from '../../../lib/theming/themes/DefaultTheme'; +import { DEFAULT_THEME_8PX } from '../../../lib/theming/themes/DefaultTheme8px'; import { Input, InputProps } from '../Input'; import { jsStyles } from '../Input.styles'; @@ -46,12 +46,12 @@ describe('', () => { it('applies error styles on error prop', () => { const wrapper = render({ value: '', error: true }); - expect(wrapper.find(`.${jsStyles.error(DEFAULT_THEME as any)}`)).toHaveLength(1); + expect(wrapper.find(`.${jsStyles.error(DEFAULT_THEME_8PX as any)}`)).toHaveLength(1); }); it('applies warning styles on warning prop', () => { const wrapper = render({ value: '', warning: true }); - expect(wrapper.find(`.${jsStyles.warning(DEFAULT_THEME as any)}`)).toHaveLength(1); + expect(wrapper.find(`.${jsStyles.warning(DEFAULT_THEME_8PX as any)}`)).toHaveLength(1); }); it('applies borderless styles on borderless prop', () => { diff --git a/packages/react-ui/components/Tabs/__tests__/Tabs-test.tsx b/packages/react-ui/components/Tabs/__tests__/Tabs-test.tsx index ec2dae986f7..f5bc9dc95bd 100644 --- a/packages/react-ui/components/Tabs/__tests__/Tabs-test.tsx +++ b/packages/react-ui/components/Tabs/__tests__/Tabs-test.tsx @@ -14,7 +14,7 @@ describe('Tabs', () => { , ); - expect(wrapper.find(Indicator).instance().state).toMatchObject({ styles: { top: -3, left: 0 } }); + expect(wrapper.find(Indicator).instance().state).toMatchObject({ styles: { top: -2, left: 0 } }); }); }); From abf0921b8727e9f5702b0a572c6c3024f58bbbb1 Mon Sep 17 00:00:00 2001 From: Egor Pogadaev Date: Sun, 11 Apr 2021 19:13:35 +0500 Subject: [PATCH 5/5] test(react-ui): fix screenshots --- .../default theme bottom/ie11/default theme bottom.png | 4 ++-- .../default theme bottom/ie118px/default theme bottom.png | 4 ++-- .../playground/flat theme bottom/ie11/flat theme bottom.png | 4 ++-- .../flat theme bottom/ie118px/flat theme bottom.png | 4 ++-- .../ZIndex/Toast Over Everything/staticToast/chrome.png | 4 ++-- .../ZIndex/Toast Over Everything/staticToast/chrome8px.png | 4 ++-- .../ZIndex/Toast Over Everything/staticToast/firefox.png | 4 ++-- .../ZIndex/Toast Over Everything/staticToast/firefox8px.png | 4 ++-- .../images/ZIndex/Toast Over Everything/staticToast/ie11.png | 4 ++-- .../ZIndex/Toast Over Everything/staticToast/ie118px.png | 4 ++-- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png index ffd4f2e6fd6..ace6719cde7 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie11/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3740a6286852dc8fe8f9fdd13f516dfe60a04fda79ba23b3c1882c310a5cb02c -size 31546 +oid sha256:fa12b979cff0d95d0f8d4ac0012462087fc3069f53307fd1bc4f864b1ca7af5c +size 31771 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png index ffd4f2e6fd6..ace6719cde7 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/default theme bottom/ie118px/default theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3740a6286852dc8fe8f9fdd13f516dfe60a04fda79ba23b3c1882c310a5cb02c -size 31546 +oid sha256:fa12b979cff0d95d0f8d4ac0012462087fc3069f53307fd1bc4f864b1ca7af5c +size 31771 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png index 3ef38d71c05..6d308bde4d8 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie11/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9a638f993612472089fda5a053ee3f5cf54aa05b459e1757ccf154f3bbaf962 -size 29477 +oid sha256:e03d7e45ef341abd2d129ed6f7af72edc2b0548ba054c74ed9720c7a1ecb9ae5 +size 29732 diff --git a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png index 3ef38d71c05..6d308bde4d8 100644 --- a/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png +++ b/packages/react-ui/.creevey/images/ThemeProvider/playground/flat theme bottom/ie118px/flat theme bottom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9a638f993612472089fda5a053ee3f5cf54aa05b459e1757ccf154f3bbaf962 -size 29477 +oid sha256:e03d7e45ef341abd2d129ed6f7af72edc2b0548ba054c74ed9720c7a1ecb9ae5 +size 29732 diff --git a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome.png b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome.png index a3101fe9021..fd1a96d19e3 100644 --- a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome.png +++ b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2a2c017afba02431708997caff1d80c729f8391166b4ae34baba53be11f0765 -size 15065 +oid sha256:55d921c05715c757f057cf8bdf998e6074beff3bdd995f992476248ea16a5214 +size 15168 diff --git a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome8px.png b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome8px.png index e2087bfc351..4a20f2bdaa4 100644 --- a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome8px.png +++ b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/chrome8px.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:886d53648d1e865365718cb7ae6544f3f724ac73376a0b4b5854be681c0bcb41 -size 15509 +oid sha256:467d1fdbaa9023423c67bde3dd1770ab98f1e9e58befac016f017dda6537230f +size 15469 diff --git a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox.png b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox.png index 88d0fa8babb..54d70ccaebd 100644 --- a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox.png +++ b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:266d4c9edd6becf032f30e658fcac5d3d36d60516ce9fb755f0452b51aad8dc8 -size 12410 +oid sha256:774a59593323f0b86297d74cb443ac75704d0913ae26be75c7f65de48d5bd9d0 +size 12390 diff --git a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox8px.png b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox8px.png index c63195e9d15..b4bedcd0534 100644 --- a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox8px.png +++ b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/firefox8px.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24bbc5c121b4f938c440d4c300a45b9cb430e3aaf2d8260c922a903e92e6936e -size 12515 +oid sha256:b491860c417b9dd34bf7c9c7273134116c1e99269aa15ac1366c50e93c0d252b +size 12460 diff --git a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie11.png b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie11.png index fac96bbda46..b205c04deff 100644 --- a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie11.png +++ b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie11.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33559469969aa3a791b7336aaa1be7191ea8c62c38dab25c06b0df3af895375c -size 13501 +oid sha256:a3e64e89bbadbc902d5b05701dce728d359f3cfbd9e22b0bb2c3276217dd4c55 +size 13551 diff --git a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie118px.png b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie118px.png index 1d45367cee2..249299e0740 100644 --- a/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie118px.png +++ b/packages/react-ui/.creevey/images/ZIndex/Toast Over Everything/staticToast/ie118px.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27eb2bd594b62b144c521ac0bd88d03fe4b740b8c8d6f3a30e95ec884e037172 -size 13644 +oid sha256:bdc8ec8c46c98e658499e7c90ee5c9b5ad7a6be548e7b5ec8e561567093602c9 +size 13658