@things-factory/reference-app 4.1.27 → 5.0.0-alpha.2

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.
Files changed (40) hide show
  1. package/attachments/1aa35791-259f-42f3-9bab-faf4dc81c54a.png +0 -0
  2. package/attachments/39e79f93-f50c-4d0d-9016-12ef6fc72d04.pptx +0 -0
  3. package/attachments/5705d276-f428-44d6-a0b8-9667671fc011.png +0 -0
  4. package/attachments/5f63a469-132c-4ddd-a7a8-37d01f693c9d.png +0 -0
  5. package/attachments/69808491-8e6b-45e2-9bf8-dccea1c5b52e.png +0 -0
  6. package/attachments/6c3b55e5-8a42-4afa-a456-9f540972a4b5.png +0 -0
  7. package/attachments/7927fe8e-2246-453d-9869-7072b983437c.png +0 -0
  8. package/attachments/7d150574-01b8-4439-96a0-d57299f3ffcf.png +0 -0
  9. package/attachments/8bacec9a-bd5d-4dbf-bbcb-9f08dd7b60d5.png +0 -0
  10. package/attachments/a1cf142c-f3c2-442c-b8d5-a7f9cc6a59b3.png +0 -0
  11. package/attachments/aedcc3d7-a4ab-4ada-98bd-0db6fa5061ba.png +0 -0
  12. package/attachments/c1cd9051-bcf4-4711-89a2-63dfefbd969a.png +0 -0
  13. package/attachments/cb3ac834-ece0-4802-bef0-dfdc0fcd93bd.png +0 -0
  14. package/attachments/fb06c90b-df44-4ac7-b71c-056278439290.png +0 -0
  15. package/client/bootstrap.js +16 -11
  16. package/client/editors/id-selector.js +1 -1
  17. package/client/themes/grist-theme.css +3 -0
  18. package/db.sqlite +0 -0
  19. package/dist-server/index.js +5 -1
  20. package/dist-server/index.js.map +1 -1
  21. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +40 -0
  22. package/logs/.33a2b6820ab05dbb0f8bea4849090e12685d0b36-audit.json +14 -0
  23. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +55 -0
  24. package/logs/application-2022-03-07-00.log +33 -0
  25. package/logs/application-2022-03-07-01.log +13 -0
  26. package/logs/application-2022-03-07-11.log +4 -0
  27. package/logs/application-2022-03-07-21.log +15 -0
  28. package/logs/application-2022-03-08-11.log +11 -0
  29. package/logs/application-2022-03-08-12.log +28 -0
  30. package/logs/connections-2022-01-01-00.log +0 -0
  31. package/logs/connections-2022-02-23-16.log +0 -0
  32. package/logs/connections-2022-03-03-12.log +0 -0
  33. package/logs/connections-2022-03-03-23.log +0 -0
  34. package/logs/connections-2022-03-07-00.log +0 -0
  35. package/logs/connections-2022-03-07-01.log +0 -0
  36. package/logs/connections-2022-03-07-11.log +0 -0
  37. package/logs/connections-2022-03-07-21.log +0 -0
  38. package/logs/connections-2022-03-08-11.log +0 -0
  39. package/logs/connections-2022-03-08-12.log +0 -0
  40. package/package.json +39 -38
@@ -3,21 +3,23 @@ import '@things-factory/barcode-base' /* for <default-label-printer-setting-let>
3
3
  import '@things-factory/notification' /* for notification-badge */
4
4
  import './components/ocr-viewpart'
5
5
 
6
- import { TOOL_POSITION, VIEWPART_POSITION, appendViewpart, toggleOverlay } from '@things-factory/layout-base'
6
+ import { html } from 'lit-html'
7
+
8
+ import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
7
9
  import { getEditor, registerEditor, registerRenderer } from '@operato/data-grist'
8
- import { navigate, store } from '@things-factory/shell'
10
+ import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
11
+ import { auth } from '@things-factory/auth-base'
12
+ import { setAuthManagementMenus } from '@things-factory/auth-ui'
13
+ import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@things-factory/layout-base'
9
14
  import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
10
-
11
15
  import { ADD_MORENDA } from '@things-factory/more-base'
