beercss 3.12.8 → 3.12.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -9
- package/dist/cdn/beer.css +16 -12
- package/dist/cdn/beer.custom-element.js +2 -2
- package/dist/cdn/beer.custom-element.min.js +1 -1
- package/dist/cdn/beer.min.css +1 -1
- package/dist/cdn/beer.scoped.css +16 -12
- package/dist/cdn/beer.scoped.min.css +1 -1
- package/package.json +1 -1
- package/src/cdn/customElement.js +2 -2
- package/src/cdn/elements/bars.css +1 -1
- package/src/cdn/elements/shapes.css +1 -1
- package/src/cdn/helpers/forms.css +2 -1
- package/src/cdn/helpers/margins.css +4 -2
- package/src/cdn/helpers/paddings.css +3 -2
- package/src/cdn/helpers/sizes.css +1 -1
- package/src/cdn/settings/fonts.css +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<p align="center">
|
|
5
5
|
<a href="https://github.com/beercss/beercss/blob/main/LICENSE"><img src="https://img.shields.io/github/license/beercss/beercss" alt="License"></a>
|
|
6
6
|
<a href="https://github.com/beercss/beercss"><img src="https://img.shields.io/jsdelivr/npm/hy/beercss" alt="Downloads"></a>
|
|
7
|
-
<a href="https://bundlephobia.com/package/beercss@3.12.
|
|
7
|
+
<a href="https://bundlephobia.com/package/beercss@3.12.10" target="_blank"><img src="https://img.shields.io/bundlephobia/minzip/beercss@3.12.10" alt="minzipped size"></a>
|
|
8
8
|
<a href="https://www.npmjs.com/package/beercss"><img src="https://img.shields.io/npm/v/beercss" alt="Version"></a>
|
|
9
9
|
<a href="https://github.com/beercss/beercss/pulls"><img src="https://img.shields.io/github/issues-pr/beercss/beercss" alt="Pull Request"></a>
|
|
10
10
|
<a href="https://github.com/beercss/beercss/issues"><img src="https://img.shields.io/github/issues/beercss/beercss" alt="Issues"></a>
|
|
@@ -132,8 +132,8 @@ This project was guided by the **"Germany Beer Purity Law"** or **"Reinheitsgebo
|
|
|
132
132
|
### DEFAULT VERSION
|
|
133
133
|
|
|
134
134
|
```html
|
|
135
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
136
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
135
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.min.css" rel="stylesheet" />
|
|
136
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.min.js"></script>
|
|
137
137
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
138
138
|
```
|
|
139
139
|
|
|
@@ -151,8 +151,8 @@ import "material-dynamic-colors";
|
|
|
151
151
|
Applied on child elements of `<* class="beer">...</*>`.
|
|
152
152
|
|
|
153
153
|
```html
|
|
154
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
155
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
154
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.scoped.min.css" rel="stylesheet" />
|
|
155
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.min.js"></script>
|
|
156
156
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
157
157
|
```
|
|
158
158
|
|
|
@@ -170,7 +170,7 @@ import "material-dynamic-colors";
|
|
|
170
170
|
Applied on child elements of `<beer-css>...</beer-css>`.
|
|
171
171
|
|
|
172
172
|
```html
|
|
173
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
173
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.custom-element.min.js"></script>
|
|
174
174
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
175
175
|
```
|
|
176
176
|
|
|
@@ -186,7 +186,7 @@ import "material-dynamic-colors";
|
|
|
186
186
|
|
|
187
187
|
### LOCAL CDN VERSION
|
|
188
188
|
|
|
189
|
-
Download all files from CDN https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
189
|
+
Download all files from CDN https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/ and https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/. Now put the files inside a new folder in your project (like `/beercss` for example):
|
|
190
190
|
|
|
191
191
|
```html
|
|
192
192
|
<link href="/beercss/beer.min.css" rel="stylesheet" />
|
|
@@ -206,8 +206,8 @@ You can use this html to setup your project. See on [Codepen](https://codepen.io
|
|
|
206
206
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
207
207
|
<meta name="google" content="notranslate">
|
|
208
208
|
<title>Hello world</title>
|
|
209
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
210
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
209
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.min.css" rel="stylesheet">
|
|
210
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.min.js"></script>
|
|
211
211
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
212
212
|
</head>
|
|
213
213
|
<body class="dark">
|
package/dist/cdn/beer.css
CHANGED
|
@@ -99,7 +99,7 @@ body.dark {
|
|
|
99
99
|
font-style: normal;
|
|
100
100
|
font-weight: 400;
|
|
101
101
|
font-display: block;
|
|
102
|
-
src: url(material-symbols-outlined.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
102
|
+
src: url(material-symbols-outlined.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/material-symbols-outlined.woff2) format("woff2");
|
|
103
103
|
}
|
|
104
104
|
/* rounded icons */
|
|
105
105
|
@font-face {
|
|
@@ -107,7 +107,7 @@ body.dark {
|
|
|
107
107
|
font-style: normal;
|
|
108
108
|
font-weight: 400;
|
|
109
109
|
font-display: block;
|
|
110
|
-
src: url(material-symbols-rounded.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
110
|
+
src: url(material-symbols-rounded.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/material-symbols-rounded.woff2) format("woff2");
|
|
111
111
|
}
|
|
112
112
|
/* sharp icons */
|
|
113
113
|
@font-face {
|
|
@@ -115,7 +115,7 @@ body.dark {
|
|
|
115
115
|
font-style: normal;
|
|
116
116
|
font-weight: 400;
|
|
117
117
|
font-display: block;
|
|
118
|
-
src: url(material-symbols-sharp.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
118
|
+
src: url(material-symbols-sharp.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/material-symbols-sharp.woff2) format("woff2");
|
|
119
119
|
}
|
|
120
120
|
/* subset of only required icons */
|
|
121
121
|
@font-face {
|
|
@@ -123,7 +123,7 @@ body.dark {
|
|
|
123
123
|
font-style: normal;
|
|
124
124
|
font-weight: 400;
|
|
125
125
|
font-display: block;
|
|
126
|
-
src: url(material-symbols-subset.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
126
|
+
src: url(material-symbols-subset.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/material-symbols-subset.woff2) format("woff2");
|
|
127
127
|
}
|
|
128
128
|
* {
|
|
129
129
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -1131,7 +1131,8 @@ body :is(:hover,:focus)::-webkit-scrollbar-thumb {
|
|
|
1131
1131
|
.large-elevate {
|
|
1132
1132
|
box-shadow: var(--elevate3) !important;
|
|
1133
1133
|
}
|
|
1134
|
-
|
|
1134
|
+
.round,
|
|
1135
|
+
[class*=-round] {
|
|
1135
1136
|
--_round: 2rem;
|
|
1136
1137
|
border-radius: var(--_round) !important;
|
|
1137
1138
|
}
|
|
@@ -1191,10 +1192,12 @@ body :is(:hover,:focus)::-webkit-scrollbar-thumb {
|
|
|
1191
1192
|
.border:not(.extend, .circle, .square, .badge) {
|
|
1192
1193
|
box-sizing: content-box;
|
|
1193
1194
|
}
|
|
1194
|
-
|
|
1195
|
+
.margin,
|
|
1196
|
+
[class*=-margin]:not(.left-margin, .right-margin, .top-margin, .bottom-margin, .horizontal-margin, .vertical-margin) {
|
|
1195
1197
|
margin: var(--_margin) !important;
|
|
1196
1198
|
}
|
|
1197
|
-
|
|
1199
|
+
.margin,
|
|
1200
|
+
[class*=-margin] {
|
|
1198
1201
|
--_margin: 1rem;
|
|
1199
1202
|
}
|
|
1200
1203
|
.no-margin {
|
|
@@ -1243,10 +1246,11 @@ body :is(:hover,:focus)::-webkit-scrollbar-thumb {
|
|
|
1243
1246
|
.large-opacity {
|
|
1244
1247
|
opacity: 0.25 !important;
|
|
1245
1248
|
}
|
|
1246
|
-
|
|
1249
|
+
.padding,
|
|
1250
|
+
[class*=-padding]:not(.left-padding, .right-padding, .top-padding, .bottom-padding, .horizontal-padding, .vertical-padding) {
|
|
1247
1251
|
padding: var(--_padding) !important;
|
|
1248
1252
|
}
|
|
1249
|
-
[class
|
|
1253
|
+
[class*=-padding] {
|
|
1250
1254
|
--_padding: 1rem;
|
|
1251
1255
|
}
|
|
1252
1256
|
.no-padding {
|
|
@@ -1366,7 +1370,7 @@ body :is(:hover,:focus)::-webkit-scrollbar-thumb {
|
|
|
1366
1370
|
.top-shadow {
|
|
1367
1371
|
background-image: linear-gradient(to bottom, black, transparent) !important;
|
|
1368
1372
|
}
|
|
1369
|
-
[class
|
|
1373
|
+
[class*=-width] {
|
|
1370
1374
|
max-inline-size: 100%;
|
|
1371
1375
|
}
|
|
1372
1376
|
.auto-width {
|
|
@@ -1773,7 +1777,7 @@ dialog > :is(header, footer).fixed {
|
|
|
1773
1777
|
background-color: inherit;
|
|
1774
1778
|
}
|
|
1775
1779
|
:is(main, header, footer, section).responsive {
|
|
1776
|
-
max-inline-size: 75rem;
|
|
1780
|
+
max-inline-size: min(100vw, 75rem);
|
|
1777
1781
|
margin: 0 auto;
|
|
1778
1782
|
}
|
|
1779
1783
|
:is(main, header, footer, section).responsive.max {
|
|
@@ -3936,7 +3940,7 @@ progress.max + * {
|
|
|
3936
3940
|
.shape.slow-rotate {
|
|
3937
3941
|
animation: linear to-shape-rotate infinite 24s;
|
|
3938
3942
|
}
|
|
3939
|
-
.shape.slow-rotate {
|
|
3943
|
+
.shape.slow-rotate > * {
|
|
3940
3944
|
animation: linear to-shape-rotate infinite 24s reverse;
|
|
3941
3945
|
}
|
|
3942
3946
|
:is(button, .button, .chip):has(> .shape) > .responsive {
|
|
@@ -12,7 +12,7 @@ class BeerCssCustomElement extends HTMLElement {
|
|
|
12
12
|
BeerCssCustomElement.isJsLoaded = true;
|
|
13
13
|
|
|
14
14
|
if (window.ui) return;
|
|
15
|
-
return await import("https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
15
|
+
return await import("https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.min.js");
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
async addCss() {
|
|
@@ -23,7 +23,7 @@ class BeerCssCustomElement extends HTMLElement {
|
|
|
23
23
|
|
|
24
24
|
const head = document.querySelector("head");
|
|
25
25
|
const element = document.createElement("link");
|
|
26
|
-
element.setAttribute("href", "https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
26
|
+
element.setAttribute("href", "https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.scoped.min.css");
|
|
27
27
|
element.setAttribute("rel", "stylesheet");
|
|
28
28
|
head.appendChild(element);
|
|
29
29
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
class BeerCssCustomElement extends HTMLElement {static isCssLoaded = false;static isJsLoaded = false;constructor() {super();this.run();}async addJs() {if (BeerCssCustomElement.isJsLoaded) return;BeerCssCustomElement.isJsLoaded = true;if (window.ui) return;return await import("https://cdn.jsdelivr.net/npm/beercss@3.12.
|
|
1
|
+
class BeerCssCustomElement extends HTMLElement {static isCssLoaded = false;static isJsLoaded = false;constructor() {super();this.run();}async addJs() {if (BeerCssCustomElement.isJsLoaded) return;BeerCssCustomElement.isJsLoaded = true;if (window.ui) return;return await import("https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.min.js");}async addCss() {if (BeerCssCustomElement.isCssLoaded) return;BeerCssCustomElement.isCssLoaded = true;const isScoped = !!getComputedStyle(document.documentElement).getPropertyValue("--scoped");if (isScoped) return;const head = document.querySelector("head");const element = document.createElement("link");element.setAttribute("href", "https://cdn.jsdelivr.net/npm/beercss@3.12.10/dist/cdn/beer.scoped.min.css");element.setAttribute("rel", "stylesheet");head.appendChild(element);}async run() {this.classList.add("beer");await Promise.all([this.addJs(), this.addCss()]);ui();}}customElements.define("beer-css", BeerCssCustomElement);export default BeerCssCustomElement;
|