@skyux/layout 14.0.0-alpha.9 → 14.0.0-beta.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/fesm2022/skyux-layout.mjs +100 -194
- package/fesm2022/skyux-layout.mjs.map +1 -1
- package/package.json +11 -12
- package/types/skyux-layout.d.ts +9 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "14.0.0-
|
|
3
|
+
"version": "14.0.0-beta.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -16,23 +16,22 @@
|
|
|
16
16
|
},
|
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@angular/animations": "^21.2.0",
|
|
20
19
|
"@angular/cdk": "^21.2.0",
|
|
21
20
|
"@angular/common": "^21.2.0",
|
|
22
21
|
"@angular/core": "^21.2.0",
|
|
23
22
|
"@angular/forms": "^21.2.0",
|
|
24
23
|
"@angular/platform-browser": "^21.2.0",
|
|
25
24
|
"@angular/router": "^21.2.0",
|
|
26
|
-
"@skyux-sdk/testing": "14.0.0-
|
|
27
|
-
"@skyux/core": "14.0.0-
|
|
28
|
-
"@skyux/forms": "14.0.0-
|
|
29
|
-
"@skyux/help-inline": "14.0.0-
|
|
30
|
-
"@skyux/i18n": "14.0.0-
|
|
31
|
-
"@skyux/icon": "14.0.0-
|
|
32
|
-
"@skyux/indicators": "14.0.0-
|
|
33
|
-
"@skyux/modals": "14.0.0-
|
|
34
|
-
"@skyux/router": "14.0.0-
|
|
35
|
-
"@skyux/theme": "14.0.0-
|
|
25
|
+
"@skyux-sdk/testing": "14.0.0-beta.1",
|
|
26
|
+
"@skyux/core": "14.0.0-beta.1",
|
|
27
|
+
"@skyux/forms": "14.0.0-beta.1",
|
|
28
|
+
"@skyux/help-inline": "14.0.0-beta.1",
|
|
29
|
+
"@skyux/i18n": "14.0.0-beta.1",
|
|
30
|
+
"@skyux/icon": "14.0.0-beta.1",
|
|
31
|
+
"@skyux/indicators": "14.0.0-beta.1",
|
|
32
|
+
"@skyux/modals": "14.0.0-beta.1",
|
|
33
|
+
"@skyux/router": "14.0.0-beta.1",
|
|
34
|
+
"@skyux/theme": "14.0.0-beta.1"
|
|
36
35
|
},
|
|
37
36
|
"dependencies": {
|
|
38
37
|
"tslib": "^2.8.1"
|
package/types/skyux-layout.d.ts
CHANGED
|
@@ -14,10 +14,9 @@ import { Observable, Subject, BehaviorSubject } from 'rxjs';
|
|
|
14
14
|
import * as i1$1 from '@skyux/i18n';
|
|
15
15
|
import { SkyLibResourcesService } from '@skyux/i18n';
|
|
16
16
|
import * as i5$1 from '@skyux/help-inline';
|
|
17
|
-
import { AnimationEvent } from '@angular/animations';
|
|
18
17
|
import * as i6$1 from '@angular/forms';
|
|
19
18
|
import * as i7$2 from '@skyux/forms';
|
|
20
|
-
import * as
|
|
19
|
+
import * as i4 from '@skyux/indicators';
|
|
21
20
|
import { SkyModalService } from '@skyux/modals';
|
|
22
21
|
|
|
23
22
|
/**
|
|
@@ -415,7 +414,7 @@ declare enum SkyInlineDeleteType {
|
|
|
415
414
|
Card = "card"
|
|
416
415
|
}
|
|
417
416
|
|
|
418
|
-
declare class SkyInlineDeleteComponent implements OnDestroy
|
|
417
|
+
declare class SkyInlineDeleteComponent implements OnDestroy {
|
|
419
418
|
#private;
|
|
420
419
|
/**
|
|
421
420
|
* Whether the deletion is pending.
|
|
@@ -430,20 +429,12 @@ declare class SkyInlineDeleteComponent implements OnDestroy, OnInit {
|
|
|
430
429
|
* Fires when users click the delete button.
|
|
431
430
|
*/
|
|
432
431
|
deleteTriggered: EventEmitter<void>;
|
|
433
|
-
animationState: string;
|
|
434
432
|
assistiveTextId: string;
|
|
435
433
|
type: SkyInlineDeleteType;
|
|
436
434
|
deleteButton: ElementRef | undefined;
|
|
435
|
+
protected readonly enterAnimationTrigger: i0.WritableSignal<boolean>;
|
|
437
436
|
constructor(adapterService: SkyInlineDeleteAdapterService, changeDetector: ChangeDetectorRef, elRef: ElementRef);
|
|
438
|
-
|
|
439
|
-
* Initialization lifecycle hook
|
|
440
|
-
* @internal
|
|
441
|
-
*/
|
|
442
|
-
ngOnInit(): void;
|
|
443
|
-
/**
|
|
444
|
-
* Destruction lifecycle hook
|
|
445
|
-
* @internal
|
|
446
|
-
*/
|
|
437
|
+
protected onAnimationEnd(): void;
|
|
447
438
|
ngOnDestroy(): void;
|
|
448
439
|
/**
|
|
449
440
|
* @internal
|
|
@@ -459,12 +450,6 @@ declare class SkyInlineDeleteComponent implements OnDestroy, OnInit {
|
|
|
459
450
|
* @internal
|
|
460
451
|
*/
|
|
461
452
|
setType(type: SkyInlineDeleteType): void;
|
|
462
|
-
/**
|
|
463
|
-
* Handles actions that should be taken after the inline delete animates
|
|
464
|
-
* @param event The animation event
|
|
465
|
-
* @internal
|
|
466
|
-
*/
|
|
467
|
-
onAnimationDone(event: AnimationEvent): void;
|
|
468
453
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyInlineDeleteComponent, never>;
|
|
469
454
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyInlineDeleteComponent, "sky-inline-delete", never, { "pending": { "alias": "pending"; "required": false; }; }, { "cancelTriggered": "cancelTriggered"; "deleteTriggered": "deleteTriggered"; }, never, never, false, never>;
|
|
470
455
|
}
|
|
@@ -529,7 +514,7 @@ declare class SkyCardContentComponent {
|
|
|
529
514
|
|
|
530
515
|
declare class SkyInlineDeleteModule {
|
|
531
516
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyInlineDeleteModule, never>;
|
|
532
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyInlineDeleteModule, [typeof SkyInlineDeleteComponent], [typeof SkyLayoutResourcesModule, typeof
|
|
517
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyInlineDeleteModule, [typeof SkyInlineDeleteComponent], [typeof i7$1._SkyAnimationEndHandlerDirective, typeof SkyLayoutResourcesModule, typeof i4.SkyWaitModule], [typeof SkyInlineDeleteComponent]>;
|
|
533
518
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyInlineDeleteModule>;
|
|
534
519
|
}
|
|
535
520
|
|
|
@@ -981,6 +966,7 @@ declare class SkyTextExpandAdapterService {
|
|
|
981
966
|
constructor(rendererFactory: RendererFactory2);
|
|
982
967
|
getContainerHeight(containerEl: ElementRef): number;
|
|
983
968
|
removeContainerMaxHeight(containerEl: ElementRef): void;
|
|
969
|
+
setContainerMaxHeight(containerEl: ElementRef, height: number): void;
|
|
984
970
|
setText(textEl: ElementRef, text: string): void;
|
|
985
971
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextExpandAdapterService, never>;
|
|
986
972
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyTextExpandAdapterService>;
|
|
@@ -1031,7 +1017,6 @@ declare class SkyTextExpandComponent implements AfterContentInit {
|
|
|
1031
1017
|
expandable: boolean;
|
|
1032
1018
|
isExpanded: boolean | undefined;
|
|
1033
1019
|
isModal: boolean;
|
|
1034
|
-
transitionHeight: number;
|
|
1035
1020
|
containerEl: ElementRef | undefined;
|
|
1036
1021
|
set textEl(value: ElementRef | undefined);
|
|
1037
1022
|
get textEl(): ElementRef | undefined;
|
|
@@ -1040,12 +1025,12 @@ declare class SkyTextExpandComponent implements AfterContentInit {
|
|
|
1040
1025
|
animationEnd(): void;
|
|
1041
1026
|
ngAfterContentInit(): void;
|
|
1042
1027
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextExpandComponent, never>;
|
|
1043
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyTextExpandComponent, "sky-text-expand", never, { "expandModalTitle": { "alias": "expandModalTitle"; "required": false; }; "maxExpandedLength": { "alias": "maxExpandedLength"; "required": false; }; "maxExpandedNewlines": { "alias": "maxExpandedNewlines"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "text": { "alias": "text"; "required": false; }; "truncateNewlines": { "alias": "truncateNewlines"; "required": false; }; }, {}, never, never,
|
|
1028
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyTextExpandComponent, "sky-text-expand", never, { "expandModalTitle": { "alias": "expandModalTitle"; "required": false; }; "maxExpandedLength": { "alias": "maxExpandedLength"; "required": false; }; "maxExpandedNewlines": { "alias": "maxExpandedNewlines"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "text": { "alias": "text"; "required": false; }; "truncateNewlines": { "alias": "truncateNewlines"; "required": false; }; }, {}, never, never, true, never>;
|
|
1044
1029
|
}
|
|
1045
1030
|
|
|
1046
1031
|
declare class SkyTextExpandModule {
|
|
1047
1032
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextExpandModule, never>;
|
|
1048
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTextExpandModule, [typeof SkyTextExpandComponent],
|
|
1033
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTextExpandModule, never, [typeof SkyTextExpandComponent], [typeof SkyTextExpandComponent]>;
|
|
1049
1034
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyTextExpandModule>;
|
|
1050
1035
|
}
|
|
1051
1036
|
|
|
@@ -1073,7 +1058,6 @@ declare class SkyTextExpandRepeaterComponent<TData = unknown> {
|
|
|
1073
1058
|
protected expandable: boolean;
|
|
1074
1059
|
contentSectionId: string;
|
|
1075
1060
|
protected readonly isExpanded: i0.WritableSignal<boolean>;
|
|
1076
|
-
protected transitionHeight: number;
|
|
1077
1061
|
protected readonly buttonText: i0.Signal<string>;
|
|
1078
1062
|
protected containerEl: i0.Signal<ElementRef<any> | undefined>;
|
|
1079
1063
|
protected readonly trackedData: i0.Signal<{
|
|
@@ -1089,7 +1073,7 @@ declare class SkyTextExpandRepeaterComponent<TData = unknown> {
|
|
|
1089
1073
|
|
|
1090
1074
|
declare class SkyTextExpandRepeaterModule {
|
|
1091
1075
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTextExpandRepeaterModule, never>;
|
|
1092
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTextExpandRepeaterModule, [typeof SkyTextExpandRepeaterComponent], [typeof SkyLayoutResourcesModule, typeof i5.CommonModule], [typeof SkyTextExpandRepeaterComponent]>;
|
|
1076
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTextExpandRepeaterModule, [typeof SkyTextExpandRepeaterComponent], [typeof SkyLayoutResourcesModule, typeof i5.CommonModule, typeof i7$1._SkyTransitionEndHandlerDirective], [typeof SkyTextExpandRepeaterComponent]>;
|
|
1093
1077
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyTextExpandRepeaterModule>;
|
|
1094
1078
|
}
|
|
1095
1079
|
|