Skip to content

Commit

Permalink
Merge branch 'main' into e2e-context-menu
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanalvizo committed Oct 27, 2023
2 parents 390ddfe + ef52749 commit f6b2ceb
Show file tree
Hide file tree
Showing 213 changed files with 2,674 additions and 888 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ yarn-debug.log*
yarn-error.log*

css
!__mocks__/css

tsconfig.tsbuildinfo
packages/*/package-lock.json
Expand Down
4 changes: 2 additions & 2 deletions @types/memoizee/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ declare namespace memoizee {
max?: number | undefined;
preFetch?: number | true | undefined;
promise?: boolean | 'then' | 'done' | 'done:finally' | undefined;
dispose?(value: unknown): void;
dispose?: (value: unknown) => void;
async?: boolean | undefined;
primitive?: boolean | undefined;
normalizer?(args: Parameters<F>): string;
normalizer?: (args: Parameters<F>) => string;
resolvers?: Array<(arg: unknown) => unknown> | undefined;
}

Expand Down
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,43 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.51.0](https://github.com/deephaven/web-client-ui/compare/v0.50.0...v0.51.0) (2023-10-24)


### Bug Fixes

* Adjusted Monaco "white" colors ([#1594](https://github.com/deephaven/web-client-ui/issues/1594)) ([c736708](https://github.com/deephaven/web-client-ui/commit/c736708e0dd39aa1d0f171f1e9ecf69023647021)), closes [#1592](https://github.com/deephaven/web-client-ui/issues/1592)
* cap width of columns with long names ([#1574](https://github.com/deephaven/web-client-ui/issues/1574)) ([876a6ac](https://github.com/deephaven/web-client-ui/commit/876a6acd00d239f3ac7df21e27db74a16e4fd1b7)), closes [#1276](https://github.com/deephaven/web-client-ui/issues/1276)
* Enabled pointer capabilities for Firefox in Playwright ([#1589](https://github.com/deephaven/web-client-ui/issues/1589)) ([f440a38](https://github.com/deephaven/web-client-ui/commit/f440a383bc5ddc7c8beb06d858d6e0bf4ad1da29)), closes [#1588](https://github.com/deephaven/web-client-ui/issues/1588)
* Remove @deephaven/app-utils from @deephaven/dashboard-core-plugins dependency list ([#1596](https://github.com/deephaven/web-client-ui/issues/1596)) ([7b59763](https://github.com/deephaven/web-client-ui/commit/7b59763d528a95eaca32e4c9607c50d447215798)), closes [#1593](https://github.com/deephaven/web-client-ui/issues/1593)
* Tab in console input triggers autocomplete instead of indent ([#1591](https://github.com/deephaven/web-client-ui/issues/1591)) ([fbe1e70](https://github.com/deephaven/web-client-ui/commit/fbe1e70135008db293878368ad62f742b8166e19))


### Features

* Theming - Spectrum Provider ([#1582](https://github.com/deephaven/web-client-ui/issues/1582)) ([a4013c0](https://github.com/deephaven/web-client-ui/commit/a4013c0b83347197633a008b2b56006c8da12a46)), closes [#1543](https://github.com/deephaven/web-client-ui/issues/1543)
* Theming Iris Grid ([#1568](https://github.com/deephaven/web-client-ui/issues/1568)) ([ed8f4b7](https://github.com/deephaven/web-client-ui/commit/ed8f4b7e45131c1d862d00ac0f8ff604114bba90))
* web-client-ui changes required for deephaven.ui ([#1567](https://github.com/deephaven/web-client-ui/issues/1567)) ([94ab25c](https://github.com/deephaven/web-client-ui/commit/94ab25cb16593f175ef4669a6845cdc22b847fc2))
* Widget plugins ([#1564](https://github.com/deephaven/web-client-ui/issues/1564)) ([94cc82c](https://github.com/deephaven/web-client-ui/commit/94cc82c379103326669d477ae96ec253041f2967)), closes [#1455](https://github.com/deephaven/web-client-ui/issues/1455) [#1167](https://github.com/deephaven/web-client-ui/issues/1167)


### BREAKING CHANGES

* - `usePlugins` and `PluginsContext` were moved from
`@deephaven/app-utils` to `@deephaven/plugin`.
- `useLoadTablePlugin` was moved from `@deephaven/app-utils` to
`@deephaven/dashboard-core-plugins`.
- `useConnection` and `ConnectionContext` were moved from
`@deephaven/app-utils` to `@deephaven/jsapi-components`.
- `DeephavenPluginModuleMap` was removed from `@deephaven/redux`. Use
`PluginModuleMap` from `@deephaven/plugin` instead.
* Enterprise will need ThemeProvider for the css
variables to be available





# [0.50.0](https://github.com/deephaven/web-client-ui/compare/v0.49.1...v0.50.0) (2023-10-13)


Expand Down
1 change: 1 addition & 0 deletions __mocks__/css/mock-theme-dark-components.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'mock-theme-dark-components';
1 change: 1 addition & 0 deletions __mocks__/css/mock-theme-dark-palette.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'mock-theme-dark-palette';
1 change: 1 addition & 0 deletions __mocks__/css/mock-theme-dark-semantic-editor.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'mock-theme-dark-semantic-editor';
1 change: 1 addition & 0 deletions __mocks__/css/mock-theme-dark-semantic-grid.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'mock-theme-dark-semantic-grid';
1 change: 1 addition & 0 deletions __mocks__/css/mock-theme-dark-semantic.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'mock-theme-dark-semantic';
1 change: 1 addition & 0 deletions __mocks__/css/mock-theme-light-palette.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'mock-theme-light-palette';
3 changes: 3 additions & 0 deletions __mocks__/css/mock-theme-spectrum-alias.module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
'dh-spectrum-alias': 'mock-dh-spectrum-alias',
};
3 changes: 3 additions & 0 deletions __mocks__/css/mock-theme-spectrum-overrides.module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
'dh-spectrum-overrides': 'mock-dh-spectrum-overrides',
};
3 changes: 3 additions & 0 deletions __mocks__/css/mock-theme-spectrum-palette.module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
'dh-spectrum-palette': 'mock-dh-spectrum-palette',
};
3 changes: 0 additions & 3 deletions __mocks__/spectrumThemeDarkMock.js

This file was deleted.

3 changes: 0 additions & 3 deletions __mocks__/spectrumThemeLightMock.js

This file was deleted.

4 changes: 2 additions & 2 deletions jest.config.base.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ module.exports = {
'node_modules/(?!(monaco-editor|d3-interpolate|d3-color)/)',
],
moduleNameMapper: {
'SpectrumTheme([^.]+)\\.module\\.scss$': path.join(
'theme-([^/]+?)\\.css(\\?inline)?$': path.join(
__dirname,
'./__mocks__/spectrumTheme$1Mock.js'
'./__mocks__/css/mock-theme-$1.js'
),
'\\.(css|less|scss|sass)$': 'identity-obj-proxy',
'\\.(css|less|scss|sass)\\?inline$': path.join(
Expand Down
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.50.0",
"version": "0.51.0",
"command": {
"publish": {
"distTag": "latest"
Expand Down
Loading

0 comments on commit f6b2ceb

Please sign in to comment.