@things-factory/dataset 6.0.0-zeta.33 → 6.0.0-zeta.39
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.
@@ -151,6 +151,7 @@ export class DataKeySetListPage extends connect(store)(localize(i18next)(PageVie
|
|
151
151
|
type: 'gutter',
|
152
152
|
gutterName: 'button',
|
153
153
|
icon: 'reorder',
|
154
|
+
title: 'edit data-key items',
|
154
155
|
handlers: {
|
155
156
|
click: (columns, data, column, record, rowIndex) => {
|
156
157
|
if (!record.id) return
|
@@ -170,6 +171,7 @@ export class DataKeySetListPage extends connect(store)(localize(i18next)(PageVie
|
|
170
171
|
type: 'gutter',
|
171
172
|
gutterName: 'button',
|
172
173
|
icon: 'checklist',
|
174
|
+
title: 'move to data sample search page',
|
173
175
|
handlers: {
|
174
176
|
click: (columns, data, column, record, rowIndex) => {
|
175
177
|
navigate(`data-sample-search/${record.id}`)
|
@@ -180,10 +182,11 @@ export class DataKeySetListPage extends connect(store)(localize(i18next)(PageVie
|
|
180
182
|
type: 'gutter',
|
181
183
|
gutterName: 'button',
|
182
184
|
icon: 'newspaper',
|
185
|
+
title: 'move to report samples page',
|
183
186
|
handlers: {
|
184
187
|
click: (columns, data, column, record, rowIndex) => {
|
185
188
|
try {
|
186
|
-
const { id:dataKeySetId, reportType, reportView } = record
|
189
|
+
const { id: dataKeySetId, reportType, reportView } = record
|
187
190
|
switch (reportType) {
|
188
191
|
case 'generated':
|
189
192
|
break
|
@@ -202,7 +205,7 @@ export class DataKeySetListPage extends connect(store)(localize(i18next)(PageVie
|
|
202
205
|
default:
|
203
206
|
break
|
204
207
|
}
|
205
|
-
} catch(ex) {
|
208
|
+
} catch (ex) {
|
206
209
|
console.log(ex)
|
207
210
|
}
|
208
211
|
}
|
@@ -117,6 +117,7 @@ export class DataOocListPage extends connect(store)(localize(i18next)(PageView))
|
|
117
117
|
type: 'gutter',
|
118
118
|
gutterName: 'button',
|
119
119
|
icon: 'assignment_turned_in',
|
120
|
+
title: 'view detail ooc data',
|
120
121
|
handlers: {
|
121
122
|
click: (columns, data, column, record, rowIndex) => {
|
122
123
|
const popup = openPopup(
|
@@ -111,6 +111,7 @@ export class DataSampleListPage extends connect(store)(localize(i18next)(PageVie
|
|
111
111
|
type: 'gutter',
|
112
112
|
gutterName: 'button',
|
113
113
|
icon: 'assignment',
|
114
|
+
title: 'show data sample view',
|
114
115
|
handlers: {
|
115
116
|
click: (columns, data, column, record, rowIndex) => {
|
116
117
|
openPopup(
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/dataset",
|
3
|
-
"version": "6.0.0-zeta.
|
3
|
+
"version": "6.0.0-zeta.39",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -33,14 +33,14 @@
|
|
33
33
|
"@operato/shell": "^1.0.1",
|
34
34
|
"@operato/styles": "^1.0.0",
|
35
35
|
"@operato/utils": "^1.0.1",
|
36
|
-
"@things-factory/auth-base": "^6.0.0-zeta.
|
37
|
-
"@things-factory/aws-base": "^6.0.0-zeta.
|
38
|
-
"@things-factory/board-service": "^6.0.0-zeta.
|
36
|
+
"@things-factory/auth-base": "^6.0.0-zeta.39",
|
37
|
+
"@things-factory/aws-base": "^6.0.0-zeta.39",
|
38
|
+
"@things-factory/board-service": "^6.0.0-zeta.39",
|
39
39
|
"@things-factory/env": "^6.0.0-zeta.30",
|
40
40
|
"@things-factory/shell": "^6.0.0-zeta.30",
|
41
|
-
"@things-factory/work-shift": "^6.0.0-zeta.
|
41
|
+
"@things-factory/work-shift": "^6.0.0-zeta.39",
|
42
42
|
"cron-parser": "^4.3.0",
|
43
43
|
"moment-timezone": "^0.5.40"
|
44
44
|
},
|
45
|
-
"gitHead": "
|
45
|
+
"gitHead": "426b098275294cf06d54b28a1768d67fa4924225"
|
46
46
|
}
|