@vaadin/vaadin-crud 1.3.1 → 1.3.2
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/package.json +9 -7
- package/src/vaadin-crud.js +5 -1
package/package.json
CHANGED
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
"repository": "vaadin/vaadin-crud",
|
|
11
11
|
"homepage": "https://vaadin.com/components",
|
|
12
12
|
"name": "@vaadin/vaadin-crud",
|
|
13
|
-
"version": "1.3.
|
|
13
|
+
"version": "1.3.2",
|
|
14
14
|
"main": "vaadin-crud.js",
|
|
15
15
|
"author": "Vaadin Ltd",
|
|
16
16
|
"license": "https://raw.githubusercontent.com/vaadin/vaadin-crud/master/LICENSE",
|
|
17
|
+
"cvdlName": "vaadin-crud",
|
|
17
18
|
"bugs": {
|
|
18
19
|
"url": "https://github.com/vaadin/vaadin-crud/issues"
|
|
19
20
|
},
|
|
@@ -25,8 +26,6 @@
|
|
|
25
26
|
"theme"
|
|
26
27
|
],
|
|
27
28
|
"resolutions": {
|
|
28
|
-
"es-abstract": "1.17.6",
|
|
29
|
-
"@types/doctrine": "0.0.3",
|
|
30
29
|
"inherits": "2.0.3",
|
|
31
30
|
"samsam": "1.1.3",
|
|
32
31
|
"supports-color": "3.1.2",
|
|
@@ -47,15 +46,18 @@
|
|
|
47
46
|
"@vaadin/vaadin-confirm-dialog": "^1.3.0",
|
|
48
47
|
"@vaadin/vaadin-license-checker": "^2.1.0"
|
|
49
48
|
},
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"devDependencies": {
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@web-padawan/gen-typescript-declarations": "^1.6.2",
|
|
51
|
+
"web-component-tester": "6.9.2",
|
|
54
52
|
"@polymer/iron-component-page": "^4.0.0",
|
|
55
53
|
"@webcomponents/webcomponentsjs": "^2.0.0",
|
|
56
54
|
"wct-browser-legacy": "^1.0.1",
|
|
57
55
|
"@vaadin/vaadin-demo-helpers": "^3.1.0",
|
|
58
56
|
"@vaadin/vaadin-combo-box": "^5.3.0",
|
|
59
57
|
"@vaadin/vaadin-notification": "^1.6.0"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"generate-typings": "gen-typescript-declarations --outDir . --verify",
|
|
61
|
+
"test": "wct --npm"
|
|
60
62
|
}
|
|
61
63
|
}
|
package/src/vaadin-crud.js
CHANGED
|
@@ -203,7 +203,11 @@ class CrudElement extends ElementMixin(ThemableMixin(PolymerElement)) {
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
static get version() {
|
|
206
|
-
return '1.3.
|
|
206
|
+
return '1.3.2';
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
static get cvdlName() {
|
|
210
|
+
return 'vaadin-crud';
|
|
207
211
|
}
|
|
208
212
|
|
|
209
213
|
static get properties() {
|