@pptx-studio/render-dom 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 +29 -0
- package/package.json +6 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @pptx-studio/render-dom
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 55f3073: The help text spells `this platform's own font directories` with its apostrophe, and the
|
|
8
|
+
`render-dom` tarball carries `CHANGELOG.md` like the other eleven.
|
|
9
|
+
- Updated dependencies [55f3073]
|
|
10
|
+
- @pptx-studio/render-svg@0.2.0
|
|
11
|
+
|
|
12
|
+
## 0.1.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- 63d04e0: `mountSlide` and `mountOverlay` can be installed.
|
|
17
|
+
|
|
18
|
+
The live DOM renderer was the twelfth package and the only one never published. It sat at `0.0.0`
|
|
19
|
+
in changesets' `ignore`, so `@pptx-studio/render-dom` did not exist on the registry at all and the
|
|
20
|
+
two mount entry points were reachable only from a checkout of this repository.
|
|
21
|
+
|
|
22
|
+
That was not a decision about the code. A trusted publisher is a setting on an npm package and npm
|
|
23
|
+
has no way to attach one to a name the registry does not hold, so the first publish of a new name
|
|
24
|
+
cannot go out over OIDC — the release would have reached it, failed to authenticate, and stopped
|
|
25
|
+
partway. The name now exists, its trusted publisher points at this repository's `release.yml`, and
|
|
26
|
+
the package is a normal member of the release.
|
|
27
|
+
|
|
28
|
+
Nothing about the package itself changed. `shapeOverlay`, the debug overlay, stays in
|
|
29
|
+
`render-svg` where it always was.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pptx-studio/render-dom",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "The live DOM renderer: one element per shape, over the same layout engine as render-svg",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
31
|
"README.md",
|
|
32
|
+
"CHANGELOG.md",
|
|
32
33
|
"LICENSE",
|
|
33
34
|
"NOTICE"
|
|
34
35
|
],
|
|
@@ -40,10 +41,10 @@
|
|
|
40
41
|
"./package.json": "./package.json"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@pptx-studio/geometry": "^0.1.
|
|
44
|
-
"@pptx-studio/model": "^0.1.
|
|
45
|
-
"@pptx-studio/paint": "^0.1.
|
|
46
|
-
"@pptx-studio/render-svg": "^0.
|
|
44
|
+
"@pptx-studio/geometry": "^0.1.1",
|
|
45
|
+
"@pptx-studio/model": "^0.1.1",
|
|
46
|
+
"@pptx-studio/paint": "^0.1.1",
|
|
47
|
+
"@pptx-studio/render-svg": "^0.2.0"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
50
|
"@arethetypeswrong/cli": "0.18.5",
|