1 Commits
Author SHA1 Message Date
zemion 12fe709a34 feat(docs): localize structured metadata and gate coverage
Module Package Release / publish-packages (push) Successful in 11s
2026-08-22 20:25:37 +02:00
6 changed files with 7 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@govoplan/docs-webui",
"version": "0.1.22",
"version": "0.1.20",
"private": true,
"type": "module",
"main": "webui/src/index.ts",
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "govoplan-docs"
version = "0.1.22"
version = "0.1.21"
description = "GovOPlaN documentation module for configured-system, available, and evidence documentation."
readme = "README.md"
requires-python = ">=3.12"
+1 -1
View File
@@ -2,4 +2,4 @@
__all__ = ["__version__"]
__version__ = "0.1.22"
__version__ = "0.1.18"
+2 -5
View File
@@ -131,7 +131,7 @@ def _dsar_provider(_context: ModuleContext) -> DocsDsarProvider:
manifest = ModuleManifest(
id="docs",
name="Docs",
version="0.1.22",
version="0.1.21",
required_capabilities=(
CAPABILITY_AUTH_PRINCIPAL_RESOLVER,
CAPABILITY_AUTH_PERMISSION_EVALUATOR,
@@ -355,10 +355,7 @@ manifest = ModuleManifest(
),
}
},
metadata={
"kind": "workflow",
"help_contexts": ["docs.semantic-documentation.publish"],
},
metadata={"kind": "workflow"},
),
DocumentationTopic(
id="docs.data-subject-requests",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@govoplan/docs-webui",
"version": "0.1.22",
"version": "0.1.21",
"private": true,
"type": "module",
"main": "src/index.ts",
@@ -235,7 +235,7 @@ export default function SemanticDocumentationPage({ settings }: { settings: ApiS
refreshable
reloadAction={{ onReload: () => void load(), loading }}
primaryActions={selectedEntry?.lifecycle_state === "draft" && !dirty ? (
<Button helpContextId="docs.semantic-documentation.publish" helpModuleId="docs" onClick={() => void transition("publish")}>
<Button onClick={() => void transition("publish")}>
<Check size={16} /> Publish
</Button>
) : null}