-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into e.muhamethanov/7466/screen-spinner-remove-…
…size # Conflicts: # packages/vkui/src/components/ScreenSpinner/ScreenSpinner.tsx # packages/vkui/src/components/ScreenSpinner/ScreenSpinnerContainer.tsx # packages/vkui/src/components/ScreenSpinner/ScreenSpinnerLoader.tsx # packages/vkui/src/components/ScreenSpinner/context.ts
- Loading branch information
Showing
271 changed files
with
2,491 additions
and
755 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
ChromeAndroid >= 57 | ||
iOS >= 10.3 | ||
Chrome >= 57 | ||
Firefox >= 54 | ||
Edge >= 18 | ||
Opera >= 44 | ||
Safari >= 10.1 | ||
Samsung >= 7.2 | ||
ChromeAndroid >= 63 | ||
iOS >= 12 | ||
Chrome >= 63 | ||
Firefox >= 55 | ||
Edge >= 79 | ||
Opera >= 50 | ||
Safari >= 12 | ||
Samsung >= 8.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
* @VKCOM/vkui-core | ||
.github/ @VKCOM/vk-sec | ||
* @VKCOM/vkui-core | ||
.github/CODEOWNERS @VKCOM/vk-sec | ||
.github/actions/ @VKCOM/vk-sec | ||
.github/workflows/ @VKCOM/vk-sec | ||
.github/dependabot.yml @VKCOM/vk-sec | ||
.github/file-filters.yml @VKCOM/vk-sec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Workflow / Checkout LFS objects | ||
description: Get lfs from cache | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
# см. https://github.com/actions/checkout/issues/1169 | ||
- name: Set safe directory | ||
shell: bash | ||
run: git config --global --add safe.directory /__w/VKUI/VKUI | ||
|
||
# см. https://github.com/microsoft/playwright/issues/21920 | ||
- name: Install git lfs | ||
shell: bash | ||
run: | | ||
if git lfs > /dev/null ; then | ||
echo "git-lfs installed" | ||
else | ||
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash | ||
apt-get install -y git-lfs | ||
fi | ||
# см. https://github.com/actions/cache/issues/1455 | ||
- name: Install zstd | ||
shell: bash | ||
run: | | ||
if zstd > /dev/null ; then | ||
echo "zstd installed" | ||
else | ||
apt-get install -y zstd | ||
fi | ||
- name: Create LFS file list | ||
shell: bash | ||
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id | ||
|
||
- name: Restore LFS cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: .git/lfs | ||
key: lfs-${{ hashFiles('.lfs-assets-id') }} | ||
enableCrossOsArchive: 'true' | ||
|
||
- name: Checkout LFS objects | ||
shell: bash | ||
run: git lfs pull |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,44 @@ jobs: | |
action: upload | ||
override_pr_number: ${{ inputs.pr_number_by_workflow_dispatch }} | ||
|
||
v6: | ||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'v6') | ||
concurrency: ci-stable | ||
runs-on: ubuntu-latest | ||
name: v6 Patch | ||
steps: | ||
- name: Checkout (for forked PR) | ||
if: github.event.pull_request.base.repo.id != github.event.pull_request.head.repo.id | ||
uses: actions/checkout@v4 | ||
|
||
- name: Checkout (for maintainer's PR) | ||
if: github.event.pull_request.base.repo.id == github.event.pull_request.head.repo.id | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
shell: bash | ||
|
||
- name: Setup NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Set Git credentials | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
- name: Make patch | ||
uses: VKCOM/gh-actions/VKUI/patch@main | ||
with: | ||
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} | ||
directory: packages/vkui/ | ||
targetBranch: v6 | ||
needScreenshots: true | ||
|
||
patch: | ||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'patch') | ||
concurrency: ci-stable | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
"runtime": "automatic" | ||
} | ||
}, | ||
"target": "es2015", | ||
"target": "es2017", | ||
|
||
"experimental": { | ||
"plugins": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ots__/actionsheet-viewwidth-desktop-sizey-regular-vkcom-webkit-light-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.