@things-factory/import-ui 6.0.145 → 6.1.0
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@material/mwc-button/mwc-button'
|
|
2
|
-
import '@
|
|
2
|
+
import '@operato/data-grist'
|
|
3
3
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
4
4
|
import { CustomAlert } from '@things-factory/shell'
|
|
5
5
|
import { ScrollbarStyles } from '@things-factory/styles'
|
|
@@ -33,7 +33,7 @@ class ImportPopUp extends localize(i18next)(LitElement) {
|
|
|
33
33
|
flex: 1;
|
|
34
34
|
overflow-y: auto;
|
|
35
35
|
}
|
|
36
|
-
|
|
36
|
+
ox-grist {
|
|
37
37
|
overflow-y: hidden;
|
|
38
38
|
flex: 1;
|
|
39
39
|
}
|
|
@@ -55,13 +55,13 @@ class ImportPopUp extends localize(i18next)(LitElement) {
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
get dataGrist() {
|
|
58
|
-
return this.shadowRoot.querySelector('
|
|
58
|
+
return this.shadowRoot.querySelector('ox-grist')
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
render() {
|
|
62
62
|
return html`
|
|
63
63
|
<div class="grist">
|
|
64
|
-
<
|
|
64
|
+
<ox-grist .mode=${isMobileDevice() ? 'LIST' : 'GRID'} .config=${this._config}></ox-grist>
|
|
65
65
|
</div>
|
|
66
66
|
|
|
67
67
|
<div class="button-container">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/import-ui",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
+
"@operato/data-grist": "^1.3.5",
|
|
27
28
|
"@operato/layout": "^1.0.1",
|
|
28
|
-
"@things-factory/context-ui": "^6.0
|
|
29
|
-
"@things-factory/
|
|
30
|
-
"@things-factory/
|
|
31
|
-
"@things-factory/import-base": "^6.0.145"
|
|
29
|
+
"@things-factory/context-ui": "^6.1.0",
|
|
30
|
+
"@things-factory/i18n-base": "^6.1.0",
|
|
31
|
+
"@things-factory/import-base": "^6.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "205ac14ff55275d948a8cc6d7c514b90d6baf6ef"
|
|
34
34
|
}
|