@things-factory/reference-app 4.0.40 → 4.0.44
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/attachments/1aaa7721-7a6c-47fa-a375-b186b82dd3b1.jpeg +0 -0
- package/client/components/camera-capturer.js +1 -1
- package/client/components/ocr-viewpart.js +1 -1
- package/client/editors/id-editor.js +4 -8
- package/client/editors/id-selector.js +3 -8
- package/client/pages/context-menu-page.js +1 -1
- package/client/pages/context-page.js +6 -5
- package/client/pages/direct-print.js +1 -1
- package/client/pages/ghost-print-page.js +1 -1
- package/client/pages/grist-colorizing.js +1 -1
- package/client/pages/grist-mode-page.js +1 -1
- package/client/pages/grist-page.js +1 -1
- package/client/pages/label-scan-page.js +1 -1
- package/client/pages/main.js +3 -2
- package/client/pages/menu-page.js +6 -5
- package/client/pages/notification-page.js +8 -6
- package/client/pages/ocr-page.js +1 -1
- package/client/pages/pending-job-page.js +6 -4
- package/client/pages/reference-page-styles.js +1 -1
- package/client/pages/report-page.js +2 -2
- package/client/pages/upload-page.js +1 -1
- package/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +8 -7
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +8 -22
- package/logs/application-2022-01-29-14.log +5 -0
- package/logs/application-2022-01-31-02.log +4 -0
- package/logs/{connections-2021-11-24-18.log → connections-2022-01-29-14.log} +0 -0
- package/logs/{connections-2021-12-06-18.log → connections-2022-01-31-02.log} +0 -0
- package/package.json +49 -44
- package/logs/application-2022-01-17-14.log +0 -4
- package/logs/application-2022-01-17-15.log +0 -4
- package/logs/connections-2021-12-06-19.log +0 -0
- package/logs/connections-2021-12-07-18.log +0 -0
- package/logs/connections-2021-12-08-18.log +0 -0
|
Binary file
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit-element'
|
|
2
|
-
|
|
3
1
|
import '@material/mwc-icon'
|
|
2
|
+
import './id-selector'
|
|
3
|
+
|
|
4
|
+
import { css, html, LitElement } from 'lit'
|
|
4
5
|
|
|
5
6
|
import { openPopup } from '@things-factory/layout-base'
|
|
6
|
-
import './id-selector'
|
|
7
7
|
|
|
8
8
|
export class IdEditor extends LitElement {
|
|
9
9
|
static get properties() {
|
|
@@ -57,11 +57,7 @@ export class IdEditor extends LitElement {
|
|
|
57
57
|
var value = this.value
|
|
58
58
|
|
|
59
59
|
return html`
|
|
60
|
-
${!value
|
|
61
|
-
? html``
|
|
62
|
-
: html`
|
|
63
|
-
<span>${value[nameField]} (${value[descriptionField]})</span>
|
|
64
|
-
`}
|
|
60
|
+
${!value ? html`` : html` <span>${value[nameField]} (${value[descriptionField]})</span> `}
|
|
65
61
|
<mwc-icon>arrow_drop_down</mwc-icon>
|
|
66
62
|
`
|
|
67
63
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@operato/data-grist'
|
|
2
2
|
|
|
3
|
-
import { css, html, LitElement } from 'lit
|
|
3
|
+
import { css, html, LitElement } from 'lit'
|
|
4
4
|
|
|
5
5
|
import { MultiColumnFormStyles } from '@things-factory/form-ui'
|
|
6
6
|
import { i18next } from '@things-factory/i18n-base'
|
|
@@ -70,7 +70,7 @@ export class IdSelector extends LitElement {
|
|
|
70
70
|
.selectedRecords=${this.selectedRecords}
|
|
71
71
|
>
|
|
72
72
|
<div id="filters" slot="headless">
|
|
73
|
-
<ox-filters-form
|
|
73
|
+
<ox-filters-form></ox-filters-form>
|
|
74
74
|
</div>
|
|
75
75
|
</ox-grist>
|
|
76
76
|
|
|
@@ -165,14 +165,9 @@ export class IdSelector extends LitElement {
|
|
|
165
165
|
return this.renderRoot.querySelector('ox-grist')
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
-
|
|
169
|
-
return this.renderRoot.querySelector('ox-filters-form')
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
async fetchHandler({ page, limit, sorters = [] }) {
|
|
168
|
+
async fetchHandler({ page, limit, sortings = [], filters = [] }) {
|
|
173
169
|
var total = 3401
|
|
174
170
|
var start = (page - 1) * limit
|
|
175
|
-
// const filter = await this.filtersForm.getQueryFilters()
|
|
176
171
|
|
|
177
172
|
return {
|
|
178
173
|
total,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@material/mwc-icon'
|
|
2
2
|
import '@operato/popup/ox-popup-menu.js'
|
|
3
3
|
|
|
4
|
-
import { css, html } from 'lit
|
|
4
|
+
import { css, html } from 'lit'
|
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
6
|
|
|
7
7
|
import { OxPopupMenu } from '@operato/popup/ox-popup-menu.js'
|
|
@@ -2,15 +2,16 @@ import '@material/mwc-textfield'
|
|
|
2
2
|
import '@material/mwc-formfield'
|
|
3
3
|
import '@material/mwc-radio'
|
|
4
4
|
|
|
5
|
-
import {
|
|
6
|
-
import { css, html } from 'lit-element'
|
|
7
|
-
|
|
8
|
-
import { CommonButtonStyles } from '@things-factory/styles'
|
|
5
|
+
import { css, html } from 'lit'
|
|
9
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
|
+
|
|
10
8
|
import { openImportPopUp } from '@things-factory/import-ui'
|
|
11
|
-
import {
|
|
9
|
+
import { PageView, store } from '@things-factory/shell'
|
|
10
|
+
import { CommonButtonStyles } from '@things-factory/styles'
|
|
12
11
|
import { sleep } from '@things-factory/utils'
|
|
13
12
|
|
|
13
|
+
import { referencePageStyles } from './reference-page-styles'
|
|
14
|
+
|
|
14
15
|
class ContextPage extends connect(store)(PageView) {
|
|
15
16
|
static get styles() {
|
|
16
17
|
return [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@operato/popup/ox-popup-list.js'
|
|
2
2
|
import '@operato/data-grist'
|
|
3
3
|
|
|
4
|
-
import { css, html } from 'lit
|
|
4
|
+
import { css, html } from 'lit'
|
|
5
5
|
|
|
6
6
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
7
7
|
import { PageView } from '@things-factory/shell'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@things-factory/barcode-ui'
|
|
2
2
|
import '@operato/input/ox-input-barcode.js'
|
|
3
3
|
|
|
4
|
-
import { css, html } from 'lit
|
|
4
|
+
import { css, html } from 'lit'
|
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
6
|
|
|
7
7
|
import { PageView, store } from '@things-factory/shell'
|
package/client/pages/main.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { css, html } from 'lit'
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
import { PageView, store } from '@things-factory/shell'
|
|
4
5
|
|
|
5
6
|
import logo from '../../assets/images/hatiolab-logo.png'
|
|
6
7
|
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import '@things-factory/auth-ui' /* for domain-switch */
|
|
2
2
|
import '@material/mwc-checkbox'
|
|
3
3
|
import '@material/mwc-formfield'
|
|
4
|
+
import '@operato/help/ox-help-icon.js'
|
|
4
5
|
|
|
5
|
-
import { css, html } from 'lit
|
|
6
|
+
import { css, html } from 'lit'
|
|
6
7
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
8
|
|
|
8
|
-
import { VIEWPART_POSITION } from '@
|
|
9
|
+
import { VIEWPART_POSITION } from '@operato/layout'
|
|
10
|
+
import { PageView, store } from '@operato/shell'
|
|
9
11
|
import { setupMenuPart } from '@things-factory/lite-menu'
|
|
10
|
-
import { PageView, store } from '@things-factory/shell'
|
|
11
12
|
|
|
12
13
|
import { referencePageStyles } from './reference-page-styles'
|
|
13
14
|
|
|
@@ -35,9 +36,9 @@ class MenuPage extends connect(store)(PageView) {
|
|
|
35
36
|
render() {
|
|
36
37
|
return html`
|
|
37
38
|
<p>
|
|
38
|
-
Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Lite Menu<help-icon
|
|
39
|
+
Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Lite Menu<ox-help-icon
|
|
39
40
|
topic="module/lite-menu"
|
|
40
|
-
></help-icon>
|
|
41
|
+
></ox-help-icon>
|
|
41
42
|
모듈을 제공한다.
|
|
42
43
|
</p>
|
|
43
44
|
<section @change=${e => this.setupMenu(e)}>
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import '@things-factory/notification'
|
|
2
|
+
import '@operato/help/ox-help-icon.js'
|
|
2
3
|
|
|
4
|
+
import { css, html } from 'lit'
|
|
5
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
|
+
|
|
7
|
+
import { toggleOverlay, TOOL_POSITION } from '@operato/layout'
|
|
8
|
+
import { PageView, store } from '@operato/shell'
|
|
3
9
|
import { APPEND_APP_TOOL, REMOVE_APP_TOOL } from '@things-factory/apptool-base'
|
|
4
|
-
import { PageView, store } from '@things-factory/shell'
|
|
5
|
-
import { TOOL_POSITION, toggleOverlay } from '@things-factory/layout-base'
|
|
6
|
-
import { css, html } from 'lit-element'
|
|
7
10
|
|
|
8
|
-
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
9
11
|
import { referencePageStyles } from './reference-page-styles'
|
|
10
12
|
|
|
11
13
|
class NotificationPage extends connect(store)(PageView) {
|
|
@@ -45,9 +47,9 @@ class NotificationPage extends connect(store)(PageView) {
|
|
|
45
47
|
render() {
|
|
46
48
|
return html`
|
|
47
49
|
<p>
|
|
48
|
-
Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Notification<help-icon
|
|
50
|
+
Things Factory 프레임워크에서는 간편하게 메뉴를 구성할 수 있도록 Notification<ox-help-icon
|
|
49
51
|
topic="module/notification"
|
|
50
|
-
></help-icon>
|
|
52
|
+
></ox-help-icon>
|
|
51
53
|
모듈을 제공한다.
|
|
52
54
|
</p>
|
|
53
55
|
|
package/client/pages/ocr-page.js
CHANGED
|
@@ -2,7 +2,7 @@ import '@things-factory/form-ui'
|
|
|
2
2
|
import '../components/camera-capturer'
|
|
3
3
|
|
|
4
4
|
import { gql } from 'graphql-tag'
|
|
5
|
-
import { css, html } from 'lit
|
|
5
|
+
import { css, html } from 'lit'
|
|
6
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
7
|
|
|
8
8
|
import { client, PageView, store } from '@things-factory/shell'
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import '@material/mwc-linear-progress'
|
|
2
|
-
import '@
|
|
2
|
+
import '@operato/help/ox-help-icon.js'
|
|
3
3
|
|
|
4
4
|
import { gql } from 'graphql-tag'
|
|
5
|
-
import { css, html } from 'lit
|
|
5
|
+
import { css, html } from 'lit'
|
|
6
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
7
|
|
|
8
|
-
import { client
|
|
8
|
+
import { client } from '@operato/graphql'
|
|
9
|
+
import { PageView, store } from '@operato/shell'
|
|
9
10
|
|
|
10
11
|
import { referencePageStyles } from './reference-page-styles'
|
|
11
12
|
|
|
@@ -48,7 +49,8 @@ class PendingJobPage extends connect(store)(PageView) {
|
|
|
48
49
|
return html`
|
|
49
50
|
<p>
|
|
50
51
|
오래걸리는 서버작업을 수행할 때는 진행과정을 표현해주는 것이 사용자 경험에 도움을 준다. 이를 위해 Things Factory
|
|
51
|
-
프레임워크에서는 oops-progress<help-icon topic="components/oops-progress"></help-icon> 라는 컴포넌트를
|
|
52
|
+
프레임워크에서는 oops-progress<ox-help-icon topic="components/oops-progress"></ox-help-icon> 라는 컴포넌트를
|
|
53
|
+
제공한다.
|
|
52
54
|
</p>
|
|
53
55
|
<p>
|
|
54
56
|
아래 'Start' 버튼을 클릭하면, 서버에 작업을 요청하고 그 진행율이 화면에 표현된다. 진행중에는 버튼은 'Stop'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import '@operato/data-grist'
|
|
2
2
|
|
|
3
|
-
import { css, html } from 'lit
|
|
4
|
-
import { i18next, localize } from '@things-factory/i18n-base'
|
|
3
|
+
import { css, html } from 'lit'
|
|
5
4
|
|
|
5
|
+
import { i18next, localize } from '@things-factory/i18n-base'
|
|
6
6
|
import { PageView } from '@things-factory/shell'
|
|
7
7
|
|
|
8
8
|
class ReportPage extends localize(i18next)(PageView) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@operato/input/ox-input-file.js'
|
|
2
2
|
|
|
3
3
|
import { gql } from 'graphql-tag'
|
|
4
|
-
import { css, html } from 'lit
|
|
4
|
+
import { css, html } from 'lit'
|
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
6
|
|
|
7
7
|
import { client, PageView, store } from '@things-factory/shell'
|
package/db.sqlite
CHANGED
|
Binary file
|
|
@@ -6,14 +6,15 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2022-01-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1643432714784,
|
|
10
|
+
"name": "logs/application-2022-01-29-14.log",
|
|
11
|
+
"hash": "b4b941155b95e9a9c3dd0ef700d0d8fe"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/application-2022-01-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1643562406803,
|
|
15
|
+
"name": "logs/application-2022-01-31-02.log",
|
|
16
|
+
"hash": "2892825e3ac228e9e3cc8761ee20aabc"
|
|
17
17
|
}
|
|
18
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"hashType": "md5"
|
|
19
20
|
}
|
|
@@ -6,29 +6,15 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1643432716894,
|
|
10
|
+
"name": "logs/connections-2022-01-29-14.log",
|
|
11
|
+
"hash": "ae807fd62a39d9b25673c588afa621c8"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/connections-
|
|
16
|
-
"hash": "
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"date": 1638785303642,
|
|
20
|
-
"name": "logs/connections-2021-12-06-19.log",
|
|
21
|
-
"hash": "ee793684ecc87d1b8e9f97b01c0bc30b"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"date": 1638870082934,
|
|
25
|
-
"name": "logs/connections-2021-12-07-18.log",
|
|
26
|
-
"hash": "577f2d2bc9e2ededbef8e499e292dcc1"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"date": 1638955225638,
|
|
30
|
-
"name": "logs/connections-2021-12-08-18.log",
|
|
31
|
-
"hash": "58546bb57a3ed7d9f915e8a4e4427e60"
|
|
14
|
+
"date": 1643562408398,
|
|
15
|
+
"name": "logs/connections-2022-01-31-02.log",
|
|
16
|
+
"hash": "051259316dbdbb2c6927efc6cd3862f9"
|
|
32
17
|
}
|
|
33
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"hashType": "md5"
|
|
34
20
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
2022-01-29T05:05:16.270Z info: File Storage is Ready.
|
|
2
|
+
2022-01-29T05:05:19.935Z info: Database connection established
|
|
3
|
+
2022-01-29T05:05:20.556Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-01-29T05:05:20.556Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2022-01-29T05:17:30.280Z error: Cannot return null for non-nullable field Query.ocrRequest.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2022-01-30T17:06:47.788Z info: File Storage is Ready.
|
|
2
|
+
2022-01-30T17:06:50.263Z info: Database connection established
|
|
3
|
+
2022-01-30T17:06:51.142Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-01-30T17:06:51.143Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/reference-app",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.44",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -37,51 +37,56 @@
|
|
|
37
37
|
"docker:run": "docker run -it -p 4000:3000 hatiolab/reference-app:latest"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@hatiolab/things-scene": "^2.7.
|
|
40
|
+
"@hatiolab/things-scene": "^2.7.34",
|
|
41
41
|
"@material/mwc-checkbox": "^0.25.3",
|
|
42
|
-
"@operato/data-grist": "^0.3.
|
|
43
|
-
"@operato/ghost-print": "^0.3.
|
|
44
|
-
"@operato/
|
|
45
|
-
"@operato/
|
|
46
|
-
"@operato/
|
|
47
|
-
"@operato/
|
|
48
|
-
"@operato/
|
|
49
|
-
"@operato/
|
|
50
|
-
"@operato/
|
|
51
|
-
"@operato/
|
|
52
|
-
"@operato/scene-
|
|
53
|
-
"@operato/scene-
|
|
54
|
-
"@operato/scene-
|
|
55
|
-
"@operato/scene-
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@things-factory/
|
|
64
|
-
"@things-factory/
|
|
65
|
-
"@things-factory/
|
|
66
|
-
"@things-factory/
|
|
67
|
-
"@things-factory/
|
|
68
|
-
"@things-factory/
|
|
69
|
-
"@things-factory/
|
|
70
|
-
"@things-factory/
|
|
71
|
-
"@things-factory/
|
|
72
|
-
"@things-factory/
|
|
73
|
-
"@things-factory/
|
|
74
|
-
"@things-factory/
|
|
75
|
-
"@things-factory/
|
|
76
|
-
"@things-factory/
|
|
77
|
-
"@things-factory/
|
|
78
|
-
"@things-factory/
|
|
79
|
-
"@things-factory/
|
|
80
|
-
"@things-factory/
|
|
81
|
-
"@things-factory/
|
|
42
|
+
"@operato/data-grist": "^0.3.27",
|
|
43
|
+
"@operato/ghost-print": "^0.3.27",
|
|
44
|
+
"@operato/graphql": "^0.3.27",
|
|
45
|
+
"@operato/help": "^0.3.27",
|
|
46
|
+
"@operato/i18n": "^0.3.27",
|
|
47
|
+
"@operato/input": "^0.3.27",
|
|
48
|
+
"@operato/layout": "^0.3.27",
|
|
49
|
+
"@operato/ocr": "^0.3.27",
|
|
50
|
+
"@operato/popup": "^0.3.27",
|
|
51
|
+
"@operato/pull-to-refresh": "^0.3.27",
|
|
52
|
+
"@operato/scene-chartjs": "^0.1.4",
|
|
53
|
+
"@operato/scene-clock": "^0.1.4",
|
|
54
|
+
"@operato/scene-gauge": "^0.1.4",
|
|
55
|
+
"@operato/scene-half-roundrect": "^0.1.4",
|
|
56
|
+
"@operato/scene-indoor-map": "^0.1.4",
|
|
57
|
+
"@operato/scene-progressbar": "^0.1.4",
|
|
58
|
+
"@operato/scene-random": "^0.1.4",
|
|
59
|
+
"@operato/scene-switch": "^0.1.4",
|
|
60
|
+
"@operato/scene-tab": "^0.1.4",
|
|
61
|
+
"@operato/shell": "^0.3.27",
|
|
62
|
+
"@operato/utils": "^0.3.27",
|
|
63
|
+
"@things-factory/api": "^4.0.44",
|
|
64
|
+
"@things-factory/apptool-ui": "^4.0.44",
|
|
65
|
+
"@things-factory/auth-ui": "^4.0.44",
|
|
66
|
+
"@things-factory/board-service": "^4.0.44",
|
|
67
|
+
"@things-factory/board-ui": "^4.0.44",
|
|
68
|
+
"@things-factory/context-ui": "^4.0.44",
|
|
69
|
+
"@things-factory/dashboard": "^4.0.44",
|
|
70
|
+
"@things-factory/export-ui": "^4.0.44",
|
|
71
|
+
"@things-factory/export-ui-excel": "^4.0.44",
|
|
72
|
+
"@things-factory/grist-ui": "^4.0.44",
|
|
73
|
+
"@things-factory/help": "^4.0.44",
|
|
74
|
+
"@things-factory/integration-ui": "^4.0.44",
|
|
75
|
+
"@things-factory/lite-menu": "^4.0.44",
|
|
76
|
+
"@things-factory/more-ui": "^4.0.44",
|
|
77
|
+
"@things-factory/notification": "^4.0.44",
|
|
78
|
+
"@things-factory/oauth2-client": "^4.0.44",
|
|
79
|
+
"@things-factory/print-ui": "^4.0.44",
|
|
80
|
+
"@things-factory/resource-ui": "^4.0.44",
|
|
81
|
+
"@things-factory/scene-form": "^4.0.44",
|
|
82
|
+
"@things-factory/scene-news-ticker": "^4.0.44",
|
|
83
|
+
"@things-factory/setting-base": "^4.0.44",
|
|
84
|
+
"@things-factory/setting-ui": "^4.0.44",
|
|
85
|
+
"@things-factory/shell": "^4.0.44",
|
|
86
|
+
"@things-factory/system-ui": "^4.0.44"
|
|
82
87
|
},
|
|
83
88
|
"devDependencies": {
|
|
84
|
-
"@things-factory/builder": "^4.0.
|
|
89
|
+
"@things-factory/builder": "^4.0.44"
|
|
85
90
|
},
|
|
86
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "286a037443bfb38c65db964dbfa6c5f2d141d9ac"
|
|
87
92
|
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
2022-01-17T06:43:32.236Z info: File Storage is Ready.
|
|
2
|
-
2022-01-17T06:43:34.636Z info: Database connection established
|
|
3
|
-
2022-01-17T06:43:35.277Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-01-17T06:43:35.277Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
2022-01-17T07:21:25.484Z info: File Storage is Ready.
|
|
2
|
-
2022-01-17T07:21:27.970Z info: Database connection established
|
|
3
|
-
2022-01-17T07:21:28.574Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-01-17T07:21:28.575Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
File without changes
|
|
File without changes
|
|
File without changes
|