Skip to content

Commit

Permalink
chore: update versions (canary)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 13, 2023
1 parent aded3f5 commit 7f32d8b
Show file tree
Hide file tree
Showing 9 changed files with 92 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"@tw-classed/react": "1.6.1",
"@tw-classed/solid": "1.6.0"
},
"changesets": []
"changesets": [
"fair-chicken-boil",
"sour-apples-stare"
]
}
24 changes: 24 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# beta-docs

## 2.0.22-canary.0

### Patch Changes

- [#132](https://github.com/sannajammeh/tw-classed/pull/132) [`6fd3d61`](https://github.com/sannajammeh/tw-classed/commit/6fd3d6106e052481d2364cc7fb732ed6acf3f2a1) Thanks [@sannajammeh](https://github.com/sannajammeh)! - Add `getVariantConfig()` utility to `core` & `react` api's. This extracts the entire parsed variant config from a classed component, also supports nested variants from component composition.

Usage:

```tsx
const Button = classed("button", {
variants: {
color: {
blue: "bg-blue-500",
},
},
});

const { variants } = getVariantConfig(Button);
variants.color.blue; // "bg-blue-500"
```

- Updated dependencies [[`97130ec`](https://github.com/sannajammeh/tw-classed/commit/97130ecf63128d0061f3a20a11ef9052b97476a9), [`6fd3d61`](https://github.com/sannajammeh/tw-classed/commit/6fd3d6106e052481d2364cc7fb732ed6acf3f2a1)]:
- @tw-classed/react@1.7.0-canary.0

## 2.0.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "2.0.21",
"version": "2.0.22-canary.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
25 changes: 25 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @tw-classed/core

## 1.7.0-canary.0

### Minor Changes

- [#132](https://github.com/sannajammeh/tw-classed/pull/132) [`6fd3d61`](https://github.com/sannajammeh/tw-classed/commit/6fd3d6106e052481d2364cc7fb732ed6acf3f2a1) Thanks [@sannajammeh](https://github.com/sannajammeh)! - Add `getVariantConfig()` utility to `core` & `react` api's. This extracts the entire parsed variant config from a classed component, also supports nested variants from component composition.

Usage:

```tsx
const Button = classed("button", {
variants: {
color: {
blue: "bg-blue-500",
},
},
});

const { variants } = getVariantConfig(Button);
variants.color.blue; // "bg-blue-500"
```

### Patch Changes

- [#133](https://github.com/sannajammeh/tw-classed/pull/133) [`97130ec`](https://github.com/sannajammeh/tw-classed/commit/97130ecf63128d0061f3a20a11ef9052b97476a9) Thanks [@sannajammeh](https://github.com/sannajammeh)! - Ensure compatibility with `exactOptionalPropertyTypes:true` in tsconfig.json

## 1.6.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tw-classed/core",
"version": "1.6.0",
"version": "1.7.0-canary.0",
"description": "A Stitches & Styled-Components inspired library to create reusable Tailwind react components",
"sideEffects": false,
"main": "dist/index.cjs",
Expand Down
28 changes: 28 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @tw-classed/react

## 1.7.0-canary.0

### Minor Changes

- [#132](https://github.com/sannajammeh/tw-classed/pull/132) [`6fd3d61`](https://github.com/sannajammeh/tw-classed/commit/6fd3d6106e052481d2364cc7fb732ed6acf3f2a1) Thanks [@sannajammeh](https://github.com/sannajammeh)! - Add `getVariantConfig()` utility to `core` & `react` api's. This extracts the entire parsed variant config from a classed component, also supports nested variants from component composition.

Usage:

```tsx
const Button = classed("button", {
variants: {
color: {
blue: "bg-blue-500",
},
},
});

const { variants } = getVariantConfig(Button);
variants.color.blue; // "bg-blue-500"
```

### Patch Changes

- [#133](https://github.com/sannajammeh/tw-classed/pull/133) [`97130ec`](https://github.com/sannajammeh/tw-classed/commit/97130ecf63128d0061f3a20a11ef9052b97476a9) Thanks [@sannajammeh](https://github.com/sannajammeh)! - Ensure compatibility with `exactOptionalPropertyTypes:true` in tsconfig.json

- Updated dependencies [[`97130ec`](https://github.com/sannajammeh/tw-classed/commit/97130ecf63128d0061f3a20a11ef9052b97476a9), [`6fd3d61`](https://github.com/sannajammeh/tw-classed/commit/6fd3d6106e052481d2364cc7fb732ed6acf3f2a1)]:
- @tw-classed/core@1.7.0-canary.0

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tw-classed/react",
"version": "1.6.1",
"version": "1.7.0-canary.0",
"description": "A Stitches & Styled-Components inspired library to create reusable Tailwind React components",
"sideEffects": false,
"main": "dist/index.cjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @tw-classed/solid

## 1.7.0-canary.0

### Patch Changes

- Updated dependencies [[`97130ec`](https://github.com/sannajammeh/tw-classed/commit/97130ecf63128d0061f3a20a11ef9052b97476a9), [`6fd3d61`](https://github.com/sannajammeh/tw-classed/commit/6fd3d6106e052481d2364cc7fb732ed6acf3f2a1)]:
- @tw-classed/core@1.7.0-canary.0

## 1.6.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/solid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tw-classed/solid",
"version": "1.6.0",
"version": "1.7.0-canary.0",
"description": "A Stitches & Styled-Components inspired library to create reusable Tailwind Solid components",
"sideEffects": false,
"exports": {
Expand Down

0 comments on commit 7f32d8b

Please sign in to comment.