Skip to content

Commit

Permalink
Merge branch 'deephaven:main' into feat-1233-multiselect
Browse files Browse the repository at this point in the history
  • Loading branch information
wusteven815 authored Feb 2, 2024
2 parents 5e97786 + ac40c6f commit a47b9ff
Show file tree
Hide file tree
Showing 162 changed files with 2,102 additions and 1,756 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
3 changes: 2 additions & 1 deletion jest.config.lint.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ module.exports = {
displayName: 'stylelint',
runner: 'jest-runner-stylelint',
testMatch: [
'<rootDir>/packages/*/src/**/*.css',
'<rootDir>/packages/*/src/**/*.scss',
'<rootDir>/packages/*/scss/**/*.scss',
],
testPathIgnorePatterns: ['<rootDir>/packages/golden-layout/*'],
moduleFileExtensions: ['scss'],
moduleFileExtensions: ['css', 'scss'],
testEnvironment: 'node',
},
],
Expand Down
5 changes: 5 additions & 0 deletions jest.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,8 @@ Object.defineProperty(document, 'getAnimations', {
value: () => [],
writable: true,
});

Object.defineProperty(window.CSS, 'supports', {
value: () => true,
writable: true,
});
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"useNx": false,
"version": "0.60.0",
"version": "0.61.0",
"command": {
"publish": {
"distTag": "latest"
Expand Down
72 changes: 37 additions & 35 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a47b9ff

Please sign in to comment.