Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
162cae1
feat(file-dropzone): add toggle for SI and IEC standards of showing f…
artur-langl Sep 26, 2025
90638d8
fix(file-dropzone): better error message #860
artur-langl Sep 26, 2025
c6e9fb4
feat(timeline): TEDI-Ready component #1094 (#1122)
mart-sessman Sep 29, 2025
83b76f8
chore(release): 2.5.0-rc.1
semantic-release-bot Sep 29, 2025
8fa2aef
Merge pull request #1123 from artur-langl/fix/file-dropzone
pesarv Oct 1, 2025
5f9bcbc
chore(release): 2.5.0-rc.2
semantic-release-bot Oct 1, 2025
1d4f0da
feat(vertical-stepper): design changes and additional slot for info c…
helemand Oct 1, 2025
b9169ba
chore(release): 13.1.0-rc.17
semantic-release-bot Oct 1, 2025
ea6397e
chore(deps-dev): bump semantic-release from 24.2.7 to 24.2.9 (#1133)
dependabot[bot] Oct 7, 2025
46e484f
chore(deps-dev): bump typescript from 5.9.2 to 5.9.3 (#1135)
dependabot[bot] Oct 7, 2025
412e79c
chore(deps-dev): bump @commitlint/config-conventional (#1134)
dependabot[bot] Oct 7, 2025
53f8919
chore(deps-dev): bump @commitlint/cli from 19.8.1 to 20.1.0 (#1136)
dependabot[bot] Oct 7, 2025
9c16ad3
chore(deps-dev): bump lint-staged from 16.1.6 to 16.2.3 (#1137)
dependabot[bot] Oct 7, 2025
649b52b
fix(select): fix label and placeholder accessibility #1014 (#1130)
airikej Oct 8, 2025
d391e01
chore(release): 13.1.0-rc.18
semantic-release-bot Oct 8, 2025
80d9ac8
fix(separator): fix stories for 9.1.4.10 criteria #1007 (#1125)
airikej Oct 8, 2025
3d2a2f5
chore(release): 13.1.0-rc.19
semantic-release-bot Oct 8, 2025
f922907
fix(alert,toast): enhance accessibility, add titleElement prop to ove…
airikej Oct 8, 2025
bc38e59
chore(release): 13.1.0-rc.20
semantic-release-bot Oct 8, 2025
6380a9a
fix(textfield): fix input param passing #1132 (#1166)
airikej Oct 9, 2025
0c912cf
chore(release): 13.1.0-rc.21
semantic-release-bot Oct 9, 2025
ce0dcfd
refactor(angular): move Angular to standalone repo #148
airikej Oct 10, 2025
07d45b1
Merge pull request #149 from TEDI-Design-System/feat/148-split-angula…
airikej Oct 10, 2025
3c41ad7
chore(release): 3.0.0-rc.1
semantic-release-bot Oct 10, 2025
fb96624
chore: update get started docs #148
airikej Oct 10, 2025
5791b5d
Merge branch 'rc' of https://github.com/TEDI-Design-System/angular in…
airikej Oct 10, 2025
9ffc612
Changed github pages folder
tobre6 Oct 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
File renamed without changes.
2 changes: 1 addition & 1 deletion libs/angular-components/.eslintrc.json → .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"overrides": [
{
"files": ["*.ts"],
"files": ["*.ts", "**/*.ts"],
"parserOptions": {
"project": ["tsconfig.eslint.json"]
},
Expand Down
14 changes: 1 addition & 13 deletions .github/workflows/angular-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
branches:
- rc
- main
paths-ignore:
- "libs/react-components/**"

jobs:
lint:
Expand All @@ -22,8 +20,6 @@ jobs:
node-version: "lts/*"
- name: Lint
run: |
npm ci --cache .npm --prefer-offline
cd libs/angular-components
npm ci --cache .npm --prefer-offline
npm run lint

Expand All @@ -38,8 +34,6 @@ jobs:
node-version: "lts/*"
- name: Test
run: |
npm ci --cache .npm --prefer-offline
cd libs/angular-components
npm ci --cache .npm --prefer-offline
npm run test

Expand All @@ -59,16 +53,12 @@ jobs:
- name: Install dependencies
run: |
npm ci --cache .npm --prefer-offline
cd libs/angular-components
npm ci --cache .npm --prefer-offline
- name: Build Storybook
run: |
cd libs/angular-components
npm run build:sb
- name: Publish to Chromatic
run: |
cd libs/angular-components
CHROMATIC_PROJECT_TOKEN=${{ secrets.CHROMATIC_TOKEN_ANGULAR }} npm run chromatic
CHROMATIC_PROJECT_TOKEN=${{ secrets.CHROMATIC_TOKEN }} npm run chromatic

build-and-deploy:
needs: [lint, test]
Expand All @@ -88,8 +78,6 @@ jobs:
run: |
HUSKY=0
npm ci
cd libs/angular-components
npm ci
npm run build
git pull
npm run release
Expand Down
19 changes: 3 additions & 16 deletions .github/workflows/angular-test-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
branches:
- main
- rc
paths-ignore:
- "libs/react-components/**"
jobs:
lint:
runs-on: ubuntu-latest
Expand All @@ -21,8 +19,6 @@ jobs:
node-version: "lts/*"
- name: Lint
run: |
npm ci --cache .npm --prefer-offline
cd libs/angular-components
npm ci --cache .npm --prefer-offline
npm run lint

Expand All @@ -37,8 +33,6 @@ jobs:
node-version: "lts/*"
- name: Test
run: |
npm ci --cache .npm --prefer-offline
cd libs/angular-components
npm ci --cache .npm --prefer-offline
npm run test

Expand All @@ -56,19 +50,16 @@ jobs:
- name: Install dependencies
run: |
npm ci --cache .npm --prefer-offline
cd libs/angular-components
npm ci --cache .npm --prefer-offline

- name: Run coverage tests
run: |
cd libs/angular-components
npm run test:coverage

- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
working-directory: ./libs/angular-components
working-directory: ./

chromatic:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -98,16 +89,12 @@ jobs:
- name: Install dependencies
run: |
npm ci --cache .npm --prefer-offline
cd libs/angular-components
npm ci --cache .npm --prefer-offline

- name: Build Storybook
run: |
cd libs/angular-components
npm run build:sb

- name: Publish to Chromatic
run: |
cd libs/angular-components
echo "CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_TOKEN_ANGULAR }}"
CHROMATIC_PROJECT_TOKEN=${{ secrets.CHROMATIC_TOKEN_ANGULAR }} npm run chromatic
echo "CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_TOKEN }}"
CHROMATIC_PROJECT_TOKEN=${{ secrets.CHROMATIC_TOKEN }} npm run chromatic
36 changes: 0 additions & 36 deletions .github/workflows/core-release.yml

This file was deleted.

29 changes: 9 additions & 20 deletions .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,16 @@ name: Continuous Deployment

on:
workflow_dispatch:

push:
branches:
- "**"

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
actions: read

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
concurrency:
group: "pages"
cancel-in-progress: true
Expand All @@ -37,8 +34,7 @@ jobs:
build:
runs-on: ubuntu-latest
name: Build
needs:
- build_matrix
needs: build_matrix
strategy:
fail-fast: false
matrix:
Expand All @@ -52,19 +48,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
- name: Install and Build Storybook
run: |
npm ci
cd libs/angular-components
npm ci
npm run build:sb
cd ../react-components
npm ci
npm run build:sb
cd ../..
mkdir compiled-storybook
mv libs/angular-components/dist/storybook-static compiled-storybook/angular
mv libs/react-components/dist/storybook/react-components compiled-storybook/react
mkdir -p compiled-storybook
mv dist/storybook-static compiled-storybook/
- uses: actions/upload-artifact@v4
with:
name: ${{ strategy.job-index }}
Expand All @@ -89,13 +78,13 @@ jobs:
name: "Download artifacts"
with:
path: branches/
- name: Create public folder
- name: Create gpages folder
shell: bash
run: |
ls -la branches
mkdir public
mv .github/workflows/index.html ./public/index.html
cd public
mkdir gpages
mv .github/workflows/index.html ./gpages/index.html
cd gpages
branches=$(echo '${{ needs.build_matrix.outputs.json_branches }}' | jq -r '.[]')
valid_branches=""
i=-1
Expand All @@ -119,7 +108,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public/
path: ./gpages/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
17 changes: 8 additions & 9 deletions .github/workflows/index_suffix.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@
let featureBranchRoot = document.getElementById("feature-branches");

branches.forEach(branch => {
let li = document.createElement("li");
let li = document.createElement("li");
li.className = "py-2";
li.innerHTML = `${branch} - <a href="./${branch}/">View</a>`;

li.className = "py-2";
li.innerHTML = `${branch} - <a href="./${branch}/react">React</a> | <a href="./${branch}/angular">Angular</a>`;

if (mainBranches.indexOf(branch) !== -1) {
mainBranchRoot.appendChild(li);
} else {
featureBranchRoot.appendChild(li);
}
if (mainBranches.indexOf(branch) !== -1) {
mainBranchRoot.appendChild(li);
} else {
featureBranchRoot.appendChild(li);
}
});
});
</script>
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/publish_mirror.sh

This file was deleted.

100 changes: 0 additions & 100 deletions .github/workflows/react-release.yml

This file was deleted.

Loading
Loading