-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(components/layout): remove deprecated fluid grid gutter size opt…
…ions (#585) BREAKING CHANGE: This change removes the `SkyFluidGridGutterSize` enum and the numerical options (0, 1, 2) from `SkyFluidGridGutterSizeType`. To address this, only use the strings 'small', 'medium', and 'large' for the fluid grid component's `gutterSize` property, and use `SkyFluidGridGutterSizeType` for Typescript typing.
- Loading branch information
1 parent
ffac254
commit 338771d
Showing
6 changed files
with
4 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
libs/components/layout/src/lib/modules/fluid-grid/fluid-grid-gutter-size.ts
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
libs/components/layout/src/lib/modules/fluid-grid/fluid-grid.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 1 addition & 7 deletions
8
libs/components/layout/src/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
export type SkyFluidGridGutterSizeType = | ||
| 0 | ||
| 1 | ||
| 2 | ||
| 'small' | ||
| 'medium' | ||
| 'large'; | ||
export type SkyFluidGridGutterSizeType = 'small' | 'medium' | 'large'; |