@universal-material/web 3.6.25 → 3.6.27
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@universal-material/web",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.27",
|
|
4
4
|
"description": "Material web components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -22,11 +22,17 @@
|
|
|
22
22
|
"default": "dist/index.js"
|
|
23
23
|
},
|
|
24
24
|
"./css/*": "./dist/css/*.css",
|
|
25
|
-
"./scss/*": "./
|
|
25
|
+
"./scss/*": "./scss/*.scss"
|
|
26
26
|
},
|
|
27
|
-
"files": [
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"scss",
|
|
30
|
+
"README.md",
|
|
31
|
+
"custom-elements.json",
|
|
32
|
+
"vscode.html-custom-data.json"
|
|
33
|
+
],
|
|
28
34
|
"scripts": {
|
|
29
|
-
"build": "run-s clean script:sass-to-ts build:esm build:bundle sass analyze
|
|
35
|
+
"build": "run-s clean script:sass-to-ts build:esm build:bundle sass analyze",
|
|
30
36
|
"build:watch": "gulp -f gulpfile.js scripts:watch",
|
|
31
37
|
"build:esm": "esbuild src/index.ts --bundle --format=esm --minify --outfile=dist/index.js",
|
|
32
38
|
"build:bundle": "tsc",
|
|
@@ -36,7 +42,6 @@
|
|
|
36
42
|
"sass": "gulp -f gulpfile.js sass",
|
|
37
43
|
"sass:watch": "gulp -f gulpfile.js sass:watch",
|
|
38
44
|
"clean": "rimraf ./dist/ rimraf ./src/**/*.d.ts rimraf ./src/**/*.styles.ts",
|
|
39
|
-
"copy": "copyfiles README.md custom-elements.json vscode.html-custom-data.json dist/",
|
|
40
45
|
"lint": "npm run lint:lit-analyzer && npm run lint:eslint && npm run lint:prettier",
|
|
41
46
|
"lint:eslint": "eslint src/**/*.ts",
|
|
42
47
|
"lint:eslint:fix": "eslint src/**/*.ts --fix",
|
package/dist/README.md
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Universal Material
|
|
2
|
-
|
|
3
|
-
### Getting started
|
|
4
|
-
|
|
5
|
-
#### Install
|
|
6
|
-
|
|
7
|
-
Install Universal Material components using [npm and node](https://nodejs.org/).
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
npm i @universal-material/web
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
### Import
|
|
14
|
-
|
|
15
|
-
Import element definitions from `@universal-material/web/<component>/<component-variant>.js` or import everything from `@universal-material/web`.
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
// index.js
|
|
19
|
-
import '@universal-material/web/button/button.js';
|
|
20
|
-
import '@universal-material/web/card/card.js';
|
|
21
|
-
import '@universal-material/web/checkbox/checkbox.js';
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
### Documentation
|
|
25
|
-
|
|
26
|
-
https://universal-material.github.io
|
|
27
|
-
|
|
28
|
-
## Thanks
|
|
29
|
-
|
|
30
|
-
<img src="https://live.browserstack.com/images/opensource/browserstack-logo.svg" alt="BrowserStack Logo" width="490" height="106">
|
|
31
|
-
|
|
32
|
-
Thanks to [BrowserStack](https://www.browserstack.com/) for providing the infrastructure that allows us to test in real browsers!
|
|
File without changes
|
|
File without changes
|