@things-factory/operato-wms 4.1.36 → 5.0.0-alpha.11
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/client/pages/inbound/unload-product.js +1 -1
- package/client/pages/inventory-check/create-cycle-count.js +0 -2
- package/client/pages/master/product/product-detail-bizplace-setting-popup.js +0 -2
- package/client/pages/master/product/product-details-popup.js +10 -9
- package/client/pages/master/product/product-list.js +10 -9
- package/client/pages/outbound/worksheet-batch-picking.js +1 -1
- package/dist-server/graphql/index.js +5 -1
- package/dist-server/graphql/index.js.map +1 -1
- package/dist-server/graphql/resolvers/index.js +5 -1
- package/dist-server/graphql/resolvers/index.js.map +1 -1
- package/dist-server/graphql/types/index.js +5 -1
- package/dist-server/graphql/types/index.js.map +1 -1
- package/dist-server/index.js +5 -1
- package/dist-server/index.js.map +1 -1
- package/dist-server/utils/index.js +5 -1
- package/dist-server/utils/index.js.map +1 -1
- package/package.json +66 -66
|
@@ -11,7 +11,7 @@ import './serial-number-list-popup'
|
|
|
11
11
|
|
|
12
12
|
import gql from 'graphql-tag'
|
|
13
13
|
import { css, html } from 'lit-element'
|
|
14
|
-
import orderBy from 'lodash/orderBy'
|
|
14
|
+
import orderBy from 'lodash-es/orderBy'
|
|
15
15
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
16
16
|
|
|
17
17
|
import { MultiColumnFormStyles } from '@things-factory/form-ui'
|
|
@@ -16,8 +16,6 @@ import { isMobileDevice } from '@things-factory/utils'
|
|
|
16
16
|
import { fetchLocationSortingRule } from '../../fetch-location-sorting-rule'
|
|
17
17
|
import { LOCATION_SORTING_RULE } from '../constants'
|
|
18
18
|
|
|
19
|
-
const _ = require('lodash')
|
|
20
|
-
|
|
21
19
|
class CreateCycleCount extends localize(i18next)(PageView) {
|
|
22
20
|
static get properties() {
|
|
23
21
|
return {
|
|
@@ -9,8 +9,6 @@ import { client, CustomAlert, gqlContext } from '@things-factory/shell'
|
|
|
9
9
|
import { ScrollbarStyles } from '@things-factory/styles'
|
|
10
10
|
import { flattenObject, isMobileDevice } from '@things-factory/utils'
|
|
11
11
|
|
|
12
|
-
const _ = require('lodash')
|
|
13
|
-
|
|
14
12
|
export class ProductDetailBizplaceSettingPopup extends localize(i18next)(LitElement) {
|
|
15
13
|
static get styles() {
|
|
16
14
|
return [
|
|
@@ -3,6 +3,9 @@ import '@things-factory/grist-ui'
|
|
|
3
3
|
|
|
4
4
|
import gql from 'graphql-tag'
|
|
5
5
|
import { css, html, LitElement } from 'lit-element'
|
|
6
|
+
import isEmpty from 'lodash-es/isEmpty'
|
|
7
|
+
import isNaN from 'lodash-es/isNaN'
|
|
8
|
+
import isNumber from 'lodash-es/isNumber'
|
|
6
9
|
|
|
7
10
|
import { getCodeByName } from '@things-factory/code-base'
|
|
8
11
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
@@ -10,8 +13,6 @@ import { client, CustomAlert, gqlContext } from '@things-factory/shell'
|
|
|
10
13
|
import { ScrollbarStyles } from '@things-factory/styles'
|
|
11
14
|
import { isMobileDevice } from '@things-factory/utils'
|
|
12
15
|
|
|
13
|
-
const _ = require('lodash')
|
|
14
|
-
|
|
15
16
|
export class ProductDetailsPopup extends localize(i18next)(LitElement) {
|
|
16
17
|
static get styles() {
|
|
17
18
|
return [
|
|
@@ -555,20 +556,20 @@ export class ProductDetailsPopup extends localize(i18next)(LitElement) {
|
|
|
555
556
|
let data = this.dataGrist._data.records.map(itm => {
|
|
556
557
|
itm.error = false
|
|
557
558
|
|
|
558
|
-
if (
|
|
559
|
+
if (isEmpty(itm.gtin) || '') {
|
|
559
560
|
itm.error = true
|
|
560
561
|
if (!errors.find(err => err.type == 'gtin')) errors.push({ type: 'gtin', value: 'GTIN is required' })
|
|
561
562
|
}
|
|
562
|
-
if (
|
|
563
|
+
if (isEmpty(itm.packingType) || '') {
|
|
563
564
|
itm.error = true
|
|
564
565
|
if (!errors.find(err => err.type == 'packingType'))
|
|
565
566
|
errors.push({ type: 'packingType', value: 'Packing type is required' })
|
|
566
567
|
}
|
|
567
|
-
if (
|
|
568
|
+
if (isEmpty(itm.uom) || '') {
|
|
568
569
|
itm.error = true
|
|
569
570
|
if (!errors.find(err => err.type == 'uom')) errors.push({ type: 'uom', value: 'UOM is required' })
|
|
570
571
|
}
|
|
571
|
-
if (!
|
|
572
|
+
if (!isNumber(itm.uomValue) || isNaN(itm.uomValue) || '') {
|
|
572
573
|
itm.error = true
|
|
573
574
|
if (!errors.find(err => err.type == 'uomValue'))
|
|
574
575
|
errors.push({ type: 'uomValue', value: 'UOM Value is required' })
|
|
@@ -626,7 +627,7 @@ export class ProductDetailsPopup extends localize(i18next)(LitElement) {
|
|
|
626
627
|
...this.dataGrist._data,
|
|
627
628
|
records: this._updateRowOption(
|
|
628
629
|
this.dataGrist._data.records.map((record, idx) => {
|
|
629
|
-
if (!
|
|
630
|
+
if (!isEmpty(record.childProductDetail) && record.childProductDetail == before) {
|
|
630
631
|
record.childProductDetail = after
|
|
631
632
|
}
|
|
632
633
|
return record
|
|
@@ -636,7 +637,7 @@ export class ProductDetailsPopup extends localize(i18next)(LitElement) {
|
|
|
636
637
|
|
|
637
638
|
break
|
|
638
639
|
case 'uomValue':
|
|
639
|
-
if (
|
|
640
|
+
if (isNaN(after)) {
|
|
640
641
|
updatedRecords.records[row].uomValue = 1
|
|
641
642
|
}
|
|
642
643
|
break
|
|
@@ -691,7 +692,7 @@ export class ProductDetailsPopup extends localize(i18next)(LitElement) {
|
|
|
691
692
|
value: ''
|
|
692
693
|
},
|
|
693
694
|
...data
|
|
694
|
-
.filter(child => child.gtin != itm.gtin && !
|
|
695
|
+
.filter(child => child.gtin != itm.gtin && !isEmpty(child.gtin))
|
|
695
696
|
.map(x => {
|
|
696
697
|
const rowOption = {
|
|
697
698
|
display: x.gtin,
|
|
@@ -5,6 +5,9 @@ import './product-detail-bizplace-setting-popup'
|
|
|
5
5
|
|
|
6
6
|
import gql from 'graphql-tag'
|
|
7
7
|
import { css, html } from 'lit-element'
|
|
8
|
+
import isEmpty from 'lodash-es/isEmpty'
|
|
9
|
+
import isNaN from 'lodash-es/isNaN'
|
|
10
|
+
import isNumber from 'lodash-es/isNumber'
|
|
8
11
|
|
|
9
12
|
import { getCodeByName } from '@things-factory/code-base'
|
|
10
13
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
@@ -14,8 +17,6 @@ import { client, CustomAlert, gqlContext, PageView } from '@things-factory/shell
|
|
|
14
17
|
import { CommonButtonStyles, ScrollbarStyles } from '@things-factory/styles'
|
|
15
18
|
import { isMobileDevice } from '@things-factory/utils'
|
|
16
19
|
|
|
17
|
-
const _ = require('lodash')
|
|
18
|
-
|
|
19
20
|
class ProductList extends localize(i18next)(PageView) {
|
|
20
21
|
static get properties() {
|
|
21
22
|
return {
|
|
@@ -821,7 +822,7 @@ class ProductList extends localize(i18next)(PageView) {
|
|
|
821
822
|
|
|
822
823
|
async _saveProducts(patches) {
|
|
823
824
|
try {
|
|
824
|
-
if (
|
|
825
|
+
if (isEmpty(this._bizplaceInput.value) || this._bizplaceInput?.value == undefined) {
|
|
825
826
|
return this.showToast(i18next.t('text.no_company_selected'))
|
|
826
827
|
}
|
|
827
828
|
|
|
@@ -944,23 +945,23 @@ class ProductList extends localize(i18next)(PageView) {
|
|
|
944
945
|
_validate(data) {
|
|
945
946
|
let errors = []
|
|
946
947
|
data = data.map(itm => {
|
|
947
|
-
if (
|
|
948
|
+
if (isEmpty(itm.sku) || '') {
|
|
948
949
|
if (!errors.find(err => err.type == 'sku')) errors.push({ type: 'sku', value: 'Product SKU is required' })
|
|
949
950
|
}
|
|
950
|
-
if (
|
|
951
|
+
if (isEmpty(itm.name) || '') {
|
|
951
952
|
if (!errors.find(err => err.type == 'name')) errors.push({ type: 'name', value: 'Product name is required' })
|
|
952
953
|
}
|
|
953
|
-
if (
|
|
954
|
+
if (isEmpty(itm.type) || '') {
|
|
954
955
|
if (!errors.find(err => err.type == 'type')) errors.push({ type: 'name', value: 'Product type is required' })
|
|
955
956
|
}
|
|
956
|
-
if (
|
|
957
|
+
if (isEmpty(itm.packingType) || '') {
|
|
957
958
|
if (!errors.find(err => err.type == 'packingType'))
|
|
958
959
|
errors.push({ type: 'packingType', value: 'Packing type is required' })
|
|
959
960
|
}
|
|
960
|
-
if (
|
|
961
|
+
if (isEmpty(itm.uom) || '') {
|
|
961
962
|
if (!errors.find(err => err.type == 'uom')) errors.push({ type: 'uom', value: 'UOM is required' })
|
|
962
963
|
}
|
|
963
|
-
if (!
|
|
964
|
+
if (!isNumber(itm.uomValue) || isNaN(itm.uomValue) || '' || itm?.uomValue <= 0) {
|
|
964
965
|
if (!errors.find(err => err.type == 'uomValue'))
|
|
965
966
|
errors.push({ type: 'uomValue', value: 'UOM Value is required' })
|
|
966
967
|
}
|
|
@@ -6,7 +6,7 @@ import './select-operator-popup'
|
|
|
6
6
|
|
|
7
7
|
import gql from 'graphql-tag'
|
|
8
8
|
import { css, html } from 'lit-element'
|
|
9
|
-
import orderBy from 'lodash/orderBy'
|
|
9
|
+
import orderBy from 'lodash-es/orderBy'
|
|
10
10
|
|
|
11
11
|
import { MultiColumnFormStyles } from '@things-factory/form-ui'
|
|
12
12
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
@@ -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.
|
|
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/graphql/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/graphql/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAmC;AACnC,uDAAwC;AAE3B,QAAA,MAAM,GAAG;IACpB,QAAQ;IACR,SAAS;CACV,CAAA"}
|
|
@@ -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.
|
|
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/graphql/resolvers/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/graphql/resolvers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8DAA+C;AAC/C,4DAA6C;AAC7C,8DAA+C;AAC/C,uDAAwC;AACxC,+CAAgC;AAChC,oDAAqC;AACrC,mDAAoC;AACpC,4EAA6D;AAC7D,uEAAwD;AAE3C,QAAA,OAAO,GAAG;IACrB,YAAY,CAAC,KAAK;IAClB,WAAW,CAAC,KAAK;IACjB,YAAY,CAAC,KAAK;IAClB,SAAS,CAAC,KAAK;IACf,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,KAAK;IACb,mBAAmB,CAAC,KAAK;IACzB,iBAAiB,CAAC,KAAK;CACxB,CAAA;AAEY,QAAA,SAAS,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAA"}
|
|
@@ -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.
|
|
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/graphql/types/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/graphql/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8DAA+C;AAC/C,4DAA6C;AAC7C,8DAA+C;AAC/C,uDAAwC;AACxC,+CAAgC;AAChC,oDAAqC;AACrC,mDAAoC;AACpC,4EAA6D;AAC7D,sEAAuD;AAE1C,QAAA,OAAO,GAAG;IACrB,YAAY,CAAC,KAAK;IAClB,WAAW,CAAC,KAAK;IACjB,YAAY,CAAC,KAAK;IAClB,SAAS,CAAC,KAAK;IACf,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,KAAK;IACb,mBAAmB,CAAC,KAAK;IACzB,gBAAgB,CAAC,KAAK;CACvB,CAAA;AAEY,QAAA,SAAS,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAA;AAE5B,QAAA,KAAK,GAAG;IACnB,GAAG,YAAY,CAAC,KAAK;IACrB,GAAG,WAAW,CAAC,KAAK;IACpB,GAAG,SAAS,CAAC,KAAK;IAClB,GAAG,OAAO,CAAC,KAAK;IAChB,GAAG,OAAO,CAAC,KAAK;IAChB,GAAG,mBAAmB,CAAC,KAAK;IAC5B,GAAG,gBAAgB,CAAC,KAAK;CAC1B,CAAA"}
|
package/dist-server/index.js
CHANGED
|
@@ -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.
|
|
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];
|
package/dist-server/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,+CAA4B;AAE5B,oBAAiB"}
|
|
@@ -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.
|
|
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/utils/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAmC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-wms",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha.11",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -41,72 +41,72 @@
|
|
|
41
41
|
"docker:run": "docker run --platform linux/amd64 -p 4000:3000 hatiolab/operato-wms:latest"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@operato/ghost-print": "
|
|
45
|
-
"@operato/scene-chartjs": "^0.
|
|
46
|
-
"@operato/scene-clock": "^0.
|
|
47
|
-
"@operato/scene-clone": "^0.
|
|
48
|
-
"@operato/scene-compass": "^0.
|
|
49
|
-
"@operato/scene-gauge": "^0.
|
|
50
|
-
"@operato/scene-half-roundrect": "^0.
|
|
51
|
-
"@operato/scene-indoor-map": "^0.
|
|
52
|
-
"@operato/scene-legend": "^0.
|
|
53
|
-
"@operato/scene-news-ticker": "^0.
|
|
54
|
-
"@operato/scene-progressbar": "^0.
|
|
55
|
-
"@operato/scene-random": "^0.
|
|
56
|
-
"@operato/scene-switch": "^0.
|
|
57
|
-
"@operato/scene-tab": "^0.
|
|
58
|
-
"@operato/scene-table": "^0.
|
|
59
|
-
"@operato/scene-wheel-sorter": "^0.
|
|
60
|
-
"@things-factory/apptool-ui": "^
|
|
61
|
-
"@things-factory/attachment-ui": "^
|
|
62
|
-
"@things-factory/auth-ui": "^
|
|
63
|
-
"@things-factory/barcode-ui": "^
|
|
64
|
-
"@things-factory/biz-ui": "^
|
|
65
|
-
"@things-factory/board-service": "^
|
|
66
|
-
"@things-factory/board-ui": "^
|
|
67
|
-
"@things-factory/code-ui": "^
|
|
68
|
-
"@things-factory/context-ui": "^
|
|
69
|
-
"@things-factory/export-ui": "^
|
|
70
|
-
"@things-factory/export-ui-csv": "^
|
|
71
|
-
"@things-factory/export-ui-excel": "^
|
|
72
|
-
"@things-factory/fav-base": "^
|
|
73
|
-
"@things-factory/form-ui": "^
|
|
74
|
-
"@things-factory/grist-ui": "^
|
|
75
|
-
"@things-factory/help": "^
|
|
76
|
-
"@things-factory/i18n-base": "^
|
|
77
|
-
"@things-factory/id-rule-base": "^
|
|
78
|
-
"@things-factory/import-ui": "^
|
|
79
|
-
"@things-factory/import-ui-excel": "^
|
|
80
|
-
"@things-factory/menu-ui": "^
|
|
81
|
-
"@things-factory/more-ui": "^
|
|
82
|
-
"@things-factory/notification": "^
|
|
83
|
-
"@things-factory/pdf": "^
|
|
84
|
-
"@things-factory/print-proxy-service": "^
|
|
85
|
-
"@things-factory/print-service": "^
|
|
86
|
-
"@things-factory/print-ui": "^
|
|
87
|
-
"@things-factory/product-base": "^
|
|
88
|
-
"@things-factory/resource-ui": "^
|
|
89
|
-
"@things-factory/sales-ui": "^
|
|
90
|
-
"@things-factory/scene-data-transform": "^
|
|
91
|
-
"@things-factory/scene-excel": "^
|
|
92
|
-
"@things-factory/scene-firebase": "^
|
|
93
|
-
"@things-factory/scene-form": "^
|
|
94
|
-
"@things-factory/scene-google-map": "^
|
|
95
|
-
"@things-factory/scene-graphql": "^
|
|
96
|
-
"@things-factory/scene-label": "^
|
|
97
|
-
"@things-factory/scene-marker": "^
|
|
98
|
-
"@things-factory/scene-mqtt": "^
|
|
99
|
-
"@things-factory/scene-restful": "^
|
|
100
|
-
"@things-factory/scene-visualizer": "^
|
|
101
|
-
"@things-factory/setting-ui": "^
|
|
102
|
-
"@things-factory/system-ui": "^
|
|
103
|
-
"@things-factory/transport-base": "^
|
|
104
|
-
"@things-factory/tutorial-ui": "^
|
|
105
|
-
"@things-factory/warehouse-base": "^
|
|
106
|
-
"@things-factory/worksheet-base": "^
|
|
44
|
+
"@operato/ghost-print": "1.0.0-alpha.29",
|
|
45
|
+
"@operato/scene-chartjs": "^1.0.0-alpha.4",
|
|
46
|
+
"@operato/scene-clock": "^1.0.0-alpha.4",
|
|
47
|
+
"@operato/scene-clone": "^1.0.0-alpha.4",
|
|
48
|
+
"@operato/scene-compass": "^1.0.0-alpha.4",
|
|
49
|
+
"@operato/scene-gauge": "^1.0.0-alpha.4",
|
|
50
|
+
"@operato/scene-half-roundrect": "^1.0.0-alpha.4",
|
|
51
|
+
"@operato/scene-indoor-map": "^1.0.0-alpha.4",
|
|
52
|
+
"@operato/scene-legend": "^1.0.0-alpha.4",
|
|
53
|
+
"@operato/scene-news-ticker": "^1.0.0-alpha.4",
|
|
54
|
+
"@operato/scene-progressbar": "^1.0.0-alpha.4",
|
|
55
|
+
"@operato/scene-random": "^1.0.0-alpha.4",
|
|
56
|
+
"@operato/scene-switch": "^1.0.0-alpha.4",
|
|
57
|
+
"@operato/scene-tab": "^1.0.0-alpha.4",
|
|
58
|
+
"@operato/scene-table": "^1.0.0-alpha.4",
|
|
59
|
+
"@operato/scene-wheel-sorter": "^1.0.0-alpha.4",
|
|
60
|
+
"@things-factory/apptool-ui": "^5.0.0-alpha.11",
|
|
61
|
+
"@things-factory/attachment-ui": "^5.0.0-alpha.11",
|
|
62
|
+
"@things-factory/auth-ui": "^5.0.0-alpha.11",
|
|
63
|
+
"@things-factory/barcode-ui": "^5.0.0-alpha.11",
|
|
64
|
+
"@things-factory/biz-ui": "^5.0.0-alpha.11",
|
|
65
|
+
"@things-factory/board-service": "^5.0.0-alpha.11",
|
|
66
|
+
"@things-factory/board-ui": "^5.0.0-alpha.11",
|
|
67
|
+
"@things-factory/code-ui": "^5.0.0-alpha.11",
|
|
68
|
+
"@things-factory/context-ui": "^5.0.0-alpha.11",
|
|
69
|
+
"@things-factory/export-ui": "^5.0.0-alpha.11",
|
|
70
|
+
"@things-factory/export-ui-csv": "^5.0.0-alpha.11",
|
|
71
|
+
"@things-factory/export-ui-excel": "^5.0.0-alpha.11",
|
|
72
|
+
"@things-factory/fav-base": "^5.0.0-alpha.11",
|
|
73
|
+
"@things-factory/form-ui": "^5.0.0-alpha.11",
|
|
74
|
+
"@things-factory/grist-ui": "^5.0.0-alpha.11",
|
|
75
|
+
"@things-factory/help": "^5.0.0-alpha.11",
|
|
76
|
+
"@things-factory/i18n-base": "^5.0.0-alpha.11",
|
|
77
|
+
"@things-factory/id-rule-base": "^5.0.0-alpha.11",
|
|
78
|
+
"@things-factory/import-ui": "^5.0.0-alpha.11",
|
|
79
|
+
"@things-factory/import-ui-excel": "^5.0.0-alpha.11",
|
|
80
|
+
"@things-factory/menu-ui": "^5.0.0-alpha.11",
|
|
81
|
+
"@things-factory/more-ui": "^5.0.0-alpha.11",
|
|
82
|
+
"@things-factory/notification": "^5.0.0-alpha.11",
|
|
83
|
+
"@things-factory/pdf": "^5.0.0-alpha.11",
|
|
84
|
+
"@things-factory/print-proxy-service": "^5.0.0-alpha.11",
|
|
85
|
+
"@things-factory/print-service": "^5.0.0-alpha.11",
|
|
86
|
+
"@things-factory/print-ui": "^5.0.0-alpha.11",
|
|
87
|
+
"@things-factory/product-base": "^5.0.0-alpha.11",
|
|
88
|
+
"@things-factory/resource-ui": "^5.0.0-alpha.11",
|
|
89
|
+
"@things-factory/sales-ui": "^5.0.0-alpha.11",
|
|
90
|
+
"@things-factory/scene-data-transform": "^5.0.0-alpha.11",
|
|
91
|
+
"@things-factory/scene-excel": "^5.0.0-alpha.11",
|
|
92
|
+
"@things-factory/scene-firebase": "^5.0.0-alpha.11",
|
|
93
|
+
"@things-factory/scene-form": "^5.0.0-alpha.11",
|
|
94
|
+
"@things-factory/scene-google-map": "^5.0.0-alpha.11",
|
|
95
|
+
"@things-factory/scene-graphql": "^5.0.0-alpha.11",
|
|
96
|
+
"@things-factory/scene-label": "^5.0.0-alpha.11",
|
|
97
|
+
"@things-factory/scene-marker": "^5.0.0-alpha.11",
|
|
98
|
+
"@things-factory/scene-mqtt": "^5.0.0-alpha.11",
|
|
99
|
+
"@things-factory/scene-restful": "^5.0.0-alpha.11",
|
|
100
|
+
"@things-factory/scene-visualizer": "^5.0.0-alpha.11",
|
|
101
|
+
"@things-factory/setting-ui": "^5.0.0-alpha.11",
|
|
102
|
+
"@things-factory/system-ui": "^5.0.0-alpha.11",
|
|
103
|
+
"@things-factory/transport-base": "^5.0.0-alpha.11",
|
|
104
|
+
"@things-factory/tutorial-ui": "^5.0.0-alpha.11",
|
|
105
|
+
"@things-factory/warehouse-base": "^5.0.0-alpha.11",
|
|
106
|
+
"@things-factory/worksheet-base": "^5.0.0-alpha.11"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@things-factory/builder": "^
|
|
109
|
+
"@things-factory/builder": "^5.0.0-alpha.11"
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "9f8d36335eabb80642c18ffc4a09fca23636bb00"
|
|
112
112
|
}
|