Skip to content

Commit 5c18af6

Browse files
Merge pull request #16 from mezh-hq/fix/store-export
Fix: exported store
2 parents f752059 + 6391577 commit 5c18af6

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Changelog
22

3+
# v3.2.5 [2025-03-11]
4+
5+
## Patch Release
6+
7+
### Fixes
8+
- Fixed store export and issue in docs
9+
310
# v3.2.4 [2024-12-26]
411

512
## Patch Release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"scripts": {
2626
"build": "bun run ./esbuild.config.js",
2727
"build:css": "bunx tailwindcss -i src/styles/index.css -o ./dist/index.css --minify && cp -r src/styles dist/styles && rm dist/styles/storybook.css",
28-
"build:types": "bunx tsc --project ./tsconfig.declaration.json && tsc-alias --project ./tsconfig.declaration.json && cd dist && ls -d */ | grep -Ev 'actions|types' | xargs rm -rf && cp ./index.d.ts ./index.slim.d.ts",
28+
"build:types": "bunx tsc --project ./tsconfig.declaration.json && tsc-alias --project ./tsconfig.declaration.json && cd dist && ls -d */ | grep -Ev 'actions|store|types' | xargs rm -rf && rm -rf ./store/reducers && cp ./index.d.ts ./index.slim.d.ts",
2929
"bump-version": "bunx --bun automatic-versioning --disable-auto-sync --recursive $(if [ \"$TAG\" != \"latest\" ]; then echo --prerelease; fi) --prerelease-branch=development --prerelease-tag=$TAG --name=@mezh-hq/react-seat-toolkit --ignore-prefixes=ci",
3030
"format": "bunx prettier --write --cache \"**/*.{js,jsx,ts,tsx,md,css,yml}\"",
3131
"lint": "bun run --bun eslint . --ext js,jsx,ts,tsx --ignore-path .gitignore --fix --cache --report-unused-disable-directives",

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { default as Core, TooltipProvider } from "@/components";
44
import { store } from "@/store";
55
import { type ISTKProps } from "./types";
66

7-
export { actions } from "@/actions";
7+
export { store, actions } from "@/actions";
88

99
export { SeatStatus } from "@/types/elements";
1010

src/stories/customization.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ return <SeatToolkit
1616
styles={{
1717
root: {
1818
className: "bg-gray-100",
19-
style: {
19+
properties: {
2020
padding: "20px",
2121
borderRadius: "10px",
2222
boxShadow: "0 0 10px rgba(0, 0, 0, 0.1)"

0 commit comments

Comments
 (0)