@vaadin/vaadin-form-layout 22.0.0-beta1 → 22.0.1

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.
Files changed (2) hide show
  1. package/README.md +7 -57
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,62 +1,11 @@
1
- # <vaadin-form-layout>
1
+ # @vaadin/vaadin-form-layout
2
2
 
3
- [Live Demo ↗](https://vaadin.com/components/vaadin-form-layout/html-examples)
4
- |
5
- [API documentation ↗](https://vaadin.com/components/vaadin-form-layout/html-api)
3
+ > ⚠️  Starting from Vaadin 22, this package is deprecated.
4
+ > Please use [`@vaadin/form-layout`](https://www.npmjs.com/package/@vaadin/form-layout) instead.
6
5
 
7
- [<vaadin-form-layout>](https://vaadin.com/components/vaadin-form-layout) is a Web Component providing configurable responsive layout for form elements, part of the [Vaadin components](https://vaadin.com/components).
6
+ A web component for building responsive forms with multiple columns.
8
7
 
9
- [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-form-layout)](https://www.npmjs.com/package/@vaadin/vaadin-form-layout)
10
- [![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/vaadinvaadin-form-layout)
11
- [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
12
-
13
- ```html
14
- <vaadin-form-layout>
15
- <vaadin-text-field label="First Name" value="Jane"></vaadin-text-field>
16
- <vaadin-text-field label="Last Name" value="Doe"></vaadin-text-field>
17
- <vaadin-text-field label="Email" value="jane.doe@example.com"></vaadin-text-field>
18
- </vaadin-form-layout>
19
- ```
20
-
21
- [<img src="https://raw.githubusercontent.com/vaadin/vaadin-form-layout/master/screenshot.png" width="880" alt="Screenshot of vaadin-form-layout">](https://vaadin.com/components/vaadin-form-layout)
22
-
23
- ## Installation
24
-
25
- Install `vaadin-form-layout`:
26
-
27
- ```sh
28
- npm i @vaadin/vaadin-form-layout --save
29
- ```
30
-
31
- Once installed, import it in your application:
32
-
33
- ```js
34
- import '@vaadin/vaadin-form-layout/vaadin-form-layout.js';
35
- ```
36
-
37
- ## Getting started
38
-
39
- Vaadin components use the Lumo theme by default.
40
-
41
- To use the Material theme, import the correspondent file from the `theme/material` folder.
42
-
43
- ## Entry points
44
-
45
- - The components with the Lumo theme:
46
-
47
- `theme/lumo/vaadin-form-layout.js`
48
- `theme/lumo/vaadin-form-item.js`
49
-
50
- - The components with the Material theme:
51
-
52
- `theme/material/vaadin-form-layout.js`
53
- `theme/material/vaadin-form-item.js`
54
-
55
- - Alias for `theme/lumo/vaadin-form-layout.js`
56
- `theme/lumo/vaadin-form-item.js`:
57
-
58
- `vaadin-form-layout.js`
59
- `vaadin-form-item.js`
8
+ [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/form-layout)
60
9
 
61
10
  ## Contributing
62
11
 
@@ -66,4 +15,5 @@ Read the [contributing guide](https://vaadin.com/docs/latest/guide/contributing/
66
15
 
67
16
  Apache License 2.0
68
17
 
69
- Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
18
+ Vaadin collects usage statistics at development time to improve this product..
19
+ For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-form-layout",
3
- "version": "22.0.0-beta1",
3
+ "version": "22.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,7 +32,7 @@
32
32
  "polymer"
33
33
  ],
34
34
  "dependencies": {
35
- "@vaadin/form-layout": "22.0.0-beta1"
35
+ "@vaadin/form-layout": "^22.0.1"
36
36
  },
37
- "gitHead": "4cf8a9d0504994200c610e44b3676114fef49c1e"
37
+ "gitHead": "2b0a2bff0369d6020f7cc33ad35506aa2d1f6f68"
38
38
  }