diff --git a/.changeset/blue-beds-deliver.md b/.changeset/blue-beds-deliver.md
deleted file mode 100644
index 627d2b4acca..00000000000
--- a/.changeset/blue-beds-deliver.md
+++ /dev/null
@@ -1,22 +0,0 @@
----
-'@talend/react-faceted-search': major
-'@talend/design-system': major
-'@talend/react-flow-designer': major
-'@talend/router-bridge': major
-'@talend/react-storybook-cmf': major
-'@talend/react-bootstrap': major
-'@talend/react-cmf-router': major
-'@talend/react-components': major
-'@talend/react-containers': major
-'@talend/react-cmf-cqrs': major
-'@talend/react-dataviz': major
-'@talend/react-stepper': major
-'@talend/react-forms': major
-'@talend/icons': major
-'@talend/react-sagas': major
-'@talend/react-a11y': major
-'@talend/http': major
-'@talend/react-cmf': major
----
-
-React: Upgrade to react 18 and @types/react 18
diff --git a/.changeset/bright-dodos-deny.md b/.changeset/bright-dodos-deny.md
deleted file mode 100644
index 04b4216a504..00000000000
--- a/.changeset/bright-dodos-deny.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-'@talend/scripts-core': major
-'@talend/scripts-config-jest': major
----
-
-- fix: enforce timer at the end of all tests.
-- feat: mock ally.js has it uses unsupported dom method from jsdom.
-- feat: add jest-axe configuration
-
-
-To support floating-ui/react following issue we have decided to add an afterAll to let floating-ui finish stuff
-https://github.com/floating-ui/floating-ui/issues/1908
-
-
-Breaking changes:
-
-you may have tests where you ask for jest.useFakeTimer without go back to real at some point. This is a side effect and it is not compatible with our change to support floating-ui.
-
-```diff
-jest.useFakeTimers()
-render( )
-+jest.useRealTimers()
-```
-
-This will fix an error said your test is still pending after 5000 ms.
-
diff --git a/.changeset/bright-zoos-hug.md b/.changeset/bright-zoos-hug.md
deleted file mode 100644
index ac5a93e247c..00000000000
--- a/.changeset/bright-zoos-hug.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@talend/scripts-config-storybook-lib': patch
----
-
-fix: add keys on all items in the decorators
-fix: improve build performance copy/pasted from #4931
\ No newline at end of file
diff --git a/.changeset/chatty-apes-speak.md b/.changeset/chatty-apes-speak.md
deleted file mode 100644
index 0808eee6b14..00000000000
--- a/.changeset/chatty-apes-speak.md
+++ /dev/null
@@ -1,98 +0,0 @@
----
-'@talend/design-system': major
----
-
-chore: remove reakit
-
-* Rewrite components without reakit
-* use `@floating-ui/react` for tooltip, popover
-* export all types and components from the root
-
-Breaking changes:
-* HTML structure output may have changed
-* Some passed props from our component to reakit and not documented as a usage as been removed. If you need a different usage let us knwow, now we own the code
-* Tabs props API has been completly changed
-
-Components changed:
-* Accordion (useId)
-* Clickable (rewrite)
-* Combobox (add as primitive)
-* Disclosure (add as primitive)
-* Divider (rewrite)
-* Drawer (rewrite using `react-transition-group`)
-* Dropdown (rewrite using `@floating-ui/react`)
-* Form/Affix/Button (typings)
-* Form/Affix/Select (useId)
-* Form/Field/Datalist (useId)
-* Form/Field/InputFile (useId)
-* Form/Field/InputToggleSwitch (rewrite)
-* Form/Primitives/Checkbox (rewrite)
-* Form/Primitives/Field (useId)
-* Form/Primitives/Radio (useId)
-* Modal (rewrite Dialog as primitive)
-* Popover (rewrite using `@floating-ui/react`)
-* Switch (rewrite)
-* Tabs (rewrite + props changed)
-* Tooltip (rewrite using `@floating-ui/react` + API Change)
-* VisuallyHidden (rewrite)
-
-
-**Migration Guide**
-
-* Checkbox component
-
- Checkbox has two versions now : controlled one and uncontrolled one.
- To use controlled version, import Checkbox component and provide `checked` and `onChange` props.
- To use uncontrolled version, import UncontrolledCheckbox component and optionally provide `defaultChecked` prop.
-
- We also change way to import it to be less verbose.
-
- Old use
- ```
- import { Form } from '@talend/design-system';
- (...)
-
- ```
-
- New use
- ```
- import { Checkbox, UncontrolledCheckbox } from '@talend/design-system';
- (...)
-
-
- ```
-
-* ToggleSwitch component
-
- ToggleSwitch has two versions now : controlled one and uncontrolled one.
- To use controlled version, import ToggleSwitch component and provide `checked` and `onChange` props.
- To use uncontrolled version, import UncontrolledToggleSwitch component and optionally provide `defaultChecked` prop.
-
- We also change way to import it to be less verbose.
-
- Old use
- ```
- import { Form } from '@talend/design-system';
- (...)
-
- ```
-
- New use
- ```
- import { ToggleSwitch, UncontrolledToggleSwitch } from '@talend/design-system';
- (...)
-
-
- ```
-
-* Switch component
-
- `onChange` prop's signature change from
- ```
- (event: React.MouseEvent, value: string) => void
- ```
- to
- ```
- (value: string) => void
- ```
-
diff --git a/.changeset/famous-hotels-retire.md b/.changeset/famous-hotels-retire.md
deleted file mode 100644
index edaa3eca828..00000000000
--- a/.changeset/famous-hotels-retire.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@talend/react-components': minor
-'@talend/design-system': minor
----
-
-feat: upgrade react-is
diff --git a/.changeset/funny-rockets-bake.md b/.changeset/funny-rockets-bake.md
deleted file mode 100644
index 886c1aa178f..00000000000
--- a/.changeset/funny-rockets-bake.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@talend/scripts-config-jest': minor
----
-
-Fix peer dependencies and adapt code to be compatible with pnpm
diff --git a/.changeset/perfect-mayflies-fly.md b/.changeset/perfect-mayflies-fly.md
deleted file mode 100644
index c93f4971716..00000000000
--- a/.changeset/perfect-mayflies-fly.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@talend/design-system': patch
----
-
-fix TypeError: popover.hide is not a function on close Popover
diff --git a/.changeset/rare-needles-battle.md b/.changeset/rare-needles-battle.md
deleted file mode 100644
index 100a90025b1..00000000000
--- a/.changeset/rare-needles-battle.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@talend/scripts-config-jest': minor
----
-
-feat: mock revokeURL
diff --git a/.changeset/selfish-hairs-tie.md b/.changeset/selfish-hairs-tie.md
deleted file mode 100644
index 0d4e1dd4faf..00000000000
--- a/.changeset/selfish-hairs-tie.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@talend/design-system': patch
----
-
-fix: some lint errors
diff --git a/.changeset/small-kiwis-end.md b/.changeset/small-kiwis-end.md
deleted file mode 100644
index ac2b4b0c516..00000000000
--- a/.changeset/small-kiwis-end.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@talend/scripts-config-storybook-lib': patch
----
-
-fix: icon url to support prefix
diff --git a/.changeset/strange-coats-poke.md b/.changeset/strange-coats-poke.md
deleted file mode 100644
index be4bd59ba79..00000000000
--- a/.changeset/strange-coats-poke.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@talend/scripts-config-jest': minor
----
-
-feat: add api to set a fetch MockResponse
-feat: add jest-axe integration
\ No newline at end of file
diff --git a/.changeset/unlucky-cats-fold.md b/.changeset/unlucky-cats-fold.md
deleted file mode 100644
index d59d8aaa317..00000000000
--- a/.changeset/unlucky-cats-fold.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@talend/scripts-config-storybook-lib': minor
----
-
-feat: use icons from talend/icons and not from unpkg
diff --git a/fork/react-bootstrap/CHANGELOG.md b/fork/react-bootstrap/CHANGELOG.md
index f9831540996..c9f1e7ec322 100644
--- a/fork/react-bootstrap/CHANGELOG.md
+++ b/fork/react-bootstrap/CHANGELOG.md
@@ -1,5 +1,11 @@
## [v0.32.5]
+## 2.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
## 1.35.2
### Patch Changes
diff --git a/fork/react-bootstrap/package.json b/fork/react-bootstrap/package.json
index 5185d8f4819..8f2079bfed6 100644
--- a/fork/react-bootstrap/package.json
+++ b/fork/react-bootstrap/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/react-bootstrap",
- "version": "1.35.2",
+ "version": "2.0.0",
"description": "Bootstrap 3 components built with React",
"repository": {
"type": "git",
@@ -41,7 +41,7 @@
"react-dom": ">=16.3.0"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
diff --git a/packages/a11y/CHANGELOG.md b/packages/a11y/CHANGELOG.md
index e0e74db7528..32eb7549d60 100644
--- a/packages/a11y/CHANGELOG.md
+++ b/packages/a11y/CHANGELOG.md
@@ -1,5 +1,11 @@
# @talend/react-a11y
+## 2.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
## 1.1.0
### Minor Changes
diff --git a/packages/a11y/package.json b/packages/a11y/package.json
index 00c38fd73a6..865eb39ba9b 100644
--- a/packages/a11y/package.json
+++ b/packages/a11y/package.json
@@ -29,7 +29,7 @@
"lodash": "^4.17.21"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@testing-library/react": "^12.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
@@ -41,5 +41,5 @@
"publishConfig": {
"access": "public"
},
- "version": "1.1.0"
+ "version": "2.0.0"
}
diff --git a/packages/assets-api/package.json b/packages/assets-api/package.json
index a80b5f1e44a..00a8456d5d7 100644
--- a/packages/assets-api/package.json
+++ b/packages/assets-api/package.json
@@ -28,7 +28,7 @@
},
"dependencies": {},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"read-pkg-up": "^7.0.1"
},
diff --git a/packages/cmf-cqrs/CHANGELOG.md b/packages/cmf-cqrs/CHANGELOG.md
index 208d7060720..3d6cdd582ca 100644
--- a/packages/cmf-cqrs/CHANGELOG.md
+++ b/packages/cmf-cqrs/CHANGELOG.md
@@ -1,5 +1,16 @@
# @talend/react-cmf-cqrs
+## 10.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+ - @talend/react-cmf@8.0.0
+
## 9.0.2
### Patch Changes
diff --git a/packages/cmf-cqrs/package.json b/packages/cmf-cqrs/package.json
index b07a7c71fe8..d2db1f5de1f 100644
--- a/packages/cmf-cqrs/package.json
+++ b/packages/cmf-cqrs/package.json
@@ -32,13 +32,13 @@
},
"homepage": "https://github.com/Talend/ui/cmf-cqrs#readme",
"dependencies": {
- "@talend/react-cmf": "^7.3.0",
+ "@talend/react-cmf": "^8.0.0",
"@talend/utils": "^2.6.0",
"immutable": "^3.8.2",
"redux-saga": "^1.2.3"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@testing-library/react-hooks": "^8.0.1",
"mock-socket": "^9.3.1",
@@ -55,5 +55,5 @@
"publishConfig": {
"access": "public"
},
- "version": "9.0.2"
+ "version": "10.0.0"
}
diff --git a/packages/cmf-router/CHANGELOG.md b/packages/cmf-router/CHANGELOG.md
index 85782daced5..4f501ae4d25 100644
--- a/packages/cmf-router/CHANGELOG.md
+++ b/packages/cmf-router/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## 6.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+ - @talend/react-cmf@8.0.0
+
## 5.3.0
### Minor Changes
diff --git a/packages/cmf-router/package.json b/packages/cmf-router/package.json
index 56306a713c4..171e9400253 100644
--- a/packages/cmf-router/package.json
+++ b/packages/cmf-router/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/react-cmf-router",
- "version": "5.3.0",
+ "version": "6.0.0",
"description": "",
"main": "lib/index.js",
"author": "Talend Frontend (http://www.talend.com)",
@@ -17,7 +17,7 @@
"lint": "talend-scripts lint"
},
"dependencies": {
- "@talend/react-cmf": "^7.3.0",
+ "@talend/react-cmf": "^8.0.0",
"connected-react-router": "^6.9.3",
"history": "^5.3.0",
"lodash": "^4.17.21",
@@ -34,7 +34,7 @@
},
"devDependencies": {
"@redux-saga/testing-utils": "^1.1.5",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
diff --git a/packages/cmf/CHANGELOG.md b/packages/cmf/CHANGELOG.md
index 0e660c7eb9b..91177d8e5f4 100644
--- a/packages/cmf/CHANGELOG.md
+++ b/packages/cmf/CHANGELOG.md
@@ -1,5 +1,11 @@
# @talend/react-cmf
+## 8.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
## 7.3.0
### Minor Changes
diff --git a/packages/cmf/package.json b/packages/cmf/package.json
index e20c7bfe112..7e4ee698f47 100644
--- a/packages/cmf/package.json
+++ b/packages/cmf/package.json
@@ -55,7 +55,7 @@
},
"devDependencies": {
"@redux-saga/testing-utils": "^1.1.5",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@testing-library/react": "^12.1.5",
"jest-in-case": "^1.0.2",
@@ -73,5 +73,5 @@
"publishConfig": {
"access": "public"
},
- "version": "7.3.0"
+ "version": "8.0.0"
}
diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md
index 7e2ffd66608..5019e0ae525 100644
--- a/packages/components/CHANGELOG.md
+++ b/packages/components/CHANGELOG.md
@@ -1,5 +1,28 @@
# @talend/react-components
+## 12.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Minor Changes
+
+- 9a0732ec5: feat: upgrade react-is
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [bacaa4b31]
+- Updated dependencies [9a0732ec5]
+ - @talend/design-system@8.0.0
+ - @talend/react-bootstrap@2.0.0
+ - @talend/icons@7.0.0
+ - @talend/react-a11y@2.0.0
+ - @talend/bootstrap-theme@8.2.1
+
## 11.4.5
### Patch Changes
diff --git a/packages/components/package.json b/packages/components/package.json
index 8af8ad6b099..1afae21f5c7 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -34,10 +34,10 @@
},
"dependencies": {
"@popperjs/core": "^2.11.8",
- "@talend/bootstrap-theme": "^8.2.0",
+ "@talend/bootstrap-theme": "^8.2.1",
"@talend/design-tokens": "^2.9.0",
- "@talend/react-a11y": "^1.1.0",
- "@talend/icons": "^6.60.1",
+ "@talend/react-a11y": "^2.0.0",
+ "@talend/icons": "^7.0.0",
"@talend/utils": "^2.6.0",
"ally.js": "^1.4.1",
"classnames": "^2.3.2",
@@ -51,7 +51,7 @@
"memoize-one": "^6.0.0",
"rc-slider": "^10.2.1",
"react-autowhatever": "10.2.0",
- "@talend/react-bootstrap": "^1.35.2",
+ "@talend/react-bootstrap": "^2.0.0",
"react-debounce-input": "^3.3.0",
"react-draggable": "^4.4.5",
"react-grid-layout": "^1.4.1",
@@ -69,12 +69,12 @@
},
"devDependencies": {
"@storybook/addon-actions": "^7.4.1",
- "@talend/bootstrap-theme": "^8.2.0",
- "@talend/design-system": "^7.15.1",
- "@talend/icons": "^6.60.1",
+ "@talend/bootstrap-theme": "^8.2.1",
+ "@talend/design-system": "^8.0.0",
+ "@talend/icons": "^7.0.0",
"@talend/locales-design-system": "^7.3.0",
"@talend/locales-tui-components": "^9.5.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
@@ -101,7 +101,7 @@
"react-test-renderer": "^18.2.0"
},
"peerDependencies": {
- "@talend/design-system": "^7.5.0",
+ "@talend/design-system": "^8.0.0",
"i18next": "^20.1.0",
"prop-types": "^15.5.10",
"react": ">= 16.14.0",
@@ -114,5 +114,5 @@
"publishConfig": {
"access": "public"
},
- "version": "11.4.5"
+ "version": "12.0.0"
}
diff --git a/packages/containers/CHANGELOG.md b/packages/containers/CHANGELOG.md
index 08d296ce8e3..0aa0587e8da 100644
--- a/packages/containers/CHANGELOG.md
+++ b/packages/containers/CHANGELOG.md
@@ -1,5 +1,20 @@
# @talend/react-containers
+## 10.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+ - @talend/react-bootstrap@2.0.0
+ - @talend/react-components@12.0.0
+ - @talend/react-forms@11.0.0
+ - @talend/react-cmf@8.0.0
+
## 9.1.3
### Patch Changes
diff --git a/packages/containers/package.json b/packages/containers/package.json
index 404cbd8fbb7..1b0e63bbc7d 100644
--- a/packages/containers/package.json
+++ b/packages/containers/package.json
@@ -33,10 +33,10 @@
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {
- "@talend/react-bootstrap": "^1.35.2",
- "@talend/react-cmf": "^7.3.0",
- "@talend/react-components": "^11.4.0",
- "@talend/react-forms": "^10.2.4",
+ "@talend/react-bootstrap": "^2.0.0",
+ "@talend/react-cmf": "^8.0.0",
+ "@talend/react-components": "^12.0.0",
+ "@talend/react-forms": "^11.0.0",
"@talend/utils": "^2.6.0",
"classnames": "^2.3.2",
"immutable": "^3.8.2",
@@ -50,11 +50,11 @@
},
"devDependencies": {
"@storybook/addon-actions": "^7.4.1",
- "@talend/bootstrap-theme": "^8.1.3",
- "@talend/icons": "^6.60.1",
+ "@talend/bootstrap-theme": "^8.2.1",
+ "@talend/icons": "^7.0.0",
"@talend/locales-tui-containers": "^8.0.2",
- "@talend/react-storybook-cmf": "^7.2.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/react-storybook-cmf": "^8.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"i18next": "^20.6.1",
"jest-in-case": "^1.0.2",
@@ -75,5 +75,5 @@
"publishConfig": {
"access": "public"
},
- "version": "9.1.3"
+ "version": "10.0.0"
}
diff --git a/packages/dataviz/CHANGELOG.md b/packages/dataviz/CHANGELOG.md
index 5cdbeb6b0ee..48990e8da12 100755
--- a/packages/dataviz/CHANGELOG.md
+++ b/packages/dataviz/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## 4.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+ - @talend/react-components@12.0.0
+
## 3.0.1
### Patch Changes
diff --git a/packages/dataviz/package.json b/packages/dataviz/package.json
index 97f24af3c5f..f03d7defe77 100644
--- a/packages/dataviz/package.json
+++ b/packages/dataviz/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/react-dataviz",
- "version": "3.0.1",
+ "version": "4.0.0",
"description": "Talend charts and visualization components",
"main": "lib/index.js",
"mainSrc": "src/index.ts",
@@ -36,7 +36,7 @@
},
"dependencies": {
"@talend/assets-api": "^1.2.2",
- "@talend/react-components": "^11.4.0",
+ "@talend/react-components": "^12.0.0",
"@talend/design-tokens": "^2.9.0",
"classnames": "^2.3.2",
"d3": "^7.8.5",
@@ -49,12 +49,12 @@
"devDependencies": {
"@cypress/react": "^7.0.3",
"@cypress/webpack-dev-server": "^3.6.1",
- "@talend/bootstrap-theme": "^8.1.3",
- "@talend/icons": "^6.60.1",
+ "@talend/bootstrap-theme": "^8.2.1",
+ "@talend/icons": "^7.0.0",
"@talend/locales-tui-components": "^9.5.0",
"@talend/locales-tui-dataviz": "^0.4.6",
- "@talend/react-components": "^11.4.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/react-components": "^12.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@testing-library/react": "^12.1.5",
"@types/classnames": "^2.3.1",
diff --git a/packages/design-docs/CHANGELOG.md b/packages/design-docs/CHANGELOG.md
new file mode 100644
index 00000000000..513261904ac
--- /dev/null
+++ b/packages/design-docs/CHANGELOG.md
@@ -0,0 +1,14 @@
+# @talend/design-docs
+
+## 1.3.1
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [bacaa4b31]
+- Updated dependencies [9a0732ec5]
+ - @talend/design-system@8.0.0
+ - @talend/icons@7.0.0
+ - @talend/storybook-docs@2.0.0
diff --git a/packages/design-docs/package.json b/packages/design-docs/package.json
index 5f807185b7b..f99ab7fe886 100644
--- a/packages/design-docs/package.json
+++ b/packages/design-docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/design-docs",
- "version": "1.3.0",
+ "version": "1.3.1",
"description": "Package containing design.talend.com stories",
"homepage": "https://github.com/Talend/ui#readme",
"main": "src/index.ts",
@@ -23,10 +23,10 @@
"@algolia/autocomplete-js": "^1.9.4",
"@storybook/blocks": "^7.4.1",
"@storybook/react": "^7.4.1",
- "@talend/design-system": "^7.15.1",
+ "@talend/design-system": "^8.0.0",
"@talend/design-tokens": "^2.9.0",
- "@talend/storybook-docs": "^1.2.0",
- "@talend/icons": "^6.60.1",
+ "@talend/storybook-docs": "^2.0.0",
+ "@talend/icons": "^7.0.0",
"algoliasearch": "^4.17.2",
"classnames": "^2.3.1",
"color-contrast-checker": "^2.1.0",
@@ -54,7 +54,7 @@
"@talend/locales-tui-containers": "^8.0.2",
"@talend/locales-tui-faceted-search": "^8.1.2",
"@talend/locales-tui-forms": "^9.0.1",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@types/react": "^18.2.7",
"i18next": "^20.6.1",
"mdx-embed": "^1.1.2",
diff --git a/packages/design-system/CHANGELOG.md b/packages/design-system/CHANGELOG.md
index b55404a1c40..f7ede82e7ca 100644
--- a/packages/design-system/CHANGELOG.md
+++ b/packages/design-system/CHANGELOG.md
@@ -1,5 +1,123 @@
# @talend/design-system
+## 8.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+- 9a0732ec5: chore: remove reakit
+
+ - Rewrite components without reakit
+ - use `@floating-ui/react` for tooltip, popover
+ - export all types and components from the root
+
+ Breaking changes:
+
+ - HTML structure output may have changed
+ - Some passed props from our component to reakit and not documented as a usage as been removed. If you need a different usage let us knwow, now we own the code
+ - Tabs props API has been completly changed
+
+ Components changed:
+
+ - Accordion (useId)
+ - Clickable (rewrite)
+ - Combobox (add as primitive)
+ - Disclosure (add as primitive)
+ - Divider (rewrite)
+ - Drawer (rewrite using `react-transition-group`)
+ - Dropdown (rewrite using `@floating-ui/react`)
+ - Form/Affix/Button (typings)
+ - Form/Affix/Select (useId)
+ - Form/Field/Datalist (useId)
+ - Form/Field/InputFile (useId)
+ - Form/Field/InputToggleSwitch (rewrite)
+ - Form/Primitives/Checkbox (rewrite)
+ - Form/Primitives/Field (useId)
+ - Form/Primitives/Radio (useId)
+ - Modal (rewrite Dialog as primitive)
+ - Popover (rewrite using `@floating-ui/react`)
+ - Switch (rewrite)
+ - Tabs (rewrite + props changed)
+ - Tooltip (rewrite using `@floating-ui/react` + API Change)
+ - VisuallyHidden (rewrite)
+
+ **Migration Guide**
+
+ - Checkbox component
+
+ Checkbox has two versions now : controlled one and uncontrolled one.
+ To use controlled version, import Checkbox component and provide `checked` and `onChange` props.
+ To use uncontrolled version, import UncontrolledCheckbox component and optionally provide `defaultChecked` prop.
+
+ We also change way to import it to be less verbose.
+
+ Old use
+
+ ```
+ import { Form } from '@talend/design-system';
+ (...)
+
+ ```
+
+ New use
+
+ ```
+ import { Checkbox, UncontrolledCheckbox } from '@talend/design-system';
+ (...)
+
+
+ ```
+
+ - ToggleSwitch component
+
+ ToggleSwitch has two versions now : controlled one and uncontrolled one.
+ To use controlled version, import ToggleSwitch component and provide `checked` and `onChange` props.
+ To use uncontrolled version, import UncontrolledToggleSwitch component and optionally provide `defaultChecked` prop.
+
+ We also change way to import it to be less verbose.
+
+ Old use
+
+ ```
+ import { Form } from '@talend/design-system';
+ (...)
+
+ ```
+
+ New use
+
+ ```
+ import { ToggleSwitch, UncontrolledToggleSwitch } from '@talend/design-system';
+ (...)
+
+
+ ```
+
+ - Switch component
+
+ `onChange` prop's signature change from
+
+ ```
+ (event: React.MouseEvent, value: string) => void
+ ```
+
+ to
+
+ ```
+ (value: string) => void
+ ```
+
+### Minor Changes
+
+- 9a0732ec5: feat: upgrade react-is
+
+### Patch Changes
+
+- bacaa4b31: fix TypeError: popover.hide is not a function on close Popover
+- 9a0732ec5: fix: some lint errors
+- Updated dependencies [96d688489]
+ - @talend/icons@7.0.0
+
## 7.15.1
### Patch Changes
diff --git a/packages/design-system/package.json b/packages/design-system/package.json
index 769f79162b3..d5343d4e7b7 100644
--- a/packages/design-system/package.json
+++ b/packages/design-system/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/design-system",
- "version": "7.15.1",
+ "version": "8.0.0",
"description": "Talend Design System",
"main": "lib/index.js",
"types": "lib/index.d.ts",
@@ -63,10 +63,10 @@
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.4.1",
"@svgr/webpack": "^5.5.0",
- "@talend/bootstrap-theme": "^8.1.3",
- "@talend/icons": "^6.60.1",
+ "@talend/bootstrap-theme": "^8.2.1",
+ "@talend/icons": "^7.0.0",
"@talend/locales-design-system": "^7.3.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@testing-library/cypress": "^9.0.0",
"@types/classnames": "^2.3.1",
@@ -95,7 +95,7 @@
"storybook-docs-toc": "^1.7.0"
},
"peerDependencies": {
- "@talend/icons": "^6.52.0",
+ "@talend/icons": "^7.0.0",
"@talend/locales-design-system": "^7.3.0",
"i18next": "^20.1.0",
"react": "^16.14.0 || ^17.0.0 || ^18.0.0",
diff --git a/packages/design-tokens/package.json b/packages/design-tokens/package.json
index fe59539918c..1641f4a1008 100644
--- a/packages/design-tokens/package.json
+++ b/packages/design-tokens/package.json
@@ -34,7 +34,7 @@
"access": "public"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"typeface-source-sans-pro": "^1.1.13"
},
diff --git a/packages/faceted-search/CHANGELOG.md b/packages/faceted-search/CHANGELOG.md
index 36306a7457c..85c50e9d806 100644
--- a/packages/faceted-search/CHANGELOG.md
+++ b/packages/faceted-search/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## 12.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [bacaa4b31]
+- Updated dependencies [9a0732ec5]
+ - @talend/design-system@8.0.0
+ - @talend/react-bootstrap@2.0.0
+ - @talend/react-components@12.0.0
+
## 11.3.0
### Minor Changes
diff --git a/packages/faceted-search/package.json b/packages/faceted-search/package.json
index 1f029a6ebe0..eecad6c578c 100644
--- a/packages/faceted-search/package.json
+++ b/packages/faceted-search/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/react-faceted-search",
- "version": "11.3.0",
+ "version": "12.0.0",
"description": "Faceted search",
"main": "lib/index.js",
"mainSrc": "src/index.js",
@@ -35,7 +35,7 @@
"dependencies": {
"@talend/daikon-tql-client": "^1.3.1",
"@talend/utils": "^2.6.0",
- "@talend/react-bootstrap": "^1.35.2",
+ "@talend/react-bootstrap": "^2.0.0",
"@talend/design-tokens": "2.9.0",
"classnames": "^2.3.2",
"date-fns": "^1.30.1",
@@ -46,13 +46,13 @@
"devDependencies": {
"@storybook/addon-actions": "^7.4.1",
"@storybook/testing-library": "^0.2.0",
- "@talend/bootstrap-theme": "^8.1.3",
- "@talend/design-system": "^7.15.1",
- "@talend/icons": "^6.60.1",
+ "@talend/bootstrap-theme": "^8.2.1",
+ "@talend/design-system": "^8.0.0",
+ "@talend/icons": "^7.0.0",
"@talend/locales-tui-components": "^9.5.0",
"@talend/locales-tui-faceted-search": "^8.1.2",
- "@talend/react-components": "^11.4.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/react-components": "^12.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"babel-plugin-angularjs-annotate": "^0.10.0",
"cross-env": "^7.0.3",
@@ -63,8 +63,8 @@
"react-i18next": "^11.18.6"
},
"peerDependencies": {
- "@talend/design-system": "^7.5.1",
- "@talend/react-components": "^11.0.0",
+ "@talend/design-system": "^8.0.0",
+ "@talend/react-components": "^12.0.0",
"i18next": "^20.6.1",
"prop-types": "^15.5.10",
"react": ">= 16.14.0",
diff --git a/packages/flow-designer/CHANGELOG.md b/packages/flow-designer/CHANGELOG.md
index 51140b20bd6..3b3318b5dcb 100644
--- a/packages/flow-designer/CHANGELOG.md
+++ b/packages/flow-designer/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## 6.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
## 5.6.0
### Minor Changes
diff --git a/packages/flow-designer/package.json b/packages/flow-designer/package.json
index 8fa09e2284a..1f24c5791bc 100644
--- a/packages/flow-designer/package.json
+++ b/packages/flow-designer/package.json
@@ -1,7 +1,7 @@
{
"name": "@talend/react-flow-designer",
"description": "Flow designer for react and redux",
- "version": "5.6.0",
+ "version": "6.0.0",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"mainSrc": "src/index.js",
@@ -18,8 +18,8 @@
"author": "Talend ",
"license": "Apache-2.0",
"devDependencies": {
- "@talend/scripts-config-jest": "^12.2.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-config-jest": "^13.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@types/d3": "^7.4.0",
"@types/enzyme": "^3.10.13",
diff --git a/packages/forms/CHANGELOG.md b/packages/forms/CHANGELOG.md
index 0464c179bfc..206dbf37b9d 100644
--- a/packages/forms/CHANGELOG.md
+++ b/packages/forms/CHANGELOG.md
@@ -1,5 +1,22 @@
# @talend/react-forms
+## 11.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [bacaa4b31]
+- Updated dependencies [9a0732ec5]
+ - @talend/design-system@8.0.0
+ - @talend/react-bootstrap@2.0.0
+ - @talend/react-components@12.0.0
+
## 10.2.4
### Patch Changes
diff --git a/packages/forms/package.json b/packages/forms/package.json
index 48766ba9188..d03a14be95d 100644
--- a/packages/forms/package.json
+++ b/packages/forms/package.json
@@ -37,8 +37,8 @@
"dependencies": {
"@talend/assets-api": "^1.2.2",
"@talend/json-schema-form-core": "1.1.1",
- "@talend/react-components": "^11.4.0",
- "@talend/design-system": "^7.15.1",
+ "@talend/react-components": "^12.0.0",
+ "@talend/design-system": "^8.0.0",
"@talend/design-tokens": "^2.9.0",
"@talend/utils": "^2.6.0",
"ace-builds": "1.10.1",
@@ -49,7 +49,7 @@
"lodash": "^4.17.21",
"memoize-one": "^6.0.0",
"react-autowhatever": "10.2.0",
- "@talend/react-bootstrap": "^1.35.2",
+ "@talend/react-bootstrap": "^2.0.0",
"react-ace": "10.1.0",
"react-hook-form": "^6.15.8",
"react-jsonschema-form": "0.51.0",
@@ -58,11 +58,11 @@
"devDependencies": {
"@storybook/addon-actions": "^7.4.1",
"@storybook/addon-controls": "^7.4.1",
- "@talend/bootstrap-theme": "^8.1.3",
- "@talend/icons": "^6.60.1",
+ "@talend/bootstrap-theme": "^8.2.1",
+ "@talend/icons": "^7.0.0",
"@talend/locales-tui-forms": "^9.0.1",
- "@talend/react-components": "^11.4.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/react-components": "^12.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
@@ -88,5 +88,5 @@
"publishConfig": {
"access": "public"
},
- "version": "10.2.4"
+ "version": "11.0.0"
}
diff --git a/packages/http/CHANGELOG.md b/packages/http/CHANGELOG.md
index c5f0b9c3b0a..4a7cada1d5e 100644
--- a/packages/http/CHANGELOG.md
+++ b/packages/http/CHANGELOG.md
@@ -1,5 +1,11 @@
# @talend/http
+## 3.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
## 2.4.0
### Minor Changes
diff --git a/packages/http/package.json b/packages/http/package.json
index 43ae558fba4..c7e2accf1d0 100644
--- a/packages/http/package.json
+++ b/packages/http/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/http",
- "version": "2.4.0",
+ "version": "3.0.0",
"description": "HTTP helper",
"license": "Apache-2.0",
"repository": {
@@ -27,7 +27,7 @@
"lint": "talend-scripts lint"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"fetch-mock": "^9.11.0",
"node-fetch": "^2.7.0",
diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md
index 7e36f9a788c..69c1b7a4304 100644
--- a/packages/icons/CHANGELOG.md
+++ b/packages/icons/CHANGELOG.md
@@ -1,5 +1,11 @@
# @talend/icons
+## 7.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
## 6.60.1
### Patch Changes
diff --git a/packages/icons/package.json b/packages/icons/package.json
index 63931a1d27b..811471f3853 100644
--- a/packages/icons/package.json
+++ b/packages/icons/package.json
@@ -44,7 +44,7 @@
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@svgr/webpack": "^5.5.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^4.3.0",
@@ -63,5 +63,5 @@
"publishConfig": {
"access": "public"
},
- "version": "6.60.1"
+ "version": "7.0.0"
}
diff --git a/packages/jsfc/package.json b/packages/jsfc/package.json
index 31fbbbcb889..d5bbf806361 100644
--- a/packages/jsfc/package.json
+++ b/packages/jsfc/package.json
@@ -39,7 +39,7 @@
"json-schema"
],
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"@types/chai": "^3.5.2",
"@types/node": "^6.14.13",
diff --git a/packages/playground/CHANGELOG.md b/packages/playground/CHANGELOG.md
index f719c6aebd0..80626a125db 100644
--- a/packages/playground/CHANGELOG.md
+++ b/packages/playground/CHANGELOG.md
@@ -1,5 +1,22 @@
# @talend/ui-playground
+## 1.1.16
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+ - @talend/react-faceted-search@12.0.0
+ - @talend/react-bootstrap@2.0.0
+ - @talend/react-cmf-router@6.0.0
+ - @talend/react-components@12.0.0
+ - @talend/react-containers@10.0.0
+ - @talend/react-dataviz@4.0.0
+ - @talend/react-forms@11.0.0
+ - @talend/icons@7.0.0
+ - @talend/react-cmf@8.0.0
+ - @talend/bootstrap-theme@8.2.1
+
## 1.1.15
### Patch Changes
diff --git a/packages/playground/package.json b/packages/playground/package.json
index 4e401b1f061..38555723892 100644
--- a/packages/playground/package.json
+++ b/packages/playground/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/ui-playground",
- "version": "1.1.15",
+ "version": "1.1.16",
"description": "Showcase Talend/UI",
"private": true,
"main": "app/index.js",
@@ -23,23 +23,23 @@
"author": "Talend Frontend ",
"license": "Apache-2.0",
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"i18next-http-backend": "^1.4.5"
},
"dependencies": {
- "@talend/bootstrap-theme": "^8.1.3",
- "@talend/react-bootstrap": "^1.35.2",
- "@talend/icons": "^6.60.1",
- "@talend/react-cmf": "^7.3.0",
- "@talend/react-cmf-router": "^5.3.0",
- "@talend/react-components": "^11.4.0",
- "@talend/react-containers": "^9.1.3",
- "@talend/react-dataviz": "^3.0.1",
- "@talend/react-faceted-search": "^11.1.0",
- "@talend/react-forms": "^10.2.4",
+ "@talend/bootstrap-theme": "^8.2.1",
+ "@talend/react-bootstrap": "^2.0.0",
+ "@talend/icons": "^7.0.0",
+ "@talend/react-cmf": "^8.0.0",
+ "@talend/react-cmf-router": "^6.0.0",
+ "@talend/react-components": "^12.0.0",
+ "@talend/react-containers": "^10.0.0",
+ "@talend/react-dataviz": "^4.0.0",
+ "@talend/react-faceted-search": "^12.0.0",
+ "@talend/react-forms": "^11.0.0",
"history": "^5.3.0",
"i18next": "^20.6.1",
"prop-types": "^15.8.1",
diff --git a/packages/router-bridge/CHANGELOG.md b/packages/router-bridge/CHANGELOG.md
index 8f3bbacd683..1752cbf07c2 100644
--- a/packages/router-bridge/CHANGELOG.md
+++ b/packages/router-bridge/CHANGELOG.md
@@ -1,5 +1,11 @@
# @talend/router-bridge
+## 2.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
## 1.2.3
### Patch Changes
diff --git a/packages/router-bridge/package.json b/packages/router-bridge/package.json
index 6ee5c0f9311..9057989aa2e 100644
--- a/packages/router-bridge/package.json
+++ b/packages/router-bridge/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/router-bridge",
- "version": "1.2.3",
+ "version": "2.0.0",
"description": "Bridge on top of cmf-router or react-router v5 + connected-react-router",
"main": "lib/index.js",
"scripts": {
@@ -20,7 +20,7 @@
"license": "Apache-2.0",
"homepage": "https://github.com/ui/tree/master/packages/router-bridge#readme",
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"connected-react-router": "^6.9.3",
"history": "^5.3.0",
diff --git a/packages/sagas/CHANGELOG.md b/packages/sagas/CHANGELOG.md
index 0f0dfa7dc4d..dcf7f7d11fc 100644
--- a/packages/sagas/CHANGELOG.md
+++ b/packages/sagas/CHANGELOG.md
@@ -1,5 +1,16 @@
# @talend/react-sagas
+## 8.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+ - @talend/react-cmf@8.0.0
+
## 7.2.0
### Minor Changes
diff --git a/packages/sagas/package.json b/packages/sagas/package.json
index f34968f2e2e..7161b84b012 100644
--- a/packages/sagas/package.json
+++ b/packages/sagas/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/react-sagas",
- "version": "7.2.0",
+ "version": "8.0.0",
"description": "App wide redux sagas",
"main": "lib/index.js",
"mainSrc": "src/index.js",
@@ -31,7 +31,7 @@
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {
- "@talend/react-cmf": "^7.3.0",
+ "@talend/react-cmf": "^8.0.0",
"immutable": "^3.8.2",
"redux-saga": "^1.2.3"
},
@@ -41,7 +41,7 @@
"react-dom": ">= 16.14.0"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
diff --git a/packages/stepper/CHANGELOG.md b/packages/stepper/CHANGELOG.md
index 84d711e159e..2704794be84 100644
--- a/packages/stepper/CHANGELOG.md
+++ b/packages/stepper/CHANGELOG.md
@@ -1,5 +1,21 @@
# @talend/react-stepper
+## 9.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [bacaa4b31]
+- Updated dependencies [9a0732ec5]
+ - @talend/design-system@8.0.0
+ - @talend/react-components@12.0.0
+
## 8.1.0
### Minor Changes
diff --git a/packages/stepper/package.json b/packages/stepper/package.json
index 2b021255972..1e47b9bb7e0 100644
--- a/packages/stepper/package.json
+++ b/packages/stepper/package.json
@@ -33,18 +33,18 @@
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {
- "@talend/design-system": "^7.15.1",
- "@talend/react-components": "^11.4.0",
+ "@talend/design-system": "^8.0.0",
+ "@talend/react-components": "^12.0.0",
"classnames": "^2.3.2",
"invariant": "^2.2.4",
"keycode": "^2.2.1",
"lodash": "^4.17.21"
},
"devDependencies": {
- "@talend/icons": "^6.60.1",
+ "@talend/icons": "^7.0.0",
"@talend/scripts-config-prettier": "^12.0.0",
"@talend/scripts-config-react-webpack": "^16.0.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"i18next": "^20.6.1",
"immutable": "^3.8.2",
@@ -69,5 +69,5 @@
"publishConfig": {
"access": "public"
},
- "version": "8.1.0"
+ "version": "9.0.0"
}
diff --git a/packages/storybook-cmf/CHANGELOG.md b/packages/storybook-cmf/CHANGELOG.md
index 799d006d759..f40936848cc 100644
--- a/packages/storybook-cmf/CHANGELOG.md
+++ b/packages/storybook-cmf/CHANGELOG.md
@@ -1,5 +1,16 @@
# @talend/react-storybook-cmf
+## 8.0.0
+
+### Major Changes
+
+- 96d688489: React: Upgrade to react 18 and @types/react 18
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+ - @talend/react-cmf@8.0.0
+
## 7.2.0
### Minor Changes
diff --git a/packages/storybook-cmf/package.json b/packages/storybook-cmf/package.json
index 6f9c8afb8eb..80cd521cbc8 100644
--- a/packages/storybook-cmf/package.json
+++ b/packages/storybook-cmf/package.json
@@ -1,7 +1,7 @@
{
"name": "@talend/react-storybook-cmf",
"description": "react-storybook-cmf library.",
- "version": "7.2.0",
+ "version": "8.0.0",
"license": "Apache-2.0",
"author": "Talend Frontend ",
"repository": {
@@ -24,8 +24,8 @@
"main": "lib/index.js",
"mainSrc": "src/index.js",
"devDependencies": {
- "@talend/react-cmf": "^7.3.0",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/react-cmf": "^8.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@testing-library/react": "^12.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
@@ -36,7 +36,7 @@
"prop-types": "^15.8.1"
},
"peerDependencies": {
- "@talend/react-cmf": "^7.1.4",
+ "@talend/react-cmf": "^8.0.0",
"react": ">= 16.14.0",
"react-dom": ">= 16.14.0",
"react-redux": "^7.2.9",
diff --git a/packages/storybook-docs/CHANGELOG.md b/packages/storybook-docs/CHANGELOG.md
index 639932d4621..90df5b82b2c 100644
--- a/packages/storybook-docs/CHANGELOG.md
+++ b/packages/storybook-docs/CHANGELOG.md
@@ -1,5 +1,17 @@
# @talend/storybook-docs
+## 2.0.0
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [bacaa4b31]
+- Updated dependencies [9a0732ec5]
+ - @talend/design-system@8.0.0
+ - @talend/icons@7.0.0
+
## 1.2.0
### Minor Changes
diff --git a/packages/storybook-docs/package.json b/packages/storybook-docs/package.json
index 185de4ec2d9..ce75e269eb2 100644
--- a/packages/storybook-docs/package.json
+++ b/packages/storybook-docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/storybook-docs",
- "version": "1.2.0",
+ "version": "2.0.0",
"description": "Talend Storybook Docs component library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
@@ -27,16 +27,16 @@
"access": "public"
},
"dependencies": {
- "@talend/design-system": "^7.15.1",
+ "@talend/design-system": "^8.0.0",
"@talend/design-tokens": "^2.9.0",
"classnames": "^2.3.1",
"figma-js": "^1.16.0",
"react": "^18.2.0"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0"
+ "@talend/scripts-core": "^16.0.0"
},
"peerDependencies": {
- "@talend/icons": "^6.42.0"
+ "@talend/icons": "^7.0.0"
}
}
diff --git a/packages/storybook-one/CHANGELOG.md b/packages/storybook-one/CHANGELOG.md
new file mode 100644
index 00000000000..acda47efaf4
--- /dev/null
+++ b/packages/storybook-one/CHANGELOG.md
@@ -0,0 +1,15 @@
+# @talend/ui-storybook-one
+
+## 1.2.1
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [bacaa4b31]
+- Updated dependencies [9a0732ec5]
+ - @talend/design-system@8.0.0
+ - @talend/react-components@12.0.0
+ - @talend/react-dataviz@4.0.0
+ - @talend/icons@7.0.0
diff --git a/packages/storybook-one/package.json b/packages/storybook-one/package.json
index f1b03942566..959240cd05e 100644
--- a/packages/storybook-one/package.json
+++ b/packages/storybook-one/package.json
@@ -1,6 +1,6 @@
{
"name": "@talend/ui-storybook-one",
- "version": "1.2.0",
+ "version": "1.2.1",
"description": "Package containing all stories from talend/ui repository",
"homepage": "https://github.com/Talend/ui#readme",
"main": "src/index.ts",
@@ -20,11 +20,11 @@
"url": "https://github.com/Talend/ui/issues"
},
"dependencies": {
- "@talend/design-system": "^7.15.1",
+ "@talend/design-system": "^8.0.0",
"@talend/design-tokens": "^2.7.3",
- "@talend/icons": "^6.60.1",
- "@talend/react-components": "^11.0.0",
- "@talend/react-dataviz": "^3.0.1",
+ "@talend/icons": "^7.0.0",
+ "@talend/react-components": "^12.0.0",
+ "@talend/react-dataviz": "^4.0.0",
"react-hook-form": "^6.15.8"
},
"devDependencies": {
@@ -48,7 +48,7 @@
"@talend/locales-tui-containers": "^8.0.2",
"@talend/locales-tui-faceted-search": "^8.1.0",
"@talend/locales-tui-forms": "^9.0.1",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"@types/react": "^18.2.0",
"i18next": "^20.6.1",
"react": "^18.2.0",
diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md
index 439f4ce7055..fec8a8c45d5 100644
--- a/packages/theme/CHANGELOG.md
+++ b/packages/theme/CHANGELOG.md
@@ -1,5 +1,12 @@
# @talend/bootstrap-theme
+## 8.2.1
+
+### Patch Changes
+
+- Updated dependencies [96d688489]
+ - @talend/icons@7.0.0
+
## 8.2.0
### Minor Changes
diff --git a/packages/theme/package.json b/packages/theme/package.json
index 31dacaaacf0..5a58471d451 100644
--- a/packages/theme/package.json
+++ b/packages/theme/package.json
@@ -29,11 +29,11 @@
"dependencies": {
"@talend/bootstrap-sass": "^3.5.0",
"@talend/design-tokens": "^2.9.0",
- "@talend/icons": "^6.60.1"
+ "@talend/icons": "^7.0.0"
},
"devDependencies": {
- "@talend/icons": "^6.60.1",
- "@talend/scripts-core": "^15.0.0",
+ "@talend/icons": "^7.0.0",
+ "@talend/scripts-core": "^16.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-minimizer-webpack-plugin": "^4.2.2",
"css-loader": "^4.3.0",
@@ -54,5 +54,5 @@
"publishConfig": {
"access": "public"
},
- "version": "8.2.0"
+ "version": "8.2.1"
}
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 455835ad9ba..85b59df99d1 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -20,7 +20,7 @@
"extends": "talend-scripts extends"
},
"devDependencies": {
- "@talend/scripts-core": "^15.0.0",
+ "@talend/scripts-core": "^16.0.0",
"cross-env": "^7.0.3"
},
"dependencies": {
diff --git a/tools/scripts-config-jest/CHANGELOG.md b/tools/scripts-config-jest/CHANGELOG.md
index 0695cb288f2..5578761b184 100644
--- a/tools/scripts-config-jest/CHANGELOG.md
+++ b/tools/scripts-config-jest/CHANGELOG.md
@@ -1,5 +1,36 @@
# @talend/scripts-config-jest
+## 13.0.0
+
+### Major Changes
+
+- 9a0732ec5: - fix: enforce timer at the end of all tests.
+
+ - feat: mock ally.js has it uses unsupported dom method from jsdom.
+ - feat: add jest-axe configuration
+
+ To support floating-ui/react following issue we have decided to add an afterAll to let floating-ui finish stuff
+ https://github.com/floating-ui/floating-ui/issues/1908
+
+ Breaking changes:
+
+ you may have tests where you ask for jest.useFakeTimer without go back to real at some point. This is a side effect and it is not compatible with our change to support floating-ui.
+
+ ```diff
+ jest.useFakeTimers()
+ render( )
+ +jest.useRealTimers()
+ ```
+
+ This will fix an error said your test is still pending after 5000 ms.
+
+### Minor Changes
+
+- e83b74b7c: Fix peer dependencies and adapt code to be compatible with pnpm
+- 96d688489: feat: mock revokeURL
+- 9a0732ec5: feat: add api to set a fetch MockResponse
+ feat: add jest-axe integration
+
## 12.2.0
### Minor Changes
diff --git a/tools/scripts-config-jest/package.json b/tools/scripts-config-jest/package.json
index 956444e9c4c..fdc5549ca50 100644
--- a/tools/scripts-config-jest/package.json
+++ b/tools/scripts-config-jest/package.json
@@ -1,7 +1,7 @@
{
"name": "@talend/scripts-config-jest",
"description": "Jest configuration for @talend/scripts-core",
- "version": "12.2.0",
+ "version": "13.0.0",
"license": "Apache-2.0",
"main": "index.js",
"author": "Talend Frontend ",
diff --git a/tools/scripts-config-storybook-lib/CHANGELOG.md b/tools/scripts-config-storybook-lib/CHANGELOG.md
index 5faf25b201b..b3b1b3a5a03 100644
--- a/tools/scripts-config-storybook-lib/CHANGELOG.md
+++ b/tools/scripts-config-storybook-lib/CHANGELOG.md
@@ -1,5 +1,17 @@
# @talend/scripts-config-storybook-lib
+## 5.1.0
+
+### Minor Changes
+
+- 6efd54301: feat: use icons from talend/icons and not from unpkg
+
+### Patch Changes
+
+- 9a0732ec5: fix: add keys on all items in the decorators
+ fix: improve build performance copy/pasted from #4931
+- 35263dfcb: fix: icon url to support prefix
+
## 5.0.0
### Major Changes
diff --git a/tools/scripts-config-storybook-lib/package.json b/tools/scripts-config-storybook-lib/package.json
index 6075362f55a..54b6763b35e 100644
--- a/tools/scripts-config-storybook-lib/package.json
+++ b/tools/scripts-config-storybook-lib/package.json
@@ -1,7 +1,7 @@
{
"name": "@talend/scripts-config-storybook-lib",
"description": "Storybook configuration for @talend/scripts-core",
- "version": "5.0.0",
+ "version": "5.1.0",
"license": "Apache-2.0",
"main": "index.js",
"author": "Talend Frontend ",
diff --git a/tools/scripts-core/CHANGELOG.md b/tools/scripts-core/CHANGELOG.md
index d6a4a2c5966..032459eb3f6 100644
--- a/tools/scripts-core/CHANGELOG.md
+++ b/tools/scripts-core/CHANGELOG.md
@@ -1,5 +1,37 @@
# @talend/scripts-core
+## 16.0.0
+
+### Major Changes
+
+- 9a0732ec5: - fix: enforce timer at the end of all tests.
+
+ - feat: mock ally.js has it uses unsupported dom method from jsdom.
+ - feat: add jest-axe configuration
+
+ To support floating-ui/react following issue we have decided to add an afterAll to let floating-ui finish stuff
+ https://github.com/floating-ui/floating-ui/issues/1908
+
+ Breaking changes:
+
+ you may have tests where you ask for jest.useFakeTimer without go back to real at some point. This is a side effect and it is not compatible with our change to support floating-ui.
+
+ ```diff
+ jest.useFakeTimers()
+ render( )
+ +jest.useRealTimers()
+ ```
+
+ This will fix an error said your test is still pending after 5000 ms.
+
+### Patch Changes
+
+- Updated dependencies [9a0732ec5]
+- Updated dependencies [e83b74b7c]
+- Updated dependencies [96d688489]
+- Updated dependencies [9a0732ec5]
+ - @talend/scripts-config-jest@13.0.0
+
## 15.0.0
### Major Changes
diff --git a/tools/scripts-core/package.json b/tools/scripts-core/package.json
index cebdb383c56..d6a4c4a0898 100644
--- a/tools/scripts-core/package.json
+++ b/tools/scripts-core/package.json
@@ -1,7 +1,7 @@
{
"name": "@talend/scripts-core",
"description": "Set of scripts",
- "version": "15.0.0",
+ "version": "16.0.0",
"license": "Apache-2.0",
"exports": "./src/index.js",
"type": "module",
@@ -28,7 +28,7 @@
"@talend/eslint-config": "^12.1.1",
"@talend/scripts-utils": "^2.0.2",
"@talend/scripts-config-babel": "^13.0.0",
- "@talend/scripts-config-jest": "^12.2.0",
+ "@talend/scripts-config-jest": "^13.0.0",
"@talend/scripts-config-typescript": "^11.1.0",
"cpx2": "^3.0.2",
"fs-extra": "^10.1.0",