@skyux/modals 10.32.0 → 11.0.0-alpha.0
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 +392 -411
- package/esm2022/lib/modules/confirm/confirm.component.mjs +3 -3
- package/esm2022/lib/modules/confirm/confirm.module.mjs +4 -4
- package/esm2022/lib/modules/confirm/confirm.service.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-adapter.service.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-component-adapter.service.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-configuration.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-content.component.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-errors.service.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-footer.component.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-header.component.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-host-context.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-host.component.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-host.service.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-is-dirty.directive.mjs +3 -3
- package/esm2022/lib/modules/modal/modal-scroll-shadow.directive.mjs +3 -3
- package/esm2022/lib/modules/modal/modal.component.mjs +5 -5
- package/esm2022/lib/modules/modal/modal.module.mjs +4 -4
- package/esm2022/lib/modules/modal/modal.service.mjs +6 -6
- package/esm2022/lib/modules/shared/sky-modals-resources.module.mjs +4 -4
- package/esm2022/testing/confirm/confirm-testing.module.mjs +4 -4
- package/esm2022/testing/modal/controller/modal-testing.module.mjs +4 -4
- package/esm2022/testing/modal/controller/modal-testing.service.mjs +3 -3
- package/fesm2022/skyux-modals-testing.mjs +11 -11
- package/fesm2022/skyux-modals.mjs +64 -64
- package/fesm2022/skyux-modals.mjs.map +1 -1
- package/lib/modules/modal/modal.component.d.ts +0 -4
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/modals",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0-alpha.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@angular/cdk": "^
|
|
40
|
-
"@angular/common": "^
|
|
41
|
-
"@angular/core": "^
|
|
42
|
-
"@angular/router": "^
|
|
43
|
-
"@skyux/core": "
|
|
44
|
-
"@skyux/help-inline": "
|
|
45
|
-
"@skyux/i18n": "
|
|
46
|
-
"@skyux/indicators": "
|
|
47
|
-
"@skyux/theme": "
|
|
39
|
+
"@angular/cdk": "^18.0.5",
|
|
40
|
+
"@angular/common": "^18.0.5",
|
|
41
|
+
"@angular/core": "^18.0.5",
|
|
42
|
+
"@angular/router": "^18.0.5",
|
|
43
|
+
"@skyux/core": "11.0.0-alpha.0",
|
|
44
|
+
"@skyux/help-inline": "11.0.0-alpha.0",
|
|
45
|
+
"@skyux/i18n": "11.0.0-alpha.0",
|
|
46
|
+
"@skyux/indicators": "11.0.0-alpha.0",
|
|
47
|
+
"@skyux/theme": "11.0.0-alpha.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@skyux/icon": "
|
|
51
|
-
"tslib": "^2.6.
|
|
50
|
+
"@skyux/icon": "11.0.0-alpha.0",
|
|
51
|
+
"tslib": "^2.6.3"
|
|
52
52
|
},
|
|
53
53
|
"module": "fesm2022/skyux-modals.mjs",
|
|
54
54
|
"typings": "index.d.ts",
|