-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
## 0.1.1 (2022-05-25) | ||
|
||
### What's new | ||
|
||
- **Added `PageLayout` component.** It has sub-components that place content in the correct places. | ||
- **Added `FluidGrid` component.** | ||
- Use it for items (e.g. tiles) array. | ||
- It has `--_iui-grid-item-min-width` CSS variable that defines minimum width of the item that is used for responsiveness. | ||
- **Added `Grid` component.** It is based on CSS grid and has 12 columns. As children pass `iui-layouts-grid-item` sub-component which has: | ||
- `--_iui-grid-item-column-span-[BREAKPOINT]` prop that defines how many columns the item should span. | ||
- `--_iui-grid-item-column-start-[BREAKPOINT]` prop that defines the column the item should start in. |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
## 0.1.2 (2022-05-26) | ||
|
||
### What's new | ||
|
||
- **Added `PageLayout` component.** It has `PageLayout.Header`, `PageLayout.SideNavigation`, `PageLayout.Content`, `PageLayout.TitleArea` and `PageLayout.ToolsArea` sub-components that place content in the correct places. | ||
- **Added `FluidGrid` component.** | ||
- Use it for items (e.g. tiles) array. | ||
- It has `minItemWidth` prop that defines minimum width of the item that is used for responsiveness. | ||
- **Added `Grid` component.** It is based on CSS grid and has 12 columns. As children pass `Grid.Item` sub-component which has: | ||
- `columnSpan` prop that defines how many columns the item should span. | ||
- `columnStart` prop that defines the column the item should start in. |