@things-factory/form-ui 4.2.12 → 4.3.0

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 { LitElement, html, css } from 'lit-element'
1
+ import { LitElement, html, css } from 'lit'
2
2
 
3
3
  class CustomInput extends LitElement {
4
4
  static get styles() {
@@ -1,4 +1,4 @@
1
- import { LitElement, html, css } from 'lit-element'
1
+ import { LitElement, html, css } from 'lit'
2
2
 
3
3
  class CustomSelect extends LitElement {
4
4
  static get styles() {
@@ -1,4 +1,4 @@
1
- import { css, html, LitElement } from 'lit-element'
1
+ import { css, html, LitElement } from 'lit'
2
2
 
3
3
  import { FileDropHelper } from '@things-factory/utils'
4
4
 
@@ -2,7 +2,7 @@ import './custom-input'
2
2
  import './custom-select'
3
3
  import './form-paginator'
4
4
 
5
- import { LitElement, css, html } from 'lit-element'
5
+ import { LitElement, css, html } from 'lit'
6
6
 
7
7
  class FormMaster extends LitElement {
8
8
  static get styles() {
@@ -1,4 +1,4 @@
1
- import { css, html, LitElement } from 'lit-element'
1
+ import { css, html, LitElement } from 'lit'
2
2
 
3
3
  class FormPaginator extends LitElement {
4
4
  static get properties() {
@@ -1,4 +1,4 @@
1
- import { css, html, LitElement } from 'lit-element'
1
+ import { css, html, LitElement } from 'lit'
2
2
 
3
3
  class SearchFormPaginator extends LitElement {
4
4
  static get properties() {
@@ -2,7 +2,7 @@ import '@material/mwc-icon'
2
2
  import './custom-input'
3
3
  import './custom-select'
4
4
 
5
- import { LitElement, css, html } from 'lit-element'
5
+ import { LitElement, css, html } from 'lit'
6
6
 
7
7
  import { SearchFormStyles } from '../styles/search-form-styles'
8
8
  import { client } from '@things-factory/shell'
@@ -1,6 +1,6 @@
1
1
  import '@material/mwc-icon'
2
2
 
3
- import { css, html, LitElement } from 'lit-element'
3
+ import { css, html, LitElement } from 'lit'
4
4
 
5
5
  import { SearchFormStyles } from '../styles'
6
6
 
@@ -1,4 +1,4 @@
1
- import { css } from 'lit-element'
1
+ import { css } from 'lit'
2
2
 
3
3
  export const MultiColumnFormStyles = css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from 'lit-element'
1
+ import { css } from 'lit'
2
2
 
3
3
  export const SearchFormStyles = css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from 'lit-element'
1
+ import { css } from 'lit'
2
2
 
3
3
  export const SingleColumnFormStyles = css`
4
4
  :host {
@@ -102,7 +102,7 @@ export const SingleColumnFormStyles = css`
102
102
  justify-self: start;
103
103
  align-self: center;
104
104
  grid-column: span 1 / auto;
105
- zoom:1.4;
105
+ zoom: 1.4;
106
106
  }
107
107
 
108
108
  .single-column-form input[type='checkbox'] + label,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/form-ui",
3
- "version": "4.2.12",
3
+ "version": "4.3.0",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,7 +24,7 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/layout-base": "^4.2.12"
27
+ "@things-factory/layout-base": "^4.3.0"
28
28
  },
29
- "gitHead": "fea26f2ea238a3a279c7ab6427cd8aedcd68926b"
29
+ "gitHead": "772c8e6f56a3dda655ad49f7018a49a37e081ee8"
30
30
  }