Skip to content

Commit

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

### Features

* add tokens to dash context ([ece7f50](ece7f50))
  • Loading branch information
semantic-release-bot committed Oct 9, 2021
1 parent ece7f50 commit ca5f86b
Show file tree
Hide file tree
Showing 2 changed files with 9 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.0](https://github.com/dash-ui/react-native/compare/v1.2.1...v1.3.0) (2021-10-09)


### Features

* add tokens to dash context ([ece7f50](https://github.com/dash-ui/react-native/commit/ece7f50f874830a0d6e58bb7adc250dd56a4f51e))

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


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

0 comments on commit ca5f86b

Please sign in to comment.