svelte-tiny-virtual-list icon indicating copy to clipboard operation
svelte-tiny-virtual-list copied to clipboard

chore(deps): update dependency beercss to v3.11.20

Open renovate[bot] opened this issue 1 year ago • 2 comments

This PR contains the following updates:

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

Release Notes

beercss/beercss (beercss)

v3.11.20

Compare Source

CHANGELOG 3.11.20
minzipped size
🚀 Added
🩹 Fixed
⚠️ Breaking changes
  • Navigation drawer was deprecated on "M3 Expressive" use list instead
  • Refactored main layout to use flexbox grid

Navigation drawer was deprecated on "M3 expressive" use list instead

Before:

<nav class="drawer">
  <a>
    <i>search</i>
    <div>Search</div>
  </a>
</nav>

<nav class="drawer">
  <a href="/path">
    <i>search</i>
    <div>Search</div>
  </a>
</nav>

After:

<ul class="list">
  <li class="wave round">
    <i>search</i>
    <div>Search</div>
  </li>
</ul>

<ul class="list">
  <li class="wave round">
    <a href="/path">
      <i>search</i>
      <div>Search</div>
    </a>
  </li>
</ul>
Added navigation rail/bar from "M3 expressive"

Navigation rail (normal/expanded)

<nav class="left">...</nav>
<nav class="left max">...</nav>

Flexible navigation bar (normal/expanded)

<nav class="bottom">...</nav>
<nav class="bottom max">...</nav>
Refactored main layout to use flexbox grid

Now we use the code below. This is how the majority M3 projects looks like. Only the <main> element is required. Old projects that uses a nav.top/nav.bottom and nav.left/nav.right at same time, could be impacted.

<body>
  <nav class="left">LEFT</nav>
  <nav class="right">RIGHT</nav>
  <nav class="top">TOP</nav>
  <nav class="bottom">BOTTOM</nav>
  <header>HEADER</header>
  <main>MAIN</main>
  <footer>FOOTER</footer>
</body>

image

Added shape element from "M3 expressive" (all 35 shapes)
<div class="shape loading-indicator"></div>

<div class="shape loading-indicator">
  <img class="responsive" src="/favicon.png">
</div>

<div class="small-witdh small-height">
  <div class="shape loading-indicator max"></div>
</div>

image

v3.11.19

Compare Source

v3.11.18

Compare Source

v3.11.17

Compare Source

v3.11.16

Compare Source

v3.11.15

Compare Source

v3.11.14

Compare Source

v3.11.13

Compare Source

v3.11.12

Compare Source

v3.11.11

Compare Source

CHANGELOG 3.11.11
minzipped size
🚀 Added
  • Updated sliders from M3 expressive (new sizes, value indicator and inset icon)
  • Updated button groups (added connected, standard and split helpers)
🩹 Fixed
⚠️ Breaking changes
  • None

<nav class="group">
  <button class="left-round">Button</button>
  <button class="no-round">Button</button>
  <button class="right-round">Button</button>
</nav>
<nav class="group connected">
  <button class="left-round">Button</button>
  <button class="no-round">Button</button>
  <button class="right-round">Button</button>
</nav>
<nav class="group split">
  <button class="left-round">Button</button>
  <button class="right-round">Button</button>
</nav>

v3.11.10

Compare Source

v3.11.9

Compare Source

v3.11.8

Compare Source

v3.11.7

Compare Source

v3.11.6

Compare Source

v3.11.5

Compare Source

v3.11.4

Compare Source

CHANGELOG 3.11.4
minzipped size
🚀 Added
  • Updated borders and backgrounds of cards like latest M3 specs
  • Updated paddings of buttons and chips like latest M3 specs
🩹 Fixed
  • It was showing element on small devices when used <nav class="left drawer min l">...</nav> https://github.com/beercss/beercss/issues/453
  • Removed default shadows on button, use elevate, small-elevate, medium-elevate or large-elevate helper
⚠️ Breaking changes
  • None

v3.11.3

Compare Source

v3.11.2

Compare Source

v3.11.1

Compare Source

CHANGELOG 3.11.1
minzipped size
🚀 Added
  • Added "M3 expressive" buttons
  • Added "M3 expressive" button groups
  • Added "M3 expressive" FAB menu
  • Added "M3 expressive" split buttons
  • Added "M3 expressive" toolbars
🩹 Fixed
⚠️ Breaking changes
  • Segmented button was deprecated, use button groups from "M3 expressive"

More about 'M3 expressive"

  • https://m3.material.io/blog/building-with-m3-expressive
  • https://www.youtube.com/watch?v=n17dnMChX14

v3.10.8

Compare Source

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

v3.10.7

Compare Source

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

v3.10.6

Compare Source

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 - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Europe/Vienna, Automerge - Between 12:00 AM and 03:59 AM ( * 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[bot] avatar Oct 21 '24 00:10 renovate[bot]

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

Latest commit: 56c0d4e
Status: ✅  Deploy successful!
Preview URL: https://4b92fe07.svelte-tiny-virtual-list.pages.dev
Branch Preview URL: https://renovate-beercss-3-x.svelte-tiny-virtual-list.pages.dev

View logs

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