12
16
  import { ADD_SETTING } from '@things-factory/setting-base'
13
- import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
14
- import { BarcodeRenderer } from './renderers/barcode-renderer'
17
+ import { navigate, store } from '@things-factory/shell'
18
+
15
19
  import { IdEditor } from './editors/id-editor'
16
- import { IdRenderer } from './renderers/id-renderer'
17
- import { auth } from '@things-factory/auth-base'
18
20
  import { getMenuTemplate } from './menu'
19
- import { html } from 'lit-html'
20
- import { setAuthManagementMenus } from '@things-factory/auth-ui'
21
+ import { BarcodeRenderer } from './renderers/barcode-renderer'
22
+ import { IdRenderer } from './renderers/id-renderer'
21
23
 
22
24
  console.log(
23
25
  `%c
@@ -31,11 +33,14 @@ console.log(
31
33
  )
32
34
 
33
35
  export default function bootstrap() {
34
- registerRenderer('id', IdRenderer)
36
+ // registerRenderer('id', IdRenderer)
35
37
  registerRenderer('barcode', BarcodeRenderer)
36
- registerEditor('id', IdEditor)
38
+ // registerEditor('id', IdEditor)
37
39
  registerEditor('barcode', getEditor('string'))
38
40
 
41
+ /* set board-modeller group and default templates */
42
+ registerDefaultGroups()
43
+
39
44
  setupMenuPart({
40
45
  hovering: true,
41
46
  position: VIEWPART_POSITION.HEADERBAR,
@@ -69,7 +69,7 @@ export class IdSelector extends LitElement {
69
69
  .fetchHandler=${this.fetchHandler.bind(this)}
70
70
  .selectedRecords=${this.selectedRecords}
71
71
  >
72
- <div id="filters" slot="headless">
72
+ <div id="filters" slot="headroom">
73
73
  <ox-filters-form></ox-filters-form>
74
74
  </div>
75
75
  </ox-grist>
@@ -139,6 +139,8 @@ body {
139
139
  --record-view-footer-button-color: var(--theme-white-color);
140
140
  --record-view-footer-iconbutton-size: var(--fontsize-large);
141
141
  --record-view-footer-focus-background: var(--primary-color);
142
+
143
+ --ox-grist-padding: var(--padding-default) var(--padding-default) 0 var(--padding-default);
142
144
  }
143
145
 
144
146
  @media only screen and (max-width: 460px) {
@@ -150,6 +152,7 @@ body {
150
152
  --record-view-footer-iconbutton-size: 35px;
151
153
  --record-view-footer-iconbutton-margin: -2px;
152
154
  --record-view-footer-iconbutton-display: block;
155
+ --ox-grist-padding: 0;
153
156
  }
154
157
  }
155
158
 
package/db.sqlite ADDED
Binary file
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
5
9
  }) : (function(o, m, k, k2) {
6
10
  if (k2 === undefined) k2 = k;
7
11
  o[k2] = m[k];
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4CAAyB;AACzB,+CAA4B;AAC5B,gDAA6B;AAE7B,oBAAiB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,+CAA4B;AAC5B,gDAA6B;AAE7B,oBAAiB"}
@@ -0,0 +1,40 @@
1
+ {
2
+ "keep": {
3
+ "days": true,
4
+ "amount": 2
5
+ },
6
+ "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
+ "files": [
8
+ {
9
+ "date": 1646578967624,
10
+ "name": "logs/application-2022-03-07-00.log",
11
+ "hash": "97a8016a467e3ac742769ca5bbf7a758"
12
+ },
13
+ {
14
+ "date": 1646582735390,
15
+ "name": "logs/application-2022-03-07-01.log",
16
+ "hash": "ffb8cdd50ee3c6277f8aa9382968ecf0"
17
+ },
18
+ {
19
+ "date": 1646621312778,
20
+ "name": "logs/application-2022-03-07-11.log",
21
+ "hash": "b1b87bf3758fa2639718bea82fbd0a88"
22
+ },
23
+ {
24
+ "date": 1646655403350,
25
+ "name": "logs/application-2022-03-07-21.log",
26
+ "hash": "9137bad91673b69170f611be3835a6a6"
27
+ },
28
+ {
29
+ "date": 1646705567978,
30
+ "name": "logs/application-2022-03-08-11.log",
31
+ "hash": "ca2ef28fa1c0a70d8caaf666c5ac3cce"
32
+ },
33
+ {
34
+ "date": 1646709541288,
35
+ "name": "logs/application-2022-03-08-12.log",
36
+ "hash": "190c7029a30f286e6d982d4252794070"
37
+ }
38
+ ],
39
+ "hashType": "md5"
40
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "keep": {
3
+ "days": true,
4
+ "amount": 14
5
+ },
6
+ "auditLog": "logs/.33a2b6820ab05dbb0f8bea4849090e12685d0b36-audit.json",
7
+ "files": [
8
+ {
9
+ "date": 1640966868409,
10
+ "name": "logs/connections-2022-01-01-00.log",
11
+ "hash": "30cd7f1157b4efdd264957756d0da1da"
12
+ }
13
+ ]
14
+ }
@@ -0,0 +1,55 @@
1
+ {
2
+ "keep": {
3
+ "days": true,
4
+ "amount": 14
5
+ },
6
+ "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
+ "files": [
8
+ {
9
+ "date": 1645599637107,
10
+ "name": "logs/connections-2022-02-23-16.log",
11
+ "hash": "8f401c079305cd71461b9b0c338eb388"
12
+ },
13
+ {
14
+ "date": 1646277169860,
15
+ "name": "logs/connections-2022-03-03-12.log",
16
+ "hash": "099d75b2053d33c0bcd9d720f68d7a45"
17
+ },
18
+ {
19
+ "date": 1646318467788,
20
+ "name": "logs/connections-2022-03-03-23.log",
21
+ "hash": "85e1a2e4cbb3dc21df27e9f96b0643c1"
22
+ },
23
+ {
24
+ "date": 1646578970475,
25
+ "name": "logs/connections-2022-03-07-00.log",
26
+ "hash": "845c9d8bb27c35a89ac48e4b802561d3"
27
+ },
28
+ {
29
+ "date": 1646582740557,
30
+ "name": "logs/connections-2022-03-07-01.log",
31
+ "hash": "e2eec120cd91c17cfb4eb217f76b9b77"
32
+ },
33
+ {
34
+ "date": 1646621315559,
35
+ "name": "logs/connections-2022-03-07-11.log",
36
+ "hash": "536d4593a9a09313276b380ed8088afb"
37
+ },
38
+ {
39
+ "date": 1646656229679,
40
+ "name": "logs/connections-2022-03-07-21.log",
41
+ "hash": "de5840ec296bff5a84a84619a0ce19a0"
42
+ },
43
+ {
44
+ "date": 1646706098627,
45
+ "name": "logs/connections-2022-03-08-11.log",
46
+ "hash": "0c65b9b0713966af1449ba53a85b9967"
47
+ },
48
+ {
49
+ "date": 1646709548229,
50
+ "name": "logs/connections-2022-03-08-12.log",
51
+ "hash": "cc5b9beeaf3783a5aeafc2a40dc4c6a2"
52
+ }
53
+ ],
54
+ "hashType": "md5"
55
+ }
@@ -0,0 +1,33 @@
1
+ 2022-03-06T15:02:49.405Z info: File Storage is Ready.
2
+ 2022-03-06T15:02:53.434Z info: Database connection established
3
+ 2022-03-06T15:02:54.491Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
+ 2022-03-06T15:02:54.497Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
5
+ 2022-03-06T15:05:08.646Z error: SQLITE_CONSTRAINT: FOREIGN KEY constraint failed
6
+ 2022-03-06T15:16:23.935Z info: File Storage is Ready.
7
+ 2022-03-06T15:16:29.209Z info: Database connection established
8
+ 2022-03-06T15:16:30.118Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
9
+ 2022-03-06T15:16:30.118Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
10
+ 2022-03-06T15:30:46.135Z info: File Storage is Ready.
11
+ 2022-03-06T15:30:51.459Z info: Database connection established
12
+ 2022-03-06T15:30:52.417Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
13
+ 2022-03-06T15:30:52.417Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
14
+ 2022-03-06T15:41:52.841Z info: File Storage is Ready.
15
+ 2022-03-06T15:41:57.689Z info: Database connection established
16
+ 2022-03-06T15:41:58.674Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
17
+ 2022-03-06T15:41:58.674Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
18
+ 2022-03-06T15:43:04.369Z info: File Storage is Ready.
19
+ 2022-03-06T15:43:08.893Z info: Database connection established
20
+ 2022-03-06T15:43:10.676Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
21
+ 2022-03-06T15:43:10.676Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
22
+ 2022-03-06T15:51:02.227Z info: File Storage is Ready.
23
+ 2022-03-06T15:51:09.191Z info: Database connection established
24
+ 2022-03-06T15:51:10.291Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
25
+ 2022-03-06T15:51:10.292Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
26
+ 2022-03-06T15:55:00.755Z info: File Storage is Ready.
27
+ 2022-03-06T15:55:06.114Z info: Database connection established
28
+ 2022-03-06T15:55:07.089Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
29
+ 2022-03-06T15:55:07.089Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
30
+ 2022-03-06T15:57:23.638Z info: File Storage is Ready.
31
+ 2022-03-06T15:57:30.102Z info: Database connection established
32
+ 2022-03-06T15:57:31.121Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
33
+ 2022-03-06T15:57:31.121Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
@@ -0,0 +1,13 @@
1
+ 2022-03-06T16:05:38.564Z info: File Storage is Ready.
2
+ 2022-03-06T16:05:45.566Z info: Database connection established
3
+ 2022-03-06T16:05:46.727Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
+ 2022-03-06T16:05:46.728Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
5
+ 2022-03-06T16:06:29.777Z error: SQLITE_CONSTRAINT: FOREIGN KEY constraint failed
6
+ 2022-03-06T16:09:30.799Z info: File Storage is Ready.
7
+ 2022-03-06T16:09:38.645Z info: Database connection established
8
+ 2022-03-06T16:09:40.015Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
9
+ 2022-03-06T16:09:40.016Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
10
+ 2022-03-06T16:11:44.721Z info: File Storage is Ready.
11
+ 2022-03-06T16:11:51.913Z info: Database connection established
12
+ 2022-03-06T16:11:53.264Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
13
+ 2022-03-06T16:11:53.265Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
@@ -0,0 +1,4 @@
1
+ 2022-03-07T02:48:34.467Z info: File Storage is Ready.
2
+ 2022-03-07T02:48:38.755Z info: Database connection established
3
+ 2022-03-07T02:48:39.739Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
+ 2022-03-07T02:48:39.739Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
@@ -0,0 +1,15 @@
1
+ 2022-03-07T12:16:43.343Z error: SQLITE_CONSTRAINT: UNIQUE constraint failed: data_sensors.device_id
2
+ 2022-03-07T12:17:18.349Z error: SQLITE_CONSTRAINT: UNIQUE constraint failed: data_sensors.device_id
3
+ 2022-03-07T12:30:27.680Z info: File Storage is Ready.
4
+ 2022-03-07T12:30:34.574Z info: Database connection established
5
+ 2022-03-07T12:30:35.732Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2022-03-07T12:30:35.732Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
7
+ 2022-03-07T12:36:32.069Z error: SQLITE_CONSTRAINT: UNIQUE constraint failed: data_sensors.domain_id, data_sensors.name
8
+ 2022-03-07T12:39:40.586Z info: File Storage is Ready.
9
+ 2022-03-07T12:39:47.436Z info: Database connection established
10
+ 2022-03-07T12:39:48.446Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
11
+ 2022-03-07T12:39:48.447Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
12
+ 2022-03-07T12:41:48.315Z info: File Storage is Ready.
13
+ 2022-03-07T12:41:55.680Z info: Database connection established
14
+ 2022-03-07T12:41:56.921Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
15
+ 2022-03-07T12:41:56.921Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
@@ -0,0 +1,11 @@
1
+ 2022-03-08T02:12:47.926Z error: No entity column "dataSetId" was found.
2
+ 2022-03-08T02:15:38.681Z error: No entity column "dataSetId" was found.
3
+ 2022-03-08T02:21:36.467Z info: File Storage is Ready.
4
+ 2022-03-08T02:21:43.332Z info: Database connection established
5
+ 2022-03-08T02:21:44.414Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2022-03-08T02:21:44.415Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
7
+ 2022-03-08T02:31:16.947Z error: No entity column "dataSetId" was found.
8
+ 2022-03-08T02:31:56.761Z info: File Storage is Ready.
9
+ 2022-03-08T02:32:03.810Z info: Database connection established
10
+ 2022-03-08T02:32:04.881Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
11
+ 2022-03-08T02:32:04.882Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
@@ -0,0 +1,28 @@
1
+ 2022-03-08T03:19:04.941Z info: File Storage is Ready.
2
+ 2022-03-08T03:19:14.196Z info: Database connection established
3
+ 2022-03-08T03:19:15.421Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
+ 2022-03-08T03:19:15.422Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
5
+ 2022-03-08T03:20:49.523Z error: Unable to serialize value '1646709649485' as it's not an instance of 'Date'
6
+ 2022-03-08T03:21:40.098Z info: File Storage is Ready.
7
+ 2022-03-08T03:21:46.617Z info: Database connection established
8
+ 2022-03-08T03:21:47.667Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
9
+ 2022-03-08T03:21:47.667Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
10
+ 2022-03-08T03:22:27.246Z error: stream is not readable
11
+ 2022-03-08T03:22:27.274Z error: stream is not readable
12
+ 2022-03-08T03:22:27.284Z error: stream is not readable
13
+ 2022-03-08T03:22:27.296Z error: stream is not readable
14
+ 2022-03-08T03:22:27.306Z error: stream is not readable
15
+ 2022-03-08T03:22:27.533Z error: stream is not readable
16
+ 2022-03-08T03:22:27.544Z error: stream is not readable
17
+ 2022-03-08T03:28:15.664Z info: File Storage is Ready.
18
+ 2022-03-08T03:28:23.985Z info: Database connection established
19
+ 2022-03-08T03:28:25.193Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
20
+ 2022-03-08T03:28:25.194Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
21
+ 2022-03-08T03:28:37.898Z error: Unable to serialize value '2022-03-08' as it's not an instance of 'Date'
22
+ 2022-03-08T03:28:37.899Z error: Unable to serialize value '2022-03-08' as it's not an instance of 'Date'
23
+ 2022-03-08T03:29:45.766Z error: Unable to serialize value '2022-03-08' as it's not an instance of 'Date'
24
+ 2022-03-08T03:29:45.776Z error: Unable to serialize value '2022-03-08' as it's not an instance of 'Date'
25
+ 2022-03-08T03:31:13.275Z info: File Storage is Ready.
26
+ 2022-03-08T03:31:20.217Z info: Database connection established
27
+ 2022-03-08T03:31:21.473Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
28
+ 2022-03-08T03:31:21.473Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
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.1.27",
3
+ "version": "5.0.0-alpha.2",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -39,16 +39,16 @@
39
39
  "dependencies": {
40
40
  "@hatiolab/things-scene": "^2.7.34",
41
41
  "@material/mwc-checkbox": "^0.25.3",
42
- "@operato/data-grist": "^0.3.28",
43
- "@operato/ghost-print": "^0.3.28",
44
- "@operato/graphql": "^0.3.28",
45
- "@operato/help": "^0.3.28",
46
- "@operato/i18n": "^0.3.28",
47
- "@operato/input": "^0.3.28",
48
- "@operato/layout": "^0.3.28",
49
- "@operato/ocr": "^0.3.28",
50
- "@operato/popup": "^0.3.28",
51
- "@operato/pull-to-refresh": "^0.3.28",
42
+ "@operato/data-grist": "^0.4.3",
43
+ "@operato/ghost-print": "^0.4.3",
44
+ "@operato/graphql": "^0.4.3",
45
+ "@operato/help": "^0.4.3",
46
+ "@operato/i18n": "^0.4.3",
47
+ "@operato/input": "^0.4.3",
48
+ "@operato/layout": "^0.4.3",
49
+ "@operato/ocr": "^0.4.3",
50
+ "@operato/popup": "^0.4.3",
51
+ "@operato/pull-to-refresh": "^0.4.3",
52
52
  "@operato/scene-chartjs": "^0.1.5",
53
53
  "@operato/scene-clock": "^0.1.5",
54
54
  "@operato/scene-gauge": "^0.1.5",
@@ -59,34 +59,35 @@
59
59
  "@operato/scene-random": "^0.1.5",
60
60
  "@operato/scene-switch": "^0.1.5",
61
61
  "@operato/scene-tab": "^0.1.5",
62
- "@operato/shell": "^0.3.28",
63
- "@operato/utils": "^0.3.28",
64
- "@things-factory/api": "^4.1.27",
65
- "@things-factory/apptool-ui": "^4.1.27",
66
- "@things-factory/auth-ui": "^4.1.27",
67
- "@things-factory/board-service": "^4.1.27",
68
- "@things-factory/board-ui": "^4.1.27",
69
- "@things-factory/context-ui": "^4.1.27",
70
- "@things-factory/dashboard": "^4.1.27",
71
- "@things-factory/export-ui": "^4.1.27",
72
- "@things-factory/export-ui-excel": "^4.1.27",
73
- "@things-factory/grist-ui": "^4.1.27",
74
- "@things-factory/help": "^4.1.27",
75
- "@things-factory/integration-ui": "^4.1.27",
76
- "@things-factory/lite-menu": "^4.1.27",
77
- "@things-factory/more-ui": "^4.1.27",
78
- "@things-factory/notification": "^4.1.27",
79
- "@things-factory/oauth2-client": "^4.1.27",
80
- "@things-factory/print-ui": "^4.1.27",
81
- "@things-factory/resource-ui": "^4.1.27",
82
- "@things-factory/scene-form": "^4.1.19",
83
- "@things-factory/setting-base": "^4.1.27",
84
- "@things-factory/setting-ui": "^4.1.27",
85
- "@things-factory/shell": "^4.1.27",
86
- "@things-factory/system-ui": "^4.1.27"
62
+ "@operato/shell": "^0.4.3",
63
+ "@operato/utils": "^0.4.3",
64
+ "@things-factory/api": "^5.0.0-alpha.2",
65
+ "@things-factory/apptool-ui": "^5.0.0-alpha.2",
66
+ "@things-factory/auth-ui": "^5.0.0-alpha.2",
67
+ "@things-factory/board-service": "^5.0.0-alpha.2",
68
+ "@things-factory/board-ui": "^5.0.0-alpha.2",
69
+ "@things-factory/context-ui": "^5.0.0-alpha.2",
70
+ "@things-factory/dashboard": "^5.0.0-alpha.2",
71
+ "@things-factory/dataset": "^5.0.0-alpha.2",
72
+ "@things-factory/export-ui": "^5.0.0-alpha.2",
73
+ "@things-factory/export-ui-excel": "^5.0.0-alpha.2",
74
+ "@things-factory/grist-ui": "^5.0.0-alpha.2",
75
+ "@things-factory/help": "^5.0.0-alpha.2",
76
+ "@things-factory/integration-ui": "^5.0.0-alpha.2",
77
+ "@things-factory/lite-menu": "^5.0.0-alpha.2",
78
+ "@things-factory/more-ui": "^5.0.0-alpha.2",
79
+ "@things-factory/notification": "^5.0.0-alpha.2",
80
+ "@things-factory/oauth2-client": "^5.0.0-alpha.2",
81
+ "@things-factory/print-ui": "^5.0.0-alpha.2",
82
+ "@things-factory/resource-ui": "^5.0.0-alpha.2",
83
+ "@things-factory/scene-form": "^5.0.0-alpha.2",
84
+ "@things-factory/setting-base": "^5.0.0-alpha.2",
85
+ "@things-factory/setting-ui": "^5.0.0-alpha.2",
86
+ "@things-factory/shell": "^5.0.0-alpha.2",
87
+ "@things-factory/system-ui": "^5.0.0-alpha.2"
87
88
  },
88
89
  "devDependencies": {
89
- "@things-factory/builder": "^4.1.19"
90
+ "@things-factory/builder": "^5.0.0-alpha.2"
90
91
  },
91
- "gitHead": "d2bcc934a52e1a2f68738ec8b56ad72503172f6f"
92
+ "gitHead": "055536f981d229d51ae63f46585036b35fa86602"
92
93
  }