-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 1469-add-the-radio-button-card-component
- Loading branch information
Showing
210 changed files
with
17,074 additions
and
2,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@swisspost/design-system-icons': patch | ||
--- | ||
|
||
Added icons number 2543.Updated icons number 1021, 1022, 1023 and 1024. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@swisspost/internet-header': patch | ||
--- | ||
|
||
Fixed an issue with uppercase environment strings. Uppercase environment strings caused issues with mapping to datasets throughout the header. Now the property is being converted to lowercase internally. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@swisspost/internet-header': patch | ||
--- | ||
|
||
Fixed an issue with the search redirect to track and trace. The track and trace API `ok` response type changed from boolean to string. The new type is now supported in the redirect logic. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
'@swisspost/design-system-styles': patch | ||
--- | ||
|
||
- Reduced horizontal padding of tertiary buttons. | ||
- Updated font-size progression according to button size. | ||
- Changed transparent color to full-tone colors. | ||
- Updated slightly the font and border color of secondary and tertiary buttons. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@swisspost/internet-header': patch | ||
'@swisspost/design-system-components': patch | ||
--- | ||
|
||
Fixed broken and outdated output structure of stencil build. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@swisspost/design-system-documentation-v7': minor | ||
--- | ||
|
||
Created a storybook v7 package, set up with vite and lit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@swisspost/internet-header': patch | ||
'@swisspost/design-system-components': patch | ||
--- | ||
|
||
Downgraded the module @stencil/core to v3.x, because v4.x is not working as expected for the moment. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
### | ||
# | ||
# Build the packages/documentation storybook | ||
# | ||
# This workflow does not have secrets when run from a fork. | ||
# Artifacts are uploaded and used in a subsequent workflow | ||
# with more privileges which does not run unsafe commands. | ||
# | ||
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | ||
# | ||
### | ||
|
||
name: Build Documentation V7 | ||
on: | ||
pull_request: | ||
paths: | ||
- 'packages/documentation-v7/**' | ||
- 'packages/styles/**' | ||
- 'packages/components/**' | ||
- 'packages/internet-header/**' | ||
- 'packages/icons/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup | ||
uses: swisspost/design-system/.github/actions/setup-pnpm@main | ||
|
||
- name: Install documentation-v7 & dependencies | ||
run: pnpm --filter design-system-documentation-v7... install | ||
|
||
- name: Build documentation-v7 & dependencies | ||
run: pnpm --filter design-system-documentation-v7... build | ||
|
||
- name: Upload documentation-v7 | ||
uses: swisspost/design-system/.github/actions/artifact-upload@main | ||
with: | ||
name: design-system-documentation-v7 | ||
folder: packages/documentation-v7/storybook-static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
### | ||
# | ||
# Deploy a pre-built documentation to netilfy | ||
# | ||
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | ||
# | ||
### | ||
|
||
name: Deploy Documentation V7 Preview to Netlify | ||
on: | ||
workflow_run: | ||
workflows: ['Build Documentation V7'] | ||
types: [completed] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup | ||
uses: swisspost/design-system/.github/actions/setup-pnpm@main | ||
|
||
- name: Download build artifacts | ||
uses: swisspost/design-system/.github/actions/artifact-download@main | ||
id: build | ||
with: | ||
name: design-system-documentation-v7 | ||
folder: build-output | ||
|
||
- name: Deploy documentation v7 to netlify | ||
uses: swisspost/design-system/.github/actions/deploy-to-netlify@main | ||
id: deploy | ||
with: | ||
id: ${{ steps.build.outputs.id }} | ||
netlify_auth_token: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
netlify_site_id: ${{ secrets.NEXTV7_NETLIFY_SITE_ID }} | ||
netlify_site_url: swisspost-design-system-next-v7.netlify.app | ||
folder: ${{ steps.build.outputs.folder }} | ||
comment_token: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} | ||
comment_author: swisspost-bot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
{ | ||
"arrowParens": "avoid", | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": false, | ||
"jsxSingleQuote": false, | ||
"quoteProps": "consistent", | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"quoteProps": "consistent", | ||
"jsxSingleQuote": false, | ||
"trailingComma": "all", | ||
"useTabs": false, | ||
"bracketSpacing": true, | ||
"bracketLine": false, | ||
"jsxBracketSameLine": false, | ||
"arrowParens": "avoid", | ||
"insertPragma": false, | ||
"proseWrap": "preserve", | ||
"htmlWhitespaceSensitivity": "ignore", | ||
"endOfLine": "auto", | ||
"htmlWhitespaceSensitivity": "ignore" | ||
"embeddedLanguageFormatting": "auto", | ||
"singleAttributePerLine": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
packages/components-angular/projects/intranet-header/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@swisspost/design-system-intranet-header", | ||
"version": "4.0.6", | ||
"version": "4.0.7", | ||
"description": "Intranet header for internal Swiss Post applications as an Angular component.", | ||
"author": "Swiss Post <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -18,10 +18,10 @@ | |
"linkDirectory": true | ||
}, | ||
"dependencies": { | ||
"@swisspost/design-system-styles": "workspace:6.2.4", | ||
"tslib": "2.6.0" | ||
"@swisspost/design-system-styles": "workspace:6.2.5", | ||
"tslib": "2.6.1" | ||
}, | ||
"devDependencies": { | ||
"@swisspost/design-system-components-angular": "workspace:2.0.6" | ||
"@swisspost/design-system-components-angular": "workspace:2.0.7" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.