@things-factory/integration-marketplace 6.0.150 → 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 { SingleColumnFormStyles } from '@things-factory/form-ui'
|
|
2
|
-
import '@
|
|
2
|
+
import '@operato/data-grist'
|
|
3
3
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
4
4
|
import { client } from '@things-factory/shell'
|
|
5
5
|
import gql from 'graphql-tag'
|
|
@@ -25,7 +25,7 @@ class MarketplaceStores extends localize(i18next)(PageView) {
|
|
|
25
25
|
overflow: visible;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
ox-grist {
|
|
29
29
|
overflow-y: auto;
|
|
30
30
|
flex: 1;
|
|
31
31
|
}
|
|
@@ -72,12 +72,12 @@ class MarketplaceStores extends localize(i18next)(PageView) {
|
|
|
72
72
|
render() {
|
|
73
73
|
return html`
|
|
74
74
|
<search-form id="search-form" .fields=${this._searchFields} @submit=${e => this.dataGrist.fetch()}></search-form>
|
|
75
|
-
<
|
|
75
|
+
<ox-grist
|
|
76
76
|
.mode=${isMobileDevice() ? 'LIST' : 'GRID'}
|
|
77
77
|
.config=${this.config}
|
|
78
78
|
.fetchHandler=${this.fetchHandler.bind(this)}
|
|
79
79
|
>
|
|
80
|
-
</
|
|
80
|
+
</ox-grist>
|
|
81
81
|
`
|
|
82
82
|
}
|
|
83
83
|
|
|
@@ -260,7 +260,7 @@ class MarketplaceStores extends localize(i18next)(PageView) {
|
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
get dataGrist() {
|
|
263
|
-
return this.shadowRoot.querySelector('
|
|
263
|
+
return this.shadowRoot.querySelector('ox-grist')
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
get searchForm() {
|