@digital-realty/ix-list 1.0.5 → 1.0.7

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.
@@ -0,0 +1 @@
1
+ import{LitElement,html}from"lit";import"@material/web/list/list.js";class IxList extends LitElement{render(){return html`<md-list><slot></slot></md-list>`}}window.customElements.define("ix-list",IxList);
package/package.json CHANGED
@@ -3,13 +3,14 @@
3
3
  "description": "Webcomponent ix-list following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "Digital Realty",
6
- "version": "1.0.5",
6
+ "version": "1.0.7",
7
7
  "type": "module",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.js",
10
10
  "exports": {
11
11
  ".": "./dist/index.js",
12
12
  "./ix-list.js": "./dist/ix-list.js",
13
+ "./ix-list.min.js": "./dist/ix-list.min.js",
13
14
  "./ix-list-item.js": "./dist/ix-list-item.js",
14
15
  "./IxList": "./dist/react/IxList.js",
15
16
  "./IxListItem": "./dist/react/IxListItem.js"
@@ -17,7 +18,7 @@
17
18
  "scripts": {
18
19
  "analyze": "cem analyze --litelement",
19
20
  "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
20
- "build": "tsc && npm run analyze -- --exclude dist",
21
+ "build": "tsc && npm run analyze -- --exclude dist && rollup -c",
21
22
  "prepublish": "tsc && npm run analyze -- --exclude dist",
22
23
  "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
23
24
  "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
@@ -29,7 +30,7 @@
29
30
  },
30
31
  "dependencies": {
31
32
  "@lit/react": "^1.0.2",
32
- "@material/web": "^1.0.0",
33
+ "@material/web": "1.2.0",
33
34
  "lit": "^2.0.2",
34
35
  "react": "^18.2.0"
35
36
  },
@@ -47,6 +48,9 @@
47
48
  "husky": "^4.3.8",
48
49
  "lint-staged": "^10.5.4",
49
50
  "prettier": "^2.4.1",
51
+ "rollup-plugin-minify-html-literals": "^1.2.6",
52
+ "rollup-plugin-summary": "^2.0.0",
53
+ "rollup-plugin-uglify": "^6.0.4",
50
54
  "tslib": "^2.3.1",
51
55
  "typescript": "^4.5.2"
52
56
  },
@@ -97,5 +101,5 @@
97
101
  "README.md",
98
102
  "LICENSE"
99
103
  ],
100
- "gitHead": "7dd8615d5f732cb14d465b2d46b2ee743546a4b2"
104
+ "gitHead": "c7668fda980293ca038c0dd061ebe350fa88ee60"
101
105
  }