@skyux/layout 15.0.0-alpha.1 → 15.0.0-alpha.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "15.0.0-alpha.
|
|
3
|
+
"version": "15.0.0-alpha.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"@angular/forms": "^22.0.6",
|
|
23
23
|
"@angular/platform-browser": "^22.0.6",
|
|
24
24
|
"@angular/router": "^22.0.6",
|
|
25
|
-
"@skyux-sdk/testing": "15.0.0-alpha.
|
|
26
|
-
"@skyux/core": "15.0.0-alpha.
|
|
27
|
-
"@skyux/forms": "15.0.0-alpha.
|
|
28
|
-
"@skyux/help-inline": "15.0.0-alpha.
|
|
29
|
-
"@skyux/i18n": "15.0.0-alpha.
|
|
30
|
-
"@skyux/icon": "15.0.0-alpha.
|
|
31
|
-
"@skyux/indicators": "15.0.0-alpha.
|
|
32
|
-
"@skyux/modals": "15.0.0-alpha.
|
|
33
|
-
"@skyux/router": "15.0.0-alpha.
|
|
34
|
-
"@skyux/theme": "15.0.0-alpha.
|
|
25
|
+
"@skyux-sdk/testing": "15.0.0-alpha.2",
|
|
26
|
+
"@skyux/core": "15.0.0-alpha.2",
|
|
27
|
+
"@skyux/forms": "15.0.0-alpha.2",
|
|
28
|
+
"@skyux/help-inline": "15.0.0-alpha.2",
|
|
29
|
+
"@skyux/i18n": "15.0.0-alpha.2",
|
|
30
|
+
"@skyux/icon": "15.0.0-alpha.2",
|
|
31
|
+
"@skyux/indicators": "15.0.0-alpha.2",
|
|
32
|
+
"@skyux/modals": "15.0.0-alpha.2",
|
|
33
|
+
"@skyux/router": "15.0.0-alpha.2",
|
|
34
|
+
"@skyux/theme": "15.0.0-alpha.2"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.8.1"
|
package/types/skyux-layout.d.ts
CHANGED
|
@@ -709,32 +709,36 @@ declare class SkyColumnComponent implements OnInit, OnChanges {
|
|
|
709
709
|
* the column at the full width of the screen.
|
|
710
710
|
* @default 12
|
|
711
711
|
*/
|
|
712
|
-
set screenXSmall(value: number
|
|
712
|
+
set screenXSmall(value: number);
|
|
713
713
|
get screenXSmall(): number;
|
|
714
714
|
/**
|
|
715
715
|
* The number of columns (1-12) on small screens
|
|
716
716
|
* (768-991px). If you do not specify a value, the column inherits
|
|
717
717
|
* the `screenXSmall` value.
|
|
718
718
|
*/
|
|
719
|
-
screenSmall: number
|
|
719
|
+
screenSmall: number;
|
|
720
720
|
/**
|
|
721
721
|
* The number of columns (1-12) on medium screens
|
|
722
722
|
* (992-1199px). If you do not specify a value, the column inherits
|
|
723
723
|
* the `screenSmall` value.
|
|
724
724
|
*/
|
|
725
|
-
screenMedium: number
|
|
725
|
+
screenMedium: number;
|
|
726
726
|
/**
|
|
727
727
|
* The number of columns (1-12) on large screens
|
|
728
728
|
* (more than 1200px). If you do not specify a value, the column
|
|
729
729
|
* inherits the `screenMedium` value.
|
|
730
730
|
*/
|
|
731
|
-
screenLarge: number
|
|
731
|
+
screenLarge: number;
|
|
732
732
|
classnames: string | undefined;
|
|
733
733
|
ngOnChanges(changes: SimpleChanges): void;
|
|
734
734
|
getClassNames(): string;
|
|
735
735
|
ngOnInit(): void;
|
|
736
736
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyColumnComponent, never>;
|
|
737
737
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyColumnComponent, "sky-column", never, { "screenXSmall": { "alias": "screenXSmall"; "required": false; }; "screenSmall": { "alias": "screenSmall"; "required": false; }; "screenMedium": { "alias": "screenMedium"; "required": false; }; "screenLarge": { "alias": "screenLarge"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
738
|
+
static ngAcceptInputType_screenXSmall: unknown;
|
|
739
|
+
static ngAcceptInputType_screenSmall: unknown;
|
|
740
|
+
static ngAcceptInputType_screenMedium: unknown;
|
|
741
|
+
static ngAcceptInputType_screenLarge: unknown;
|
|
738
742
|
}
|
|
739
743
|
|
|
740
744
|
type SkyFluidGridGutterSizeType = 'small' | 'medium' | 'large';
|