Skip to content

Commit

Permalink
chore(release): 1.0.2
Browse files Browse the repository at this point in the history
## [1.0.2](v1.0.1...v1.0.2) (2022-08-18)

### Bug Fixes

* add explicit function return types ([#20](#20)) ([d327470](d327470))
  • Loading branch information
semantic-release-bot committed Aug 18, 2022
1 parent d327470 commit 8fcdf2e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 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.2](https://github.com/dash-ui/styles/compare/v1.0.1...v1.0.2) (2022-08-18)


### Bug Fixes

* add explicit function return types ([#20](https://github.com/dash-ui/styles/issues/20)) ([d327470](https://github.com/dash-ui/styles/commit/d32747088aee560129bc974a2db16ddb76a0b258))

## [1.0.1](https://github.com/dash-ui/styles/compare/v1.0.0...v1.0.1) (2022-06-25)


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",
"version": "1.0.2",
"description": "A tiny, powerful, framework-agnostic CSS-in-JS library.",
"keywords": [
"styles",
Expand Down
2 changes: 1 addition & 1 deletion server/types/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion types/create-styles.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { HtmlAttributes as CSSHTMLAttributes, PropertiesFallback as CSSProperties, Pseudos as CSSPseudos, SvgAttributes as CSSSvgAttributes } from "csstype";
import type { JsonValue, PartialDeep, ValueOf, Primitive } from "type-fest";
import type { JsonValue, PartialDeep, Primitive, ValueOf } from "type-fest";
import type { Dash } from "./create-dash";
import { hash as fnv1aHash } from "./utils";
/**
Expand Down Expand Up @@ -414,6 +414,7 @@ export declare function compileStyles<Tokens extends DashTokens = DashTokens, Th
/**
* A utility function that will convert a camel-cased, dot-notation string
* into a dash-cased CSS property variable.
*
* @param path - A dot-notation string that represents the path to a value
*/
export declare function pathToToken<Tokens extends Record<string, unknown> = TokensUnion<DashTokens, DashThemes>>(path: KeysUnion<Tokens>): string;
Expand Down
2 changes: 1 addition & 1 deletion types/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

0 comments on commit 8fcdf2e

Please sign in to comment.