@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 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/ds/components/crud)
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/guide/contributing/overview) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
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.0-dev.8a7678b70",
3
+ "version": "23.2.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "description": "vaadin-crud",
8
- "license": "https://raw.githubusercontent.com/vaadin/web-components/master/packages/vaadin-crud/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.0-dev.8a7678b70"
37
+ "@vaadin/crud": "~23.2.1"
38
38
  },
39
- "gitHead": "85b403f96d8282f262322b56c0ff4289f843d02a"
39
+ "gitHead": "a6c314f6927bfd3309fc735eae6c6dc72ab8367a"
40
40
  }
@@ -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.
@@ -11,3 +11,5 @@ import { Crud } from '@vaadin/crud/src/vaadin-crud.js';
11
11
  export const CrudElement = Crud;
12
12
 
13
13
  export * from '@vaadin/crud/src/vaadin-crud.js';
14
+
15
+ console.warn('WARNING: Since Vaadin 23.2, "@vaadin/vaadin-crud" is deprecated. Use "@vaadin/crud" instead.');