@vaadin/vaadin-crud 23.2.0-dev.8a7678b70 → 23.2.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.
- package/README.md +2 -2
- package/package.json +4 -4
- package/src/vaadin-crud.d.ts +1 -1
- package/src/vaadin-crud.js +2 -0
package/README.md
CHANGED
|
@@ -7,11 +7,11 @@ A web component for displaying, editing, creating, and deleting items from a dat
|
|
|
7
7
|
|
|
8
8
|
> ℹ️ A commercial Vaadin [subscription](https://vaadin.com/pricing) is required to use CRUD in your project.
|
|
9
9
|
|
|
10
|
-
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/
|
|
10
|
+
[Documentation + Live Demo ↗](https://vaadin.com/docs/latest/components/crud)
|
|
11
11
|
|
|
12
12
|
## Contributing
|
|
13
13
|
|
|
14
|
-
Read the [contributing guide](https://vaadin.com/docs/latest/
|
|
14
|
+
Read the [contributing guide](https://vaadin.com/docs/latest/contributing/overview) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
|
|
15
15
|
|
|
16
16
|
## License
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-crud",
|
|
3
|
-
"version": "23.2.
|
|
3
|
+
"version": "23.2.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"description": "vaadin-crud",
|
|
8
|
-
"license": "
|
|
8
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
9
9
|
"cvdlName": "vaadin-crud",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"polymer"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vaadin/crud": "23.2.
|
|
37
|
+
"@vaadin/crud": "~23.2.1"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "a6c314f6927bfd3309fc735eae6c6dc72ab8367a"
|
|
40
40
|
}
|
package/src/vaadin-crud.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2018 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Commercial Vaadin Developer License 4.0, available at https://vaadin.com/license/cvdl-4.0.
|
|
5
5
|
*/
|
|
6
|
-
import { Crud } from '@vaadin/crud/src/vaadin-crud.js';
|
|
6
|
+
import type { Crud } from '@vaadin/crud/src/vaadin-crud.js';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @deprecated Import `Crud` from `@vaadin/crud` instead.
|
package/src/vaadin-crud.js
CHANGED