@skyux/modals 6.0.0-beta.3 → 6.0.0-beta.4
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 +158 -506
- package/esm2020/index.mjs +2 -2
- package/esm2020/lib/modules/confirm/confirm-button-action.mjs +1 -1
- package/esm2020/lib/modules/confirm/confirm-button-config.mjs +1 -1
- package/esm2020/lib/modules/confirm/confirm-button.mjs +1 -1
- package/esm2020/lib/modules/confirm/confirm-closed-event-args.mjs +1 -1
- package/esm2020/lib/modules/confirm/confirm-config.mjs +1 -1
- package/esm2020/lib/modules/confirm/confirm-instance.mjs +3 -3
- package/esm2020/lib/modules/confirm/confirm-modal-context.mjs +4 -2
- package/esm2020/lib/modules/confirm/confirm-type.mjs +3 -4
- package/esm2020/lib/modules/confirm/confirm.component.mjs +3 -3
- package/esm2020/lib/modules/confirm/confirm.module.mjs +4 -4
- package/esm2020/lib/modules/confirm/confirm.service.mjs +7 -8
- package/esm2020/lib/modules/modal/modal-adapter.service.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-component-adapter.service.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-configuration.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-content.component.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-footer.component.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-header.component.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-host.component.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-host.service.mjs +3 -3
- package/esm2020/lib/modules/modal/modal-instance.mjs +1 -6
- package/esm2020/lib/modules/modal/modal-scroll-shadow.directive.mjs +3 -3
- package/esm2020/lib/modules/modal/modal.component.mjs +3 -3
- package/esm2020/lib/modules/modal/modal.module.mjs +4 -4
- package/esm2020/lib/modules/modal/modal.service.mjs +5 -6
- package/esm2020/lib/modules/shared/sky-modals-resources.module.mjs +4 -4
- package/fesm2015/skyux-modals.mjs +68 -72
- package/fesm2015/skyux-modals.mjs.map +1 -1
- package/fesm2020/skyux-modals.mjs +68 -72
- package/fesm2020/skyux-modals.mjs.map +1 -1
- package/index.d.ts +0 -1
- package/lib/modules/confirm/confirm-button-action.d.ts +3 -0
- package/lib/modules/confirm/confirm-button-config.d.ts +6 -7
- package/lib/modules/confirm/confirm-button.d.ts +4 -0
- package/lib/modules/confirm/confirm-closed-event-args.d.ts +1 -1
- package/lib/modules/confirm/confirm-config.d.ts +3 -5
- package/lib/modules/confirm/confirm-instance.d.ts +2 -2
- package/lib/modules/confirm/confirm-modal-context.d.ts +3 -0
- package/lib/modules/confirm/confirm-type.d.ts +2 -3
- package/lib/modules/confirm/confirm.service.d.ts +3 -4
- package/lib/modules/modal/modal-instance.d.ts +0 -3
- package/lib/modules/modal/modal.service.d.ts +1 -1
- package/package.json +9 -9
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { SkyModalBeforeCloseHandler } from './modal-before-close-handler';
|
|
3
3
|
import { SkyModalCloseArgs } from './modal-close-args';
|
|
4
|
-
/**
|
|
5
|
-
* Allows you to close the modal and return data from the launched modal.
|
|
6
|
-
*/
|
|
7
4
|
export declare class SkyModalInstance {
|
|
8
5
|
/**
|
|
9
6
|
* An event that the modal instance emits when it is about to close.
|
|
@@ -18,7 +18,7 @@ export declare class SkyModalService {
|
|
|
18
18
|
/**
|
|
19
19
|
* Opens a modal using the specified component.
|
|
20
20
|
* @param component Determines the component to render.
|
|
21
|
-
* @param {SkyModalConfigurationInterface} config
|
|
21
|
+
* @param {SkyModalConfigurationInterface} config Specifies configuration options for the modal.
|
|
22
22
|
*/
|
|
23
23
|
open(component: any, config?: SkyModalConfigurationInterface | any[]): SkyModalInstance;
|
|
24
24
|
private getConfigFromParameter;
|
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.4",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@angular/animations": "^13.2
|
|
44
|
-
"@angular/common": "^13.2
|
|
45
|
-
"@angular/core": "^13.2
|
|
46
|
-
"@angular/router": "^13.2
|
|
47
|
-
"@skyux/core": "6.0.0-beta.
|
|
48
|
-
"@skyux/i18n": "6.0.0-beta.
|
|
49
|
-
"@skyux/indicators": "6.0.0-beta.
|
|
50
|
-
"@skyux/theme": "6.0.0-beta.
|
|
43
|
+
"@angular/animations": "^13.3.2",
|
|
44
|
+
"@angular/common": "^13.3.2",
|
|
45
|
+
"@angular/core": "^13.3.2",
|
|
46
|
+
"@angular/router": "^13.3.2",
|
|
47
|
+
"@skyux/core": "6.0.0-beta.4",
|
|
48
|
+
"@skyux/i18n": "6.0.0-beta.4",
|
|
49
|
+
"@skyux/indicators": "6.0.0-beta.4",
|
|
50
|
+
"@skyux/theme": "6.0.0-beta.4"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1"
|