Skip to content

Commit 03f25fe

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/dotenv-16.4.5
2 parents 0d1908f + 2caf3d1 commit 03f25fe

File tree

27 files changed

+164
-128
lines changed

27 files changed

+164
-128
lines changed

.changeset/itchy-onions-refuse.md

-5
This file was deleted.

.changeset/large-hotels-nail.md

-5
This file was deleted.

.github/workflows/design-system-component-testing.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,21 @@ jobs:
4444
yarn workspace @talend/design-tokens run build:lib:esm
4545
4646
- name: Cypress Component Testing
47-
uses: cypress-io/github-action@1b70233146622b69e789ccdd4f9452adc638d25a #v6.6.1
47+
uses: cypress-io/github-action@df7484c5ba85def7eef30db301afa688187bc378 #v6.7.2
4848
with:
4949
install: false
5050
browser: ${{ matrix.browser }}
5151
command: yarn workspace @talend/design-system run test:cy
5252

5353
- name: Cypress screenshots upload
54-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 #v4.3.3
54+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b #v4.3.4
5555
if: failure()
5656
with:
5757
name: cypress-component-testing-${{ matrix.browser }}-screenshots
5858
path: packages/design-system/cypress/screenshots/**/*
5959

6060
- name: Cypress videos upload
61-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 #v4.3.3
61+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b #v4.3.4
6262
if: failure()
6363
with:
6464
name: cypress-component-testing-${{ matrix.browser }}-videos

.github/workflows/pr-lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: yarn lint-merge-report master ${GITHUB_HEAD_REF}
4343

4444
- name: Annotate Code Linting Results
45-
uses: ataylorme/eslint-annotate-action@5f4dc2e3af8d3c21b727edb597e5503510b1dc9c #v2.2.0
45+
uses: ataylorme/eslint-annotate-action@d57a1193d4c59cbfbf3f86c271f42612f9dbd9e9 #v3.0.0
4646
with:
47-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
47+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
4848
report-json: ./eslint-report.json

.github/workflows/tests-cron.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Create Issue on Failed workflow
3131
if: ${{ failure() }}
32-
uses: dacbd/create-issue-action@ba4d1c45cccf9c483f2720cefb40e437f0ee6f7d #v1.2.1
32+
uses: dacbd/create-issue-action@cdb57ab6ff8862aa09fee2be6ba77a59581921c2 #v2.0.0
3333
with:
3434
token: ${{ secrets.GITHUB_TOKEN }}
3535
title: module-to-cdn configuration fails

fork/module-to-cdn/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @talend/module-to-cdn
22

3+
## 9.11.1
4+
5+
### Patch Changes
6+
7+
- d9fe636: fix: module to cdn for ag-grid
8+
39
## 9.11.0
410

511
### Minor Changes

fork/module-to-cdn/modules.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,13 @@
206206
"ag-grid-react": {
207207
"var": "AgGridReact",
208208
"versions": {
209-
">= 23.1.0": {
209+
">= 23.1.0 < 32.0.0": {
210210
"development": "/bundles/ag-grid-react.min.js",
211211
"production": "/bundles/ag-grid-react.min.js"
212+
},
213+
">= 32.0.0": {
214+
"development": "/dist/umd/@ag-grid-community/react.js",
215+
"production": "/dist/umd/@ag-grid-community/react.min.js"
212216
}
213217
}
214218
},

fork/module-to-cdn/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@talend/module-to-cdn",
3-
"version": "9.11.0",
3+
"version": "9.11.1",
44
"description": "Get cdn config from npm module name",
55
"license": "MIT",
66
"repository": "https://github.com/Talend/ui",

packages/containers/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @talend/react-containers
22

3+
## 11.1.0
4+
5+
### Minor Changes
6+
7+
- be457e9: fix(containers): Expose defaultRegistry through ComponentForm.kit
8+
39
## 11.0.4
410

511
### Patch Changes

packages/containers/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@talend/locales-design-system": "^7.15.1",
6969
"@talend/react-storybook-cmf": "^10.0.0",
7070
"@talend/eslint-config": "^13.2.0",
71-
"@talend/eslint-plugin": "^1.3.0",
71+
"@talend/eslint-plugin": "^1.3.1",
7272
"@talend/scripts-core": "^16.5.1",
7373
"@talend/scripts-config-babel": "^13.5.0",
7474
"@talend/scripts-config-storybook-lib": "^5.4.0",
@@ -95,5 +95,5 @@
9595
"publishConfig": {
9696
"access": "public"
9797
},
98-
"version": "11.0.4"
98+
"version": "11.1.0"
9999
}

packages/design-system/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @talend/design-system
22

3+
## 11.0.6
4+
5+
### Patch Changes
6+
7+
- fcba736: fix: useLayoutEffect to set the data-theme
8+
- Updated dependencies [fcba736]
9+
- @talend/design-tokens@3.4.3
10+
311
## 11.0.5
412

513
### Patch Changes

packages/design-system/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@talend/design-system",
3-
"version": "11.0.5",
3+
"version": "11.0.6",
44
"description": "Talend Design System",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -46,7 +46,7 @@
4646
"dependencies": {
4747
"@floating-ui/react": "^0.24.8",
4848
"@talend/assets-api": "^1.5.1",
49-
"@talend/design-tokens": "^3.4.1",
49+
"@talend/design-tokens": "^3.4.3",
5050
"@talend/utils": "^3.2.3",
5151
"classnames": "^2.5.1",
5252
"modern-css-reset": "^1.4.0",

packages/design-system/src/components/ThemeProvider/ThemeProvider.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PropsWithChildren, useContext, useEffect, useState } from 'react';
1+
import { PropsWithChildren, useContext, useLayoutEffect, useState } from 'react';
22

33
import 'modern-css-reset/dist/reset.min.css';
44
import 'typeface-inconsolata/index.css';
@@ -25,15 +25,15 @@ export const ThemeProvider = ({
2525
// Handle nested Providers: parent Provider doesn't have context, child does
2626
const context = useContext(ThemeContext);
2727

28-
useEffect(() => {
28+
useLayoutEffect(() => {
2929
document.body.dataset.theme = selectedTheme;
3030
}, [selectedTheme]);
3131

32-
useEffect(() => {
32+
useLayoutEffect(() => {
3333
setSelectedTheme(theme);
3434
}, [theme]);
3535

36-
useEffect(() => {
36+
useLayoutEffect(() => {
3737
if (tokensOverride) {
3838
Object.keys(tokensOverride).forEach(key => {
3939
document.body.style.setProperty(key, tokensOverride[key].toString());

packages/design-tokens/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @talend/design-tokens
22

3+
## 3.4.3
4+
5+
### Patch Changes
6+
7+
- fcba736: fix: revert logo change
8+
9+
## 3.4.2
10+
11+
### Patch Changes
12+
13+
- 38e3c2c: Change the default branding logo to Qlik-light style
14+
315
## 3.4.1
416

517
### Patch Changes

packages/design-tokens/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@talend/design-tokens",
3-
"version": "3.4.1",
3+
"version": "3.4.3",
44
"description": "Talend Design Tokens",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -58,7 +58,7 @@
5858
},
5959
"devDependencies": {
6060
"@talend/eslint-config": "^13.2.0",
61-
"@talend/eslint-plugin": "^1.3.0",
61+
"@talend/eslint-plugin": "^1.3.1",
6262
"@talend/scripts-core": "^16.5.1",
6363
"@talend/scripts-config-react-webpack": "^16.8.0",
6464
"@talend/scripts-config-typescript": "^11.3.0",

0 commit comments

Comments
 (0)