GenSpectrum / dashboard-components

https://genspectrum.github.io/dashboard-components/
GNU Affero General Public License v3.0
2 stars 0 forks source link

chore(components): bump the minorandpatch group in /components with 20 updates #313

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

Bumps the minorandpatch group in /components with 20 updates:

Package From To
@floating-ui/dom 1.6.5 1.6.7
@floating-ui/utils 0.2.2 0.2.4
preact 10.22.0 10.22.1
@playwright/test 1.44.1 1.45.0
@storybook/addon-actions 8.1.10 8.1.11
@storybook/addon-essentials 8.1.10 8.1.11
@storybook/addon-interactions 8.1.10 8.1.11
@storybook/addon-links 8.1.10 8.1.11
@storybook/blocks 8.1.10 8.1.11
@storybook/preact 8.1.10 8.1.11
@storybook/preact-vite 8.1.10 8.1.11
@storybook/test 8.1.10 8.1.11
@storybook/types 8.1.10 8.1.11
@storybook/web-components 8.1.10 8.1.11
@storybook/web-components-vite 8.1.10 8.1.11
@types/node 20.14.8 20.14.9
daisyui 4.12.7 4.12.10
postcss 8.4.38 8.4.39
storybook 8.1.10 8.1.11
vite 5.3.1 5.3.2

Updates @floating-ui/dom from 1.6.5 to 1.6.7

Release notes

Sourced from @​floating-ui/dom's releases.

@​floating-ui/dom@​1.6.7

Patch Changes

  • chore: fix internal dependency versioning
  • Update dependencies: @floating-ui/utils@0.2.4

@​floating-ui/dom@​1.6.6

Patch Changes

  • fix(getContainingBlock): detect top layer elements
  • fix(types): add optional getClientRects() method to VirtualElement
  • chore: fix internal deps
  • refactor: improve types and internal codebase consistency. All documented types are now exported.
  • Update dependencies: @floating-ui/utils@0.2.3
Changelog

Sourced from @​floating-ui/dom's changelog.

1.6.7

Patch Changes

  • chore: fix internal dependency versioning
  • Update dependencies: @floating-ui/utils@0.2.4

1.6.6

Patch Changes

  • fix(getContainingBlock): detect top layer elements
  • fix(types): add optional getClientRects() method to VirtualElement
  • chore: fix internal deps
  • refactor: improve types and internal codebase consistency. All documented types are now exported.
  • Update dependencies: @floating-ui/utils@0.2.3
Commits


Updates @floating-ui/utils from 0.2.2 to 0.2.4

Release notes

Sourced from @​floating-ui/utils's releases.

@​floating-ui/utils@​0.2.4

Patch Changes

  • refactor: use scrollX/scrollY instead of deprecated pageXOffset/pageYOffset

@​floating-ui/utils@​0.2.3

Patch Changes

  • fix(getContainingBlock): detect top layer elements
  • fix(types): add optional getClientRects() method to VirtualElement
  • refactor: improve types and internal codebase consistency. All documented types are now exported.
Changelog

Sourced from @​floating-ui/utils's changelog.

0.2.4

Patch Changes

  • refactor: use scrollX/scrollY instead of deprecated pageXOffset/pageYOffset

0.2.3

Patch Changes

  • fix(getContainingBlock): detect top layer elements
  • fix(types): add optional getClientRects() method to VirtualElement
  • refactor: improve types and internal codebase consistency. All documented types are now exported.
