Skip to content

Commit

Permalink
build(deps-dev): Bump the playwright group with 2 updates (#6649)
Browse files Browse the repository at this point in the history
* build(deps-dev): Bump the playwright group with 2 updates

Bumps the playwright group with 2 updates: [@playwright/experimental-ct-react](https://github.com/microsoft/playwright) and [@playwright/test](https://github.com/microsoft/playwright).


Updates `@playwright/experimental-ct-react` from 1.40.1 to 1.42.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.40.1...v1.42.1)

Updates `@playwright/test` from 1.40.1 to 1.42.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.40.1...v1.42.1)

---
updated-dependencies:
- dependency-name: "@playwright/experimental-ct-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: playwright
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: playwright
...

Signed-off-by: dependabot[bot] <[email protected]>

* bump(playwright-deps): Docker container image from 1.40.1 to 1.42.1

* chore(Avatar/DateInput/DatePicker): update screenshots

* fix(DateInput): disable normalize of <Text /> for resolve css order issue

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Inomdzhon Mirdzhamolov <[email protected]>
  • Loading branch information
dependabot[bot] and inomdzhon authored Mar 5, 2024
1 parent 82dd12a commit 1f1a582
Show file tree
Hide file tree
Showing 31 changed files with 491 additions and 111 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable_workflow_test_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
container:
# см. https://github.com/microsoft/playwright/blob/main/utils/docker/Dockerfile.focal
image: mcr.microsoft.com/playwright:v1.40.1-focal
image: mcr.microsoft.com/playwright:v1.42.1-focal
options: --ipc=host
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_screens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
container:
# см. https://github.com/microsoft/playwright/blob/main/utils/docker/Dockerfile.focal
image: mcr.microsoft.com/playwright:v1.40.1-focal
image: mcr.microsoft.com/playwright:v1.42.1-focal
options: --ipc=host
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"devDependencies": {
"@csstools/postcss-global-data": "2.1.1",
"@playwright/experimental-ct-react": "1.40.1",
"@playwright/test": "1.40.1",
"@playwright/experimental-ct-react": "1.42.1",
"@playwright/test": "1.42.1",
"@size-limit/file": "^11.0.2",
"@size-limit/webpack": "^11.0.2",
"@size-limit/webpack-css": "^11.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/vkui/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.8'
services:
package_vkui:
image: mcr.microsoft.com/playwright:v1.40.1-focal
image: mcr.microsoft.com/playwright:v1.42.1-focal
ipc: host
user: root
working_dir: /repo/packages/vkui
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DateInput__input {
display: block;
flex-grow: 1;
margin-inline: 10px 14px;
z-index: var(--vkui_internal--z_index_form_field_element);
Expand Down
9 changes: 8 additions & 1 deletion packages/vkui/src/components/DateInput/DateInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,14 @@ export const DateInput = ({
name={name}
value={value ? format(value, enableTime ? 'DD.MM.YYYYTHH:mm' : 'DD.MM.YYYY') : ''}
/>
<Text className={styles['DateInput__input']} onKeyDown={handleKeyDown}>
<Text
className={styles['DateInput__input']}
onKeyDown={handleKeyDown}
// Инцидент: в PR https://github.com/VKCOM/VKUI/pull/6649 стабильно ломается порядок стилей
// из-за чего `.Typography--normalize` перебивает стили.
normalize={false}
Component="span" // для <span> нормализация не нужна
>
<InputLike
length={2}
getRootRef={daysRef}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 1f1a582

Please sign in to comment.