@things-factory/reference-app 4.0.24 → 4.0.28
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/311f5a1f-9a28-4f45-b335-11f8bbb12317.png +0 -0
- package/attachments/4bff6789-9d9a-4b61-acfd-75e419eb9bf3.png +0 -0
- package/attachments/5f4b08bc-7574-461d-a54f-bd0462c3bd37.jpeg +0 -0
- package/attachments/8c562e28-85e9-4cff-a055-5a08a4e57b88.jpeg +0 -0
- package/attachments/a2f74466-cc49-47fb-8c2b-7b0cf23a644d.jpeg +0 -0
- package/attachments/da8aaec2-ad03-4eec-adfb-8a9812c8330a.jpeg +0 -0
- package/client/components/ocr-viewpart.js +2 -2
- package/client/pages/context-menu-page.js +5 -4
- package/client/pages/grist-mode-page.js +2 -2
- package/client/pages/label-scan-page.js +4 -3
- package/client/pages/upload-page.js +8 -5
- package/config.development.js +30 -0
- package/config.production.js +37 -0
- package/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +13 -3
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +9 -19
- package/logs/application-2021-12-08-16.log +4 -0
- package/logs/application-2021-12-08-18.log +4 -0
- package/logs/application-2021-12-08-22.log +4 -0
- package/logs/{connections-2021-11-29-20.log → connections-2021-12-08-16.log} +0 -0
- package/logs/{connections-2021-11-29-21.log → connections-2021-12-08-18.log} +0 -0
- package/logs/{connections-2021-11-29-23.log → connections-2021-12-08-22.log} +0 -0
- package/package.json +43 -43
- package/attachments/03176f83-6c50-4850-ab43-e6765b259afd.png +0 -0
- package/attachments/2b963bee-3ca5-4a86-95b7-e557b7eba8eb.html +0 -5695
- package/attachments/4880d6fb-7045-4c50-bfb9-daf83ecf6cc1.png +0 -0
- package/attachments/5bcde766-32e5-4cdc-ad9b-9e0139c122f4.txt +0 -673
- package/attachments/6f9d5fd4-6546-40c6-90c0-0207233ad12f.json +0 -145
- package/attachments/a1aaa123-4c8d-485e-9975-5b5b4add6a30.png +0 -0
- package/attachments/a518af54-7d8f-43c1-95f7-4a4353b3afc5.jpeg +0 -0
- package/attachments/b2331d78-f55d-4b9e-8aae-34f80c1252b3.jpeg +0 -0
- package/attachments/b9a3e2fd-fe83-4394-8fc8-66478443f65e.png +0 -0
- package/attachments/be3d2cd7-d236-45af-b512-4f141c8e2cfc.pptx +0 -0
- package/attachments/d211b356-1619-4f2b-9b10-ed46b4fd82de.png +0 -0
- package/attachments/d445e1a1-a048-49d7-96f2-284ac00fe96a.png +0 -0
- package/attachments/d462b12b-d519-4d6c-861a-f56d2494b135.png +0 -0
- package/attachments/f63986fb-bef5-4b55-a342-6fd4abf26739.png +0 -0
- package/logs/application-2021-12-13-00.log +0 -5
- package/logs/connections-2021-12-04-12.log +0 -0
- package/logs/connections-2021-12-13-00.log +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './camera-capturer'
|
|
2
2
|
import '@material/mwc-button'
|
|
3
|
-
import '@operato/ocr'
|
|
3
|
+
import '@operato/ocr/ox-ocr-helper.js'
|
|
4
4
|
|
|
5
5
|
import { gql } from 'graphql-tag'
|
|
6
6
|
import { css, html, LitElement } from 'lit-element'
|
|
@@ -71,7 +71,7 @@ class OCRViewPart extends LitElement {
|
|
|
71
71
|
boundaries = boundaries.concat(JSON.parse(barcodeResult[i].boundaries))
|
|
72
72
|
let texts = ocrResult[i].texts.concat(barcodeResult[i].texts)
|
|
73
73
|
results.push({ boundaries, texts })
|
|
74
|
-
} catch(err) {
|
|
74
|
+
} catch (err) {
|
|
75
75
|
console.error(err)
|
|
76
76
|
}
|
|
77
77
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import '@material/mwc-icon'
|
|
2
|
-
import '@operato/popup'
|
|
2
|
+
import '@operato/popup/ox-popup-menu.js'
|
|
3
3
|
|
|
4
|
-
import { PageView, store } from '@things-factory/shell'
|
|
5
4
|
import { css, html } from 'lit-element'
|
|
6
|
-
|
|
7
|
-
import { OxPopupMenu } from '@operato/popup'
|
|
8
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
|
+
|
|
7
|
+
import { OxPopupMenu } from '@operato/popup/ox-popup-menu.js'
|
|
8
|
+
import { PageView, store } from '@things-factory/shell'
|
|
9
|
+
|
|
9
10
|
import { referencePageStyles } from './reference-page-styles'
|
|
10
11
|
|
|
11
12
|
class ContextMenuPage extends connect(store)(PageView) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import '@operato/popup'
|
|
1
|
+
import '@operato/popup/ox-popup-list.js'
|
|
2
2
|
import '@operato/data-grist'
|
|
3
3
|
|
|
4
4
|
import { css, html } from 'lit-element'
|
|
5
|
-
import { i18next, localize } from '@things-factory/i18n-base'
|
|
6
5
|
|
|
6
|
+
import { i18next, localize } from '@things-factory/i18n-base'
|
|
7
7
|
import { PageView } from '@things-factory/shell'
|
|
8
8
|
|
|
9
9
|
class GristModePage extends localize(i18next)(PageView) {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import '@things-factory/barcode-ui'
|
|
2
|
-
import '@operato/input/
|
|
2
|
+
import '@operato/input/ox-input-barcode.js'
|
|
3
3
|
|
|
4
|
-
import { PageView, store } from '@things-factory/shell'
|
|
5
4
|
import { css, html } from 'lit-element'
|
|
6
|
-
|
|
7
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
|
+
|
|
7
|
+
import { PageView, store } from '@things-factory/shell'
|
|
8
|
+
|
|
8
9
|
import { referencePageStyles } from './reference-page-styles'
|
|
9
10
|
|
|
10
11
|
class LabelScanPage extends connect(store)(PageView) {
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import
|
|
1
|
+
import '@operato/input/ox-input-file.js'
|
|
2
|
+
|
|
2
3
|
import { gql } from 'graphql-tag'
|
|
4
|
+
import { css, html } from 'lit-element'
|
|
3
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
4
|
-
|
|
6
|
+
|
|
7
|
+
import { client, PageView, store } from '@things-factory/shell'
|
|
5
8
|
import { CommonButtonStyles } from '@things-factory/styles'
|
|
6
|
-
|
|
9
|
+
|
|
7
10
|
import { referencePageStyles } from './reference-page-styles'
|
|
8
11
|
|
|
9
12
|
class UploadPage extends connect(store)(PageView) {
|
|
@@ -43,7 +46,7 @@ class UploadPage extends connect(store)(PageView) {
|
|
|
43
46
|
<section>
|
|
44
47
|
<div attachment-wrap>
|
|
45
48
|
<label>Upload documents</label>
|
|
46
|
-
<file
|
|
49
|
+
<ox-input-file
|
|
47
50
|
name="attachments"
|
|
48
51
|
id="uploadDocument"
|
|
49
52
|
label="Select Files"
|
|
@@ -51,7 +54,7 @@ class UploadPage extends connect(store)(PageView) {
|
|
|
51
54
|
multiple="true"
|
|
52
55
|
?hidden=${false}
|
|
53
56
|
custom-input
|
|
54
|
-
></file
|
|
57
|
+
></ox-input-file>
|
|
55
58
|
</div>
|
|
56
59
|
<div id="result"></div>
|
|
57
60
|
</section>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
subdomain: 'system',
|
|
3
|
+
awsAppSync: {
|
|
4
|
+
apiUrl: '',
|
|
5
|
+
apiKey: ''
|
|
6
|
+
},
|
|
7
|
+
notification: {
|
|
8
|
+
fcm: {
|
|
9
|
+
serviceAccount: {
|
|
10
|
+
project_id: 'jinwonprivate',
|
|
11
|
+
private_key:
|
|
12
|
+
'-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDLfeerrWO159nT\noKVsk8a2oSKnuwd51VmF9/OTx/UqO2YbYKm5Z9+rUvyOG7W/EMA0r86hJi89L3x1\nQJhqG7Q0p0i3lQha7tt+qVANd0Y66686DxgwADJJA4PmckcH3kY44fgp6B5BqsO1\n1lrsssrJ4KjqqPKF4N+exKW3jfW0crPapYzK0xzOufa4SC7SVZKlo7EWzJpzYtiU\nQHE9MKoQVraJRjgU4HyFr2pZ028WxwP4CkQJE5pQraWKHO9tWrhIaF60hMEAQt6+\njpguPy/49qfYTxF0A7ffg5HKPDqsesvFd7zzqeHtR0r7Nv/E8S9geYPaMAdQooxK\niKRV6KVLAgMBAAECggEAGa2Bujj5ypP++YSdgJXQhEN8Dy9Qx6/DiV4FogHK7tvU\n9s0b+FXiXwjsmUq82ecqtzCcwdqtflU2KXOPvV/76DhYZYthpQaGswp5cWGPfqg2\nkdHNdbfTS0Gtd2W3Od0d/lfhYU8K4QgZLyJlPIC+ic/sG28F6h07X++k5lnRsJse\nePJ4ZgGmBBnjUIIflSgoMnH3UbmMhtV/DWUmLwtBCaxOIo7lOmjJAjMBlg7v0Vr1\nWqz4UTI8fRYGhB1jJKxWJ5LDd8zUgycVdS/PI/KWWxFAFQwo1xQIg2WFB/zdIdJt\n/hFPI442fT11TSu5+2L7vYcfFa8dgr5hnV2+yg7/rQKBgQDoGlzwBdDXZNBLSC7v\nK7SMHZHEezlCoM/FwVAtQh70eVlmotHWjlADDXIYTAK9yE7X0axSDGTo+U6nDEPT\nMec4zSGsNtBzZLHn/yfksPJey16TaqMAI+YYVyXl6gBdQW8g7wXb0qlHC/VQmIGA\nVbzXdyQLCJW3fQhPh4JB7lNr1QKBgQDgcWzgdzR4d7zP4vEUn7VGcnUvuXexERwe\nZlGEJCJTMD8iquZTa8Q28itM7xXrQIaLhADu8WxRTmDBZAIRNxjqg6me4jgah+/w\nMS58RY1CAz49vst8dZof+dliN1YtyhK0iYqE4SEmCJGZ+DBctBuxhKDbOnb9g5sC\nrlCLcqf8nwKBgFnZasTX24KmWiPqa5DWoGvlPnqLIR1z1zq8nOcIQ6dsGnmq6gRe\nzwZ/e/1/30fMdQkC9+xDNAUkDZiJHPByzwmkDzb1eThScLRYh/71qL2diJ0UmMkD\nHJ2rjtY0AbQYEobzQJdaM4F3VZ2/i9I8XoAidOd4iUygsEjpMjmHou+JAoGBAIxR\nvX0UacSLL4tU2d5H/yA8/NDKhm84QDktRPd1U9RojIBTEk7DSFgFzVZ6/1wl6jgd\nXiwE2fB3LPybVsOGi9hKWmiQC/1iUXr8dJCTNz43ItmdiECWkbY+EU9bQ1C7Tjh6\n6RQsX/oUT1tQlIPQwqOYRKzq/2t9tRLXAlo8Y5QHAoGAJ/KLmjfv/C8s4cRiLkKb\nKQt7V62QPW99+Aj4vabVlHEQJa17WU9yEjlajvaIxuEMYCWmnL0ev/b6fATZDF0c\n2+LdkBBBTb7/UqWLDZefsvGa7WRi3/0h7pDewJW5nqnQa9r82cklSxL9o83lbTul\neZAqA/iGTD+oCVDdZdjEuUE=\n-----END PRIVATE KEY-----\n',
|
|
13
|
+
client_email: 'vincent841@gmail.com'
|
|
14
|
+
},
|
|
15
|
+
appConfig: {
|
|
16
|
+
apiKey: 'AIzaSyA278C33qmsCE0lKBSbJtE6EIkkI1yQ0LU',
|
|
17
|
+
projectId: 'jinwonprivate',
|
|
18
|
+
messagingSenderId: '320534847604',
|
|
19
|
+
appId: '1:320534847604:web:bb848027fb4f840edef121'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
serverKey:
|
|
23
|
+
'AAAASqFdoHQ:APA91bHqi5hNmjxIDtzNoARwat6Yu7-BhTPlZO_eneiqptu9ZMCPwP07Wv9TWVuut4ImoCvlhVDeQyYazITDrLB9k_spyqsolLhOy7tUWxddWpC0g-Cc5EQFGFCyAW8DhnTYkQ2LQtKK',
|
|
24
|
+
vapidKey: {
|
|
25
|
+
subject: 'admin@hatiolab.com',
|
|
26
|
+
publicKey: 'BE2LSfLahJ2RYQnqRcUoENRugHcD1e-wEevP1IrUKrbYZKxq9TgJQUhNoCJ1vX4dIWlRTietq0mLCri4ZRE3K7k',
|
|
27
|
+
privateKey: 'IQTZCXOGYQ37_YJMIOj2alSnKShTEhXS618ht9IFa2k'
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
subdomain: "system",
|
|
3
|
+
email: {
|
|
4
|
+
host: 'smtp.office365.com', // your sender-email smtp host
|
|
5
|
+
port: 587, // smtp server port
|
|
6
|
+
secure: false, // true for 465, false for other ports
|
|
7
|
+
auth: {
|
|
8
|
+
user: 'your sender-email',
|
|
9
|
+
pass: 'your sender-email password' // generated ethereal password
|
|
10
|
+
},
|
|
11
|
+
secureConnection: false,
|
|
12
|
+
tls: {
|
|
13
|
+
ciphers: 'SSLv3'
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
logger: {
|
|
17
|
+
file: {
|
|
18
|
+
filename: 'logs/application-%DATE%.log',
|
|
19
|
+
datePattern: 'YYYY-MM-DD-HH',
|
|
20
|
+
zippedArchive: false,
|
|
21
|
+
maxSize: '20m',
|
|
22
|
+
maxFiles: '2d',
|
|
23
|
+
level: 'info'
|
|
24
|
+
},
|
|
25
|
+
console: {
|
|
26
|
+
level: 'silly'
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
ormconfig: {
|
|
30
|
+
name: 'default',
|
|
31
|
+
type: 'sqlite',
|
|
32
|
+
database: 'db.sqlite',
|
|
33
|
+
synchronize: false,
|
|
34
|
+
logging: true,
|
|
35
|
+
logger: 'debug'
|
|
36
|
+
}
|
|
37
|
+
}
|
package/db.sqlite
CHANGED
|
Binary file
|
|
@@ -6,9 +6,19 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2021-12-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1638949808512,
|
|
10
|
+
"name": "logs/application-2021-12-08-16.log",
|
|
11
|
+
"hash": "fd35b9b013170843873958026332c539"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"date": 1638955127015,
|
|
15
|
+
"name": "logs/application-2021-12-08-18.log",
|
|
16
|
+
"hash": "c2b377ae4a401d05b90e0ac4b62159ac"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"date": 1638969346958,
|
|
20
|
+
"name": "logs/application-2021-12-08-22.log",
|
|
21
|
+
"hash": "df01225e8fb544490c63cf4d002eb015"
|
|
12
22
|
}
|
|
13
23
|
]
|
|
14
24
|
}
|
|
@@ -6,29 +6,19 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-2021-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1638949810432,
|
|
10
|
+
"name": "logs/connections-2021-12-08-16.log",
|
|
11
|
+
"hash": "f9fcf5892855bd9524e9d410b8051b61"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/connections-2021-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1638955128396,
|
|
15
|
+
"name": "logs/connections-2021-12-08-18.log",
|
|
16
|
+
"hash": "7479b86c8cc7da56c75494fd1246ec0d"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
"date":
|
|
20
|
-
"name": "logs/connections-2021-
|
|
21
|
-
"hash": "
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"date": 1638588025596,
|
|
25
|
-
"name": "logs/connections-2021-12-04-12.log",
|
|
26
|
-
"hash": "db210c324f72a98be8b697f2793027f1"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"date": 1639322570514,
|
|
30
|
-
"name": "logs/connections-2021-12-13-00.log",
|
|
31
|
-
"hash": "6e9d1b586019937239ea4fbdad5e3683"
|
|
19
|
+
"date": 1638969348646,
|
|
20
|
+
"name": "logs/connections-2021-12-08-22.log",
|
|
21
|
+
"hash": "8529a0083dd4d37cec678476cafb383a"
|
|
32
22
|
}
|
|
33
23
|
]
|
|
34
24
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2021-12-08T07:50:09.843Z info: File Storage is Ready.
|
|
2
|
+
2021-12-08T07:50:12.213Z info: Database connection established
|
|
3
|
+
2021-12-08T07:50:12.905Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-12-08T07:50:12.906Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2021-12-08T09:18:47.959Z info: File Storage is Ready.
|
|
2
|
+
2021-12-08T09:18:49.692Z info: Database connection established
|
|
3
|
+
2021-12-08T09:18:50.285Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-12-08T09:18:50.286Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2021-12-08T13:15:48.231Z info: File Storage is Ready.
|
|
2
|
+
2021-12-08T13:15:50.003Z info: Database connection established
|
|
3
|
+
2021-12-08T13:15:50.595Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-12-08T13:15:50.595Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
File without changes
|
|
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.28",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -37,51 +37,51 @@
|
|
|
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.31",
|
|
41
41
|
"@material/mwc-checkbox": "^0.25.3",
|
|
42
|
-
"@operato/data-grist": "^0.
|
|
43
|
-
"@operato/ghost-print": "^0.
|
|
44
|
-
"@operato/input": "^0.
|
|
45
|
-
"@operato/ocr": "^0.
|
|
46
|
-
"@operato/popup": "^0.
|
|
47
|
-
"@operato/pull-to-refresh": "^0.
|
|
48
|
-
"@operato/scene-chartjs": "^0.
|
|
49
|
-
"@operato/scene-clock": "^0.
|
|
50
|
-
"@operato/scene-gauge": "^0.
|
|
51
|
-
"@operato/scene-indoor-map": "^0.
|
|
52
|
-
"@operato/scene-progressbar": "^0.
|
|
53
|
-
"@operato/scene-random": "^0.
|
|
54
|
-
"@operato/scene-switch": "^0.
|
|
55
|
-
"@operato/scene-tab": "^0.
|
|
56
|
-
"@things-factory/api": "^4.0.
|
|
57
|
-
"@things-factory/apptool-ui": "^4.0.
|
|
58
|
-
"@things-factory/auth-ui": "^4.0.
|
|
59
|
-
"@things-factory/board-service": "^4.0.
|
|
60
|
-
"@things-factory/board-ui": "^4.0.
|
|
61
|
-
"@things-factory/context-ui": "^4.0.
|
|
62
|
-
"@things-factory/dashboard": "^4.0.
|
|
63
|
-
"@things-factory/export-ui": "^4.0.
|
|
64
|
-
"@things-factory/export-ui-excel": "^4.0.
|
|
65
|
-
"@things-factory/grist-ui": "^4.0.
|
|
66
|
-
"@things-factory/help": "^4.0.
|
|
67
|
-
"@things-factory/i18n-ui": "^4.0.
|
|
68
|
-
"@things-factory/integration-ui": "^4.0.
|
|
69
|
-
"@things-factory/lite-menu": "^4.0.
|
|
70
|
-
"@things-factory/more-ui": "^4.0.
|
|
71
|
-
"@things-factory/notification": "^4.0.
|
|
72
|
-
"@things-factory/oauth2-client": "^4.0.
|
|
73
|
-
"@things-factory/print-ui": "^4.0.
|
|
74
|
-
"@things-factory/resource-ui": "^4.0.
|
|
75
|
-
"@things-factory/scene-form": "^4.0.
|
|
42
|
+
"@operato/data-grist": "^0.3.4",
|
|
43
|
+
"@operato/ghost-print": "^0.3.4",
|
|
44
|
+
"@operato/input": "^0.3.4",
|
|
45
|
+
"@operato/ocr": "^0.3.4",
|
|
46
|
+
"@operato/popup": "^0.3.4",
|
|
47
|
+
"@operato/pull-to-refresh": "^0.3.4",
|
|
48
|
+
"@operato/scene-chartjs": "^0.1.1",
|
|
49
|
+
"@operato/scene-clock": "^0.1.1",
|
|
50
|
+
"@operato/scene-gauge": "^0.1.1",
|
|
51
|
+
"@operato/scene-indoor-map": "^0.1.1",
|
|
52
|
+
"@operato/scene-progressbar": "^0.1.1",
|
|
53
|
+
"@operato/scene-random": "^0.1.1",
|
|
54
|
+
"@operato/scene-switch": "^0.1.1",
|
|
55
|
+
"@operato/scene-tab": "^0.1.1",
|
|
56
|
+
"@things-factory/api": "^4.0.28",
|
|
57
|
+
"@things-factory/apptool-ui": "^4.0.28",
|
|
58
|
+
"@things-factory/auth-ui": "^4.0.28",
|
|
59
|
+
"@things-factory/board-service": "^4.0.28",
|
|
60
|
+
"@things-factory/board-ui": "^4.0.28",
|
|
61
|
+
"@things-factory/context-ui": "^4.0.28",
|
|
62
|
+
"@things-factory/dashboard": "^4.0.28",
|
|
63
|
+
"@things-factory/export-ui": "^4.0.28",
|
|
64
|
+
"@things-factory/export-ui-excel": "^4.0.28",
|
|
65
|
+
"@things-factory/grist-ui": "^4.0.28",
|
|
66
|
+
"@things-factory/help": "^4.0.28",
|
|
67
|
+
"@things-factory/i18n-ui": "^4.0.28",
|
|
68
|
+
"@things-factory/integration-ui": "^4.0.28",
|
|
69
|
+
"@things-factory/lite-menu": "^4.0.28",
|
|
70
|
+
"@things-factory/more-ui": "^4.0.28",
|
|
71
|
+
"@things-factory/notification": "^4.0.28",
|
|
72
|
+
"@things-factory/oauth2-client": "^4.0.28",
|
|
73
|
+
"@things-factory/print-ui": "^4.0.28",
|
|
74
|
+
"@things-factory/resource-ui": "^4.0.28",
|
|
75
|
+
"@things-factory/scene-form": "^4.0.28",
|
|
76
76
|
"@things-factory/scene-half-roundrect": "^4.0.9",
|
|
77
|
-
"@things-factory/scene-news-ticker": "^4.0.
|
|
78
|
-
"@things-factory/setting-base": "^4.0.
|
|
79
|
-
"@things-factory/setting-ui": "^4.0.
|
|
80
|
-
"@things-factory/shell": "^4.0.
|
|
81
|
-
"@things-factory/system-ui": "^4.0.
|
|
77
|
+
"@things-factory/scene-news-ticker": "^4.0.28",
|
|
78
|
+
"@things-factory/setting-base": "^4.0.28",
|
|
79
|
+
"@things-factory/setting-ui": "^4.0.28",
|
|
80
|
+
"@things-factory/shell": "^4.0.28",
|
|
81
|
+
"@things-factory/system-ui": "^4.0.28"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@things-factory/builder": "^4.0.
|
|
84
|
+
"@things-factory/builder": "^4.0.28"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "fc526e27ae290a6fa3f001ce7ee75a2904b1d363"
|
|
87
87
|
}
|
|
Binary file
|