@things-factory/integration-sellercraft 6.0.145 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -23,7 +23,7 @@ class SellercraftStore extends localize(i18next)(PageView) {
23
23
  overflow: visible;
24
24
  }
25
25
 
26
- data-grist {
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
- <data-grist
63
+ <ox-grist
64
64
  .mode=${isMobileDevice() ? 'LIST' : 'GRID'}
65
65
  .config=${this.config}
66
66
  .fetchHandler=${this.fetchHandler.bind(this)}
67
67
  >
68
- </data-grist>
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('data-grist')
183
+ return this.shadowRoot.querySelector('ox-grist')
184
184
  }
185
185
 
186
186
  get searchForm() {