@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.
Binary file
@@ -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 '@things-factory/layout-ui/client/layouts/snack-bar'
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 '@things-factory/layout-base'
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 '@things-factory/layout-ui/client/layouts/snack-bar'
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,5 +1,4 @@
1
1
  import '@material/mwc-button'
2
- import '@things-factory/layout-ui/client/layouts/snack-bar'
3
2
  import '../../components/profile-component'
4
3
 
5
4
  import { html } from 'lit'
@@ -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.41",
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.21",
34
- "@operato/i18n": "^0.3.21",
35
- "@operato/lottie-player": "^0.3.21",
36
- "@things-factory/auth-base": "^4.0.41",
37
- "@things-factory/i18n-base": "^4.0.41",
38
- "@things-factory/layout-ui": "^4.0.41",
39
- "@things-factory/more-base": "^4.0.41",
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": "1dd445b5b5e5b9e37291dc274886131199d7bf6a"
42
+ "gitHead": "794709ebadf4ae0f89a107a86a41a381ce26b465"
43
43
  }