Skip to content

Commit 081ed84

Browse files
chore(release): 1.0.0-alpha.1
# [1.0.0-alpha.1](v0.4.1...v1.0.0-alpha.1) (2021-10-29) ### Features * add memoization and update types ([a132c8d](a132c8d)) ### BREAKING CHANGES * `styles` instances are now required as a first argument in the initializer
1 parent a132c8d commit 081ed84

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [1.0.0-alpha.1](https://github.com/dash-ui/mq/compare/v0.4.1...v1.0.0-alpha.1) (2021-10-29)
2+
3+
### Features
4+
5+
- add memoization and update types ([a132c8d](https://github.com/dash-ui/mq/commit/a132c8df120a47d0f7e7391f412f4e12c3ab8d2e))
6+
7+
### BREAKING CHANGES
8+
9+
- `styles` instances are now required as a first argument in the initializer
10+
111
# Changelog
212

313
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.

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/mq",
3-
"version": "0.4.1",
3+
"version": "1.0.0-alpha.1",
44
"description": "A utility function for adding reusable media queries and breakpoints to @dash-ui styles",
55
"keywords": [
66
"mq",

types/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import type {
1010
* A factory function that creates a utility for adding breakpoints and
1111
* media queries to Dash styles
1212
*
13+
* @param styles - A Dash `styles` instance
1314
* @param mediaQueries - A map of media query name/query pairs
1415
*/
1516
declare function mq<

0 commit comments

Comments
 (0)