Skip to content

Commit

Permalink
Merge pull request #140 from sannajammeh/changeset-release/master
Browse files Browse the repository at this point in the history
chore: update versions
  • Loading branch information
sannajammeh authored Dec 13, 2023
2 parents 51b0f69 + 979b600 commit 7faa180
Show file tree
Hide file tree
Showing 13 changed files with 92 additions and 59 deletions.
6 changes: 0 additions & 6 deletions .changeset/fair-chicken-boil.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/friendly-houses-develop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-humans-shake.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/pre.json

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/sour-apples-stare.md

This file was deleted.

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

### 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

## 2.0.22-canary.0

### 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.22-canary.0",
"version": "2.0.22",
"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

### 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.7.0-canary.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.7.0-canary.0",
"version": "1.7.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

### 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

## 1.7.0-canary.0

### Minor 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.7.0-canary.0",
"version": "1.7.0",
"description": "A Stitches & Styled-Components inspired library to create reusable Tailwind React components",
"sideEffects": false,
"main": "dist/index.cjs",
Expand Down
11 changes: 11 additions & 0 deletions packages/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @tw-classed/solid

## 1.7.0

### Patch Changes

- [#137](https://github.com/sannajammeh/tw-classed/pull/137) [`86acac6`](https://github.com/sannajammeh/tw-classed/commit/86acac6abbb963d6a3af6888a3b18e26b834bf53) Thanks [@sannajammeh](https://github.com/sannajammeh)! - Improve solidjs prop splitting

- [#135](https://github.com/sannajammeh/tw-classed/pull/135) [`f04cc69`](https://github.com/sannajammeh/tw-classed/commit/f04cc695ce2d5f643de3f346622cd9bab0b39091) Thanks [@sannajammeh](https://github.com/sannajammeh)! - Fix solid types - Rename Polymorphic.d.ts to polymorphic.ts to ensure dts plugin emits in bundle

- 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

## 1.7.0-canary.2

### 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.7.0-canary.2",
"version": "1.7.0",
"description": "A Stitches & Styled-Components inspired library to create reusable Tailwind Solid components",
"sideEffects": false,
"exports": {
Expand Down

1 comment on commit 7faa180

@vercel
Copy link

@vercel vercel bot commented on 7faa180 Dec 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tw-classed – ./

tw-classed-sannajammeh.vercel.app
tw-classed-git-master-sannajammeh.vercel.app
tw-classed.vercel.app

Please sign in to comment.