@teipublisher/pb-components 3.2.0 → 3.2.1
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/.github/workflows/node.js.yml +39 -2
- package/CHANGELOG.md +11 -0
- package/dist/pb-components-bundle.js +64 -67
- package/i18n/common/de.json +17 -0
- package/i18n/common/en.json +17 -0
- package/i18n/common/pl.json +17 -0
- package/package.json +1 -1
- package/src/pb-table-grid.js +86 -30
- package/.github/workflows/release.js.yml +0 -42
|
@@ -7,15 +7,19 @@ on:
|
|
|
7
7
|
push:
|
|
8
8
|
branches:
|
|
9
9
|
- develop
|
|
10
|
+
- master
|
|
10
11
|
|
|
11
12
|
workflow_dispatch:
|
|
12
13
|
|
|
14
|
+
permissions:
|
|
15
|
+
contents: read # for checkout
|
|
16
|
+
|
|
13
17
|
jobs:
|
|
14
18
|
build:
|
|
15
19
|
runs-on: ubuntu-latest
|
|
16
20
|
steps:
|
|
17
21
|
- uses: actions/checkout@v6
|
|
18
|
-
- name: Use Node.js
|
|
22
|
+
- name: Use Node.js
|
|
19
23
|
uses: actions/setup-node@v6
|
|
20
24
|
with:
|
|
21
25
|
node-version: "22"
|
|
@@ -32,4 +36,37 @@ jobs:
|
|
|
32
36
|
with:
|
|
33
37
|
resource: http-get://localhost:8080/exist/apps/tei-publisher/index.html
|
|
34
38
|
- name: npm test
|
|
35
|
-
run: npm test
|
|
39
|
+
run: npm test
|
|
40
|
+
|
|
41
|
+
release:
|
|
42
|
+
name: Release
|
|
43
|
+
needs: [ build ]
|
|
44
|
+
if: github.event_name == 'push' && (github.ref == 'refs/heads/master')
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
permissions:
|
|
47
|
+
contents: write # to be able to publish a GitHub release
|
|
48
|
+
issues: write # to be able to comment on released issues
|
|
49
|
+
pull-requests: write # to be able to comment on released pull requests
|
|
50
|
+
id-token: write # to enable use of OIDC for trusted publishing and npm provenance
|
|
51
|
+
steps:
|
|
52
|
+
- uses: actions/checkout@v5
|
|
53
|
+
- uses: actions/setup-node@v5
|
|
54
|
+
with:
|
|
55
|
+
node-version: "22"
|
|
56
|
+
- name: npm install and build
|
|
57
|
+
run:
|
|
58
|
+
npm ci
|
|
59
|
+
npm run build:production
|
|
60
|
+
- name: Build docker image
|
|
61
|
+
run: docker build -t exist-db -f Dockerfile .
|
|
62
|
+
- name: Start docker image
|
|
63
|
+
run: docker run --publish 8080:8080 --detach exist-db
|
|
64
|
+
- name: Wait for eXist
|
|
65
|
+
uses: iFaxity/wait-on-action@v1
|
|
66
|
+
with:
|
|
67
|
+
resource: http-get://localhost:8080/exist/apps/tei-publisher/api/version
|
|
68
|
+
- run: npm test
|
|
69
|
+
- run: npx semantic-release
|
|
70
|
+
env:
|
|
71
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
72
|
+
NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [3.2.1](https://github.com/eeditiones/tei-publisher-components/compare/v3.2.0...v3.2.1) (2026-03-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **pb-table-grid:** drop polymer controls ([408b1f9](https://github.com/eeditiones/tei-publisher-components/commit/408b1f99e27d34dd7565fafe53e489772561e384))
|
|
7
|
+
* **pb-table-grid:** i18n for navigation and toolbar ([9e91a9a](https://github.com/eeditiones/tei-publisher-components/commit/9e91a9a228bb8cc5206191032d1b60ba1210c6ad))
|
|
8
|
+
* **pb-table-grid:** race condition causes navigation to disappear ([1ecf7d9](https://github.com/eeditiones/tei-publisher-components/commit/1ecf7d9bbe68b0c9842d7d66c6bbd3e782766ee9))
|
|
9
|
+
* **pb-table-grid:** use translate in html literals ([515acfb](https://github.com/eeditiones/tei-publisher-components/commit/515acfb91536044eff241a0174b53f23f445106d))
|
|
10
|
+
* trigger release pipeline ([d63a335](https://github.com/eeditiones/tei-publisher-components/commit/d63a335614a9a0590df533623b4221bc2b9b0b05))
|
|
11
|
+
|
|
1
12
|
# [3.2.0](https://github.com/eeditiones/tei-publisher-components/compare/v3.1.0...v3.2.0) (2026-03-26)
|
|
2
13
|
|
|
3
14
|
|