UweKnopf / stoex

https://stoex.vercel.app
3 stars 1 forks source link

Bump the dev-major group with 14 updates #129

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the dev-major group with 14 updates:

Package From To
@floating-ui/dom 1.5.3 1.6.3
@playwright/test 1.39.0 1.42.1
@skeletonlabs/skeleton 2.5.0 2.9.0
@skeletonlabs/tw-plugin 0.2.4 0.3.1
@types/node 20.9.2 20.11.25
@vincjo/datatables 1.12.8 1.14.5
eslint 8.53.0 8.57.0
eslint-config-prettier 9.0.0 9.1.0
prettier 3.0.3 3.2.5
prettier-plugin-svelte 3.0.3 3.2.2
svelte-check 3.5.2 3.6.6
tailwindcss 3.3.5 3.4.1
typescript 5.2.2 5.4.2
vite-plugin-tailwind-purgecss 0.1.3 0.2.0

Updates @floating-ui/dom from 1.5.3 to 1.6.3

Release notes

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

@​floating-ui/dom@​1.6.3

Patch Changes

  • fix: calculate reference element offset relative to offsetParent iframe. Fixes issue with positioning in nested iframes, such as the following:
<html>
  <iframe>
    <div>floating</div>
    <iframe>
      <div>reference</div>
    </iframe>
  </iframe>
</html>

@​floating-ui/dom@​1.6.2

Patch Changes

  • fix: top layer element positioning and collision detection when using absolute strategy

@​floating-ui/dom@​1.6.1

Patch Changes

  • perf: avoid getContainingBlock call for non-top layer elements

@​floating-ui/dom@​1.6.0

Minor Changes

  • fix: handle CSS :top-layer elements inside containing blocks. It's no longer necessary to implement the middleware workaround outlined in floating-ui/floating-ui#1842.

Patch Changes

  • Update dependencies: @floating-ui/core@1.6.0

@​floating-ui/dom@​1.5.4

Patch Changes

  • 4c04669: chore: export .d.mts types, solves #2472
  • 0d18e37: refactor: avoid $ property appearing in rects dimensions
  • Updated dependencies [afb7e5e]
    • @​floating-ui/utils@​0.2.0
    • @​floating-ui/core@​1.5.3
Changelog

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

1.6.3

Patch Changes

  • fix: calculate reference element offset relative to offsetParent iframe. Fixes issue with positioning in nested iframes, such as the following:
<html>
  <iframe>
    <div>floating</div>
    <iframe>
      <div>reference</div>
    </iframe>
  </iframe>
</html>

1.6.2

Patch Changes

  • fix: top layer element positioning and collision detection when using absolute strategy

1.6.1

Patch Changes

  • perf: avoid getContainingBlock call for non-top layer elements

1.6.0

Minor Changes

  • fix: handle CSS :top-layer elements inside containing blocks. It's no longer necessary to implement the middleware workaround outlined in floating-ui/floating-ui#1842.

Patch Changes

  • Update dependencies: @floating-ui/core@1.6.0

1.5.4

Patch Changes

  • 4c04669: chore: exports .d.mts types, solves #2472
  • 0d18e37: refactor: avoid $ appearing in rects dimensions
  • Updated dependencies [4c04669]
  • Updated dependencies [afb7e5e]
    • @​floating-ui/utils@​0.2.0

... (truncated)

Commits


Updates @playwright/test from 1.39.0 to 1.42.1

Release notes

Sourced from @​playwright/test's releases.

v1.42.1

Highlights

microsoft/playwright#29732 - [Regression]: HEAD requests to webServer.url since v1.42.0 microsoft/playwright#29746 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin import microsoft/playwright#29739 - [Bug]: Component tests fails when imported a module with a dot in a name microsoft/playwright#29731 - [Regression]: 1.42.0 breaks some import statements microsoft/playwright#29760 - [Bug]: Possible regression with chained locators in v1.42

Browser Versions

  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.42.0

