@things-factory/print-ui 7.0.1-alpha.69 → 7.0.1-alpha.71

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.
@@ -1,4 +1,4 @@
1
- import '@material/mwc-icon'
1
+ import '@material/web/icon/icon.js'
2
2
 
3
3
  import { html, LitElement } from 'lit'
4
4
  import { connect } from 'pwa-helpers/connect-mixin'
@@ -28,8 +28,8 @@ class PrintContextTemplate extends connect(store)(LitElement) {
28
28
  printable.accept instanceof Array
29
29
  ? printable.accept
30
30
  : typeof printable.accept == 'string'
31
- ? [printable.accept]
32
- : null
31
+ ? [printable.accept]
32
+ : null
33
33
 
34
34
  this._printers.forEach(printer => {
35
35
  if (!accept || accept.indexOf(printer.type) != -1) {
@@ -55,7 +55,7 @@ class PrintContextTemplate extends connect(store)(LitElement) {
55
55
  (printer, idx) => html`
56
56
  <label for="${idx}">
57
57
  <li @click=${e => this._onPrintOut(printer)}>
58
- <mwc-icon>print</mwc-icon>
58
+ <md-icon>print</md-icon>
59
59
  <span>${printer.name} (${printer.type})</span>
60
60
  </li>
61
61
  </label>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/print-ui",
3
- "version": "7.0.1-alpha.69",
3
+ "version": "7.0.1-alpha.71",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -25,9 +25,9 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@operato/layout": "^2.0.0-alpha.0",
28
- "@things-factory/context-ui": "^7.0.1-alpha.69",
29
- "@things-factory/i18n-base": "^7.0.1-alpha.69",
30
- "@things-factory/print-base": "^7.0.1-alpha.69"
28
+ "@things-factory/context-ui": "^7.0.1-alpha.71",
29
+ "@things-factory/i18n-base": "^7.0.1-alpha.71",
30
+ "@things-factory/print-base": "^7.0.1-alpha.71"
31
31
  },
32
- "gitHead": "7dc123e788e8c2854fd0e4064cda018aac6fa34a"
32
+ "gitHead": "bd8e41eb1eee705a32d1bf75a5900c0306331d91"
33
33
  }