@things-factory/auth-ui 4.0.6 → 4.0.11
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,4 +1,4 @@
|
|
|
1
|
-
import '@
|
|
1
|
+
import '@operato/data-grist'
|
|
2
2
|
|
|
3
3
|
import { LitElement, css, html } from 'lit'
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ class MyLoginHistory extends LitElement {
|
|
|
24
24
|
padding: var(--padding-wide);
|
|
25
25
|
overflow: auto;
|
|
26
26
|
}
|
|
27
|
-
|
|
27
|
+
ox-grist {
|
|
28
28
|
flex: 1;
|
|
29
29
|
}
|
|
30
30
|
`
|
|
@@ -63,11 +63,11 @@ class MyLoginHistory extends LitElement {
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
return html`
|
|
66
|
-
<
|
|
66
|
+
<ox-grist
|
|
67
67
|
.mode=${isMobileDevice() ? 'LIST' : 'GRID'}
|
|
68
68
|
.config=${config}
|
|
69
69
|
.data="${{ records: this.histories }}"
|
|
70
|
-
></
|
|
70
|
+
></ox-grist>
|
|
71
71
|
`
|
|
72
72
|
}
|
|
73
73
|
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import '@
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import gql from 'graphql-tag'
|
|
1
|
+
import '@operato/data-grist'
|
|
2
|
+
import '../../components/create-domain-popup'
|
|
3
|
+
|
|
4
|
+
import { CommonButtonStyles, ScrollbarStyles } from '@things-factory/styles'
|
|
5
|
+
import { CustomAlert, PageView, client, store } from '@things-factory/shell'
|
|
7
6
|
import { css, html } from 'lit'
|
|
7
|
+
import { i18next, localize } from '@things-factory/i18n-base'
|
|
8
|
+
|
|
8
9
|
import { connect } from 'pwa-helpers/connect-mixin'
|
|
10
|
+
import gql from 'graphql-tag'
|
|
11
|
+
import { isMobileDevice } from '@things-factory/utils'
|
|
9
12
|
import { openPopup } from '@things-factory/layout-base'
|
|
10
|
-
import '../../components/create-domain-popup'
|
|
11
13
|
|
|
12
14
|
export class DomainManagement extends connect(store)(localize(i18next)(PageView)) {
|
|
13
15
|
static get properties() {
|
|
@@ -33,7 +35,7 @@ export class DomainManagement extends connect(store)(localize(i18next)(PageView)
|
|
|
33
35
|
overflow: visible;
|
|
34
36
|
}
|
|
35
37
|
|
|
36
|
-
|
|
38
|
+
ox-grist {
|
|
37
39
|
overflow-y: auto;
|
|
38
40
|
flex: 1;
|
|
39
41
|
}
|
|
@@ -61,26 +63,27 @@ export class DomainManagement extends connect(store)(localize(i18next)(PageView)
|
|
|
61
63
|
|
|
62
64
|
render() {
|
|
63
65
|
return html`
|
|
64
|
-
<
|
|
65
|
-
id="search-form"
|
|
66
|
-
.fields=${this._searchFields}
|
|
67
|
-
@submit=${async () => this.dataGrist.fetch()}
|
|
68
|
-
></search-form>
|
|
69
|
-
|
|
70
|
-
<data-grist
|
|
66
|
+
<ox-grist
|
|
71
67
|
.mode=${isMobileDevice() ? 'LIST' : 'GRID'}
|
|
72
68
|
.config=${this.config}
|
|
73
69
|
.fetchHandler="${this.fetchHandler.bind(this)}"
|
|
74
|
-
|
|
70
|
+
>
|
|
71
|
+
<search-form
|
|
72
|
+
slot="headroom"
|
|
73
|
+
id="search-form"
|
|
74
|
+
.fields=${this._searchFields}
|
|
75
|
+
@submit=${async () => this.dataGrist.fetch()}
|
|
76
|
+
></search-form>
|
|
77
|
+
</ox-grist>
|
|
75
78
|
`
|
|
76
79
|
}
|
|
77
80
|
|
|
78
81
|
get searchForm() {
|
|
79
|
-
return this.
|
|
82
|
+
return this.renderRoot.querySelector('search-form')
|
|
80
83
|
}
|
|
81
84
|
|
|
82
85
|
get dataGrist() {
|
|
83
|
-
return this.
|
|
86
|
+
return this.renderRoot.querySelector('ox-grist')
|
|
84
87
|
}
|
|
85
88
|
|
|
86
89
|
async pageInitialized() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/auth-ui",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.11",
|
|
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/
|
|
34
|
-
"@
|
|
35
|
-
"@things-factory/
|
|
36
|
-
"@things-factory/i18n-base": "^4.0.
|
|
37
|
-
"@things-factory/i18n-ui": "^4.0.
|
|
38
|
-
"@things-factory/layout-ui": "^4.0.
|
|
39
|
-
"@things-factory/more-base": "^4.0.
|
|
33
|
+
"@operato/data-grist": "^0.2.35",
|
|
34
|
+
"@operato/lottie-player": "^0.2.35",
|
|
35
|
+
"@things-factory/auth-base": "^4.0.11",
|
|
36
|
+
"@things-factory/i18n-base": "^4.0.11",
|
|
37
|
+
"@things-factory/i18n-ui": "^4.0.11",
|
|
38
|
+
"@things-factory/layout-ui": "^4.0.11",
|
|
39
|
+
"@things-factory/more-base": "^4.0.11",
|
|
40
40
|
"clipboard": "^2.0.6"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "47745d8cdbe99f11d8d69bbcab3901c9771525a0"
|
|
43
43
|
}
|