@things-factory/auth-ui 4.0.42 → 4.0.43

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.
@@ -74,16 +74,12 @@ export class DomainManagement extends connect(store)(localize(i18next)(PageView)
74
74
  .fetchHandler="${this.fetchHandler.bind(this)}"
75
75
  >
76
76
  <div id="filters" slot="headroom">
77
- <ox-filters-form @change=${e => this.dataGrist.fetch()}></ox-filters-form>
77
+ <ox-filters-form></ox-filters-form>
78
78
  </div>
79
79
  </ox-grist>
80
80
  `
81
81
  }
82
82
 
83
- get searchForm() {
84
- return this.renderRoot.querySelector('ox-filters-form')
85
- }
86
-
87
83
  get dataGrist() {
88
84
  return this.renderRoot.querySelector('ox-grist')
89
85
  }
@@ -170,9 +166,7 @@ export class DomainManagement extends connect(store)(localize(i18next)(PageView)
170
166
  }
171
167
  }
172
168
 
173
- async fetchHandler({ page, limit, sorters = [] }) {
174
- const filters = (await this.searchForm.getQueryFilters()) || []
175
-
169
+ async fetchHandler({ page, limit, sortings = [], filters = [] }) {
176
170
  const response = await client.query({
177
171
  query: gql`
178
172
  query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
@@ -192,7 +186,7 @@ export class DomainManagement extends connect(store)(localize(i18next)(PageView)
192
186
  variables: {
193
187
  filters,
194
188
  pagination: { page, limit },
195
- sortings: sorters
189
+ sortings
196
190
  }
197
191
  })
198
192
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/auth-ui",
3
- "version": "4.0.42",
3
+ "version": "4.0.43",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -30,14 +30,14 @@
30
30
  "@material/mwc-icon-button": "^0.25.3",
31
31
  "@material/mwc-textarea": "^0.25.3",
32
32
  "@material/mwc-textfield": "^0.25.3",
33
- "@operato/data-grist": "^0.3.24",
34
- "@operato/i18n": "^0.3.24",
35
- "@operato/layout": "^0.3.24",
36
- "@operato/lottie-player": "^0.3.24",
37
- "@things-factory/auth-base": "^4.0.42",
38
- "@things-factory/i18n-base": "^4.0.42",
39
- "@things-factory/more-base": "^4.0.42",
33
+ "@operato/data-grist": "^0.3.26",
34
+ "@operato/i18n": "^0.3.26",
35
+ "@operato/layout": "^0.3.26",
36
+ "@operato/lottie-player": "^0.3.26",
37
+ "@things-factory/auth-base": "^4.0.43",
38
+ "@things-factory/i18n-base": "^4.0.43",
39
+ "@things-factory/more-base": "^4.0.43",
40
40
  "clipboard": "^2.0.6"
41
41
  },
42
- "gitHead": "794709ebadf4ae0f89a107a86a41a381ce26b465"
42
+ "gitHead": "8f2a8008eb61b6efd266412be267186c5059fab6"
43
43
  }