Skip to content
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
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.8.0 - 20th May, 2026
- Improvement: Organism - Editor Input: Replaced Lexical with TipTap for better Shadow DOM support and smaller bundle; v1.7 IO contract remains available via the new `valueFormat="lexical"` prop (deprecated; removed in 2.0).

Version 1.7.12 - 13th April, 2026
- Improvement: Atom - Textarea: Added `autoResize`, `minHeight`, and `maxHeight` props. When `autoResize` is enabled, the textarea height auto-adjusts to fit its content and stops growing at `maxHeight` (default 160px), at which point it becomes scrollable. `minHeight` and `maxHeight` apply as CSS constraints regardless of `autoResize`.

Expand Down
1,702 changes: 1,213 additions & 489 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 15 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bsf/force-ui",
"version": "1.7.11",
"version": "1.8.0",
"description": "Library of components for the BSF project",
"main": "./dist/force-ui.cjs.js",
"module": "./dist/force-ui.es.js",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

What: The package versions should be reviewed and locked to specific minor versions if stability is a concern.

Why: Using caret (^) with versions can lead to potential breaking changes when updating dependencies to newer versions, potentially causing issues in production.

How: Consider changing the dependencies to specific minor versions (e.g. "@tiptap/core": "3.23.2" instead of "^3.23.2") or ensure that the package is tested well with the latest versions before releasing.

Expand Down Expand Up @@ -64,14 +64,20 @@
"dependencies": {
"@emotion/is-prop-valid": "^1.3.0",
"@floating-ui/react": "^0.26.28",
"@lexical/react": "^0.31.2",
"@lexical/selection": "^0.31.2",
"@lexical/utils": "^0.31.2",
"@tiptap/core": "^3.23.2",
"@tiptap/extension-document": "^3.23.2",
"@tiptap/extension-hard-break": "^3.23.2",
"@tiptap/extension-mention": "^3.23.2",
"@tiptap/extension-paragraph": "^3.23.2",
"@tiptap/extension-placeholder": "^3.23.2",
"@tiptap/extension-text": "^3.23.2",
"@tiptap/pm": "^3.23.2",
"@tiptap/react": "^3.23.2",
"@tiptap/suggestion": "^3.23.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"deepmerge": "^4.3.1",
"framer-motion": "^12.34.3",
"lexical": "^0.31.2",
"lucide-react": "^0.417.0",
"nanoid": "^5.0.7",
"react-day-picker": "^9.1.3",
Expand Down Expand Up @@ -101,6 +107,8 @@
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/browser-playwright": "^4.1.1",
"@vitest/coverage-v8": "^4.1.1",
"@wordpress/eslint-plugin": "^20.3.0",
"@wordpress/prettier-config": "^4.4.0",
"@wordpress/stylelint-config": "^23.2.0",
Expand All @@ -119,6 +127,7 @@
"gulp-cli": "^3.0.0",
"gulp-replace": "^1.1.4",
"inquirer": "^12.4.1",
"playwright": "^1.58.2",
"postcss": "^8.4.39",
"prettier": "^3.2.5",
"rollup-preserve-directives": "^1.1.2",
Expand All @@ -130,10 +139,7 @@
"typescript-eslint": "^8.7.0",
"vite": "^5.4.21",
"vite-plugin-dts": "^4.2.3",
"vitest": "^4.1.1",
"playwright": "^1.58.2",
"@vitest/browser-playwright": "^4.1.1",
"@vitest/coverage-v8": "^4.1.1"
"vitest": "^4.1.1"
},
"browserslist": [
"last 1 version",
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading