File tree Expand file tree Collapse file tree 7 files changed +1764
-1090
lines changed Expand file tree Collapse file tree 7 files changed +1764
-1090
lines changed Original file line number Diff line number Diff line change 66 eslint :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v4
9+ - uses : actions/checkout@v5
1010 with :
1111 ref : ${{ github.head_ref }}
12- - uses : actions/setup-node@v4
12+ - uses : actions/setup-node@v6
13+ with :
14+ node-version : 22
1315 - run : corepack enable
1416 - run : yarn install
1517 - run : yarn run fix
16- - uses : stefanzweifel/git-auto-commit-action@v4
18+ - uses : stefanzweifel/git-auto-commit-action@v7
1719 with :
1820 commit_message : " refactor: Apply eslint fix"
Original file line number Diff line number Diff line change 66 - alpha
77
88jobs :
9- # https://docs.github.com/en/actions/guides/publishing-nodejs-packages#publishing-packages-using-yarn
10- # https://github.com/semantic-release/semantic-release/blob/master/docs/recipes/github-actions.md
9+ # https://github.com/semantic-release/semantic-release/blob/master/docs/recipes/ci-configurations/github-actions.md#githubworkflowsreleaseyml-configuration-for-node-projects
1110 package :
1211 runs-on : ubuntu-latest
12+ permissions :
13+ contents : write
14+ issues : write
15+ pull-requests : write
16+ id-token : write
1317 steps :
14- - uses : actions/checkout@v4
15- - uses : actions/setup-node@v4
18+ - uses : actions/checkout@v5
19+ - uses : actions/setup-node@v6
20+ with :
21+ node-version : 22
1622 - run : corepack enable
1723 - run : yarn install
1824 - run : yarn run build
1925 - run : npx semantic-release
2026 env :
2127 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22- NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 88 storybook :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v4
12- - uses : actions/setup-node@v4
13- - run : corepack enable
11+ - uses : actions/checkout@v5
12+ - uses : actions/setup-node@v6
13+ with :
14+ node-version : 22
1415 - run : corepack enable
1516 - run : yarn install
1617 - run : yarn run storybook-to-ghpages --ci --script=storybook:build
Original file line number Diff line number Diff line change 99 typecheck :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v4
13- - uses : actions/setup-node@v4
12+ - uses : actions/checkout@v5
13+ - uses : actions/setup-node@v6
14+ with :
15+ node-version : 22
1416 - run : corepack enable
1517 - run : yarn install
1618 - run : yarn run typecheck
1719
1820 lint :
1921 runs-on : ubuntu-latest
2022 steps :
21- - uses : actions/checkout@v4
22- - uses : actions/setup-node@v4
23+ - uses : actions/checkout@v5
24+ - uses : actions/setup-node@v6
25+ with :
26+ node-version : 22
2327 - run : corepack enable
2428 - run : yarn install
2529 - run : yarn run lint
2630
2731 test :
2832 runs-on : ubuntu-latest
2933 steps :
30- - uses : actions/checkout@v4
31- - uses : actions/setup-node@v4
34+ - uses : actions/checkout@v5
35+ - uses : actions/setup-node@v6
36+ with :
37+ node-version : 22
3238 - run : corepack enable
3339 - run : yarn install
3440 - run : yarn run test
3541
3642 build :
3743 runs-on : ubuntu-latest
3844 steps :
39- - uses : actions/checkout@v4
40- - uses : actions/setup-node@v4
45+ - uses : actions/checkout@v5
46+ - uses : actions/setup-node@v6
47+ with :
48+ node-version : 22
4149 - run : corepack enable
4250 - run : yarn install
4351 - run : yarn run build
4452
4553 storybook :
4654 runs-on : ubuntu-latest
4755 steps :
48- - uses : actions/checkout@v4
49- - uses : actions/setup-node@v4
56+ - uses : actions/checkout@v5
57+ - uses : actions/setup-node@v6
58+ with :
59+ node-version : 22
5060 - run : corepack enable
5161 - run : yarn install
5262 - run : yarn run storybook:build
Original file line number Diff line number Diff line change 4242 "url" : " https://github.com/mll-lab/react-components/issues"
4343 },
4444 "homepage" : " https://github.com/mll-lab/react-components" ,
45+ "publishConfig" : {
46+ "access" : " public" ,
47+ "provenance" : true
48+ },
4549 "peerDependencies" : {
4650 "@babel/runtime" : " ^7.20.13" ,
4751 "react" : " >=16.8.0" ,
120124 "rollup" : " ^4.9.6" ,
121125 "rollup-plugin-peer-deps-external" : " ^2.2.4" ,
122126 "rollup-plugin-styles" : " ^4.0.0" ,
123- "semantic-release" : " ^22 .0.8 " ,
127+ "semantic-release" : " ^25 .0.1 " ,
124128 "storybook" : " ^7.6.12" ,
125129 "style-loader" : " ^3.3.3" ,
126130 "styled-components" : " ^6.1.1" ,
130134 "typescript" : " ^5.3.2" ,
131135 "webpack" : " ^5.89.0"
132136 },
133- "packageManager" : " yarn@4.9.4 "
137+ "packageManager" : " yarn@4.10.3 "
134138}
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ const StyledTable = styled(AntdTable)`
3030 font-size: ${ fontSizeFromTheme } ;
3131 }
3232
33- /* Avoid raising the "Keine Daten" overlay above elements such as the menu or dropdown, which have z-index 1050 */
33+ /* Avoid raising the "Keine Daten" overlay above elements such as the menu or dropdown, which have z-index 1050
34+ or modals, which have z-index 1000 */
3435 .mll-ant-table-placeholder {
3536 /* !important is necessary because antd sets the z-index to 9999 via the style attribute */
3637 z-index: 990 !important;
You can’t perform that action at this time.
0 commit comments