Skip to content

Commit

Permalink
chore(release): 1.0.0-alpha.5
Browse files Browse the repository at this point in the history
# [1.0.0-alpha.5](v1.0.0-alpha.4...v1.0.0-alpha.5) (2021-10-30)

### Bug Fixes

* fix missing number variant types ([bf6b466](bf6b466))
  • Loading branch information
semantic-release-bot committed Oct 30, 2021
1 parent bf6b466 commit 35053d6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.0.0-alpha.5](https://github.com/dash-ui/styles/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2021-10-30)


### Bug Fixes

* fix missing number variant types ([bf6b466](https://github.com/dash-ui/styles/commit/bf6b466d01d4cca98bbdc5bd2d18bc5c787a35e2))

# [1.0.0-alpha.4](https://github.com/dash-ui/styles/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2021-10-30)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash-ui/styles",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"description": "A tiny, powerful, framework-agnostic CSS-in-JS library.",
"keywords": [
"styles",
Expand Down
2 changes: 1 addition & 1 deletion types/create-styles.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export interface Styles<Tokens extends DashTokens = DashTokens, Themes extends D
* // This component will have a "green" background
* const Component = () => <div className={bg({red: true, green: true})}/>
*/
variants<Variants extends string>(styleMap: StyleMap<Variants, Tokens, Themes>): Style<Variants, Tokens, Themes>;
variants<Variants extends string | number>(styleMap: StyleMap<Variants, Tokens, Themes>): Style<Variants, Tokens, Themes>;
/**
* A function that accepts a tagged template literal, style object, or style callback,
* and returns a function. That function inserts the style into a `<style>` tag and
Expand Down
2 changes: 1 addition & 1 deletion types/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

0 comments on commit 35053d6

Please sign in to comment.