Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version packages #50

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/curly-walls-fly.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dull-rice-protect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-rings-remember.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/honest-penguins-drive.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/large-bees-learn.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/lemon-spiders-work.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/mighty-years-drive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-spoons-exercise.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/purple-impalas-move.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/quiet-rivers-mate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-eels-bake.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/ten-zebras-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-cups-protect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-ladybugs-behave.md

This file was deleted.

21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @fn-sphere/core

## 0.6.0

### Minor Changes

- [#51](https://github.com/lawvs/fn-sphere/pull/51) [`a8b07f2`](https://github.com/lawvs/fn-sphere/commit/a8b07f24ed031e5ed3c4396cfdf7a603f5fb2209) Thanks [@lawvs](https://github.com/lawvs)! - Make string filter case insensitive

- [#51](https://github.com/lawvs/fn-sphere/pull/51) [`a8b07f2`](https://github.com/lawvs/fn-sphere/commit/a8b07f24ed031e5ed3c4396cfdf7a603f5fb2209) Thanks [@lawvs](https://github.com/lawvs)! - Add locale supports

BREAKING CHANGE

- All name of filter has been changed.
- The `booleanFilter` has been removed.

- [`01369a8`](https://github.com/lawvs/fn-sphere/commit/01369a805b0fb644ddbb4e7dd334d7896651ac84) Thanks [@lawvs](https://github.com/lawvs)! - Breaking Changes

- Removed support for array input in `defineTypedFn` and `defineGenericFn`.

### Patch Changes

- [`020bdb1`](https://github.com/lawvs/fn-sphere/commit/020bdb1dbdac9e6dfcf47d01bdeeb05d6bd13612) Thanks [@lawvs](https://github.com/lawvs)! - Add new utils function `createDefaultRule`

## 0.5.0

### Patch 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": "@fn-sphere/core",
"version": "0.5.0",
"version": "0.6.0",
"description": "",
"type": "module",
"scripts": {
Expand Down
56 changes: 56 additions & 0 deletions packages/filter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
# @fn-sphere/filter

## 0.6.0

### Minor Changes

- [`ef470f1`](https://github.com/lawvs/fn-sphere/commit/ef470f179cda345a441f98e0b8d765598080d551) Thanks [@lawvs](https://github.com/lawvs)! - Breaking Changes

- Now the first field and the first filter will be selected by default when creating a new rule.
- Updated `useFilterSphere` to use `createDefaultRule` for default rule creation.
- Updated `useFilterGroup` and `useFilterRule` to use `createDefaultRule` when no input is provided.

- [`62aeaf0`](https://github.com/lawvs/fn-sphere/commit/62aeaf054cb90701cabbe4c2389145d8bbaed9f7) Thanks [@lawvs](https://github.com/lawvs)! - Export `filterableFields` in `useRootRule` hook.
Remove `filterableFields` from `useFilterRule` hook.

BREAKING CHANGE: The `filterableFields` is now exported in the `useRootRule` hook instead of the `useFilterRule` hook.

Migration:

```diff
+ const { filterableFields } = useRootRule();
- const { filterableFields } = useFilterRule(rule);
```

- [#51](https://github.com/lawvs/fn-sphere/pull/51) [`a8b07f2`](https://github.com/lawvs/fn-sphere/commit/a8b07f24ed031e5ed3c4396cfdf7a603f5fb2209) Thanks [@lawvs](https://github.com/lawvs)! - Add locale supports

BREAKING CHANGE

- All name of filter has been changed.
- The `booleanFilter` has been removed.

- [`9badd88`](https://github.com/lawvs/fn-sphere/commit/9badd88890b39141b6ae5ce02865d8cc5b938a9a) Thanks [@lawvs](https://github.com/lawvs)! - Breaking Changes

- Renamed `filterGroup` prop to `rule` in FilterGroupContainer.
- Modified `filterTheme` in theme-mui-material to use `rule` instead of `filterGroup`.

### Patch Changes

- [`964faf3`](https://github.com/lawvs/fn-sphere/commit/964faf32dfb0f0e982063ee5a8a496e1a799b9c9) Thanks [@lawvs](https://github.com/lawvs)! - Add depth limit for filter group

- [`200e5a1`](https://github.com/lawvs/fn-sphere/commit/200e5a1587797ee35651bc8735a9507f8ff4d4b3) Thanks [@lawvs](https://github.com/lawvs)! - Deprecated `getRootRule` in favor of `rootRule` in `useRootRule` hook.

Migration:

```diff
+ const { rootRule } = useRootRule();
- const { getRootRule } = useRootRule();
```

- [`479f048`](https://github.com/lawvs/fn-sphere/commit/479f0488e42283656d8f59b515775435b0a9338b) Thanks [@lawvs](https://github.com/lawvs)! - Fix logical error in `toggleGroupOp` function within the `useFilterGroup` hook

- [`8337984`](https://github.com/lawvs/fn-sphere/commit/8337984b832bd11652159ccf15c7fdbe0a300889) Thanks [@lawvs](https://github.com/lawvs)! - Support custom style for components

- [`6be8772`](https://github.com/lawvs/fn-sphere/commit/6be8772d0e3dca728a52404da911844c01e2cda6) Thanks [@lawvs](https://github.com/lawvs)! - Support `moveRule` in `useFilterRule`

- Updated dependencies [[`a8b07f2`](https://github.com/lawvs/fn-sphere/commit/a8b07f24ed031e5ed3c4396cfdf7a603f5fb2209), [`020bdb1`](https://github.com/lawvs/fn-sphere/commit/020bdb1dbdac9e6dfcf47d01bdeeb05d6bd13612), [`a8b07f2`](https://github.com/lawvs/fn-sphere/commit/a8b07f24ed031e5ed3c4396cfdf7a603f5fb2209), [`01369a8`](https://github.com/lawvs/fn-sphere/commit/01369a805b0fb644ddbb4e7dd334d7896651ac84)]:
- @fn-sphere/core@0.6.0

## 0.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fn-sphere/filter",
"version": "0.5.0",
"version": "0.6.0",
"type": "module",
"description": "Filter Sphere is a powerful and flexible library for creating dynamic filtering interfaces in your web applications.",
"keywords": [
Expand Down
23 changes: 23 additions & 0 deletions packages/theme-mui-material/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# @fn-sphere/theme-mui-material

## 0.1.1

### Patch Changes

- [`964faf3`](https://github.com/lawvs/fn-sphere/commit/964faf32dfb0f0e982063ee5a8a496e1a799b9c9) Thanks [@lawvs](https://github.com/lawvs)! - Add depth limit for filter group

- [`9badd88`](https://github.com/lawvs/fn-sphere/commit/9badd88890b39141b6ae5ce02865d8cc5b938a9a) Thanks [@lawvs](https://github.com/lawvs)! - Breaking Changes

- Renamed `filterGroup` prop to `rule` in FilterGroupContainer.
- Modified `filterTheme` in theme-mui-material to use `rule` instead of `filterGroup`.

- [`50d4c0b`](https://github.com/lawvs/fn-sphere/commit/50d4c0ba43caee04b226f396286f271bbe755d26) Thanks [@lawvs](https://github.com/lawvs)! - - Updated `FilterGroupContainer` template with improved layout and functionality.

- Removed `variant="contained"` from Button component.
- Updated `SingleFilter` template:
- Replaced `DeleteIcon` with `ClearIcon`.

- [#51](https://github.com/lawvs/fn-sphere/pull/51) [`a8b07f2`](https://github.com/lawvs/fn-sphere/commit/a8b07f24ed031e5ed3c4396cfdf7a603f5fb2209) Thanks [@lawvs](https://github.com/lawvs)! - Update locale text

- Updated dependencies [[`964faf3`](https://github.com/lawvs/fn-sphere/commit/964faf32dfb0f0e982063ee5a8a496e1a799b9c9), [`ef470f1`](https://github.com/lawvs/fn-sphere/commit/ef470f179cda345a441f98e0b8d765598080d551), [`62aeaf0`](https://github.com/lawvs/fn-sphere/commit/62aeaf054cb90701cabbe4c2389145d8bbaed9f7), [`a8b07f2`](https://github.com/lawvs/fn-sphere/commit/a8b07f24ed031e5ed3c4396cfdf7a603f5fb2209), [`200e5a1`](https://github.com/lawvs/fn-sphere/commit/200e5a1587797ee35651bc8735a9507f8ff4d4b3), [`479f048`](https://github.com/lawvs/fn-sphere/commit/479f0488e42283656d8f59b515775435b0a9338b), [`9badd88`](https://github.com/lawvs/fn-sphere/commit/9badd88890b39141b6ae5ce02865d8cc5b938a9a), [`8337984`](https://github.com/lawvs/fn-sphere/commit/8337984b832bd11652159ccf15c7fdbe0a300889), [`6be8772`](https://github.com/lawvs/fn-sphere/commit/6be8772d0e3dca728a52404da911844c01e2cda6)]:
- @fn-sphere/filter@0.6.0
4 changes: 2 additions & 2 deletions packages/theme-mui-material/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fn-sphere/theme-mui-material",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"scripts": {
"build": "tsc",
Expand All @@ -14,7 +14,7 @@
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@fn-sphere/filter": "workspace:^0",
"@fn-sphere/filter": "workspace:^0.6.0",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^5.0.0 || ^6.0.0"
},
Expand Down