From 1f47a8d21cb9daaf83361e130950c20155cfeffb Mon Sep 17 00:00:00 2001 From: Mike Bender Date: Thu, 1 Feb 2024 11:59:55 -0500 Subject: [PATCH] v0.61.0 --- CHANGELOG.md | 31 +++++++++ lerna.json | 2 +- package-lock.json | 70 ++++++++++---------- packages/app-utils/CHANGELOG.md | 11 +++ packages/app-utils/package.json | 2 +- packages/auth-plugins/CHANGELOG.md | 8 +++ packages/auth-plugins/package.json | 2 +- packages/babel-preset/CHANGELOG.md | 8 +++ packages/babel-preset/package.json | 2 +- packages/chart/CHANGELOG.md | 21 ++++++ packages/chart/package.json | 2 +- packages/code-studio/CHANGELOG.md | 26 ++++++++ packages/code-studio/package.json | 2 +- packages/components/CHANGELOG.md | 24 +++++++ packages/components/package.json | 2 +- packages/console/CHANGELOG.md | 21 ++++++ packages/console/package.json | 2 +- packages/dashboard-core-plugins/CHANGELOG.md | 26 ++++++++ packages/dashboard-core-plugins/package.json | 2 +- packages/dashboard/CHANGELOG.md | 8 +++ packages/dashboard/package.json | 2 +- packages/embed-chart/CHANGELOG.md | 8 +++ packages/embed-chart/package.json | 2 +- packages/embed-grid/CHANGELOG.md | 8 +++ packages/embed-grid/package.json | 2 +- packages/embed-widget/CHANGELOG.md | 8 +++ packages/embed-widget/package.json | 2 +- packages/eslint-config/CHANGELOG.md | 8 +++ packages/eslint-config/package.json | 2 +- packages/file-explorer/CHANGELOG.md | 8 +++ packages/file-explorer/package.json | 2 +- packages/filters/CHANGELOG.md | 8 +++ packages/filters/package.json | 2 +- packages/golden-layout/CHANGELOG.md | 21 ++++++ packages/golden-layout/package.json | 2 +- packages/grid/CHANGELOG.md | 8 +++ packages/grid/package.json | 2 +- packages/icons/CHANGELOG.md | 8 +++ packages/icons/package.json | 2 +- packages/iris-grid/CHANGELOG.md | 21 ++++++ packages/iris-grid/package.json | 2 +- packages/jsapi-bootstrap/CHANGELOG.md | 8 +++ packages/jsapi-bootstrap/package.json | 2 +- packages/jsapi-components/CHANGELOG.md | 17 +++++ packages/jsapi-components/package.json | 2 +- packages/jsapi-shim/CHANGELOG.md | 8 +++ packages/jsapi-shim/package.json | 2 +- packages/jsapi-types/CHANGELOG.md | 8 +++ packages/jsapi-types/package.json | 2 +- packages/jsapi-utils/CHANGELOG.md | 8 +++ packages/jsapi-utils/package.json | 2 +- packages/log/CHANGELOG.md | 8 +++ packages/log/package.json | 2 +- packages/mocks/CHANGELOG.md | 8 +++ packages/mocks/package.json | 2 +- packages/plugin/CHANGELOG.md | 11 +++ packages/plugin/package.json | 2 +- packages/pouch-storage/CHANGELOG.md | 8 +++ packages/pouch-storage/package.json | 2 +- packages/prettier-config/CHANGELOG.md | 8 +++ packages/prettier-config/package.json | 2 +- packages/react-hooks/CHANGELOG.md | 17 +++++ packages/react-hooks/package.json | 2 +- packages/redux/CHANGELOG.md | 8 +++ packages/redux/package.json | 2 +- packages/storage/CHANGELOG.md | 8 +++ packages/storage/package.json | 2 +- packages/stylelint-config/CHANGELOG.md | 8 +++ packages/stylelint-config/package.json | 2 +- packages/tsconfig/CHANGELOG.md | 8 +++ packages/tsconfig/package.json | 2 +- packages/utils/CHANGELOG.md | 21 ++++++ packages/utils/package.json | 2 +- 73 files changed, 523 insertions(+), 71 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4519520431..48cc035037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,37 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Bug Fixes + +* Made WidgetComponentProps generic ([#1760](https://github.com/deephaven/web-client-ui/issues/1760)) ([8cb0a10](https://github.com/deephaven/web-client-ui/commit/8cb0a10f796978fdf364c5f046ac60bf32eae6f5)), closes [#1759](https://github.com/deephaven/web-client-ui/issues/1759) +* missing react key on settings menu fragment ([#1757](https://github.com/deephaven/web-client-ui/issues/1757)) ([b14b714](https://github.com/deephaven/web-client-ui/commit/b14b714a7573ed4a3585b2e65334b57f9870b1ad)) + + +### Features + +* Added dashboard-core-plugins to remote-component list ([#1762](https://github.com/deephaven/web-client-ui/issues/1762)) ([3194c4b](https://github.com/deephaven/web-client-ui/commit/3194c4b43264adbbd0ab02ef9461de590ca31797)), closes [#1728](https://github.com/deephaven/web-client-ui/issues/1728) +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) +* DH-16336: usePickerWithSelectedValues - boolean flags should be calculated based on trimmed search text ([#1750](https://github.com/deephaven/web-client-ui/issues/1750)) ([228f34d](https://github.com/deephaven/web-client-ui/commit/228f34d40ca2f594e0a39b7975ff4668b065d101)), closes [#1747](https://github.com/deephaven/web-client-ui/issues/1747) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values +* `usePickerWithSelectedValues` now takes an object as an +argument instead of positional args + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/lerna.json b/lerna.json index 25340f7619..2c0bdf0e88 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useNx": false, - "version": "0.60.0", + "version": "0.61.0", "command": { "publish": { "distTag": "latest" diff --git a/package-lock.json b/package-lock.json index 4b034840ad..1c5faa909c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27749,7 +27749,7 @@ }, "packages/app-utils": { "name": "@deephaven/app-utils", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "^3.29.0", @@ -27835,7 +27835,7 @@ }, "packages/auth-plugins": { "name": "@deephaven/auth-plugins", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -27863,7 +27863,7 @@ }, "packages/babel-preset": { "name": "@deephaven/babel-preset", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@babel/core": "^7.20.0", @@ -27878,7 +27878,7 @@ }, "packages/chart": { "name": "@deephaven/chart", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -27911,7 +27911,7 @@ }, "packages/code-studio": { "name": "@deephaven/code-studio", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "^3.29.0", @@ -28006,7 +28006,7 @@ }, "packages/components": { "name": "@deephaven/components", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "^3.29.0", @@ -28045,7 +28045,7 @@ }, "packages/console": { "name": "@deephaven/console", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/chart": "file:../chart", @@ -28085,7 +28085,7 @@ }, "packages/dashboard": { "name": "@deephaven/dashboard", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28116,7 +28116,7 @@ }, "packages/dashboard-core-plugins": { "name": "@deephaven/dashboard-core-plugins", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/chart": "file:../chart", @@ -28188,7 +28188,7 @@ }, "packages/embed-chart": { "name": "@deephaven/embed-chart", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -28212,7 +28212,7 @@ }, "packages/embed-grid": { "name": "@deephaven/embed-grid", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -28236,7 +28236,7 @@ }, "packages/embed-widget": { "name": "@deephaven/embed-widget", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/app-utils": "file:../app-utils", @@ -28261,7 +28261,7 @@ }, "packages/eslint-config": { "name": "@deephaven/eslint-config", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "eslint-config-airbnb": "^19.0.4", @@ -28280,7 +28280,7 @@ }, "packages/file-explorer": { "name": "@deephaven/file-explorer", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28306,7 +28306,7 @@ }, "packages/filters": { "name": "@deephaven/filters", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "engines": { "node": ">=16" @@ -28314,7 +28314,7 @@ }, "packages/golden-layout": { "name": "@deephaven/golden-layout", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28333,7 +28333,7 @@ }, "packages/grid": { "name": "@deephaven/grid", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/utils": "file:../utils", @@ -28355,7 +28355,7 @@ }, "packages/icons": { "name": "@deephaven/icons", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@fortawesome/fontawesome-common-types": "^6.1.1" @@ -28372,7 +28372,7 @@ }, "packages/iris-grid": { "name": "@deephaven/iris-grid", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28418,7 +28418,7 @@ }, "packages/jsapi-bootstrap": { "name": "@deephaven/jsapi-bootstrap", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28438,7 +28438,7 @@ }, "packages/jsapi-components": { "name": "@deephaven/jsapi-components", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28467,7 +28467,7 @@ }, "packages/jsapi-shim": { "name": "@deephaven/jsapi-shim", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/jsapi-types": "file:../jsapi-types", @@ -28479,7 +28479,7 @@ }, "packages/jsapi-types": { "name": "@deephaven/jsapi-types", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "engines": { "node": ">=16" @@ -28487,7 +28487,7 @@ }, "packages/jsapi-utils": { "name": "@deephaven/jsapi-utils", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/filters": "file:../filters", @@ -28506,7 +28506,7 @@ }, "packages/log": { "name": "@deephaven/log", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "event-target-shim": "^6.0.2" @@ -28517,7 +28517,7 @@ }, "packages/mocks": { "name": "@deephaven/mocks", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "peerDependencies": { "jest": "29.x" @@ -28525,7 +28525,7 @@ }, "packages/plugin": { "name": "@deephaven/plugin", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/components": "file:../components", @@ -28575,7 +28575,7 @@ }, "packages/pouch-storage": { "name": "@deephaven/pouch-storage", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/console": "file:../console", @@ -28596,7 +28596,7 @@ }, "packages/prettier-config": { "name": "@deephaven/prettier-config", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "peerDependencies": { "prettier": "^3.0.0" @@ -28604,7 +28604,7 @@ }, "packages/react-hooks": { "name": "@deephaven/react-hooks", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@adobe/react-spectrum": "^3.29.0", @@ -28622,7 +28622,7 @@ }, "packages/redux": { "name": "@deephaven/redux", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/jsapi-types": "file:../jsapi-types", @@ -28641,7 +28641,7 @@ }, "packages/storage": { "name": "@deephaven/storage", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "@deephaven/filters": "file:../filters", @@ -28657,7 +28657,7 @@ }, "packages/stylelint-config": { "name": "@deephaven/stylelint-config", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "dependencies": { "stylelint-config-prettier-scss": "^0.0.1", @@ -28669,13 +28669,13 @@ }, "packages/tsconfig": { "name": "@deephaven/tsconfig", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0" }, "packages/util": {}, "packages/utils": { "name": "@deephaven/utils", - "version": "0.60.0", + "version": "0.61.0", "license": "Apache-2.0", "engines": { "node": ">=16" diff --git a/packages/app-utils/CHANGELOG.md b/packages/app-utils/CHANGELOG.md index 638447340f..40c88cd150 100644 --- a/packages/app-utils/CHANGELOG.md +++ b/packages/app-utils/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* Added dashboard-core-plugins to remote-component list ([#1762](https://github.com/deephaven/web-client-ui/issues/1762)) ([3194c4b](https://github.com/deephaven/web-client-ui/commit/3194c4b43264adbbd0ab02ef9461de590ca31797)), closes [#1728](https://github.com/deephaven/web-client-ui/issues/1728) + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/app-utils diff --git a/packages/app-utils/package.json b/packages/app-utils/package.json index 4580cd4aa6..7c40363628 100644 --- a/packages/app-utils/package.json +++ b/packages/app-utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/app-utils", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven App Utils", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/auth-plugins/CHANGELOG.md b/packages/auth-plugins/CHANGELOG.md index d3fe328205..fcd1c49e9f 100644 --- a/packages/auth-plugins/CHANGELOG.md +++ b/packages/auth-plugins/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/auth-plugins + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/auth-plugins diff --git a/packages/auth-plugins/package.json b/packages/auth-plugins/package.json index a56d785130..b0fa2ce06e 100644 --- a/packages/auth-plugins/package.json +++ b/packages/auth-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/auth-plugins", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Auth Plugins", "keywords": [ "Deephaven", diff --git a/packages/babel-preset/CHANGELOG.md b/packages/babel-preset/CHANGELOG.md index a57cb40dc5..cb33eafa15 100644 --- a/packages/babel-preset/CHANGELOG.md +++ b/packages/babel-preset/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/babel-preset + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/babel-preset diff --git a/packages/babel-preset/package.json b/packages/babel-preset/package.json index 9b8d26e7d7..b5de147e31 100644 --- a/packages/babel-preset/package.json +++ b/packages/babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/babel-preset", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Babel preset", "repository": { "type": "git", diff --git a/packages/chart/CHANGELOG.md b/packages/chart/CHANGELOG.md index c0cb402f8b..376845fe34 100644 --- a/packages/chart/CHANGELOG.md +++ b/packages/chart/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/chart/package.json b/packages/chart/package.json index c082e4ac3b..d525d50cb6 100644 --- a/packages/chart/package.json +++ b/packages/chart/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/chart", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Chart", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/code-studio/CHANGELOG.md b/packages/code-studio/CHANGELOG.md index 35a471f12c..d687d70f1c 100644 --- a/packages/code-studio/CHANGELOG.md +++ b/packages/code-studio/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Bug Fixes + +* missing react key on settings menu fragment ([#1757](https://github.com/deephaven/web-client-ui/issues/1757)) ([b14b714](https://github.com/deephaven/web-client-ui/commit/b14b714a7573ed4a3585b2e65334b57f9870b1ad)) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/code-studio/package.json b/packages/code-studio/package.json index 7f75883db8..9b4060860e 100644 --- a/packages/code-studio/package.json +++ b/packages/code-studio/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/code-studio", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Code Studio", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index c2696c7d1b..f4e623a468 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) +* DH-16336: usePickerWithSelectedValues - boolean flags should be calculated based on trimmed search text ([#1750](https://github.com/deephaven/web-client-ui/issues/1750)) ([228f34d](https://github.com/deephaven/web-client-ui/commit/228f34d40ca2f594e0a39b7975ff4668b065d101)), closes [#1747](https://github.com/deephaven/web-client-ui/issues/1747) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values +* `usePickerWithSelectedValues` now takes an object as an +argument instead of positional args + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/components/package.json b/packages/components/package.json index 5222dabc4b..f1cb34d1f7 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/components", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven React component library", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/console/CHANGELOG.md b/packages/console/CHANGELOG.md index e551c14358..b25d5113e8 100644 --- a/packages/console/CHANGELOG.md +++ b/packages/console/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/console/package.json b/packages/console/package.json index 51d5de5a3f..06dee0fe13 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/console", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Console", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/dashboard-core-plugins/CHANGELOG.md b/packages/dashboard-core-plugins/CHANGELOG.md index 312629d0ae..63f95a6c49 100644 --- a/packages/dashboard-core-plugins/CHANGELOG.md +++ b/packages/dashboard-core-plugins/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Bug Fixes + +* Made WidgetComponentProps generic ([#1760](https://github.com/deephaven/web-client-ui/issues/1760)) ([8cb0a10](https://github.com/deephaven/web-client-ui/commit/8cb0a10f796978fdf364c5f046ac60bf32eae6f5)), closes [#1759](https://github.com/deephaven/web-client-ui/issues/1759) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/dashboard-core-plugins/package.json b/packages/dashboard-core-plugins/package.json index 14610c856e..81bc8d10ca 100644 --- a/packages/dashboard-core-plugins/package.json +++ b/packages/dashboard-core-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/dashboard-core-plugins", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Dashboard Core Plugins", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/dashboard/CHANGELOG.md b/packages/dashboard/CHANGELOG.md index b1fa2f44aa..8475e36d63 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/dashboard + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index cdfbcfd648..38821382cf 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/dashboard", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Dashboard", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/embed-chart/CHANGELOG.md b/packages/embed-chart/CHANGELOG.md index d61ff9e11c..3c579d06f4 100644 --- a/packages/embed-chart/CHANGELOG.md +++ b/packages/embed-chart/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/embed-chart + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/embed-chart diff --git a/packages/embed-chart/package.json b/packages/embed-chart/package.json index 279fa71b58..aa233d592a 100644 --- a/packages/embed-chart/package.json +++ b/packages/embed-chart/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-chart", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Embedded Chart", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/embed-grid/CHANGELOG.md b/packages/embed-grid/CHANGELOG.md index 1c1c1a8537..73e25c1710 100644 --- a/packages/embed-grid/CHANGELOG.md +++ b/packages/embed-grid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/embed-grid + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/embed-grid/package.json b/packages/embed-grid/package.json index 350ea7e120..3fef522ff8 100644 --- a/packages/embed-grid/package.json +++ b/packages/embed-grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-grid", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Embedded Grid", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/embed-widget/CHANGELOG.md b/packages/embed-widget/CHANGELOG.md index 36ea824f26..2c154cb8d6 100644 --- a/packages/embed-widget/CHANGELOG.md +++ b/packages/embed-widget/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/embed-widget + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/embed-widget diff --git a/packages/embed-widget/package.json b/packages/embed-widget/package.json index ea3499a1f0..38307933bd 100644 --- a/packages/embed-widget/package.json +++ b/packages/embed-widget/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/embed-widget", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Embedded Widget", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index 5df2718753..e702baca04 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/eslint-config + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/eslint-config diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index e14bb4f666..addc1e9fb3 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/eslint-config", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven ESLint configuration", "repository": { "type": "git", diff --git a/packages/file-explorer/CHANGELOG.md b/packages/file-explorer/CHANGELOG.md index 87114a75b1..49f08ad151 100644 --- a/packages/file-explorer/CHANGELOG.md +++ b/packages/file-explorer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/file-explorer + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/file-explorer diff --git a/packages/file-explorer/package.json b/packages/file-explorer/package.json index 28991d8d44..38b082295d 100644 --- a/packages/file-explorer/package.json +++ b/packages/file-explorer/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/file-explorer", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven File Explorer React component", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/filters/CHANGELOG.md b/packages/filters/CHANGELOG.md index cf61aaa0ff..9704bef9d8 100644 --- a/packages/filters/CHANGELOG.md +++ b/packages/filters/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/filters + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/filters diff --git a/packages/filters/package.json b/packages/filters/package.json index 3fe2b9f8e8..da00503011 100644 --- a/packages/filters/package.json +++ b/packages/filters/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/filters", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Filters", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/golden-layout/CHANGELOG.md b/packages/golden-layout/CHANGELOG.md index 0c8a408c71..92aef2c37f 100644 --- a/packages/golden-layout/CHANGELOG.md +++ b/packages/golden-layout/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/golden-layout diff --git a/packages/golden-layout/package.json b/packages/golden-layout/package.json index d951e58ea2..9b446c709e 100644 --- a/packages/golden-layout/package.json +++ b/packages/golden-layout/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/golden-layout", - "version": "0.60.0", + "version": "0.61.0", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", "description": "A multi-screen javascript Layout manager", diff --git a/packages/grid/CHANGELOG.md b/packages/grid/CHANGELOG.md index 32734fbce7..d4fb510c4b 100644 --- a/packages/grid/CHANGELOG.md +++ b/packages/grid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/grid + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/grid/package.json b/packages/grid/package.json index 524f8762f5..e541351f0c 100644 --- a/packages/grid/package.json +++ b/packages/grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/grid", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven React grid component", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 4baa6b98be..eeec0f7589 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/icons + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/icons/package.json b/packages/icons/package.json index 966b3bb3cd..dc41285fca 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/icons", - "version": "0.60.0", + "version": "0.61.0", "description": "Icons used in Deephaven client apps. Extends vscode-codicons to be font-awesome svg-core compatible and adds additional icons in a similar style.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/iris-grid/CHANGELOG.md b/packages/iris-grid/CHANGELOG.md index f013916e37..07d8dd5849 100644 --- a/packages/iris-grid/CHANGELOG.md +++ b/packages/iris-grid/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/iris-grid/package.json b/packages/iris-grid/package.json index cc6ed08bff..1ba84324b5 100644 --- a/packages/iris-grid/package.json +++ b/packages/iris-grid/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/iris-grid", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Iris Grid", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-bootstrap/CHANGELOG.md b/packages/jsapi-bootstrap/CHANGELOG.md index 1436085fca..1d50bfcafc 100644 --- a/packages/jsapi-bootstrap/CHANGELOG.md +++ b/packages/jsapi-bootstrap/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/jsapi-bootstrap + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/jsapi-bootstrap/package.json b/packages/jsapi-bootstrap/package.json index 5d7451f95d..0922a55f99 100644 --- a/packages/jsapi-bootstrap/package.json +++ b/packages/jsapi-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-bootstrap", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven JSAPI Bootstrap", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-components/CHANGELOG.md b/packages/jsapi-components/CHANGELOG.md index ac65e9e6d6..ed6868bda2 100644 --- a/packages/jsapi-components/CHANGELOG.md +++ b/packages/jsapi-components/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* DH-16336: usePickerWithSelectedValues - boolean flags should be calculated based on trimmed search text ([#1750](https://github.com/deephaven/web-client-ui/issues/1750)) ([228f34d](https://github.com/deephaven/web-client-ui/commit/228f34d40ca2f594e0a39b7975ff4668b065d101)), closes [#1747](https://github.com/deephaven/web-client-ui/issues/1747) + + +### BREAKING CHANGES + +* `usePickerWithSelectedValues` now takes an object as an +argument instead of positional args + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/jsapi-components/package.json b/packages/jsapi-components/package.json index 2f7e64fafd..758539f6ed 100644 --- a/packages/jsapi-components/package.json +++ b/packages/jsapi-components/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-components", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven JSAPI Components", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-shim/CHANGELOG.md b/packages/jsapi-shim/CHANGELOG.md index a2377eee7a..c490fe6b0a 100644 --- a/packages/jsapi-shim/CHANGELOG.md +++ b/packages/jsapi-shim/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/jsapi-shim + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/jsapi-shim diff --git a/packages/jsapi-shim/package.json b/packages/jsapi-shim/package.json index 414c53af53..0428d54904 100644 --- a/packages/jsapi-shim/package.json +++ b/packages/jsapi-shim/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-shim", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven JSAPI Shim", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-types/CHANGELOG.md b/packages/jsapi-types/CHANGELOG.md index 3c1bc80082..d0b97211f6 100644 --- a/packages/jsapi-types/CHANGELOG.md +++ b/packages/jsapi-types/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/jsapi-types + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/jsapi-types/package.json b/packages/jsapi-types/package.json index 331fe0aefe..96c0af0ac0 100644 --- a/packages/jsapi-types/package.json +++ b/packages/jsapi-types/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-types", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven JSAPI Types", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/jsapi-utils/CHANGELOG.md b/packages/jsapi-utils/CHANGELOG.md index fff479e13e..ce9e478dec 100644 --- a/packages/jsapi-utils/CHANGELOG.md +++ b/packages/jsapi-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/jsapi-utils + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/jsapi-utils/package.json b/packages/jsapi-utils/package.json index c7978df5fe..8848c988d1 100644 --- a/packages/jsapi-utils/package.json +++ b/packages/jsapi-utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/jsapi-utils", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven JSAPI Utils", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/log/CHANGELOG.md b/packages/log/CHANGELOG.md index 01d60f4e10..c41478a3cf 100644 --- a/packages/log/CHANGELOG.md +++ b/packages/log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/log + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/log diff --git a/packages/log/package.json b/packages/log/package.json index 6d0fadd4ae..bb6c9a91ca 100644 --- a/packages/log/package.json +++ b/packages/log/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/log", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Logger", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/mocks/CHANGELOG.md b/packages/mocks/CHANGELOG.md index fa03461335..2f9a0478dc 100644 --- a/packages/mocks/CHANGELOG.md +++ b/packages/mocks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/mocks + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/mocks diff --git a/packages/mocks/package.json b/packages/mocks/package.json index 31c1c8959b..13cc86c052 100644 --- a/packages/mocks/package.json +++ b/packages/mocks/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/mocks", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Mocks for common libraries", "repository": { "type": "git", diff --git a/packages/plugin/CHANGELOG.md b/packages/plugin/CHANGELOG.md index b6e4b83b28..c29353e06f 100644 --- a/packages/plugin/CHANGELOG.md +++ b/packages/plugin/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Bug Fixes + +* Made WidgetComponentProps generic ([#1760](https://github.com/deephaven/web-client-ui/issues/1760)) ([8cb0a10](https://github.com/deephaven/web-client-ui/commit/8cb0a10f796978fdf364c5f046ac60bf32eae6f5)), closes [#1759](https://github.com/deephaven/web-client-ui/issues/1759) + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/plugin diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 1270c6174d..7ac9006d71 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/plugin", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven JS Plugin Core", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/pouch-storage/CHANGELOG.md b/packages/pouch-storage/CHANGELOG.md index c47b543adb..564a0c3037 100644 --- a/packages/pouch-storage/CHANGELOG.md +++ b/packages/pouch-storage/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/pouch-storage + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/pouch-storage diff --git a/packages/pouch-storage/package.json b/packages/pouch-storage/package.json index 33aa5ee690..2cd820410b 100644 --- a/packages/pouch-storage/package.json +++ b/packages/pouch-storage/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/pouch-storage", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Storage based on PouchDB", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/prettier-config/CHANGELOG.md b/packages/prettier-config/CHANGELOG.md index ee4ab6847d..9fde350f66 100644 --- a/packages/prettier-config/CHANGELOG.md +++ b/packages/prettier-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/prettier-config + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/prettier-config diff --git a/packages/prettier-config/package.json b/packages/prettier-config/package.json index 89751f9313..4465518611 100644 --- a/packages/prettier-config/package.json +++ b/packages/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/prettier-config", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Prettier configuration", "repository": { "type": "git", diff --git a/packages/react-hooks/CHANGELOG.md b/packages/react-hooks/CHANGELOG.md index 3987135028..a4dcaf9377 100644 --- a/packages/react-hooks/CHANGELOG.md +++ b/packages/react-hooks/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* DH-16336: usePickerWithSelectedValues - boolean flags should be calculated based on trimmed search text ([#1750](https://github.com/deephaven/web-client-ui/issues/1750)) ([228f34d](https://github.com/deephaven/web-client-ui/commit/228f34d40ca2f594e0a39b7975ff4668b065d101)), closes [#1747](https://github.com/deephaven/web-client-ui/issues/1747) + + +### BREAKING CHANGES + +* `usePickerWithSelectedValues` now takes an object as an +argument instead of positional args + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index 6ae6617f41..246f2b6fce 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/react-hooks", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven React hooks library", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/redux/CHANGELOG.md b/packages/redux/CHANGELOG.md index dc5e0905cd..b7a317246e 100644 --- a/packages/redux/CHANGELOG.md +++ b/packages/redux/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/redux + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) diff --git a/packages/redux/package.json b/packages/redux/package.json index d21f15d71c..e638df8242 100644 --- a/packages/redux/package.json +++ b/packages/redux/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/redux", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Redux", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/storage/CHANGELOG.md b/packages/storage/CHANGELOG.md index ec3621f935..a54d5270ea 100644 --- a/packages/storage/CHANGELOG.md +++ b/packages/storage/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/storage + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/storage diff --git a/packages/storage/package.json b/packages/storage/package.json index e72542e71a..56c52a09f4 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/storage", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Storage abstract classes for storing app data", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0", diff --git a/packages/stylelint-config/CHANGELOG.md b/packages/stylelint-config/CHANGELOG.md index 2aa31a6324..1f93b42ecd 100644 --- a/packages/stylelint-config/CHANGELOG.md +++ b/packages/stylelint-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/stylelint-config + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/stylelint-config diff --git a/packages/stylelint-config/package.json b/packages/stylelint-config/package.json index f9ccf050a2..b07a21cad0 100644 --- a/packages/stylelint-config/package.json +++ b/packages/stylelint-config/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/stylelint-config", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Stylelint configuration", "repository": { "type": "git", diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md index 248644b899..4c3b298275 100644 --- a/packages/tsconfig/CHANGELOG.md +++ b/packages/tsconfig/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + +**Note:** Version bump only for package @deephaven/tsconfig + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/tsconfig diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index b087552b11..0a9fa09edf 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/tsconfig", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven TypeScript configuration", "repository": { "type": "git", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 79833aaf97..7c629da240 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.61.0](https://github.com/deephaven/web-client-ui/compare/v0.60.0...v0.61.0) (2024-02-01) + + +### Features + +* allow themes to use any srgb color for definitions ([#1756](https://github.com/deephaven/web-client-ui/issues/1756)) ([b047fa3](https://github.com/deephaven/web-client-ui/commit/b047fa36de3a285be925736ef73722a60d1d9ed7)) + + +### BREAKING CHANGES + +* - IrisGridThemeContext no longer accepts a paritial theme. By +guaranteeing the provider is a full theme we can resolve the CSS +variables and normailze the colors only once per theme load globally, +rather than having to do it once per grid. +- Themes must be defined using valid srgb CSS colors, and not hsl raw +component values + + + + + # [0.60.0](https://github.com/deephaven/web-client-ui/compare/v0.59.0...v0.60.0) (2024-01-26) **Note:** Version bump only for package @deephaven/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index 6d1d2bfc4f..aa02655c92 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@deephaven/utils", - "version": "0.60.0", + "version": "0.61.0", "description": "Deephaven Utils", "author": "Deephaven Data Labs LLC", "license": "Apache-2.0",