@skyux/layout 15.0.0-alpha.11 → 15.0.0-alpha.13
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 +56 -6
- package/fesm2022/skyux-layout.mjs.map +1 -1
- package/package.json +10 -10
- package/types/skyux-layout.d.ts +19 -2
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.13",
|
|
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-alpha.
|
|
26
|
-
"@skyux/forms": "15.0.0-alpha.
|
|
27
|
-
"@skyux/help-inline": "15.0.0-alpha.
|
|
28
|
-
"@skyux/i18n": "15.0.0-alpha.
|
|
29
|
-
"@skyux/icon": "15.0.0-alpha.
|
|
30
|
-
"@skyux/indicators": "15.0.0-alpha.
|
|
31
|
-
"@skyux/modals": "15.0.0-alpha.
|
|
32
|
-
"@skyux/router": "15.0.0-alpha.
|
|
33
|
-
"@skyux/theme": "15.0.0-alpha.
|
|
25
|
+
"@skyux/core": "15.0.0-alpha.13",
|
|
26
|
+
"@skyux/forms": "15.0.0-alpha.13",
|
|
27
|
+
"@skyux/help-inline": "15.0.0-alpha.13",
|
|
28
|
+
"@skyux/i18n": "15.0.0-alpha.13",
|
|
29
|
+
"@skyux/icon": "15.0.0-alpha.13",
|
|
30
|
+
"@skyux/indicators": "15.0.0-alpha.13",
|
|
31
|
+
"@skyux/modals": "15.0.0-alpha.13",
|
|
32
|
+
"@skyux/router": "15.0.0-alpha.13",
|
|
33
|
+
"@skyux/theme": "15.0.0-alpha.13"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.8.1"
|
package/types/skyux-layout.d.ts
CHANGED
|
@@ -739,9 +739,19 @@ declare class SkyFluidGridComponent {
|
|
|
739
739
|
#private;
|
|
740
740
|
/**
|
|
741
741
|
* Disables the outer left and right margin of the fluid grid container.
|
|
742
|
+
* @deprecated Use `inset` instead. Note that the values are inverted:
|
|
743
|
+
* setting `disableMargin` to `true` is equivalent to setting `inset` to
|
|
744
|
+
* `false`.
|
|
745
|
+
*/
|
|
746
|
+
set disableMargin(value: boolean | undefined);
|
|
747
|
+
get disableMargin(): boolean | undefined;
|
|
748
|
+
/**
|
|
749
|
+
* Whether to add padding inside the fluid grid container so its content is
|
|
750
|
+
* inset from the container's outer left and right edges. When `false`,
|
|
751
|
+
* the fluid grid's content extends to the edges of its container.
|
|
742
752
|
* @default false
|
|
743
753
|
*/
|
|
744
|
-
|
|
754
|
+
readonly inset: i0.InputSignalWithTransform<boolean, unknown>;
|
|
745
755
|
/**
|
|
746
756
|
* The type that defines the size of the padding
|
|
747
757
|
* between columns.
|
|
@@ -749,8 +759,15 @@ declare class SkyFluidGridComponent {
|
|
|
749
759
|
*/
|
|
750
760
|
set gutterSize(value: SkyFluidGridGutterSizeType | undefined);
|
|
751
761
|
get gutterSize(): SkyFluidGridGutterSizeType;
|
|
762
|
+
/**
|
|
763
|
+
* Whether the fluid grid's outer left and right margin should be hidden.
|
|
764
|
+
* The deprecated `disableMargin` input, when explicitly set, takes
|
|
765
|
+
* precedence over `inset` so apps mid-migration keep their existing
|
|
766
|
+
* behavior until `disableMargin` is removed.
|
|
767
|
+
*/
|
|
768
|
+
protected readonly noMargin: i0.Signal<boolean>;
|
|
752
769
|
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>;
|
|
770
|
+
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
771
|
}
|
|
755
772
|
|
|
756
773
|
declare class SkyFluidGridModule {
|