@diplodoc/client 3.1.9 → 3.1.11
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/.eslintignore +2 -1
- package/.github/workflows/release.yaml +20 -3
- package/.stylelintignore +2 -1
- package/CHANGELOG.md +20 -0
- package/build/client/app.css +1 -1
- package/build/client/app.css.map +1 -1
- package/build/client/app.js +1 -1
- package/build/client/app.js.map +1 -1
- package/build/client/app.rtl.css +1 -1
- package/build/client/react.js +1 -1
- package/build/client/react.js.LICENSE.txt +10 -0
- package/build/client/react.js.map +1 -1
- package/build/client/vendor.css +70 -60
- package/build/client/vendor.css.map +1 -1
- package/build/client/vendor.js +1 -1
- package/build/client/vendor.js.map +1 -1
- package/build/client/vendor.rtl.css +70 -60
- package/build/components/ConstructorPage/useNavigation.d.ts +14 -1
- package/build/server/app.js +39 -8
- package/build/server/app.js.map +1 -1
- package/build/server/react.js +31 -0
- package/build/server/react.js.map +1 -1
- package/build/server/vendor.js +5240 -3911
- package/build/server/vendor.js.map +1 -1
- package/package.json +5 -5
package/.eslintignore
CHANGED
|
@@ -12,8 +12,25 @@ jobs:
|
|
|
12
12
|
release:
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
steps:
|
|
15
|
-
- uses:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- uses: actions/setup-node@v3
|
|
16
17
|
with:
|
|
17
|
-
github-token: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
|
|
18
|
-
npm-token: ${{ secrets.ROBOT_DATAUI_NPM_TOKEN }}
|
|
19
18
|
node-version: 18
|
|
19
|
+
registry-url: 'https://registry.npmjs.org'
|
|
20
|
+
- run: npm ci
|
|
21
|
+
shell: bash
|
|
22
|
+
- uses: codex-team/action-nodejs-package-info@v1
|
|
23
|
+
id: package
|
|
24
|
+
- uses: GoogleCloudPlatform/release-please-action@v3
|
|
25
|
+
id: release
|
|
26
|
+
with:
|
|
27
|
+
token: ${{secrets.YC_UI_BOT_GITHUB_TOKEN}}
|
|
28
|
+
release-type: node
|
|
29
|
+
package-name: ${{steps.package.outputs.name}}
|
|
30
|
+
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"deps","section":"Dependency update","hidden":false}]'
|
|
31
|
+
bump-minor-pre-major: true
|
|
32
|
+
- run: npm publish
|
|
33
|
+
env:
|
|
34
|
+
NODE_AUTH_TOKEN: ${{secrets.ROBOT_DATAUI_NPM_TOKEN}}
|
|
35
|
+
if: ${{ steps.release.outputs.release_created }}
|
|
36
|
+
shell: bash
|
package/.stylelintignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.1.11](https://github.com/diplodoc-platform/client/compare/v3.1.10...v3.1.11) (2025-02-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Fix build for react-hotkeys-hook ([703bf54](https://github.com/diplodoc-platform/client/commit/703bf543868bdb4036f60b593d66ec97f621f8d5))
|
|
9
|
+
|
|
10
|
+
## [3.1.10](https://github.com/diplodoc-platform/client/compare/v3.1.9...v3.1.10) (2025-02-12)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add ssr config to PageConstructor ([0bfedba](https://github.com/diplodoc-platform/client/commit/0bfedba85d91449464df7794c914ec3dd983e3f0))
|
|
16
|
+
* empty icon fix ([0220768](https://github.com/diplodoc-platform/client/commit/0220768910f9c4bf4d5264655811e80eaa18198a))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Dependency update
|
|
20
|
+
|
|
21
|
+
* Update core deps ([5382839](https://github.com/diplodoc-platform/client/commit/53828390314cbf4a9c467c6152bfcb268f648945))
|
|
22
|
+
|
|
3
23
|
## [3.1.9](https://github.com/diplodoc-platform/client/compare/v3.1.8...v3.1.9) (2024-12-16)
|
|
4
24
|
|
|
5
25
|
|