@one-million-lines/email-builder 0.1.3 → 0.1.4
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 +22 -0
- package/README.md +4 -0
- package/dist/App.d.ts +1 -1
- package/dist/core/validation.d.ts +39 -705
- package/dist/editor/Canvas.d.ts +1 -1
- package/dist/editor/LeftSidebar.d.ts +1 -1
- package/dist/editor/RecommendationsPanel.d.ts +1 -1
- package/dist/editor/RightSidebar.d.ts +1 -1
- package/dist/editor/TemplatesModal.d.ts +1 -1
- package/dist/editor/TopBar.d.ts +1 -1
- package/dist/email-builder.cjs +25 -25
- package/dist/email-builder.cjs.map +1 -1
- package/dist/email-builder.js +9084 -8659
- package/dist/email-builder.js.map +1 -1
- package/dist/styles.css +3 -1
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,28 @@ This project adheres to [Semantic Versioning](https://semver.org/) and the
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.4] — 2026-07-02
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- **Dependencies upgraded to latest releases** (no public API changes):
|
|
13
|
+
- `@dnd-kit/core` `^6.1.0` → `^6.3.1`
|
|
14
|
+
- `@dnd-kit/sortable` `^8.0.0` → `^10.0.0`
|
|
15
|
+
- `lucide-react` `^0.460.0` → `^1.23.0`
|
|
16
|
+
- `zod` `^3.23.8` → `^4.4.3` (v4 is API-compatible for the schemas used here)
|
|
17
|
+
- `zustand` `^5.0.2` → `^5.0.14`
|
|
18
|
+
- **Dev dependencies upgraded to latest releases**:
|
|
19
|
+
- `react` / `react-dom` (dev) `^19.0.0` → `^19.2.7`
|
|
20
|
+
- `@types/react` `^19.0.0` → `^19.2.17`
|
|
21
|
+
- `@types/react-dom` `^19.0.0` → `^19.2.3`
|
|
22
|
+
- `@tailwindcss/vite` `^4.1.0` → `^4.3.2`
|
|
23
|
+
- `tailwindcss` `^4.1.0` → `^4.3.2`
|
|
24
|
+
- `@vitejs/plugin-react-swc` `^3.5.0` → `^4.3.1`
|
|
25
|
+
- `typescript` `^5.5.3` → `^6.0.3`
|
|
26
|
+
- `vite-plugin-dts` `^4.0.0` → `^5.0.3`
|
|
27
|
+
- `jsdom` `^25.0.1` → `^29.1.1`
|
|
28
|
+
- `eslint` `^9.x` → `^10.6.0`
|
|
29
|
+
- `engines.node` bumped to `>=22` in line with supported LTS range.
|
|
30
|
+
|
|
9
31
|
## [0.1.2] — 2026-06-30
|
|
10
32
|
|
|
11
33
|
### Added
|
package/README.md
CHANGED
|
@@ -224,6 +224,10 @@ To publish (run manually):
|
|
|
224
224
|
|
|
225
225
|
```bash
|
|
226
226
|
# MANUAL ACTION REQUIRED — log in to an account with publish access to the @one-million-lines scope, then:
|
|
227
|
+
npm version patch # 0.1.3 -> 0.1.4, bugfix
|
|
228
|
+
npm version minor # 0.1.3 -> 0.2.0, new feature
|
|
229
|
+
npm version major # 0.1.3 -> 1.0.0, breaking change
|
|
230
|
+
|
|
227
231
|
npm login
|
|
228
232
|
npm publish --access public
|
|
229
233
|
```
|
package/dist/App.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function App(): import("react
|
|
1
|
+
export declare function App(): import("react").JSX.Element;
|