@skyux/modals 6.0.0-beta.0 → 6.0.0-beta.3
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/documentation.json +372 -281
- package/esm2020/lib/modules/modal/modal-before-close-handler.mjs +4 -1
- package/esm2020/lib/modules/modal/modal-close-args.mjs +5 -1
- package/esm2020/lib/modules/modal/modal-instance.mjs +5 -5
- package/esm2020/lib/modules/modal/modal.component.mjs +37 -9
- package/esm2020/lib/modules/modal/modal.interface.mjs +1 -1
- package/esm2020/lib/modules/modal/modal.service.mjs +2 -3
- package/fesm2015/skyux-modals.mjs +47 -13
- package/fesm2015/skyux-modals.mjs.map +1 -1
- package/fesm2020/skyux-modals.mjs +47 -13
- package/fesm2020/skyux-modals.mjs.map +1 -1
- package/lib/modules/modal/modal-before-close-handler.d.ts +3 -0
- package/lib/modules/modal/modal-close-args.d.ts +11 -0
- package/lib/modules/modal/modal-instance.d.ts +4 -4
- package/lib/modules/modal/modal.component.d.ts +8 -7
- package/lib/modules/modal/modal.interface.d.ts +1 -1
- package/lib/modules/modal/modal.service.d.ts +1 -2
- package/package.json +24 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/modals",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.3",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -15,25 +15,6 @@
|
|
|
15
15
|
"url": "https://github.com/blackbaud/skyux/issues"
|
|
16
16
|
},
|
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
|
18
|
-
"peerDependencies": {
|
|
19
|
-
"@angular/animations": "^13.2.7",
|
|
20
|
-
"@angular/common": "^13.2.7",
|
|
21
|
-
"@angular/core": "^13.2.7",
|
|
22
|
-
"@angular/router": "^13.2.7",
|
|
23
|
-
"@skyux/core": "6.0.0-beta.0",
|
|
24
|
-
"@skyux/i18n": "6.0.0-beta.0",
|
|
25
|
-
"@skyux/indicators": "6.0.0-beta.0",
|
|
26
|
-
"@skyux/theme": "6.0.0-beta.0"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"tslib": "^2.3.1"
|
|
30
|
-
},
|
|
31
|
-
"module": "fesm2015/skyux-modals.mjs",
|
|
32
|
-
"es2020": "fesm2020/skyux-modals.mjs",
|
|
33
|
-
"esm2020": "esm2020/skyux-modals.mjs",
|
|
34
|
-
"fesm2020": "fesm2020/skyux-modals.mjs",
|
|
35
|
-
"fesm2015": "fesm2015/skyux-modals.mjs",
|
|
36
|
-
"typings": "skyux-modals.d.ts",
|
|
37
18
|
"exports": {
|
|
38
19
|
"./package.json": {
|
|
39
20
|
"default": "./package.json"
|
|
@@ -53,7 +34,29 @@
|
|
|
53
34
|
"es2015": "./fesm2015/skyux-modals-testing.mjs",
|
|
54
35
|
"node": "./fesm2015/skyux-modals-testing.mjs",
|
|
55
36
|
"default": "./fesm2020/skyux-modals-testing.mjs"
|
|
37
|
+
},
|
|
38
|
+
"./documentation.json": {
|
|
39
|
+
"default": "./documentation.json"
|
|
56
40
|
}
|
|
57
41
|
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"@angular/animations": "^13.2.7",
|
|
44
|
+
"@angular/common": "^13.2.7",
|
|
45
|
+
"@angular/core": "^13.2.7",
|
|
46
|
+
"@angular/router": "^13.2.7",
|
|
47
|
+
"@skyux/core": "6.0.0-beta.3",
|
|
48
|
+
"@skyux/i18n": "6.0.0-beta.3",
|
|
49
|
+
"@skyux/indicators": "6.0.0-beta.3",
|
|
50
|
+
"@skyux/theme": "6.0.0-beta.3"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"tslib": "^2.3.1"
|
|
54
|
+
},
|
|
55
|
+
"module": "fesm2015/skyux-modals.mjs",
|
|
56
|
+
"es2020": "fesm2020/skyux-modals.mjs",
|
|
57
|
+
"esm2020": "esm2020/skyux-modals.mjs",
|
|
58
|
+
"fesm2020": "fesm2020/skyux-modals.mjs",
|
|
59
|
+
"fesm2015": "fesm2015/skyux-modals.mjs",
|
|
60
|
+
"typings": "skyux-modals.d.ts",
|
|
58
61
|
"sideEffects": false
|
|
59
|
-
}
|
|
62
|
+
}
|