@things-factory/auth-ui 4.0.41 → 4.0.42
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.
- package/assets/images/image-api.png +0 -0
- package/client/bootstrap.js +1 -1
- package/client/components/abstract-auth-page.js +2 -2
- package/client/components/abstract-password-reset.js +2 -1
- package/client/components/delete-user-popup.js +1 -1
- package/client/components/profile-component.js +1 -1
- package/client/components/user-role-editor.js +1 -1
- package/client/entries/auth/activate.js +2 -2
- package/client/entries/auth/forgot-password.js +0 -1
- package/client/pages/application/register.js +5 -5
- package/client/pages/domain/domain-management.js +1 -1
- package/package.json +9 -9
|
Binary file
|
package/client/bootstrap.js
CHANGED
|
@@ -3,8 +3,8 @@ import '@operato/i18n'
|
|
|
3
3
|
|
|
4
4
|
import { html } from 'lit-html'
|
|
5
5
|
|
|
6
|
+
import { TOOL_POSITION } from '@operato/layout'
|
|
6
7
|
import { auth } from '@things-factory/auth-base'
|
|
7
|
-
import { TOOL_POSITION } from '@things-factory/layout-base'
|
|
8
8
|
import { ADD_MORENDA } from '@things-factory/more-base'
|
|
9
9
|
import { navigate, store } from '@things-factory/shell'
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@ import '@material/mwc-icon-button'
|
|
|
4
4
|
import '@material/mwc-textfield'
|
|
5
5
|
import '@operato/lottie-player'
|
|
6
6
|
import '@operato/i18n/ox-i18n-selector.js'
|
|
7
|
-
import '@
|
|
7
|
+
import '@operato/layout/ox-snack-bar.js'
|
|
8
8
|
|
|
9
9
|
import { css, html, LitElement } from 'lit'
|
|
10
10
|
|
|
@@ -115,7 +115,7 @@ export class AbstractAuthPage extends localize(i18next)(LitElement) {
|
|
|
115
115
|
</div>
|
|
116
116
|
|
|
117
117
|
<mwc-icon-button home icon="home" @click=${e => (window.location.href = '/')}></mwc-icon-button>
|
|
118
|
-
<snack-bar id="snackbar" level="error" .message=${this.message}></snack-bar>
|
|
118
|
+
<ox-snack-bar id="snackbar" level="error" .message=${this.message}></ox-snack-bar>
|
|
119
119
|
|
|
120
120
|
${isSafari()
|
|
121
121
|
? html``
|
|
@@ -3,6 +3,7 @@ import '@material/mwc-textfield'
|
|
|
3
3
|
import '@operato/lottie-player'
|
|
4
4
|
import '../components/profile-component'
|
|
5
5
|
import '@operato/i18n/ox-i18n-selector.js'
|
|
6
|
+
import '@operato/layout/ox-snack-bar.js'
|
|
6
7
|
|
|
7
8
|
import { css, html } from 'lit'
|
|
8
9
|
|
|
@@ -124,7 +125,7 @@ export class AbstractPasswordReset extends AbstractAuthPage {
|
|
|
124
125
|
</form>
|
|
125
126
|
</div>
|
|
126
127
|
</div>
|
|
127
|
-
<snack-bar id="snackbar" level="error" .message=${this.message}></snack-bar>
|
|
128
|
+
<ox-snack-bar id="snackbar" level="error" .message=${this.message}></ox-snack-bar>
|
|
128
129
|
|
|
129
130
|
${isSafari()
|
|
130
131
|
? html``
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { css, html, LitElement } from 'lit'
|
|
2
2
|
|
|
3
3
|
import { i18next, localize } from '@operato/i18n'
|
|
4
|
+
import { notify } from '@operato/layout'
|
|
4
5
|
import { auth } from '@things-factory/auth-base'
|
|
5
|
-
import { notify } from '@things-factory/layout-base'
|
|
6
6
|
|
|
7
7
|
export class DeleteUserPopup extends localize(i18next)(LitElement) {
|
|
8
8
|
static get styles() {
|
|
@@ -6,8 +6,8 @@ import './my-login-history'
|
|
|
6
6
|
import { css, html, LitElement } from 'lit'
|
|
7
7
|
|
|
8
8
|
import { i18next, localize } from '@operato/i18n'
|
|
9
|
+
import { notify, openPopup } from '@operato/layout'
|
|
9
10
|
import { auth } from '@things-factory/auth-base'
|
|
10
|
-
import { notify, openPopup } from '@things-factory/layout-base'
|
|
11
11
|
|
|
12
12
|
export class ProfileComponent extends localize(i18next)(LitElement) {
|
|
13
13
|
static get properties() {
|
|
@@ -6,7 +6,7 @@ import { css, html, LitElement } from 'lit'
|
|
|
6
6
|
import { connect } from 'pwa-helpers/connect-mixin'
|
|
7
7
|
|
|
8
8
|
import { i18next } from '@operato/i18n'
|
|
9
|
-
import { openPopup } from '@
|
|
9
|
+
import { openPopup } from '@operato/layout'
|
|
10
10
|
import { client, CustomAlert, gqlContext, store } from '@things-factory/shell'
|
|
11
11
|
|
|
12
12
|
class UserRoleEditor extends connect(store)(LitElement) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@material/mwc-button'
|
|
2
|
-
import '@
|
|
2
|
+
import '@operato/layout/ox-snack-bar.js'
|
|
3
3
|
import '@operato/lottie-player'
|
|
4
4
|
|
|
5
5
|
import { css, html, LitElement } from 'lit'
|
|
@@ -161,7 +161,7 @@ export class AuthActivate extends localize(i18next)(LitElement) {
|
|
|
161
161
|
</div>
|
|
162
162
|
<!--lottie animation end-->
|
|
163
163
|
</div>
|
|
164
|
-
<snack-bar id="snackbar"></snack-bar>
|
|
164
|
+
<ox-snack-bar id="snackbar"></ox-snack-bar>
|
|
165
165
|
`
|
|
166
166
|
}
|
|
167
167
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { LitElement, css, html } from 'lit'
|
|
2
|
-
import { PageView, client, navigate, store } from '@things-factory/shell'
|
|
3
|
-
|
|
4
|
-
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
5
1
|
import gql from 'graphql-tag'
|
|
2
|
+
import { css, html } from 'lit'
|
|
3
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
4
|
+
|
|
5
|
+
import { client, navigate, PageView, store } from '@things-factory/shell'
|
|
6
6
|
|
|
7
7
|
class ApplicationRegister extends connect(store)(PageView) {
|
|
8
8
|
static get styles() {
|
|
@@ -185,7 +185,7 @@ class ApplicationRegister extends connect(store)(PageView) {
|
|
|
185
185
|
|
|
186
186
|
const response = await client.mutate({
|
|
187
187
|
mutation: gql`
|
|
188
|
-
mutation($application: NewApplication!) {
|
|
188
|
+
mutation ($application: NewApplication!) {
|
|
189
189
|
createApplication(application: $application) {
|
|
190
190
|
id
|
|
191
191
|
}
|
|
@@ -6,9 +6,9 @@ import { css, html } from 'lit'
|
|
|
6
6
|
import { connect } from 'pwa-helpers/connect-mixin'
|
|
7
7
|
|
|
8
8
|
import { i18next, localize } from '@operato/i18n'
|
|
9
|
+
import { openPopup } from '@operato/layout'
|
|
9
10
|
import { CommonButtonStyles, ScrollbarStyles } from '@operato/styles'
|
|
10
11
|
import { isMobileDevice } from '@operato/utils'
|
|
11
|
-
import { openPopup } from '@things-factory/layout-base'
|
|
12
12
|
import { client, PageView, store } from '@things-factory/shell'
|
|
13
13
|
|
|
14
14
|
export class DomainManagement extends connect(store)(localize(i18next)(PageView)) {
|
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.42",
|
|
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.
|
|
34
|
-
"@operato/i18n": "^0.3.
|
|
35
|
-
"@operato/
|
|
36
|
-
"@
|
|
37
|
-
"@things-factory/
|
|
38
|
-
"@things-factory/
|
|
39
|
-
"@things-factory/more-base": "^4.0.
|
|
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",
|
|
40
40
|
"clipboard": "^2.0.6"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "794709ebadf4ae0f89a107a86a41a381ce26b465"
|
|
43
43
|
}
|