Commits
  • bd2d065 Version Packages (#2958)
  • 5707c21 refactor: use scrollX/scrollY instead of deprecated pageXOffset/`pageYO...
  • d45094e Version Packages (#2942)
  • 39c8556 refactor: improve types and internal codebase consistency (#2948)
  • d0e8027 fix(getContainingBlock): detect top layer elements (#2944)
  • ccd638e fix(types): add optional getClientRects() method to VirtualElement (#2943)
  • See full diff in compare view


Updates preact from 10.22.0 to 10.22.1

Release notes

Sourced from preact's releases.

10.22.1

Fixes

Types

Maintenance

Performance

Commits
  • 7eef3e0 10.22.1 (#4428)
  • 16aeb9f only check is connected for dom nodes (#4409)
  • 76f5d66 fix(hooks): memo being too lazy with repeated renders (#4426)
  • eb37677 replace isConnected with parentDom.contains (#4421)
  • 92e86e9 graciously handle array shuffling (#4413)
  • 4c20c23 Merge pull request #4403 from maxbrieiev/main
  • 92fd386 compat: Use Ref and RefObject types from core in hooks.
  • 11c9534 compat: Improve React compatibility for Ref type.
  • d19017e Merge pull request #4401 from preactjs/devtools-global-check
  • eb3fb62 devtools: prefer globalThis over window if available
  • Additional commits viewable in compare view


Updates @playwright/test from 1.44.1 to 1.45.0

Release notes

Sourced from @​playwright/test's releases.

v1.45.0

Clock

Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:

  • testing with predefined time;
  • keeping consistent time and timers;
  • monitoring inactivity;
  • ticking through time manually.
// Initialize clock and let the page load naturally.
await page.clock.install({ time: new Date('2024-02-02T08:00:00') });
await page.goto('http://localhost:3333');

// Pretend that the user closed the laptop lid and opened it again at 10am,
// Pause the time once reached that point.
await page.clock.pauseAt(new Date('2024-02-02T10:00:00'));

// Assert the page state.
await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:00:00 AM');

// Close the laptop lid again and open it at 10:30am.
await page.clock.fastForward('30:00');
await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:30:00 AM');

See the clock guide for more details.

Test runner

  • New CLI option --fail-on-flaky-tests that sets exit code to 1 upon any flaky tests. Note that by default, the test runner exits with code 0 when all failed tests recovered upon a retry. With this option, the test run will fail in such case.

  • New enviroment variable PLAYWRIGHT_FORCE_TTY controls whether built-in list, line and dot reporters assume a live terminal. For example, this could be useful to disable tty behavior when your CI environment does not handle ANSI control sequences well. Alternatively, you can enable tty behavior even when to live terminal is present, if you plan to post-process the output and handle control sequences.

    # Avoid TTY features that output ANSI control sequences
    PLAYWRIGHT_FORCE_TTY=0 npx playwright test
    

    Enable TTY features, assuming a terminal width 80

    PLAYWRIGHT_FORCE_TTY=80 npx playwright test

  • New options testConfig.respectGitIgnore and testProject.respectGitIgnore control whether files matching .gitignore patterns are excluded when searching for tests.

  • New property timeout is now available for custom expect matchers. This property takes into account playwright.config.ts and expect.configure().

    import { expect as baseExpect } from '@playwright/test';
    

    export const expect = baseExpect.extend({
    async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // When no timeout option is specified, use the config timeout.
    const timeout = options?.timeout ?? this.timeout;

... (truncated)

Commits


Updates @storybook/addon-actions from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/addon-actions's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/addon-actions's changelog.

8.1.11

Commits


Updates @storybook/addon-essentials from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/addon-essentials's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/addon-essentials's changelog.

8.1.11

Commits


Updates @storybook/addon-interactions from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/addon-interactions's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/addon-interactions's changelog.

8.1.11

Commits


Updates @storybook/addon-links from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/addon-links's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/addon-links's changelog.

8.1.11

Commits


Updates @storybook/blocks from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/blocks's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/blocks's changelog.

8.1.11

Commits


Updates @storybook/preact from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/preact's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/preact's changelog.

8.1.11

Commits


Updates @storybook/preact-vite from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/preact-vite's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/preact-vite's changelog.

8.1.11

Commits


Updates @storybook/test from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/test's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/test's changelog.

8.1.11

Commits
  • 958e86c Bump version from "8.1.10" to "8.1.11" [skip ci]
  • f55340b Merge pull request #27862 from storybookjs/kasper/upgrade-test-deps
  • See full diff in compare view


Updates @storybook/types from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/types's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/types's changelog.

8.1.11

Commits


Updates @storybook/web-components from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/web-components's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/web-components's changelog.

8.1.11

Commits


Updates @storybook/web-components-vite from 8.1.10 to 8.1.11

Release notes

Sourced from @​storybook/web-components-vite's releases.

v8.1.11

8.1.11

Changelog

Sourced from @​storybook/web-components-vite's changelog.

8.1.11

Commits


Updates @types/node from 20.14.8 to 20.14.9

Commits


Updates daisyui from 4.12.7 to 4.12.10

Release notes

Sourced from daisyui's releases.

v4.12.10

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.10

💚 Thank you for using daisyUI!

v4.12.9

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.9

💚 Thank you for using daisyUI!

v4.12.8

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@4.12.8

💚 Thank you for using daisyUI!

Changelog

Sourced from daisyui's changelog.

4.12.10 (2024-06-26)

Bug Fixes

  • join spacing adapting to button border width (da94f2c), closes #3028

4.12.9 (2024-06-26)

Bug Fixes

4.12.8 (2024-06-24)

Bug Fixes

  • decrease default scrollbar color contrast using color-mix (92d98ed)
Commits
  • aaccf58 chore(release): 4.12.10
  • da94f2c fix: join spacing adapting to button border width
  • 62c642a Update src/docs/.env
  • 5755214 chore(release): 4.12.9
  • fade326 fix: missing type for themeRoot config
  • c05d796 docs: improve theme generator
  • e50918d Update src/docs/.env
  • 7160e6c chore(release): 4.12.8
  • 92d98ed fix: decrease default scrollbar color contrast using color-mix
  • 1c2fbe2 Update src/docs/.env
  • See full diff in compare view


Updates postcss from 8.4.38 to 8.4.39

Release notes

Sourced from postcss's releases.

8.4.39

Changelog

Sourced from postcss's changelog.

8.4.39

Commits


Updates storybook from 8.1.10 to 8.1.11

Release notes

Sourced from storybook's releases.

v8.1.11

8.1.11

Changelog

Sourced from storybook's changelog.

8.1.11

Commits


Updates vite from 5.3.1 to 5.3.2

Changelog

Sourced from vite's changelog.

5.3.2 (2024-06-27)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
vercel[bot] commented 5 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
dashboard-components ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 1, 2024 3:44pm
github-actions[bot] commented 5 months ago

There is no change in the changelog.