New APIs

  • Test tags

    New tag syntax for adding tags to the tests (@-tokens in the test title are still supported).

    test('test customer login', { tag: ['@fast', '@login'] }, async ({ page }) => {
      // ...
    });
    

    Use --grep command line option to run only tests with certain tags.

    npx playwright test --grep @fast
    
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    test('test full report', {
      annotation: [
        { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
        { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
      ],
    }, async ({ page }) => {
      // ...
    });
    

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by yurys, a new releaser for @​playwright/test since your current version.


Updates @skeletonlabs/skeleton from 2.5.0 to 2.9.0

Release notes

Sourced from @​skeletonlabs/skeleton's releases.

@​skeletonlabs/skeleton@​2.9.0

Minor Changes

  • feat: Added disabled prop to ListBox and ListBoxItem components. (#2485)

@​skeletonlabs/skeleton@​2.8.0

Minor Changes

  • feat: InputChips now allow you to add/remove chips programatically. (#2347)

Patch Changes

  • bugfix: Removed recursive-tree-view's unused props for disabled and open (#2427)

  • bugfix: CodeBlock copy button type is now button instead of default (submit) (#2428)

  • bugfix: added label prop to InputChips to provide aria-label for a11y (#2445)

  • chore: Applied @html interpretation to Autocomplete empty state (#2448)

@​skeletonlabs/skeleton@​2.7.1

Patch Changes

  • chore: Use the ActionReturn type for the clipboard action (#2376)

@​skeletonlabs/skeleton@​2.7.0

Minor Changes

  • feat: The focusTrap action can not take a set of tabIndex values to denote initial tab focus (#2191)

Patch Changes

  • bugfix: Step events have been moved to the parent Stepper component to match the documentation spec (#2341)

  • bugfix: The Modal system's subscription has been updated to avoid a potential memory leak issue (#2336)

  • bugfix: Resolved a Safari browser styling issue when Avatars are placed inside AppBar (#2333)

  • chore: Modal backdrop padding can now be overwritten via regionProp and backdropClasses (#2332)

  • bugfix: Modal Prompt of type number now returns number instead of a string (#2334)

  • bugfix: Fixed an issue where Models would shift or wobble slightly on open (#2255)

@​skeletonlabs/skeleton@​2.6.1

Patch Changes

  • chore: Added a animIndeterminate prop to customize the ProgressBar indeterminate animation. (#2317)

  • chroe: AccordionItem now includes iconOpen and iconClosed slots for custom open/closed icons (#2285)

... (truncated)

Commits
  • 0af33f4 Merge pull request #2520 from skeletonlabs/changeset-release/master
  • 18d246a chore(release): version package
  • 7bc56a1 Merge pull request #2519 from skeletonlabs/dev
  • b78a3b4 docs/fix typo in file path for Datatable.svelte within SSD docs (#2515)
  • 3a27212 Feat/add disabled to listbox listboxitem (#2485)
  • a5a588d remove store link from sidebar navigation (#2500)
  • 9314b1f Testing build isolation
  • 2b72ae1 Merge pull request #2478 from kmalloy24/docs/ssd-typo
  • 191526d typo
  • c6a4ddc Merge pull request #2476 from skeletonlabs/changeset-release/master
  • Additional commits viewable in compare view


Updates @skeletonlabs/tw-plugin from 0.2.4 to 0.3.1

Release notes

Sourced from @​skeletonlabs/tw-plugin's releases.

@​skeletonlabs/tw-plugin@​0.3.1

Patch Changes

  • chore: Table element styles now use the md: breakpoint for adjusting whitespace settings for cells (#2339)

  • bugfix: Fixed input style layout shift when the readonly attribute is set (#2330)

@​skeletonlabs/tw-plugin@​0.3.0

Minor Changes

  • feat: Added design tokens for divide and decoration (#2290)
Commits


Updates @types/node from 20.9.2 to 20.11.25

Commits


Updates @vincjo/datatables from 1.12.8 to 1.14.5

Commits


Updates eslint from 8.53.0 to 8.57.0

Release notes

Sourced from eslint's releases.

v8.57.0

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)

Documentation

  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)

Chores

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)

v8.56.0

Features

  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818) (Arka Pratim Chaudhuri)

Bug Fixes

  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846) (Francesco Trotta)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812) (Bryan Mishkin)

Documentation

  • 9007719 docs: update link in ways-to-extend.md (#17839) (Amel SELMANE)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#17810) (Zwyx)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)

Chores

  • ba6af85 chore: upgrade @​eslint/js@​8.56.0 (#17864) (Milos Djermanovic)
  • 60a531a chore: package.json update for @​eslint/js release (Jenkins)
  • ba87a06 chore: update dependency markdownlint to ^0.32.0 (#17783) (renovate[bot])
  • 9271d10 chore: add GitHub issue template for docs issues (#17845) (Josh Goldberg ✨)
  • 70a686b chore: Convert rule tests to FlatRuleTester (#17819) (Nicholas C. Zakas)
  • f3a599d chore: upgrade eslint-plugin-unicorn to v49.0.0 (#17837) (唯然)
  • 905d4b7 chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (#17838) (唯然)
  • 4d7c3ce chore: update eslint-plugin-n v16.4.0 (#17836) (唯然)
  • fd0c60c ci: unpin Node.js 21.2.0 (#17821) (Francesco Trotta)

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.57.0 - February 23, 2024

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)

v9.0.0-beta.0 - February 9, 2024

  • e40d1d7 chore: upgrade @​eslint/js@​9.0.0-beta.0 (#18108) (Milos Djermanovic)
  • 9870f93 chore: package.json update for @​eslint/js release (Jenkins)
  • 2c62e79 chore: upgrade @​eslint/eslintrc@​3.0.1 (#18107) (Milos Djermanovic)
  • 81f0294 chore: upgrade espree@10.0.1 (#18106) (Milos Djermanovic)
  • 5e2b292 chore: upgrade eslint-visitor-keys@4.0.0 (#18105) (Milos Djermanovic)
  • 9163646 feat!: Rule Tester checks for missing placeholder data in the message (#18073) (fnx)
  • 53f0f47 feat: Add loadESLint() API method for v9 (#18097) (Nicholas C. Zakas)
  • f1c7e6f docs: Switch to Ethical Ads (#18090) (Strek)
  • 15c143f docs: JS Foundation -> OpenJS Foundation in PR template (#18092) (Nicholas C. Zakas)
  • c4d26fd fix: use-isnan doesn't report on SequenceExpressions (#18059) (StyleShit)
  • 6ea339e docs: add stricter rule test validations to v9 migration guide (#18085) (Milos Djermanovic)
  • ce838ad chore: replace dependency npm-run-all with npm-run-all2 ^5.0.0 (#18045) (renovate[bot])
  • 3c816f1 docs: use relative link from CLI to core concepts (#18083) (Milos Djermanovic)
  • 54df731 chore: update dependency markdownlint-cli to ^0.39.0 (#18084) (renovate[bot])
  • 9458735 docs: fix malformed eslint config comments in rule examples (#18078) (Francesco Trotta)
  • 07a1ada docs: link from --fix CLI doc to the relevant core concept (#18080) (Bryan Mishkin)
  • 8f06a60 chore: update dependency shelljs to ^0.8.5 (#18079) (Francesco Trotta)
  • b844324 docs: Update team responsibilities (#18048) (Nicholas C. Zakas)
  • aadfb60 docs: document languageOptions and other v9 changes for context (#18074) (fnx)
  • 3c4d51d feat!: default for enforceForClassMembers in no-useless-computed-key (#18054) (Francesco Trotta)
  • 47e60f8 feat!: Stricter rule test validations (#17654) (fnx)
  • 1a94589 feat!: no-unused-vars default caughtErrors to 'all' (#18043) (Josh Goldberg ✨)
  • 857e242 docs: tweak explanation for meta.docs rule properties (#18057) (Bryan Mishkin)
  • 10485e8 docs: recommend messageId over message for reporting rule violations (#18050) (Bryan Mishkin)
  • 98b5ab4 docs: Update README (GitHub Actions Bot)
  • 93ffe30 chore: update dependency file-entry-cache to v8 (#17903) (renovate[bot])
  • 505fbf4 docs: update no-restricted-imports rule (#18015) (Tanuj Kanti)
  • 2d11d46 feat: add suggestions to use-isnan in binary expressions (#17996) (StyleShit)
  • c25b4af docs: Update README (GitHub Actions Bot)

v9.0.0-alpha.2 - January 26, 2024

... (truncated)

Commits


Updates eslint-config-prettier from 9.0.0 to 9.1.0

Changelog

Sourced from eslint-config-prettier's changelog.

Version 9.1.0 (2023-12-02)

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.
Commits
  • 40c7f3d eslint-config-prettier v9.1.0
  • 4110dff Merge pull request #271 from prettier/deprecated
  • 6d0bd92 Update tests to handle newly deprecated rules
  • 4c876b9 Move rules deprecated in ESLint 8.53.0 to the deprecated section
  • 24445c0 Use specialRule constant
  • 7827196 Group deprecated and removed rules by version
  • 48f804c Roll back to ESLint 8.52.0 for now
  • 16f03b8 Update Prettier
  • b06d618 Update npm packages
  • 25fc427 turn off unicorn/template-indent (#269)
  • Additional commits viewable in compare view


Updates prettier from 3.0.3 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

3.1.1

🔗 Changelog

3.1.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

// Prettier 3.2.5 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@​Component({ [template]: &lt;h1&gt;{{ hello }}&lt;/h1&gt;, }) export class AppComponent {} </tr></table>

... (truncated)

Commits


Updates prettier-plugin-svelte from 3.0.3 to 3.2.2

Changelog

Sourced from prettier-plugin-svelte's changelog.

3.2.2

  • (fix) handle updated @render tag AST shape

3.2.1

  • (fix) handle updated @render tag AST shape

3.2.0

  • (feat) format JSON script tags
  • (feat) introduce separate entry point using prettier/standalone
  • (fix) don't duplicate comments of nested script/style tags
  • (fix) handle updated Snippet block AST shape

3.1.2

  • (fix) handle > tags in attributes

3.1.1

  • (fix) handle types on each/await contexts

3.1.0

  • (feat) add experimental support for Svelte 5
  • (feat) support #snippet and @render
Commits
  • 601ee41 chore: release 3.2.2
  • c968fef fix: adjust render tag printing for Svelte 5 AST changes
  • 08d7a8b chore: cross-test dirs test.only support
  • 96049c6 fix: handle updated @render tag AST shape
  • c8317eb chore: release 3.2.0
  • d89241e feat: semi-standalone browser build (#430)
  • 288d915 fix: handle updated Snippet block AST shape
  • 99c885e chore: remove Buffer usage for browser environments (#423)
  • cc856a0 fix: don't duplicate comments of nested script/style tags (#425)
  • 1884f22 feat: format JSON script tags (#424)
  • Additional commits viewable in compare view


Updates svelte-check from 3.5.2 to 3.6.6

Release notes

Sourced from svelte-check's releases.

svelte-check-3.6.6

  • fix: adjust render tag for latest AST version

svelte-check-3.6.5

  • fix: adjust $props() comment type logic (#2294)
  • fix: use Svelte 4 compiler from user when available
  • fix: adjust snippet helper type to new snippet API
  • fix: also take type argument into account when analyzing $props()
  • fix: don't add form type to zero types when property is not typed out

svelte-check-3.6.4

  • fix: take type annotations into account when transforming one-way bindings (#2283)

Svelte 5:

  • fix: deduplicate generate props/events/slot types correctly (#2269)
  • fix: adjust snippet code generation for new AST shape (#2282)
  • fix: ensure correct types for media bindings (#2284)
  • fix: implict children tweaks (#2285) (#2263)

svelte-check-3.6.3

  • fix: various snippet improvements
  • fix: don't remove non-null-assertion operator (#2248)
  • fix: prevent crash in moduleResolution Node16+ (#2230)
  • fix: correct declareMap reference line number (#2250)
  • feat: zero effort typings for reroute (#2252)

svelte-check-3.6.2

  • feat: add best-effort fallback typings to $props() rune
  • fix: don't add generic type when snippet has no params
  • fix: pass children to zero types Svelte 5 (#2212)
  • fix: add possibility to pass in version to svelte2tsx to differentiate transpiler targets
  • fix: add implicit children prop in Svelte 5 mode (#2211)
  • fix: hide deprecation warnings in generated code Svelte 5 (svelte#9586)
  • chore: bump deps (#2214)
  • perf: faster checks for certain characters (#2179)

svelte-check-3.6.1

  • fix: support SvelteKit zero types with $props rune
  • fix: use Snippet type and ensure @render tag only uses snippet functions
  • fix: account for > in attribute strings (#2204)
  • fix: handle contexts in each/await
  • fix: don't lowercase custom element attributes (#2190)
  • fix: make root snippets available in instance script (#2201)

svelte-check-3.6.0

  • feat: add experimental compatibility for Svelte 5
  • fix: enhance numberOnlyAttributes list
Commits