Skip to content

Commit 8fcdf2e

Browse files
chore(release): 1.0.2
## [1.0.2](v1.0.1...v1.0.2) (2022-08-18) ### Bug Fixes * add explicit function return types ([#20](#20)) ([d327470](d327470))
1 parent d327470 commit 8fcdf2e

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.0.2](https://github.com/dash-ui/styles/compare/v1.0.1...v1.0.2) (2022-08-18)
2+
3+
4+
### Bug Fixes
5+
6+
* add explicit function return types ([#20](https://github.com/dash-ui/styles/issues/20)) ([d327470](https://github.com/dash-ui/styles/commit/d32747088aee560129bc974a2db16ddb76a0b258))
7+
18
## [1.0.1](https://github.com/dash-ui/styles/compare/v1.0.0...v1.0.1) (2022-06-25)
29

310

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/styles",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "A tiny, powerful, framework-agnostic CSS-in-JS library.",
55
"keywords": [
66
"styles",

server/types/tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

types/create-styles.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { HtmlAttributes as CSSHTMLAttributes, PropertiesFallback as CSSProperties, Pseudos as CSSPseudos, SvgAttributes as CSSSvgAttributes } from "csstype";
2-
import type { JsonValue, PartialDeep, ValueOf, Primitive } from "type-fest";
2+
import type { JsonValue, PartialDeep, Primitive, ValueOf } from "type-fest";
33
import type { Dash } from "./create-dash";
44
import { hash as fnv1aHash } from "./utils";
55
/**
@@ -414,6 +414,7 @@ export declare function compileStyles<Tokens extends DashTokens = DashTokens, Th
414414
/**
415415
* A utility function that will convert a camel-cased, dot-notation string
416416
* into a dash-cased CSS property variable.
417+
*
417418
* @param path - A dot-notation string that represents the path to a value
418419
*/
419420
export declare function pathToToken<Tokens extends Record<string, unknown> = TokensUnion<DashTokens, DashThemes>>(path: KeysUnion<Tokens>): string;

types/tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)