Skip to content

Commit

Permalink
chore(release): 1.3.1
Browse files Browse the repository at this point in the history
## [1.3.1](v1.3.0...v1.3.1) (2021-10-09)

### Bug Fixes

* fix tokens types in dash context ([729b249](729b249))
  • Loading branch information
semantic-release-bot committed Oct 9, 2021
1 parent 729b249 commit a52d1ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.3.1](https://github.com/dash-ui/react-native/compare/v1.3.0...v1.3.1) (2021-10-09)


### Bug Fixes

* fix tokens types in dash context ([729b249](https://github.com/dash-ui/react-native/commit/729b2499dfc63bc664c7938ac626cb3c1c838d1b))

# [1.3.0](https://github.com/dash-ui/react-native/compare/v1.2.1...v1.3.0) (2021-10-09)


Expand Down
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export declare function createStyles<V extends Record<string, unknown> = DashTok
readonly tokens: VT;
readonly themes: T;
};
tokens: VT[keyof VT];
tokens: ValueOf<Omit<VT, "default">>;
theme: keyof VT;
setTheme(theme: keyof T | "default"): void;
};
Expand Down

0 comments on commit a52d1ab

Please sign in to comment.