@vaadin/vaadin-crud 22.0.0-alpha9 → 22.0.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.
Files changed (2) hide show
  1. package/README.md +8 -50
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,56 +1,13 @@
1
- # <vaadin-crud>
1
+ # @vaadin/vaadin-crud
2
2
 
3
- [Live Demo ↗](https://vaadin.com/components/vaadin-crud/html-examples)
4
- |
5
- [API documentation ↗](https://vaadin.com/components/vaadin-crud/html-api)
3
+ > ⚠️  Starting from Vaadin 22, this package is deprecated.
4
+ > Please use [`@vaadin/crud`](https://www.npmjs.com/package/@vaadin/crud) instead.
6
5
 
7
- [<vaadin-crud>](https://vaadin.com/components/vaadin-crud) is a Web Component for
8
- [CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete) operations.
9
- It is part of the [Vaadin components](https://vaadin.com/components).
6
+ A web component for displaying, editing, creating, and deleting items from a dataset.
10
7
 
11
- [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-crud)](https://www.npmjs.com/package/@vaadin/vaadin-crud)
12
- [![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/vaadinvaadin-crud)
13
- [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
8
+ > ℹ️  A commercial Vaadin [subscription](https://vaadin.com/pricing) is required to use CRUD in your project.
14
9
 
15
- ```html
16
- <vaadin-crud items='[{"name": "Juan", "surname": "Garcia"}]'></vaadin-crud>
17
- ```
18
-
19
- [<img src="https://raw.githubusercontent.com/vaadin/vaadin-crud/master/screenshot.gif" width="700" alt="Screenshot of vaadin-crud">](https://vaadin.com/components/vaadin-crud)
20
-
21
- ## Installation
22
-
23
- Install `vaadin-crud`:
24
-
25
- ```sh
26
- npm i @vaadin/vaadin-crud --save
27
- ```
28
-
29
- Once installed, import it in your application:
30
-
31
- ```js
32
- import '@vaadin/vaadin-crud/vaadin-crud.js';
33
- ```
34
-
35
- ## Getting started
36
-
37
- Vaadin components use the Lumo theme by default.
38
-
39
- To use the Material theme, import the correspondent file from the `theme/material` folder.
40
-
41
- ## Entry points
42
-
43
- - The component with the Lumo theme:
44
-
45
- `theme/lumo/vaadin-crud.js`
46
-
47
- - The component with the Material theme:
48
-
49
- `theme/material/vaadin-crud.js`
50
-
51
- - Alias for `theme/lumo/vaadin-crud.js`:
52
-
53
- `vaadin-crud.js`
10
+ [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/crud)
54
11
 
55
12
  ## Contributing
56
13
 
@@ -60,4 +17,5 @@ Read the [contributing guide](https://vaadin.com/docs/latest/guide/contributing/
60
17
 
61
18
  Commercial Vaadin Developer License 4.0 (CVDLv4). For license terms, see LICENSE.
62
19
 
63
- Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
20
+ Vaadin collects usage statistics at development time to improve this product..
21
+ 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-crud",
3
- "version": "22.0.0-alpha9",
3
+ "version": "22.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,7 +32,7 @@
32
32
  "polymer"
33
33
  ],
34
34
  "dependencies": {
35
- "@vaadin/crud": "22.0.0-alpha9"
35
+ "@vaadin/crud": "^22.0.0"
36
36
  },
37
- "gitHead": "6e8c899dc65918f97e3c0acb2076122c4b2ef274"
37
+ "gitHead": "b668e9b1a975227fbe34beb70d1cd5b03dce2348"
38
38
  }