@skyux/layout 4.7.0 → 4.7.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/CHANGELOG.md +17 -0
- package/bundles/skyux-layout.umd.js +17 -9
- package/bundles/skyux-layout.umd.js.map +1 -1
- package/bundles/skyux-layout.umd.min.js +2 -2
- package/bundles/skyux-layout.umd.min.js.map +1 -1
- package/esm2015/modules/action-button/action-button-header.component.js +1 -1
- package/esm2015/modules/action-button/action-button-icon.component.js +1 -1
- package/esm2015/modules/description-list/description-list.component.js +1 -1
- package/esm2015/modules/fluid-grid/fluid-grid.component.js +5 -1
- package/esm2015/modules/fluid-grid/row.component.js +6 -2
- package/esm2015/modules/toolbar/toolbar-item.component.js +1 -1
- package/esm2015/modules/toolbar/toolbar-section.component.js +1 -1
- package/esm2015/modules/toolbar/toolbar-view-actions.component.js +1 -1
- package/esm2015/modules/toolbar/toolbar.component.js +1 -1
- package/esm2015/plugin-resources/layout-resources-provider.js +2 -2
- package/esm5/modules/action-button/action-button-header.component.js +1 -1
- package/esm5/modules/action-button/action-button-icon.component.js +1 -1
- package/esm5/modules/description-list/description-list.component.js +1 -1
- package/esm5/modules/fluid-grid/fluid-grid.component.js +5 -1
- package/esm5/modules/fluid-grid/row.component.js +6 -2
- package/esm5/modules/toolbar/toolbar-item.component.js +1 -1
- package/esm5/modules/toolbar/toolbar-section.component.js +1 -1
- package/esm5/modules/toolbar/toolbar-view-actions.component.js +1 -1
- package/esm5/modules/toolbar/toolbar.component.js +1 -1
- package/esm5/plugin-resources/layout-resources-provider.js +2 -2
- package/fesm2015/skyux-layout.js +17 -9
- package/fesm2015/skyux-layout.js.map +1 -1
- package/fesm5/skyux-layout.js +17 -9
- package/fesm5/skyux-layout.js.map +1 -1
- package/modules/fluid-grid/fluid-grid.component.d.ts +4 -0
- package/modules/fluid-grid/row.component.d.ts +4 -0
- package/package.json +2 -1
- package/skyux-layout.metadata.json +1 -1
- package/src/assets/locales/resources_en_US.json +2 -2
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { SkyFluidGridGutterSize } from './fluid-grid-gutter-size';
|
|
2
|
+
/**
|
|
3
|
+
* Wraps the fluid grid to ensure proper spacing. Without the wrapper, the
|
|
4
|
+
* alignment, padding, and margins do not behave as expected.
|
|
5
|
+
*/
|
|
2
6
|
export declare class SkyFluidGridComponent {
|
|
3
7
|
/**
|
|
4
8
|
* Disables the outer left and right margin of the fluid grid container.
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Displays a row within the `sky-fluid-grid` wrapper. Previously, you could display a row
|
|
3
|
+
* without a wrapper, but we no longer officially support that option.
|
|
4
|
+
*/
|
|
1
5
|
export declare class SkyRowComponent {
|
|
2
6
|
/**
|
|
3
7
|
* Indicates whether to reverse the display order for columns in the row.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.4",
|
|
4
4
|
"description": "SKY UX Layout",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Blackbaud",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"@skyux/forms": "^4.0.0",
|
|
24
24
|
"@skyux/indicators": "^4.0.0",
|
|
25
25
|
"@skyux/modals": "^4.0.0",
|
|
26
|
+
"@skyux/router": "^4.2.0",
|
|
26
27
|
"@skyux/theme": "^4.8.0"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|