Skip to content

Commit c71d446

Browse files
chore(release): 1.1.0
# [1.1.0](v1.0.2...v1.1.0) (2022-09-01) ### Features * add insertRule batching optimization ([#21](#21)) ([d460435](d460435))
1 parent d460435 commit c71d446

File tree

5 files changed

+28
-3
lines changed

5 files changed

+28
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.1.0](https://github.com/dash-ui/styles/compare/v1.0.2...v1.1.0) (2022-09-01)
2+
3+
4+
### Features
5+
6+
* add insertRule batching optimization ([#21](https://github.com/dash-ui/styles/issues/21)) ([d460435](https://github.com/dash-ui/styles/commit/d460435a64252b8a5941b16d7c1684b27d8c0120))
7+
18
## [1.0.2](https://github.com/dash-ui/styles/compare/v1.0.1...v1.0.2) (2022-08-18)
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.2",
3+
"version": "1.1.0",
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-dash.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ export interface CreateDashOptions {
4343
* style recalculations.
4444
*/
4545
readonly batchInserts?: boolean;
46+
/**
47+
* Does nothing now.
48+
*
49+
* @deprecated
50+
*/
51+
readonly speedy?: boolean;
4652
}
4753
export declare type Dash = {
4854
/**
@@ -143,6 +149,12 @@ export interface DashStyleSheetOptions {
143149
* style recalculations.
144150
*/
145151
readonly batchInserts?: boolean;
152+
/**
153+
* Does nothing now.
154+
*
155+
* @deprecated
156+
*/
157+
readonly speedy?: boolean;
146158
}
147159
export interface DashStyleSheet {
148160
/**
@@ -157,6 +169,12 @@ export interface DashStyleSheet {
157169
* The sheet container
158170
*/
159171
readonly container?: HTMLElement;
172+
/**
173+
* Does nothing now.
174+
*
175+
* @deprecated
176+
*/
177+
readonly speedy?: boolean;
160178
/**
161179
* Inserts a style rule into your sheet
162180
*

types/tsconfig.tsbuildinfo

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

0 commit comments

Comments
 (0)