@t4h.framework/pdf 0.1.0 → 0.1.1
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 +13 -0
- package/package.json +6 -6
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @t4h.framework/pdf
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`095c3a9`](https://github.com/tech4humans-brasil/framework/commit/095c3a91191b9f541519447f212a8e9509065569) Thanks [@gusteycamargo](https://github.com/gusteycamargo)! - Republish with resolved dependency versions. The previous release leaked the `workspace:^` protocol into the published manifests, breaking installs outside the monorepo.
|
|
8
|
+
|
|
9
|
+
## 0.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`dd3bc50`](https://github.com/tech4humans-brasil/framework/commit/dd3bc508e295e531bf59ce2909fc22b3b4355d2c) Thanks [@gusteycamargo](https://github.com/gusteycamargo)! - Initialize package
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t4h.framework/pdf",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Declarative PDF rendering module for the T4H Framework",
|
|
5
5
|
"homepage": "https://github.com/tech4humans-brasil/framework/tree/main/packages/pdf",
|
|
6
6
|
"bugs": "https://github.com/tech4humans-brasil/framework/issues",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"test:watch": "vitest"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@t4h.framework/core": "
|
|
36
|
-
"@t4h.framework/fs": "
|
|
35
|
+
"@t4h.framework/core": "^0.9.0",
|
|
36
|
+
"@t4h.framework/fs": "^0.7.0",
|
|
37
37
|
"@types/react": "^19.2.17",
|
|
38
38
|
"typescript": "^5.9.3",
|
|
39
39
|
"vitest": "^4.0.18"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@t4h.framework/core": "
|
|
43
|
-
"@t4h.framework/fs": "
|
|
42
|
+
"@t4h.framework/core": "^0.9.0",
|
|
43
|
+
"@t4h.framework/fs": "^0.7.0"
|
|
44
44
|
},
|
|
45
45
|
"packageManager": "yarn@4.12.0",
|
|
46
46
|
"engines": {
|
|
@@ -50,4 +50,4 @@
|
|
|
50
50
|
"@react-pdf/renderer": "^4.5.1",
|
|
51
51
|
"react": "^19.2.8"
|
|
52
52
|
}
|
|
53
|
-
}
|
|
53
|
+
}
|