Skip to content

Commit ad54471

Browse files
authored
Merge branch 'main' into feat/at-no-data-component
2 parents dcd1f12 + 5c0f409 commit ad54471

File tree

321 files changed

+3404
-3146
lines changed

Some content is hidden

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

321 files changed

+3404
-3146
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body:
1515
id: example
1616
attributes:
1717
label: 'Isolated Example'
18-
description: 'Please provide an isolated example if possible by forking [this StackBlitz template](https://stackblitz.com/github/SAP/ui5-webcomponents-react/tree/main/templates/vite-ts?file=src%2FApp.tsx).'
18+
description: 'Please provide an isolated example if possible by forking [this StackBlitz template](https://stackblitz.com/github/UI5/webcomponents-react/tree/main/templates/vite-ts?file=src%2FApp.tsx).'
1919
validations:
2020
required: false
2121
- type: textarea

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Questions
4-
url: https://github.com/SAP/ui5-webcomponents-react/discussions
4+
url: https://github.com/UI5/webcomponents-react/discussions
55
about: Please ask and answer questions here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ To get it merged faster, kindly review the checklist below:
44

55
## Pull Request Checklist
66

7-
- [ ] Reviewed the [Contributing Guidelines](https://github.com/SAP/ui5-webcomponents-react/blob/main/CONTRIBUTING.md)
8-
- Especially the [How to Contribute](https://github.com/SAP/ui5-webcomponents-react/blob/main/CONTRIBUTING.md#contribute-code) section
9-
- [ ] [Correct commit message style](https://github.com/SAP/ui5-webcomponents-react/blob/main/docs/Guidelines.md#commit-message-style)
7+
- [ ] Reviewed the [Contributing Guidelines](https://github.com/UI5/webcomponents-react/blob/main/CONTRIBUTING.md)
8+
- Especially the [How to Contribute](https://github.com/UI5/webcomponents-react/blob/main/CONTRIBUTING.md#contribute-code) section
9+
- [ ] [Correct commit message style](https://github.com/UI5/webcomponents-react/blob/main/docs/Guidelines.md#commit-message-style)

.github/renovate.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
{
3333
"groupName": "UI5 Web Components",
34-
"matchSourceUrls": ["https://github.com/SAP/ui5-webcomponents{/,}**"]
34+
"matchSourceUrls": ["https://github.com/UI5/webcomponents{/,}**"]
3535
},
3636
{
3737
"groupName": "vite & plugins",
@@ -78,8 +78,8 @@
7878
"matchFileNames": ["examples/**", "templates/**", "patterns/**"],
7979
"semanticCommitType": "chore",
8080
"matchSourceUrls": [
81-
"https://github.com/SAP/ui5-webcomponents{/,}**",
82-
"https://github.com/SAP/ui5-webcomponents-react{/,}**"
81+
"https://github.com/UI5/webcomponents{/,}**",
82+
"https://github.com/UI5/webcomponents-react{/,}**"
8383
]
8484
},
8585
{
@@ -88,7 +88,7 @@
8888
"groupSlug": "root-ui5-webcomponents",
8989
"matchFileNames": ["package.json"],
9090
"semanticCommitType": "chore",
91-
"matchSourceUrls": ["https://github.com/SAP/ui5-webcomponents{/,}**"]
91+
"matchSourceUrls": ["https://github.com/UI5/webcomponents{/,}**"]
9292
},
9393
{
9494
"groupName": "Typescript",

.github/workflows/build.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 'Build w/ React18 & 19'
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
build:
8+
name: 'Build'
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
react: ['18', '19']
13+
env:
14+
CYPRESS_INSTALL_BINARY: 0
15+
steps:
16+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
17+
18+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
19+
with:
20+
node-version-file: '.nvmrc'
21+
cache: 'yarn'
22+
23+
- name: Install
24+
run: yarn install --immutable
25+
26+
- name: Install 18
27+
if: ${{ matrix.react == '18' }}
28+
run: |
29+
yarn add "@types/react@18" "@types/react-dom@18" --dev
30+
yarn add react@18 react-dom@18
31+
32+
- name: Build
33+
run: yarn build
34+
35+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
36+
with:
37+
name: build-${{ matrix.react }}
38+
path: packages/*/dist

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: yarn install --immutable
2424

2525
- name: Publish to Chromatic
26-
uses: chromaui/action@d0795df816d05c4a89c80295303970fddd247cce # v13.1.4
26+
uses: chromaui/action@4ffe736a2a8262ea28067ff05a13b635ba31ec05 # v13.3.0
2727
with:
2828
token: ${{ secrets.GITHUB_TOKEN }}
2929
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d # v3.30.0
45+
uses: github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d # v3.30.0
56+
uses: github/codeql-action/autobuild@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d # v3.30.0
70+
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5

.github/workflows/main.yml

Lines changed: 3 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -35,56 +35,14 @@ jobs:
3535
compression: 'gzip'
3636
clean-script: 'clean:remove-modules'
3737

38-
install:
39-
name: 'Install Dependencies'
40-
runs-on: ubuntu-latest
41-
steps:
42-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
43-
44-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
45-
with:
46-
node-version-file: '.nvmrc'
47-
cache: 'yarn'
48-
49-
- name: Install and Build
50-
run: yarn install --immutable
38+
build:
39+
uses: './.github/workflows/build.yml'
5140

5241
test:
53-
needs: ['install']
42+
needs: ['build']
5443
uses: './.github/workflows/test.yml'
5544

56-
build:
57-
needs: ['install']
58-
name: 'Build'
59-
runs-on: ubuntu-latest
60-
strategy:
61-
matrix:
62-
react: ['18', '19']
63-
env:
64-
CYPRESS_INSTALL_BINARY: 0
65-
steps:
66-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
67-
68-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
69-
with:
70-
node-version-file: '.nvmrc'
71-
cache: 'yarn'
72-
73-
- name: Install
74-
run: yarn install --immutable
75-
76-
- name: Install 19
77-
if: ${{ matrix.react == '19' }}
78-
run: |
79-
echo "$(jq '.resolutions += {"@types/react": "npm:types-react@rc", "@types/react-dom": "npm:types-react-dom@rc" }' package.json)" > package.json
80-
yarn add react@rc react-dom@rc
81-
yarn
82-
83-
- name: Build
84-
run: yarn build
85-
8645
lint:
87-
needs: ['install']
8846
runs-on: ubuntu-latest
8947
env:
9048
CYPRESS_INSTALL_BINARY: 0

.github/workflows/open-source-security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1717

1818
- name: artifactPrepareVersion
19-
uses: SAP/project-piper-action@bdd04e90dbab9ca2d5a7dd50886b6bac03888360 # v1.22.1
19+
uses: SAP/project-piper-action@ca48370543326759ffae83317559b3c0b59705fe # v1.22.6
2020
with:
2121
step-name: artifactPrepareVersion
2222
flags: --versioningType cloud_noTag
2323

2424
- name: detectExecuteScan
25-
uses: SAP/project-piper-action@bdd04e90dbab9ca2d5a7dd50886b6bac03888360 # v1.22.1
25+
uses: SAP/project-piper-action@ca48370543326759ffae83317559b3c0b59705fe # v1.22.6
2626
with:
2727
step-name: detectExecuteScan
2828
flags: '--token ${{ secrets.DETECT_TOKEN }}'

.github/workflows/release-snapshot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ name: 'Release - Snapshot'
33
on: workflow_dispatch
44

55
jobs:
6+
build:
7+
uses: './.github/workflows/build.yml'
8+
69
test:
10+
needs: ['build']
711
uses: './.github/workflows/test.yml'
812
with:
913
reportCoverage: false

0 commit comments

Comments
 (0)