@things-factory/integration-sellercraft 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.
@@ -23,7 +23,7 @@ class SellercraftStore extends localize(i18next)(PageView) {
|
|
23
23
|
overflow: visible;
|
24
24
|
}
|
25
25
|
|
26
|
-
|
26
|
+
ox-grist {
|
27
27
|
overflow-y: auto;
|
28
28
|
flex: 1;
|
29
29
|
}
|
@@ -60,12 +60,12 @@ class SellercraftStore extends localize(i18next)(PageView) {
|
|
60
60
|
render() {
|
61
61
|
return html`
|
62
62
|
<search-form id="search-form" .fields=${this._searchFields} @submit=${e => this.dataGrist.fetch()}></search-form>
|
63
|
-
<
|
63
|
+
<ox-grist
|
64
64
|
.mode=${isMobileDevice() ? 'LIST' : 'GRID'}
|
65
65
|
.config=${this.config}
|
66
66
|
.fetchHandler=${this.fetchHandler.bind(this)}
|
67
67
|
>
|
68
|
-
</
|
68
|
+
</ox-grist>
|
69
69
|
`
|
70
70
|
}
|
71
71
|
|
@@ -180,7 +180,7 @@ class SellercraftStore extends localize(i18next)(PageView) {
|
|
180
180
|
}
|
181
181
|
|
182
182
|
get dataGrist() {
|
183
|
-
return this.shadowRoot.querySelector('
|
183
|
+
return this.shadowRoot.querySelector('ox-grist')
|
184
184
|
}
|
185
185
|
|
186
186
|
get searchForm() {
|