@things-factory/layout-ui 4.0.41 → 4.0.42

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,8 +1,6 @@
1
1
  import { installMediaQueryWatcher } from 'pwa-helpers/media-query.js'
2
2
 
3
- import { updateLayout } from '@things-factory/layout-base'
4
-
5
- import './layouts'
3
+ import { updateLayout } from '@operato/layout'
6
4
 
7
5
  export default function bootstrap() {
8
6
  installMediaQueryWatcher(`(min-width: 460px)`, matches => updateLayout(matches))
@@ -1,4 +1,4 @@
1
- import '@things-factory/help'
1
+ import '@operato/help/ox-help-icon.js'
2
2
  import '@material/mwc-icon'
3
3
 
4
4
  import { css, html, LitElement } from 'lit-element'
@@ -257,7 +257,9 @@ class FloatingOverlay extends LitElement {
257
257
  ${this.title || this.closable
258
258
  ? html`
259
259
  <h1>
260
- ${this.title || ''}&nbsp;${this.help ? html` <help-icon .topic=${this.help}></help-icon>` : html``}
260
+ ${this.title || ''}&nbsp;${this.help
261
+ ? html` <ox-help-icon .topic=${this.help}></ox-help-icon>`
262
+ : html``}
261
263
  </h1>
262
264
  `
263
265
  : html``}</slot
package/client/index.js CHANGED
@@ -1 +1 @@
1
- export * from './components/floating-overlay'
1
+ export * from '@operato/layout'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/layout-ui",
3
- "version": "4.0.41",
3
+ "version": "4.0.42",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,8 +24,8 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/help": "^4.0.41",
28
- "@things-factory/layout-base": "^4.0.41"
27
+ "@operato/help": "^0.3.24",
28
+ "@things-factory/layout-base": "^4.0.42"
29
29
  },
30
- "gitHead": "1dd445b5b5e5b9e37291dc274886131199d7bf6a"
30
+ "gitHead": "794709ebadf4ae0f89a107a86a41a381ce26b465"
31
31
  }