beercss 3.11.3 → 3.11.5
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 +101 -53
- 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 +101 -53
- 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/buttons.css +0 -4
- package/src/cdn/elements/navigations.css +54 -0
- package/src/cdn/elements/sliders.css +57 -16
- package/src/cdn/helpers/theme.css +0 -36
- 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.11.
|
|
7
|
+
<a href="https://bundlephobia.com/package/beercss@3.11.5" target="_blank"><img src="https://img.shields.io/bundlephobia/minzip/beercss@3.11.5" 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>
|
|
@@ -36,7 +36,7 @@ Beer CSS is an MIT-licensed open source project with its ongoing development mad
|
|
|
36
36
|
# Why?
|
|
37
37
|
|
|
38
38
|
- 🥇 The first CSS framework based on Material Design 3
|
|
39
|
-
- 👉 Latest "M3 Expressive" already
|
|
39
|
+
- 👉 Latest "M3 Expressive" already.
|
|
40
40
|
- ⬇️ 10x smaller than others CSS frameworks based on Material Design.
|
|
41
41
|
- 🧙♂️ Translates Material Design to HTML semantic standard.
|
|
42
42
|
- 🤓 Ready to use with any JS framework.
|
|
@@ -131,8 +131,8 @@ This project was guided by the **"Germany Beer Purity Law"** or **"Reinheitsgebo
|
|
|
131
131
|
### DEFAULT VERSION
|
|
132
132
|
|
|
133
133
|
```html
|
|
134
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
135
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
134
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/beer.min.css" rel="stylesheet" />
|
|
135
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/beer.min.js"></script>
|
|
136
136
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
137
137
|
```
|
|
138
138
|
|
|
@@ -150,8 +150,8 @@ import "material-dynamic-colors";
|
|
|
150
150
|
Applied on child elements of `<* class="beer">...</*>`.
|
|
151
151
|
|
|
152
152
|
```html
|
|
153
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
154
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
153
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/beer.scoped.min.css" rel="stylesheet" />
|
|
154
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/beer.min.js"></script>
|
|
155
155
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
156
156
|
```
|
|
157
157
|
|
|
@@ -169,7 +169,7 @@ import "material-dynamic-colors";
|
|
|
169
169
|
Applied on child elements of `<beer-css>...</beer-css>`.
|
|
170
170
|
|
|
171
171
|
```html
|
|
172
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
172
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/beer.custom-element.min.js"></script>
|
|
173
173
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
174
174
|
```
|
|
175
175
|
|
|
@@ -195,8 +195,8 @@ You can use this html to setup your project. See on [Codepen](https://codepen.io
|
|
|
195
195
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
196
196
|
<meta name="google" content="notranslate">
|
|
197
197
|
<title>Hello world</title>
|
|
198
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
199
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
198
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/beer.min.css" rel="stylesheet">
|
|
199
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/beer.min.js"></script>
|
|
200
200
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@1.1.2/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
201
201
|
</head>
|
|
202
202
|
<body class="dark">
|
package/dist/cdn/beer.css
CHANGED
|
@@ -101,7 +101,7 @@ body.dark {
|
|
|
101
101
|
font-display: block;
|
|
102
102
|
src:
|
|
103
103
|
url("material-symbols-outlined.woff2") format("woff2"),
|
|
104
|
-
url("https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
104
|
+
url("https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/material-symbols-outlined.woff2") format("woff2");
|
|
105
105
|
}
|
|
106
106
|
/* rounded icons */
|
|
107
107
|
@font-face {
|
|
@@ -111,7 +111,7 @@ body.dark {
|
|
|
111
111
|
font-display: block;
|
|
112
112
|
src:
|
|
113
113
|
url("material-symbols-rounded.woff2") format("woff2"),
|
|
114
|
-
url("https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
114
|
+
url("https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/material-symbols-rounded.woff2") format("woff2");
|
|
115
115
|
}
|
|
116
116
|
/* sharp icons */
|
|
117
117
|
@font-face {
|
|
@@ -121,7 +121,7 @@ body.dark {
|
|
|
121
121
|
font-display: block;
|
|
122
122
|
src:
|
|
123
123
|
url("material-symbols-sharp.woff2") format("woff2"),
|
|
124
|
-
url("https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
124
|
+
url("https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/material-symbols-sharp.woff2") format("woff2");
|
|
125
125
|
}
|
|
126
126
|
/* subset of only required icons */
|
|
127
127
|
@font-face {
|
|
@@ -131,7 +131,7 @@ body.dark {
|
|
|
131
131
|
font-display: block;
|
|
132
132
|
src:
|
|
133
133
|
url("material-symbols-subset.woff2") format("woff2"),
|
|
134
|
-
url("https://cdn.jsdelivr.net/npm/beercss@3.11.
|
|
134
|
+
url("https://cdn.jsdelivr.net/npm/beercss@3.11.5/dist/cdn/material-symbols-subset.woff2") format("woff2");
|
|
135
135
|
}
|
|
136
136
|
* {
|
|
137
137
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -347,36 +347,6 @@ body :is(:hover,:focus)::-webkit-scrollbar-thumb {
|
|
|
347
347
|
background-color: var(--surface-variant) !important;
|
|
348
348
|
color: var(--on-surface-variant) !important;
|
|
349
349
|
}
|
|
350
|
-
.primary-container > .active,
|
|
351
|
-
.primary-container.active {
|
|
352
|
-
background-color: var(--primary) !important;
|
|
353
|
-
color: var(--on-primary) !important;
|
|
354
|
-
}
|
|
355
|
-
.secondary-container > .active,
|
|
356
|
-
.secondary-container.active {
|
|
357
|
-
background-color: var(--secondary) !important;
|
|
358
|
-
color: var(--on-secondary) !important;
|
|
359
|
-
}
|
|
360
|
-
.tertiary-container > .active,
|
|
361
|
-
.tertiary-container.active {
|
|
362
|
-
background-color: var(--tertiary) !important;
|
|
363
|
-
color: var(--on-tertiary) !important;
|
|
364
|
-
}
|
|
365
|
-
.primary > .active,
|
|
366
|
-
.primary.active {
|
|
367
|
-
background-color: var(--primary-container) !important;
|
|
368
|
-
color: var(--on-primary-container) !important;
|
|
369
|
-
}
|
|
370
|
-
.secondary > .active,
|
|
371
|
-
.secondary.active {
|
|
372
|
-
background-color: var(--secondary-container) !important;
|
|
373
|
-
color: var(--on-secondary-container) !important;
|
|
374
|
-
}
|
|
375
|
-
.tertiary > .active,
|
|
376
|
-
.tertiary.active {
|
|
377
|
-
background-color: var(--tertiary-container) !important;
|
|
378
|
-
color: var(--on-tertiary-container) !important;
|
|
379
|
-
}
|
|
380
350
|
.middle-align {
|
|
381
351
|
display: flex;
|
|
382
352
|
align-items: center !important;
|
|
@@ -1846,9 +1816,6 @@ button {
|
|
|
1846
1816
|
border-color: var(--outline-variant);
|
|
1847
1817
|
color: var(--primary);
|
|
1848
1818
|
}
|
|
1849
|
-
:is(button, .button):not(.border, .chip):hover {
|
|
1850
|
-
box-shadow: var(--elevate1);
|
|
1851
|
-
}
|
|
1852
1819
|
.extend > span {
|
|
1853
1820
|
display: none;
|
|
1854
1821
|
}
|
|
@@ -3426,6 +3393,10 @@ nav:is(.left, .right, .top, .bottom):not(.drawer) > :is(ol, ul) > li > a:not(.bu
|
|
|
3426
3393
|
padding: 0.25rem 1rem;
|
|
3427
3394
|
font-variation-settings: "FILL" 1;
|
|
3428
3395
|
}
|
|
3396
|
+
nav:is(.left, .right, .top, .bottom):not(.drawer) > a:not(.button, .chip).active {
|
|
3397
|
+
background: none !important;
|
|
3398
|
+
color: currentColor !important;
|
|
3399
|
+
}
|
|
3429
3400
|
:is(nav, .row):is(.left-align, .top-align, .vertical) {
|
|
3430
3401
|
justify-content: flex-start;
|
|
3431
3402
|
}
|
|
@@ -3535,6 +3506,7 @@ nav.toolbar.max {
|
|
|
3535
3506
|
}
|
|
3536
3507
|
nav.group {
|
|
3537
3508
|
gap: 0.125rem;
|
|
3509
|
+
background: none !important;
|
|
3538
3510
|
}
|
|
3539
3511
|
nav.group > :is(.button, button):not(.chip, .fill, .border).active {
|
|
3540
3512
|
background-color: var(--primary);
|
|
@@ -3554,6 +3526,48 @@ nav.group > :is(.button, button):not(.chip).active {
|
|
|
3554
3526
|
outline: 0.125rem solid var(--primary);
|
|
3555
3527
|
outline-offset: -0.125rem;
|
|
3556
3528
|
}
|
|
3529
|
+
nav.primary > :is(a, button, .button),
|
|
3530
|
+
nav.primary-container > a:is(:hover, :focus, .active) > i,
|
|
3531
|
+
nav.primary-container > :is(a, button, .button).active,
|
|
3532
|
+
:is(a, button, .button):not(.extend).primary-container.active {
|
|
3533
|
+
background-color: var(--primary) !important;
|
|
3534
|
+
color: var(--on-primary) !important;
|
|
3535
|
+
}
|
|
3536
|
+
nav.primary-container > :is(a, button, .button),
|
|
3537
|
+
nav.primary > a:is(:hover, :focus, .active) > i,
|
|
3538
|
+
nav.primary > :is(a, button, .button).active,
|
|
3539
|
+
:is(a, button, .button):not(.extend).primary.active {
|
|
3540
|
+
background-color: var(--primary-container) !important;
|
|
3541
|
+
color: var(--on-primary-container) !important;
|
|
3542
|
+
}
|
|
3543
|
+
nav.secondary > :is(a, button, .button),
|
|
3544
|
+
nav.secondary-container > a:is(:hover, :focus, .active) > i,
|
|
3545
|
+
nav.secondary-container > :is(a, button, .button).active,
|
|
3546
|
+
:is(a, button, .button):not(.extend).secondary-container.active {
|
|
3547
|
+
background-color: var(--secondary) !important;
|
|
3548
|
+
color: var(--on-secondary) !important;
|
|
3549
|
+
}
|
|
3550
|
+
nav.secondary-container > :is(a, button, .button),
|
|
3551
|
+
nav.secondary > a:is(:hover, :focus, .active) > i,
|
|
3552
|
+
nav.secondary > :is(a, button, .button).active,
|
|
3553
|
+
:is(a, button, .button):not(.extend).secondary.active {
|
|
3554
|
+
background-color: var(--secondary-container) !important;
|
|
3555
|
+
color: var(--on-secondary-container) !important;
|
|
3556
|
+
}
|
|
3557
|
+
nav.tertiary > :is(a, button, .button),
|
|
3558
|
+
nav.tertiary-container > a:is(:hover, :focus, .active) > i,
|
|
3559
|
+
nav.tertiary-container > :is(a, button, .button).active,
|
|
3560
|
+
:is(a, button, .button):not(.extend).tertiary-container.active {
|
|
3561
|
+
background-color: var(--tertiary) !important;
|
|
3562
|
+
color: var(--on-tertiary) !important;
|
|
3563
|
+
}
|
|
3564
|
+
nav.tertiary-container > :is(a, button, .button),
|
|
3565
|
+
nav.tertiary > a:is(:hover, :focus, .active) > i,
|
|
3566
|
+
nav.tertiary > :is(a, button, .button).active,
|
|
3567
|
+
:is(a, button, .button):not(.extend).tertiary.active {
|
|
3568
|
+
background-color: var(--tertiary-container) !important;
|
|
3569
|
+
color: var(--on-tertiary-container) !important;
|
|
3570
|
+
}
|
|
3557
3571
|
@media only screen and (max-width: 600px) {
|
|
3558
3572
|
nav.top,
|
|
3559
3573
|
nav.bottom {
|
|
@@ -3990,13 +4004,15 @@ progress.max + * {
|
|
|
3990
4004
|
--_end: 0%;
|
|
3991
4005
|
--_value1: "";
|
|
3992
4006
|
--_value2: "";
|
|
4007
|
+
--_track: 1rem;
|
|
4008
|
+
--_thumb: max(2.5rem, calc(var(--_track) + 0.5rem));
|
|
3993
4009
|
display: flex;
|
|
3994
4010
|
align-items: center !important;
|
|
3995
4011
|
inline-size: auto;
|
|
3996
|
-
block-size:
|
|
3997
|
-
margin: 1.125rem;
|
|
4012
|
+
block-size: var(--thumb);
|
|
3998
4013
|
flex: none;
|
|
3999
4014
|
direction: ltr;
|
|
4015
|
+
margin: 0 1.25rem;
|
|
4000
4016
|
}
|
|
4001
4017
|
[dir=rtl] .slider {
|
|
4002
4018
|
transform: scaleX(-1);
|
|
@@ -4008,14 +4024,20 @@ progress.max + * {
|
|
|
4008
4024
|
transform: rotate(-90deg);
|
|
4009
4025
|
inline-size: 100%;
|
|
4010
4026
|
}
|
|
4027
|
+
.slider.tiny {
|
|
4028
|
+
--_track: 1rem;
|
|
4029
|
+
}
|
|
4011
4030
|
.slider.small {
|
|
4012
|
-
|
|
4031
|
+
--_track: 1.5rem;
|
|
4013
4032
|
}
|
|
4014
4033
|
.slider.medium {
|
|
4015
|
-
|
|
4034
|
+
--_track: 2.5rem;
|
|
4016
4035
|
}
|
|
4017
4036
|
.slider.large {
|
|
4018
|
-
|
|
4037
|
+
--_track: 3.5rem;
|
|
4038
|
+
}
|
|
4039
|
+
.slider.extra {
|
|
4040
|
+
--_track: 6rem;
|
|
4019
4041
|
}
|
|
4020
4042
|
.slider > input {
|
|
4021
4043
|
appearance: none;
|
|
@@ -4024,7 +4046,7 @@ progress.max + * {
|
|
|
4024
4046
|
outline: none;
|
|
4025
4047
|
pointer-events: none;
|
|
4026
4048
|
inline-size: 100%;
|
|
4027
|
-
block-size:
|
|
4049
|
+
block-size: var(--_track);
|
|
4028
4050
|
background: none;
|
|
4029
4051
|
z-index: 1;
|
|
4030
4052
|
padding: 0;
|
|
@@ -4043,12 +4065,13 @@ progress.max + * {
|
|
|
4043
4065
|
border: none;
|
|
4044
4066
|
outline: none;
|
|
4045
4067
|
pointer-events: all;
|
|
4046
|
-
block-size:
|
|
4068
|
+
block-size: var(--_thumb);
|
|
4047
4069
|
inline-size: 0.25rem;
|
|
4048
4070
|
border-radius: 0.25rem;
|
|
4049
4071
|
background: var(--primary);
|
|
4050
4072
|
cursor: grab;
|
|
4051
4073
|
margin: 0;
|
|
4074
|
+
z-index: 1;
|
|
4052
4075
|
}
|
|
4053
4076
|
.slider > input::-webkit-slider-thumb:active {
|
|
4054
4077
|
cursor: grabbing;
|
|
@@ -4080,23 +4103,24 @@ progress.max + * {
|
|
|
4080
4103
|
opacity: 1;
|
|
4081
4104
|
}
|
|
4082
4105
|
.slider > input:disabled::-webkit-slider-thumb {
|
|
4083
|
-
background:
|
|
4106
|
+
background: var(--outline);
|
|
4084
4107
|
cursor: not-allowed;
|
|
4085
4108
|
}
|
|
4086
4109
|
.slider > input:disabled::-moz-range-thumb {
|
|
4087
|
-
background:
|
|
4110
|
+
background: var(--outline);
|
|
4088
4111
|
cursor: not-allowed;
|
|
4089
4112
|
}
|
|
4090
4113
|
.slider > input:disabled ~ span {
|
|
4091
|
-
background:
|
|
4114
|
+
background: var(--outline);
|
|
4092
4115
|
}
|
|
4093
4116
|
.slider > span {
|
|
4094
4117
|
position: absolute;
|
|
4095
|
-
block-size:
|
|
4118
|
+
block-size: var(--_track);
|
|
4096
4119
|
border-radius: 1rem 0 0 1rem;
|
|
4097
4120
|
background: var(--primary);
|
|
4121
|
+
color: var(--on-primary);
|
|
4098
4122
|
z-index: 0;
|
|
4099
|
-
inset: calc(50% -
|
|
4123
|
+
inset: calc(50% - (var(--_track) / 2)) var(--_end) auto var(--_start);
|
|
4100
4124
|
clip-path: polygon(0 0, calc(100% - 0.5rem) 0, calc(100% - 0.5rem) 100%, 0 100%);
|
|
4101
4125
|
}
|
|
4102
4126
|
.slider > input[type=range] + input[type=range] ~ span {
|
|
@@ -4110,13 +4134,29 @@ progress.max + * {
|
|
|
4110
4134
|
content: "";
|
|
4111
4135
|
position: absolute;
|
|
4112
4136
|
inline-size: 100%;
|
|
4113
|
-
block-size:
|
|
4137
|
+
block-size: var(--_track);
|
|
4114
4138
|
border-radius: 1rem;
|
|
4115
|
-
background: var(--
|
|
4139
|
+
background: var(--secondary-container);
|
|
4116
4140
|
clip-path: polygon(calc(var(--_start) - 0.5rem) 0, 0 0, 0 100%, calc(var(--_start) - 0.5rem) 100%, calc(var(--_start) - 0.5rem) 0, calc(100% - var(--_end) + 0.5rem) 0, 100% 0, 100% 100%, calc(100% - var(--_end) + 0.5rem) 100%, calc(100% - var(--_end) + 0.5rem) 0);
|
|
4117
4141
|
}
|
|
4118
4142
|
.slider:has(> [disabled])::before {
|
|
4119
|
-
background: var(--
|
|
4143
|
+
background: var(--outline-variant);
|
|
4144
|
+
}
|
|
4145
|
+
.slider:has([disabled]) {
|
|
4146
|
+
opacity: 0.62;
|
|
4147
|
+
}
|
|
4148
|
+
.slider > span > i {
|
|
4149
|
+
position: absolute;
|
|
4150
|
+
block-size: auto;
|
|
4151
|
+
inset: 0 auto 0 0.5rem;
|
|
4152
|
+
color: currentColor;
|
|
4153
|
+
z-index: 1;
|
|
4154
|
+
}
|
|
4155
|
+
.slider:not(.medium, .large, .extra) > span > i {
|
|
4156
|
+
display: none;
|
|
4157
|
+
}
|
|
4158
|
+
.slider.vertical > i {
|
|
4159
|
+
transform: rotate(90deg);
|
|
4120
4160
|
}
|
|
4121
4161
|
.slider > .tooltip {
|
|
4122
4162
|
visibility: hidden !important;
|
|
@@ -4149,7 +4189,14 @@ progress.max + * {
|
|
|
4149
4189
|
visibility: visible !important;
|
|
4150
4190
|
}
|
|
4151
4191
|
.slider.vertical > .tooltip {
|
|
4152
|
-
|
|
4192
|
+
inset-block-start: auto !important;
|
|
4193
|
+
margin-block-start: calc(-1 * var(--_thumb)) !important;
|
|
4194
|
+
block-size: 2.5rem;
|
|
4195
|
+
inline-size: 2.5rem;
|
|
4196
|
+
transform: rotate(90deg) translate(-75%, 50%) !important;
|
|
4197
|
+
}
|
|
4198
|
+
.slider.vertical > .tooltip + .tooltip {
|
|
4199
|
+
transform: rotate(90deg) translate(-75%, -50%) !important;
|
|
4153
4200
|
}
|
|
4154
4201
|
:is(nav, .row, .field) > .slider:not(.circle, .small, .medium, .large) {
|
|
4155
4202
|
flex: auto;
|
|
@@ -4194,6 +4241,7 @@ progress.max + * {
|
|
|
4194
4241
|
inset: 0 var(--_end) 0 var(--_start);
|
|
4195
4242
|
clip-path: none;
|
|
4196
4243
|
background: currentcolor;
|
|
4244
|
+
color: inherit;
|
|
4197
4245
|
border-radius: 0;
|
|
4198
4246
|
}
|
|
4199
4247
|
.slider.max.vertical > span {
|
|
@@ -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.11.
|
|
15
|
+
return await import("https://cdn.jsdelivr.net/npm/beercss@3.11.5/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.11.
|
|
26
|
+
element.setAttribute("href", "https://cdn.jsdelivr.net/npm/beercss@3.11.5/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.11.
|
|
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.11.5/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.11.5/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;
|