Skip to content

Commit eb5322e

Browse files
committed
chore(release): 0.9.2
1 parent fd89194 commit eb5322e

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.9.2](https://github.com/dash-ui/react-layout/compare/v0.9.1...v0.9.2) (2021-02-16)
6+
7+
### Features
8+
9+
- **box:** add z/inset props ([fd89194](https://github.com/dash-ui/react-layout/commit/fd8919431c515a17c811127d917234ebeff3354e))
10+
511
### [0.9.1](https://github.com/dash-ui/react-layout/compare/v0.9.0...v0.9.1) (2021-02-16)
612

713
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dash-ui/react-layout",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"homepage": "https://github.com/dash-ui/react-layout#readme",
55
"repository": "github:dash-ui/react-layout",
66
"bugs": "https://github.com/dash-ui/react-layout/issues",

types/box.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,14 @@ export interface BoxProps {
8888
| Extract<keyof DashTokens['radius'], string | number>
8989
| Extract<keyof DashTokens['radius'], string | number>[]
9090
>
91+
/**
92+
* Sets the top, right, bottom, left position of the element
93+
*/
94+
inset?: ResponsiveProp<string | number | (string | number)[]>
95+
/**
96+
* Sets a `z-index` CSS property on your component
97+
*/
98+
z?: ResponsiveProp<
99+
number | Extract<keyof DashTokens['zIndexes'], string | number>
100+
>
91101
}

types/layer.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,5 @@ export interface LayerItemProps extends Omit<BoxProps, 'position'> {
4949
* Sets the placement of your layer item relative to its container
5050
*/
5151
placement: ResponsiveProp<Placements>
52-
/**
53-
* Sets a `z-index` CSS property on your component
54-
*/
55-
z?: ResponsiveProp<number>
5652
}
5753
export {}

0 commit comments

Comments
 (0)