@outbook/webcomponents-modal-dialog 1.0.0 → 1.0.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 +3 -3
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -13,13 +13,13 @@ npm install @outbook/webcomponents-modal-dialog
|
|
|
13
13
|
### As a Lit Element
|
|
14
14
|
|
|
15
15
|
```javascript
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
16
|
+
import {html} from 'lit';
|
|
17
|
+
import {ModalDialog} from '@outbook/webcomponents-modal-dialog';
|
|
18
18
|
|
|
19
19
|
function openExampleModal() {
|
|
20
20
|
ModalDialog({
|
|
21
21
|
title: 'Example Modal',
|
|
22
|
-
view: ({
|
|
22
|
+
view: ({closeDialog}) => html`
|
|
23
23
|
<p>This is the content of the modal dialog.</p>
|
|
24
24
|
<button @click="${closeDialog}">Close</button>
|
|
25
25
|
`
|
package/package.json
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outbook/webcomponents-modal-dialog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"main": "modal-dialog.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"scripts": {},
|
|
8
8
|
"bugs": {
|
|
9
|
-
"url": "https://gitlab.com/arr2019/
|
|
9
|
+
"url": "https://gitlab.com/arr2019/outbook-toolkit/issues"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://gitlab.com/arr2019/web-components/
|
|
11
|
+
"homepage": "https://gitlab.com/arr2019/outbook-toolkit/pkg/web-components/modal-dialog#readme",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "git+https://gitlab.com/arr2019/
|
|
15
|
-
"folder": "pkg/modal-dialog"
|
|
14
|
+
"url": "git+https://gitlab.com/arr2019/outbook-toolkit.git",
|
|
15
|
+
"folder": "pkg/web-components/modal-dialog"
|
|
16
16
|
},
|
|
17
17
|
"publishConfig": {
|
|
18
|
-
"registry": "https://registry.npmjs.
|
|
18
|
+
"registry": "https://registry.npmjs.com/"
|
|
19
19
|
},
|
|
20
20
|
"author": "Antonio Rodríguez",
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"description": "Web components modal-dialog",
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@outbook/colorful": ">=1.1.
|
|
25
|
-
"@outbook/design-decisions": ">=1.1.
|
|
24
|
+
"@outbook/colorful": ">=1.1.4",
|
|
25
|
+
"@outbook/design-decisions": ">=1.1.7"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@outbook/icons": ">=1.1
|
|
29
|
-
"@outbook/webcomponents-type-icon": ">=1.1.
|
|
30
|
-
"@outbook/webcomponents-scrollable": ">=1.0.
|
|
28
|
+
"@outbook/icons": ">=1.3.1",
|
|
29
|
+
"@outbook/webcomponents-type-icon": ">=1.1.3",
|
|
30
|
+
"@outbook/webcomponents-scrollable": ">=1.0.1",
|
|
31
31
|
"a11y-key-conjurer": "1.1.2"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|