@skyux/layout 15.0.0-alpha.9 → 15.0.0-beta.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/fesm2022/skyux-layout.mjs +80 -42
- package/fesm2022/skyux-layout.mjs.map +1 -1
- package/package.json +10 -10
- package/types/skyux-layout.d.ts +20 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "15.0.0-
|
|
3
|
+
"version": "15.0.0-beta.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"@angular/forms": "^22.1.2",
|
|
23
23
|
"@angular/platform-browser": "^22.1.2",
|
|
24
24
|
"@angular/router": "^22.1.2",
|
|
25
|
-
"@skyux/core": "15.0.0-
|
|
26
|
-
"@skyux/forms": "15.0.0-
|
|
27
|
-
"@skyux/help-inline": "15.0.0-
|
|
28
|
-
"@skyux/i18n": "15.0.0-
|
|
29
|
-
"@skyux/icon": "15.0.0-
|
|
30
|
-
"@skyux/indicators": "15.0.0-
|
|
31
|
-
"@skyux/modals": "15.0.0-
|
|
32
|
-
"@skyux/router": "15.0.0-
|
|
33
|
-
"@skyux/theme": "15.0.0-
|
|
25
|
+
"@skyux/core": "15.0.0-beta.0",
|
|
26
|
+
"@skyux/forms": "15.0.0-beta.0",
|
|
27
|
+
"@skyux/help-inline": "15.0.0-beta.0",
|
|
28
|
+
"@skyux/i18n": "15.0.0-beta.0",
|
|
29
|
+
"@skyux/icon": "15.0.0-beta.0",
|
|
30
|
+
"@skyux/indicators": "15.0.0-beta.0",
|
|
31
|
+
"@skyux/modals": "15.0.0-beta.0",
|
|
32
|
+
"@skyux/router": "15.0.0-beta.0",
|
|
33
|
+
"@skyux/theme": "15.0.0-beta.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.8.1"
|
package/types/skyux-layout.d.ts
CHANGED
|
@@ -327,7 +327,6 @@ declare class SkyBoxModule {
|
|
|
327
327
|
|
|
328
328
|
/**
|
|
329
329
|
* Specifies an action that users can perform on the card.
|
|
330
|
-
* @deprecated
|
|
331
330
|
*/
|
|
332
331
|
declare class SkyCardActionsComponent {
|
|
333
332
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardActionsComponent, never>;
|
|
@@ -390,7 +389,6 @@ declare class SkyInlineDeleteComponent implements OnDestroy {
|
|
|
390
389
|
|
|
391
390
|
/**
|
|
392
391
|
* Specifies a title to identify what the card represents.
|
|
393
|
-
* @deprecated
|
|
394
392
|
*/
|
|
395
393
|
declare class SkyCardTitleComponent {
|
|
396
394
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardTitleComponent, never>;
|
|
@@ -398,8 +396,7 @@ declare class SkyCardTitleComponent {
|
|
|
398
396
|
}
|
|
399
397
|
|
|
400
398
|
/**
|
|
401
|
-
* Creates a
|
|
402
|
-
* @deprecated `SkyCardComponent` is deprecated. For other SKY UX components that group and list content, see the content containers guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/content-containers.
|
|
399
|
+
* Creates a small container to highlight important information.
|
|
403
400
|
*/
|
|
404
401
|
declare class SkyCardComponent implements AfterContentInit, OnDestroy {
|
|
405
402
|
#private;
|
|
@@ -428,7 +425,6 @@ declare class SkyCardComponent implements AfterContentInit, OnDestroy {
|
|
|
428
425
|
inlineDeleteComponent: QueryList<SkyInlineDeleteComponent> | undefined;
|
|
429
426
|
titleComponent: QueryList<SkyCardTitleComponent> | undefined;
|
|
430
427
|
showTitle: boolean;
|
|
431
|
-
constructor();
|
|
432
428
|
ngAfterContentInit(): void;
|
|
433
429
|
contentClick(): void;
|
|
434
430
|
onCheckboxChange(newValue: boolean): void;
|
|
@@ -439,7 +435,6 @@ declare class SkyCardComponent implements AfterContentInit, OnDestroy {
|
|
|
439
435
|
|
|
440
436
|
/**
|
|
441
437
|
* Specifies the content to display in the body of the card.
|
|
442
|
-
* @deprecated
|
|
443
438
|
*/
|
|
444
439
|
declare class SkyCardContentComponent {
|
|
445
440
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardContentComponent, never>;
|
|
@@ -452,9 +447,6 @@ declare class SkyInlineDeleteModule {
|
|
|
452
447
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyInlineDeleteModule>;
|
|
453
448
|
}
|
|
454
449
|
|
|
455
|
-
/**
|
|
456
|
-
* @deprecated `SkyCardModule` is deprecated. For other SKY UX components that group and list content, see the content containers guidelines. For more information, see https://developer.blackbaud.com/skyux/design/guidelines/content-containers.
|
|
457
|
-
*/
|
|
458
450
|
declare class SkyCardModule {
|
|
459
451
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCardModule, never>;
|
|
460
452
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyCardModule, [typeof SkyCardActionsComponent, typeof SkyCardComponent, typeof SkyCardContentComponent, typeof SkyCardTitleComponent], [typeof i5.CommonModule, typeof i6$1.FormsModule, typeof i7$2.SkyCheckboxModule, typeof SkyLayoutResourcesModule, typeof SkyInlineDeleteModule], [typeof SkyCardActionsComponent, typeof SkyCardComponent, typeof SkyCardContentComponent, typeof SkyCardTitleComponent]>;
|
|
@@ -739,9 +731,19 @@ declare class SkyFluidGridComponent {
|
|
|
739
731
|
#private;
|
|
740
732
|
/**
|
|
741
733
|
* Disables the outer left and right margin of the fluid grid container.
|
|
734
|
+
* @deprecated Use `inset` instead. Note that the values are inverted:
|
|
735
|
+
* setting `disableMargin` to `true` is equivalent to setting `inset` to
|
|
736
|
+
* `false`.
|
|
737
|
+
*/
|
|
738
|
+
set disableMargin(value: boolean | undefined);
|
|
739
|
+
get disableMargin(): boolean | undefined;
|
|
740
|
+
/**
|
|
741
|
+
* Whether to add padding inside the fluid grid container so its content is
|
|
742
|
+
* inset from the container's outer left and right edges. When `false`,
|
|
743
|
+
* the fluid grid's content extends to the edges of its container.
|
|
742
744
|
* @default false
|
|
743
745
|
*/
|
|
744
|
-
|
|
746
|
+
readonly inset: i0.InputSignalWithTransform<boolean, unknown>;
|
|
745
747
|
/**
|
|
746
748
|
* The type that defines the size of the padding
|
|
747
749
|
* between columns.
|
|
@@ -749,8 +751,15 @@ declare class SkyFluidGridComponent {
|
|
|
749
751
|
*/
|
|
750
752
|
set gutterSize(value: SkyFluidGridGutterSizeType | undefined);
|
|
751
753
|
get gutterSize(): SkyFluidGridGutterSizeType;
|
|
754
|
+
/**
|
|
755
|
+
* Whether the fluid grid's outer left and right margin should be hidden.
|
|
756
|
+
* The deprecated `disableMargin` input, when explicitly set, takes
|
|
757
|
+
* precedence over `inset` so apps mid-migration keep their existing
|
|
758
|
+
* behavior until `disableMargin` is removed.
|
|
759
|
+
*/
|
|
760
|
+
protected readonly noMargin: i0.Signal<boolean>;
|
|
752
761
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFluidGridComponent, never>;
|
|
753
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFluidGridComponent, "sky-fluid-grid", never, { "disableMargin": { "alias": "disableMargin"; "required": false; }; "gutterSize": { "alias": "gutterSize"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
762
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFluidGridComponent, "sky-fluid-grid", never, { "disableMargin": { "alias": "disableMargin"; "required": false; }; "inset": { "alias": "inset"; "required": false; "isSignal": true; }; "gutterSize": { "alias": "gutterSize"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
754
763
|
}
|
|
755
764
|
|
|
756
765
|
declare class SkyFluidGridModule {
|