@vaadin/vaadin-confirm-dialog 1.3.0 → 1.3.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 +8 -5
- package/package.json +8 -4
- package/src/vaadin-confirm-dialog.js +5 -1
package/README.md
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
|
-
[](https://travis-ci.org/vaadin/vaadin-confirm-dialog)
|
|
2
|
-
[](https://gitter.im/vaadin/web-components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
|
3
|
-
|
|
4
1
|
# <vaadin-confirm-dialog>
|
|
5
2
|
|
|
3
|
+
> ⚠️ Starting from Vaadin 20, the source code and issues for this component are migrated to the [`vaadin/web-components`](https://github.com/vaadin/web-components/tree/master/packages/vaadin-confirm-dialog) monorepository.
|
|
4
|
+
> This repository contains the source code and releases of `<vaadin-confirm-dialog>` for the Vaadin versions 10 to 19.
|
|
5
|
+
|
|
6
|
+
[<vaadin-confirm-dialog>](https://vaadin.com/components/vaadin-confirm-dialog) is a Web Component providing an easy way to ask the user to confirm a choice, part of the [Vaadin components](https://vaadin.com/components).
|
|
7
|
+
|
|
6
8
|
[Live Demo ↗](https://vaadin.com/components/vaadin-confirm-dialog/html-examples)
|
|
7
9
|
|
|
|
8
10
|
[API documentation ↗](https://vaadin.com/components/vaadin-confirm-dialog/html-api)
|
|
9
11
|
|
|
10
|
-
|
|
11
|
-
[
|
|
12
|
+
[](https://www.npmjs.com/package/@vaadin/vaadin-confirm-dialog)
|
|
13
|
+
[](https://vaadin.com/directory/component/vaadinvaadin-confirm-dialog)
|
|
14
|
+
[](https://discord.gg/PHmkCKC)
|
|
12
15
|
|
|
13
16
|
```html
|
|
14
17
|
<vaadin-confirm-dialog header="Unsaved changes" confirm-text="Save" on-confirm="save"
|
package/package.json
CHANGED
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
"repository": "vaadin/vaadin-confirm-dialog",
|
|
11
11
|
"homepage": "https://vaadin.com/components",
|
|
12
12
|
"name": "@vaadin/vaadin-confirm-dialog",
|
|
13
|
-
"version": "1.3.
|
|
13
|
+
"version": "1.3.1",
|
|
14
14
|
"main": "vaadin-confirm-dialog.js",
|
|
15
15
|
"author": "Vaadin Ltd",
|
|
16
16
|
"license": "https://raw.githubusercontent.com/vaadin/vaadin-confirm-dialog/master/LICENSE",
|
|
17
|
+
"cvdlName": "vaadin-confirm-dialog",
|
|
17
18
|
"bugs": {
|
|
18
19
|
"url": "https://github.com/vaadin/vaadin-confirm-dialog/issues"
|
|
19
20
|
},
|
|
@@ -40,15 +41,18 @@
|
|
|
40
41
|
"@vaadin/vaadin-button": "^2.4.0",
|
|
41
42
|
"@vaadin/vaadin-overlay": "^3.5.0"
|
|
42
43
|
},
|
|
43
|
-
"scripts": {
|
|
44
|
-
"generate-typings": "gen-typescript-declarations --outDir . --verify"
|
|
45
|
-
},
|
|
46
44
|
"devDependencies": {
|
|
45
|
+
"@web-padawan/gen-typescript-declarations": "^1.6.2",
|
|
46
|
+
"web-component-tester": "6.9.2",
|
|
47
47
|
"@polymer/iron-component-page": "^4.0.0",
|
|
48
48
|
"@webcomponents/webcomponentsjs": "^2.0.0",
|
|
49
49
|
"wct-browser-legacy": "^1.0.1",
|
|
50
50
|
"@vaadin/vaadin-demo-helpers": "^3.1.0",
|
|
51
51
|
"@vaadin/vaadin-icons": "^4.2.0",
|
|
52
52
|
"@polymer/iron-test-helpers": "^3.0.0"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"generate-typings": "gen-typescript-declarations --outDir . --verify",
|
|
56
|
+
"test": "wct --npm"
|
|
53
57
|
}
|
|
54
58
|
}
|
|
@@ -113,7 +113,11 @@ class ConfirmDialogElement extends ElementMixin(ThemableMixin(PolymerElement)) {
|
|
|
113
113
|
return 'vaadin-confirm-dialog';
|
|
114
114
|
}
|
|
115
115
|
static get version() {
|
|
116
|
-
return '1.3.
|
|
116
|
+
return '1.3.1';
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
static get cvdlName() {
|
|
120
|
+
return 'vaadin-confirm-dialog';
|
|
117
121
|
}
|
|
118
122
|
|
|
119
123
|
static get properties() {
|