Skip to content

Commit b02e95c

Browse files
chore(release): 1.0.1
## [1.0.1](v1.0.0...v1.0.1) (2022-08-18) ### Bug Fixes * add explicit function return types ([#2](#2)) ([15f82ba](15f82ba))
1 parent 15f82ba commit b02e95c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.0.1](https://github.com/dash-ui/responsive/compare/v1.0.0...v1.0.1) (2022-08-18)
2+
3+
### Bug Fixes
4+
5+
- add explicit function return types ([#2](https://github.com/dash-ui/responsive/issues/2)) ([15f82ba](https://github.com/dash-ui/responsive/commit/15f82baf056cbebcae8a8f7436fe24b226501dc7))
6+
17
# [1.0.0](https://github.com/dash-ui/responsive/compare/v0.2.3...v1.0.0) (2022-06-25)
28

39
### Bug Fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dash-ui/responsive",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A library for adding responsive style props to components with @dash-ui",
55
"license": "MIT",
66
"author": "Jared Lunde <[email protected]> (https://jaredlunde.com/)",

types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ declare function responsive<
1616
>(
1717
styles: Styles<Tokens, Themes>,
1818
mediaQueries: MQ
19-
): Readonly<ResponsiveStyles<Tokens, Themes, MQ>>;
19+
): ResponsiveStyles<Tokens, Themes, MQ>;
2020
export interface ResponsiveStyles<
2121
Tokens extends DashTokens,
2222
Themes extends DashThemes,

0 commit comments

Comments
 (0)