Skip to content

Commit 0c01ae6

Browse files
committed
Merge remote-tracking branch 'origin/main' into next
# Conflicts: # src/blocks/Questions/__snapshots__/Questions.visual.test.tsx-snapshots/Questions-render-stories-WithContentList-light-chromium-linux.png
2 parents aac2a8a + 6351f86 commit 0c01ae6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1645
-257
lines changed

.github/workflows/release-5.x.x.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release version 5.x.x.
2+
3+
on:
4+
push:
5+
branches: [version-5.x.x]
6+
7+
jobs:
8+
release:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: gravity-ui/release-action@v1
12+
with:
13+
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
14+
npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
15+
node-version: 18
16+
npm-dist-tag: untagged
17+
default-branch: version-5.x.x

CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Changelog
22

3+
## [6.3.1](https://github.com/gravity-ui/page-constructor/compare/v6.3.0...v6.3.1) (2025-03-25)
4+
5+
6+
### Bug Fixes
7+
8+
* **NavigationPopup:** placement and styles ([#1151](https://github.com/gravity-ui/page-constructor/issues/1151)) ([5b2d400](https://github.com/gravity-ui/page-constructor/commit/5b2d4005d88b0f84ee0312ebcb716e6e4de8ce89))
9+
10+
## [6.3.0](https://github.com/gravity-ui/page-constructor/compare/v6.2.2...v6.3.0) (2025-03-17)
11+
12+
13+
### Features
14+
15+
* **Tabs:** render inactive tabs & a11y ([#1143](https://github.com/gravity-ui/page-constructor/issues/1143)) ([a6cf257](https://github.com/gravity-ui/page-constructor/commit/a6cf257e7ac1a7181f6dddd218d27413a4e9dd6d))
16+
17+
## [6.2.2](https://github.com/gravity-ui/page-constructor/compare/v6.2.1...v6.2.2) (2025-03-14)
18+
19+
20+
### Bug Fixes
21+
22+
* **VideoBlock:** disable scrolling at video iframe ([#1145](https://github.com/gravity-ui/page-constructor/issues/1145)) ([477ff9d](https://github.com/gravity-ui/page-constructor/commit/477ff9da33a75a60e8c454a2b9313f4017495596))
23+
24+
## [6.2.1](https://github.com/gravity-ui/page-constructor/compare/v6.2.0...v6.2.1) (2025-03-13)
25+
26+
27+
### Bug Fixes
28+
29+
* Move some deps to devDeps ([#1141](https://github.com/gravity-ui/page-constructor/issues/1141)) ([8f78070](https://github.com/gravity-ui/page-constructor/commit/8f78070aa51df18cdee19736e4bdc31a23405337))
30+
31+
## [6.2.0](https://github.com/gravity-ui/page-constructor/compare/v6.1.1...v6.2.0) (2025-03-06)
32+
33+
34+
### Features
35+
36+
* **mobileNavigation:** added a parameter for the portal in mobile navigation ([#1132](https://github.com/gravity-ui/page-constructor/issues/1132)) ([0f54550](https://github.com/gravity-ui/page-constructor/commit/0f545508d4c6c7d23b93ec93bb8bc1f23df4aaed))
37+
38+
## [6.1.1](https://github.com/gravity-ui/page-constructor/compare/v6.1.0...v6.1.1) (2025-03-05)
39+
40+
41+
### Bug Fixes
42+
43+
* add target for tsconfig and fixed build pipe for swiper ([#1137](https://github.com/gravity-ui/page-constructor/issues/1137)) ([58c37fa](https://github.com/gravity-ui/page-constructor/commit/58c37fa123aeb5571a2e787b3a1cebe08864e7d3))
44+
45+
## [6.1.0](https://github.com/gravity-ui/page-constructor/compare/v6.0.0...v6.1.0) (2025-02-27)
46+
47+
48+
### Features
49+
50+
* **Content:** add m size ([#1120](https://github.com/gravity-ui/page-constructor/issues/1120)) ([0f9e53a](https://github.com/gravity-ui/page-constructor/commit/0f9e53a9fca0517cb62ff0ef57b98aecdb9fdfbb))
51+
352
## [6.0.0](https://github.com/gravity-ui/page-constructor/compare/v5.37.0...v6.0.0) (2025-02-26)
453

554

gulpfile.js

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ async function compileTs(modules = false) {
5656
},
5757
}),
5858
)
59+
.pipe(replace(/swiper/, () => (modules ? 'swiper/swiper.esm.js' : 'swiper')))
5960
.pipe(
6061
replace(/swiper\/react/g, () =>
6162
modules ? 'swiper/swiper-react.esm.js' : 'swiper/swiper-react.cjs.js',

0 commit comments

Comments
 (0)