@things-factory/board-ui 4.0.23 → 4.0.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.
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
* @license Copyright © HatioLab Inc. All rights reserved.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import { LitElement, html, css } from 'lit-element'
|
|
6
5
|
import '@material/mwc-icon'
|
|
6
|
+
import '../../viewparts/board-selector'
|
|
7
7
|
|
|
8
|
-
import {
|
|
9
|
-
import { i18next } from '@things-factory/i18n-base'
|
|
8
|
+
import { LitElement, css, html } from 'lit-element'
|
|
10
9
|
|
|
11
|
-
import '
|
|
10
|
+
import { i18next } from '@things-factory/i18n-base'
|
|
11
|
+
import { openPopup } from '@things-factory/layout-base'
|
|
12
12
|
|
|
13
13
|
export default class ThingsEditorBoardSelector extends LitElement {
|
|
14
14
|
static get properties() {
|
|
@@ -70,7 +70,7 @@ export default class ThingsEditorBoardSelector extends LitElement {
|
|
|
70
70
|
var template = html`
|
|
71
71
|
<board-selector
|
|
72
72
|
.creatable=${true}
|
|
73
|
-
.value=${
|
|
73
|
+
.value=${value}
|
|
74
74
|
@board-selected=${async e => {
|
|
75
75
|
var board = e.detail.board
|
|
76
76
|
this.value = board.id
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import './things-scene-components.import'
|
|
2
|
-
import '@operato/board/
|
|
2
|
+
import '@operato/board/ox-board-modeller.js'
|
|
3
3
|
|
|
4
|
-
import
|
|
4
|
+
import gql from 'graphql-tag'
|
|
5
5
|
import { css, html } from 'lit-element'
|
|
6
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
7
|
|
|
7
|
-
import { BoardModeller } from '@operato/board/
|
|
8
|
+
import { BoardModeller } from '@operato/board/ox-board-modeller.js'
|
|
8
9
|
import { OxPropertyEditor } from '@operato/property-editor'
|
|
9
|
-
import
|
|
10
|
-
|
|
11
|
-
import gql from 'graphql-tag'
|
|
10
|
+
import { client, gqlContext, PageView, store } from '@things-factory/shell'
|
|
11
|
+
|
|
12
12
|
import { provider } from '../board-provider'
|
|
13
|
+
import components from './things-scene-components-with-tools.import'
|
|
13
14
|
|
|
14
15
|
const NOOP = () => {}
|
|
15
16
|
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import './things-scene-components.import'
|
|
2
|
-
import '@operato/board/
|
|
2
|
+
import '@operato/board/ox-board-player.js'
|
|
3
3
|
|
|
4
|
-
import
|
|
4
|
+
import gql from 'graphql-tag'
|
|
5
5
|
import { css, html } from 'lit-element'
|
|
6
|
-
|
|
7
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
|
+
|
|
8
|
+
import { client, PageView, store } from '@things-factory/shell'
|
|
9
|
+
|
|
8
10
|
import { createBoardProvider } from '../board-provider'
|
|
9
|
-
import gql from 'graphql-tag'
|
|
10
11
|
|
|
11
12
|
const NOOP = () => {}
|
|
12
13
|
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import './things-scene-components.import'
|
|
2
|
-
import '@operato/board/
|
|
2
|
+
import '@operato/board/ox-board-viewer.js'
|
|
3
3
|
|
|
4
|
-
import
|
|
4
|
+
import gql from 'graphql-tag'
|
|
5
5
|
import { css, html } from 'lit-element'
|
|
6
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
7
|
|
|
7
8
|
import { buildLabelPrintCommand } from '@things-factory/barcode-base'
|
|
8
|
-
import {
|
|
9
|
-
|
|
9
|
+
import { client, gqlContext, PageView, store } from '@things-factory/shell'
|
|
10
|
+
|
|
10
11
|
import { provider } from '../board-provider'
|
|
11
12
|
|
|
12
13
|
const NOOP = () => {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/board-ui",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.27",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@material/mwc-list": "^0.25.3",
|
|
28
28
|
"@material/mwc-select": "^0.25.3",
|
|
29
|
-
"@operato/board": "^0.2
|
|
30
|
-
"@operato/popup": "^0.2
|
|
29
|
+
"@operato/board": "^0.3.2",
|
|
30
|
+
"@operato/popup": "^0.3.2",
|
|
31
31
|
"@polymer/iron-icon": "^3.0.1",
|
|
32
32
|
"@polymer/iron-icons": "^3.0.1",
|
|
33
33
|
"@polymer/paper-button": "^3.0.1",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"@polymer/paper-listbox": "^3.0.1",
|
|
38
38
|
"@polymer/paper-menu-button": "^3.0.1",
|
|
39
39
|
"@polymer/paper-slider": "^3.0.1",
|
|
40
|
-
"@things-factory/barcode-base": "^4.0.
|
|
41
|
-
"@things-factory/grist-ui": "^4.0.
|
|
42
|
-
"@things-factory/help": "^4.0.
|
|
43
|
-
"@things-factory/i18n-base": "^4.0.
|
|
44
|
-
"@things-factory/modeller-ui": "^4.0.
|
|
40
|
+
"@things-factory/barcode-base": "^4.0.27",
|
|
41
|
+
"@things-factory/grist-ui": "^4.0.27",
|
|
42
|
+
"@things-factory/help": "^4.0.27",
|
|
43
|
+
"@things-factory/i18n-base": "^4.0.27",
|
|
44
|
+
"@things-factory/modeller-ui": "^4.0.27",
|
|
45
45
|
"file-saver": "^2.0.2",
|
|
46
46
|
"sortablejs": "^1.10.2"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "276eaface2890c8f229ce6c9f64cde9c6b1e0083"
|
|
49
49
|
}
|