Skip to content

chore(deps): update dependency beercss to v3.10.5 #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
beercss (source) 3.6.13 -> 3.10.5 age adoption passing confidence

Release Notes

beercss/beercss (beercss)

v3.10.5

Compare Source

CHANGELOG 3.10.5
minzipped size
🚀 Added
🩹 Fixed
⚠️ Breaking changes
  • None

SCOPED VERSION

Applied on child elements of <* class="beer">...</*>.

<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn/beer.scoped.min.css" rel="stylesheet" />
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn/beer.min.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn/material-dynamic-colors.min.js"></script>
npm i beercss
npm i material-dynamic-colors
import "beercss/scoped";
import "material-dynamic-colors";
CUSTOM ELEMENT VERSION

Applied on child elements of <beer-css>...</beer-css>.

<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn/beer.custom-element.min.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn/material-dynamic-colors.min.js"></script>
npm i beercss
npm i material-dynamic-colors
import "beercss/custom-element";
import "material-dynamic-colors";

v3.10.4

Compare Source

v3.10.3

Compare Source

v3.10.2

Compare Source

v3.10.1

Compare Source

v3.10.0

Compare Source

v3.9.7

Compare Source

CHANGELOG 3.9.7
minzipped size
🚀 Added
  • Reducing 2kb on final bundle (from 16kb to 14kb)
🩹 Fixed
  • None
⚠️ Breaking changes
  • None

v3.9.6

Compare Source

CHANGELOG 3.9.6
minzipped size
🚀 Added
🩹 Fixed
  • None
⚠️ Breaking changes
  • None

Added top, bottom helpers to menu
<menu class="top">...</menu>
<menu class="top no-wrap">...</menu>
<menu class="top left no-wrap">...</menu>
<menu class="top right no-wrap">...</menu>

image
image

v3.9.5

Compare Source

CHANGELOG 3.9.5
minzipped size
🚀 Added
🩹 Fixed
⚠️ Breaking changes
Added support to Popover API on dialog and snackbar elements
<button popovertarget="dialog">Button</button>

<dialog id="dialog" popover>
  <h5>Title</h5>
  <nav>
    <button popovertarget="dialog">Button</button>
  </nav>
</dialog>
<button popovertarget="snackbar">Button</button>

<div id="snackbar" class="snackbar" popover>
  <span>Some text</span>
  <button popovertarget="snackbar">Button</button>
</div>
Added list element (supporting nested and expansion lists too)
<ul class="list">
  <li>Item</li>
  <li>Item</li>
</ul>
<ul class="list">
  <li>
    <a href="#">Item</a>
  </li>
  <li>
    <a href="#">Item</a>
  </li>
</ul>
Added small, medium, large, extra helpers to checkbox and radio elements
<label class="checkbox small">
  <input type="checkbox" />
  <span></span>
</label>
<label class="radio large">
  <input type="radio" />
  <span></span>
</label>
Removed invalid HTML markup on menu element
// before
<menu>
  <a>Item</a>
  <a>Item</a>
</menu>

// after
<menu>
  <li>Item</li>
  <li>Item</li>
</menu>
// before
<menu>
  <a href="#">Item</a>
  <a href="#">Item</a>
</menu>

// after
<menu>
  <li>
    <a href="#">Item</a>
  </li>
  <li>
    <a href="#">Item</a>
  </li>
</menu>
// before
<menu>
  <a class="row">
    <i>home</i>
    <span>Home</span>
  </a>
  <a class="row">
    <i>search</i>
    <span>Search</span>
  </a>
</menu>

// after
<menu>
  <li>
    <i>home</i>
    <span>Home</span>
  </li>
  <li>
    <i>search</i>
    <span>Search</span>
  </li>
</menu>
// before
<menu>
  <a>Item</a>
  <a>Item</a>
  <menu>
    <a>Item</a>
    <a>Item</a>
  </menu>
</menu>

// after
<menu>
  <li>Item</li>
  <li>Item</li>
  <li>
    <menu>
      <li>Item</li>
      <li>Item</li>
    </menu>
  </li>
</menu>
// before
<menu class="min">
  <div class="field large prefix no-margin">
    <i class="front">arrow_back</i>
    <input>
  </div>
  <a class="row">
    <i>history</i>
    <div>Item 1</div>
  </a>
</menu>

// after
<menu class="min">
  <li>
    <div class="field large prefix">
      <i class="front">arrow_back</i>
      <input>
    </div>
  </li>
  <li>
    <i>history</i>
    <div>Item 1</div>
  </li>
</menu>

image
image
image

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

v3.8.0

Compare Source

CHANGELOG 3.8.0
minzipped size
🚀 Added
🩹 Fixed
Added the ripple effect helpers ripple, slow-ripple, fast-ripple (an optional js solution, the wave effect still is the default)

image

<button class="ripple">Ripple</button>
<button class="slow-ripple">Slow ripple</button>
<button class="fast-ripple">Fast ripple</button>

v3.7.14

Compare Source

CHANGELOG 3.7.14
minzipped size
🚀 Added
🩹 Fixed
⚠️ Breaking changes
  • If you don't set light or dark on body, the mode will be set according to device color scheme
If you don't set light or dark on body, the mode will be set according to device color scheme
// before, it was light
<body>

// after, it will add light/dark according to device color scheme

<body class="light|dark">

v3.7.13

Compare Source

v3.7.12

Compare Source

v3.7.11

Compare Source

v3.7.10

Compare Source

v3.7.9

Compare Source

v3.7.8

Compare Source

v3.7.7

Compare Source

v3.7.6

Compare Source

v3.7.5

Compare Source

v3.7.4

Compare Source

v3.7.3

Compare Source

v3.7.2

Compare Source

v3.7.1

Compare Source

v3.7.0

Compare Source


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" in timezone Europe/Vienna, Automerge - "* 0-3 * * *" in timezone Europe/Vienna.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from jonasgeiler October 21, 2024 00:09
Copy link

cloudflare-workers-and-pages bot commented Oct 21, 2024

Deploying svelte-tiny-virtual-list with  Cloudflare Pages  Cloudflare Pages

Latest commit: 335bb0e
Status: ✅  Deploy successful!
Preview URL: https://13f50356.svelte-tiny-virtual-list.pages.dev
Branch Preview URL: https://renovate-beercss-3-x.svelte-tiny-virtual-list.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 0206ee3 to 4ab7ad4 Compare November 7, 2024 11:58
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.7.10 chore(deps): update dependency beercss to v3.7.11 Nov 7, 2024
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 4ab7ad4 to a70188e Compare November 7, 2024 13:31
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.7.11 chore(deps): update dependency beercss to v3.7.12 Nov 7, 2024
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from a70188e to 3f14b51 Compare December 8, 2024 03:39
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.7.12 chore(deps): update dependency beercss to v3.7.13 Dec 8, 2024
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 3f14b51 to a2e2a37 Compare December 8, 2024 14:10
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.7.13 chore(deps): update dependency beercss to v3.7.14 Dec 8, 2024
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from a2e2a37 to 6a20c15 Compare December 19, 2024 21:28
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.7.14 chore(deps): update dependency beercss to v3.8.0 Dec 19, 2024
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 6a20c15 to b9a9588 Compare February 14, 2025 23:13
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.8.0 chore(deps): update dependency beercss to v3.9.0 Feb 14, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from b9a9588 to 88f46f0 Compare February 15, 2025 15:06
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.0 chore(deps): update dependency beercss to v3.9.1 Feb 15, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 88f46f0 to a2857ba Compare February 16, 2025 17:31
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.1 chore(deps): update dependency beercss to v3.9.2 Feb 16, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from a2857ba to a718316 Compare February 16, 2025 22:03
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.2 chore(deps): update dependency beercss to v3.9.3 Feb 16, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from a718316 to 96e5e80 Compare February 21, 2025 19:53
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.3 chore(deps): update dependency beercss to v3.9.4 Feb 21, 2025
Copy link

Deploying svelte-tiny-virtual-list with  Cloudflare Pages  Cloudflare Pages

Latest commit: 96e5e80
Status: ✅  Deploy successful!
Preview URL: https://a4ba8abd.svelte-tiny-virtual-list.pages.dev
Branch Preview URL: https://renovate-beercss-3-x.svelte-tiny-virtual-list.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 96e5e80 to 4dd4861 Compare February 28, 2025 19:44
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.4 chore(deps): update dependency beercss to v3.9.5 Feb 28, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 4dd4861 to 100e2d4 Compare March 3, 2025 11:33
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.5 chore(deps): update dependency beercss to v3.9.6 Mar 3, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 100e2d4 to 12686f2 Compare March 6, 2025 17:55
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.6 chore(deps): update dependency beercss to v3.9.7 Mar 6, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 12686f2 to 289c414 Compare April 13, 2025 03:07
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.9.7 chore(deps): update dependency beercss to v3.10.2 Apr 13, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 289c414 to cdfea51 Compare April 13, 2025 11:09
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.10.2 chore(deps): update dependency beercss to v3.10.3 Apr 13, 2025
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from cdfea51 to 0b6a915 Compare April 13, 2025 14:03
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.10.3 chore(deps): update dependency beercss to v3.10.4 Apr 13, 2025
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/beercss-3.x branch from 0b6a915 to 335bb0e Compare April 14, 2025 17:05
@renovate renovate bot changed the title chore(deps): update dependency beercss to v3.10.4 chore(deps): update dependency beercss to v3.10.5 Apr 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants