beercss 3.0.3 → 3.0.4
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 +8 -8
- package/index.js +1 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -118,19 +118,19 @@ From jsdelivr.net.
|
|
|
118
118
|
|
|
119
119
|
```html
|
|
120
120
|
// with html
|
|
121
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.0.
|
|
122
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.0.
|
|
121
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.0.4/dist/cdn/beer.min.css" rel="stylesheet" />
|
|
122
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.0.4/dist/cdn/beer.min.js"></script>
|
|
123
123
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@0.1.5/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
124
124
|
```
|
|
125
125
|
|
|
126
126
|
```css
|
|
127
127
|
// with css
|
|
128
|
-
@import "https://cdn.jsdelivr.net/npm/beercss@3.0.
|
|
128
|
+
@import "https://cdn.jsdelivr.net/npm/beercss@3.0.4/dist/cdn/beer.min.css";
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
```js
|
|
132
132
|
// with javascript
|
|
133
|
-
import "https://cdn.jsdelivr.net/npm/beercss@3.0.
|
|
133
|
+
import "https://cdn.jsdelivr.net/npm/beercss@3.0.4/dist/cdn/beer.min.js";
|
|
134
134
|
import "https://cdn.jsdelivr.net/npm/material-dynamic-colors@0.1.5/dist/cdn/material-dynamic-colors.min.js";
|
|
135
135
|
```
|
|
136
136
|
|
|
@@ -160,7 +160,7 @@ import materialDynamicColors from "material-dynamic-colors";
|
|
|
160
160
|
// importing manually from dist
|
|
161
161
|
import "beercss/dist/cdn/beer.min.css";
|
|
162
162
|
import "beercss/dist/cdn/material-symbols-outlined.woff2";
|
|
163
|
-
import "beercss/dist/cdn/roboto-flex-cyrillic-
|
|
163
|
+
import "beercss/dist/cdn/roboto-flex-cyrillic-ext.woff2";
|
|
164
164
|
import "beercss/dist/cdn/roboto-flex-cyrillic.woff2";
|
|
165
165
|
import "beercss/dist/cdn/roboto-flex-greek.woff2";
|
|
166
166
|
import "beercss/dist/cdn/roboto-flex-latin-ext.woff2";
|
|
@@ -174,7 +174,7 @@ import materialDynamicColors from "material-dynamic-colors/dist/cdn/material-dyn
|
|
|
174
174
|
// importing manually from src
|
|
175
175
|
import "beercss/src/cdn/beer.css";
|
|
176
176
|
import "beercss/src/cdn/material-symbols-outlined.woff2";
|
|
177
|
-
import "beercss/src/cdn/roboto-flex-cyrillic-
|
|
177
|
+
import "beercss/src/cdn/roboto-flex-cyrillic-ext.woff2";
|
|
178
178
|
import "beercss/src/cdn/roboto-flex-cyrillic.woff2";
|
|
179
179
|
import "beercss/src/cdn/roboto-flex-greek.woff2";
|
|
180
180
|
import "beercss/src/cdn/roboto-flex-latin-ext.woff2";
|
|
@@ -196,8 +196,8 @@ You can use this html to setup your project. See on [Codepen](https://codepen.io
|
|
|
196
196
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
197
197
|
<meta name="google" content="notranslate">
|
|
198
198
|
<title>Hello world</title>
|
|
199
|
-
<link href="https://cdn.jsdelivr.net/npm/beercss@3.0.
|
|
200
|
-
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.0.
|
|
199
|
+
<link href="https://cdn.jsdelivr.net/npm/beercss@3.0.4/dist/cdn/beer.min.css" rel="stylesheet">
|
|
200
|
+
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.0.4/dist/cdn/beer.min.js"></script>
|
|
201
201
|
<script type="module" src="https://cdn.jsdelivr.net/npm/material-dynamic-colors@0.1.5/dist/cdn/material-dynamic-colors.min.js"></script>
|
|
202
202
|
</head>
|
|
203
203
|
<body class="light">
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./dist/cdn/beer.min.css";
|
|
2
2
|
import "./dist/cdn/material-symbols-outlined.woff2";
|
|
3
|
-
import "./dist/cdn/roboto-flex-cyrillic-
|
|
3
|
+
import "./dist/cdn/roboto-flex-cyrillic-ext.woff2";
|
|
4
4
|
import "./dist/cdn/roboto-flex-cyrillic.woff2";
|
|
5
5
|
import "./dist/cdn/roboto-flex-greek.woff2";
|
|
6
6
|
import "./dist/cdn/roboto-flex-latin-ext.woff2";
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "Everton and Leonardo",
|
|
3
3
|
"description": "Build material design interfaces in record time... without stress for devs.",
|
|
4
4
|
"homepage": "https://www.beercss.com/",
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.4",
|
|
6
6
|
"name": "beercss",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"type": "module",
|
|
@@ -60,5 +60,12 @@
|
|
|
60
60
|
"beer",
|
|
61
61
|
"responsive",
|
|
62
62
|
"css-framework"
|
|
63
|
-
]
|
|
63
|
+
],
|
|
64
|
+
"repository": {
|
|
65
|
+
"type": "git",
|
|
66
|
+
"url": "git+https://github.com/beercss/beercss.git"
|
|
67
|
+
},
|
|
68
|
+
"bugs": {
|
|
69
|
+
"url": "https://github.com/beercss/beercss/issues"
|
|
70
|
+
}
|
|
64
71
|
}
|