elseware-docs-engine 1.3.1 → 1.3.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/README.md CHANGED
@@ -138,6 +138,24 @@ export default docs;
138
138
 
139
139
  ## Development
140
140
 
141
+ Pull requests targeting `main` run the complete validation suite and verify
142
+ that the package version has not already been published. A successful merge to
143
+ `main` runs the same checks and publishes through GitHub's OIDC trusted
144
+ publishing; no long-lived npm token is stored in GitHub. Because this source
145
+ repository is private, npm provenance is disabled.
146
+
147
+ Configure npm Trusted Publishing for `elseware-docs-engine` using repository
148
+ `elsewaretechnology/elseware-docs-engine`, workflow `publish.yml`, and the
149
+ GitHub environment `npm-production`. Keep `package.json` and
150
+ `package-lock.json` synchronized and bump the version in the release PR:
151
+
152
+ ```bash
153
+ npm version patch --no-git-tag-version
154
+ ```
155
+
156
+ The workflow fails when the exact version already exists on npm. If the
157
+ repository becomes public, remove `--provenance=false` to enable provenance.
158
+
141
159
  ```bash
142
160
  npm install
143
161
  npm run dev
@@ -1,6 +1,8 @@
1
1
  interface DocsPageRendererProps {
2
2
  content: string;
3
+ /** Set to 100% when a layout provides a bounded content area. */
4
+ height?: number | string;
3
5
  }
4
- declare function DocsPageRenderer({ content }: DocsPageRendererProps): import("react").JSX.Element;
6
+ declare function DocsPageRenderer({ content, height, }: DocsPageRendererProps): import("react").JSX.Element;
5
7
  export default DocsPageRenderer;
6
8
  //# sourceMappingURL=DocsPageRenderer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DocsPageRenderer.d.ts","sourceRoot":"","sources":["../../../src/components/docs-page-renderer/DocsPageRenderer.tsx"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,iBAAS,gBAAgB,CAAC,EAAE,OAAO,EAAE,EAAE,qBAAqB,+BAE3D;eAEc,gBAAgB"}
1
+ {"version":3,"file":"DocsPageRenderer.d.ts","sourceRoot":"","sources":["../../../src/components/docs-page-renderer/DocsPageRenderer.tsx"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,iEAAiE;IACjE,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC1B;AAED,iBAAS,gBAAgB,CAAC,EACxB,OAAO,EACP,MAAgB,GACjB,EAAE,qBAAqB,+BAEvB;eAEc,gBAAgB"}