tembro 6.0.1 → 6.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/package.json +13 -13
- package/packages/cli/dist/index.cjs +70 -70
- package/packages/cli/vendor/templates/showcase/src/showcase/data/registry.ts +1 -1
- package/packages/cli/vendor/templates/showcase/src/showcase/layout/HeroSection.tsx +3 -2
- package/packages/cli/vendor/templates/showcase/src/showcase/layout/WorkbenchSidebar.tsx +3 -2
- package/packages/cli/vendor/templates/showcase/src/showcase/sections/ComponentLivePreview.tsx +1 -1
- package/registry.json +2794 -2794
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 6.0.3 - 2026-07-18
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed the showcase template sidebar import path so generated workbenches use the canonical `layout/sidebar` component.
|
|
10
|
+
|
|
11
|
+
## 6.0.2 - 2026-07-18
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Added an npm peer-resolution fallback for CLI dependency installs so existing projects with older rich text editor peer packages can still upgrade through `tembro add`.
|
|
16
|
+
|
|
5
17
|
## 6.0.1 - 2026-07-18
|
|
6
18
|
|
|
7
19
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tembro",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.3",
|
|
4
4
|
"description": "Reusable React UI kit with dashboard-ready components, CLI registry helpers, and TypeScript support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -156,18 +156,18 @@
|
|
|
156
156
|
"dependencies": {
|
|
157
157
|
"@base-ui/react": "^1.5.0",
|
|
158
158
|
"@dnd-kit/helpers": "^0.5.0",
|
|
159
|
-
"@dnd-kit/react": "^0.5.0",
|
|
160
|
-
"@tanstack/react-table": "^8.21.3",
|
|
161
|
-
"@tanstack/react-virtual": "^3.14.5",
|
|
162
|
-
"@tiptap/core": "3.28.0",
|
|
163
|
-
"@tiptap/extension-bubble-menu": "3.28.0",
|
|
164
|
-
"@tiptap/extension-floating-menu": "3.28.0",
|
|
165
|
-
"@tiptap/extension-link": "3.28.0",
|
|
166
|
-
"@tiptap/extension-placeholder": "3.28.0",
|
|
167
|
-
"@tiptap/extensions": "3.28.0",
|
|
168
|
-
"@tiptap/pm": "3.28.0",
|
|
169
|
-
"@tiptap/react": "3.28.0",
|
|
170
|
-
"@tiptap/starter-kit": "3.28.0",
|
|
159
|
+
"@dnd-kit/react": "^0.5.0",
|
|
160
|
+
"@tanstack/react-table": "^8.21.3",
|
|
161
|
+
"@tanstack/react-virtual": "^3.14.5",
|
|
162
|
+
"@tiptap/core": "3.28.0",
|
|
163
|
+
"@tiptap/extension-bubble-menu": "3.28.0",
|
|
164
|
+
"@tiptap/extension-floating-menu": "3.28.0",
|
|
165
|
+
"@tiptap/extension-link": "3.28.0",
|
|
166
|
+
"@tiptap/extension-placeholder": "3.28.0",
|
|
167
|
+
"@tiptap/extensions": "3.28.0",
|
|
168
|
+
"@tiptap/pm": "3.28.0",
|
|
169
|
+
"@tiptap/react": "3.28.0",
|
|
170
|
+
"@tiptap/starter-kit": "3.28.0",
|
|
171
171
|
"@types/qrcode": "^1.5.6",
|
|
172
172
|
"class-variance-authority": "^0.7.1",
|
|
173
173
|
"clsx": "^2.1.1",
|