From 9259bfb1127734b966554c3228f6736b60a408d5 Mon Sep 17 00:00:00 2001 From: Rolando Date: Mon, 16 Mar 2026 09:24:56 -0400 Subject: [PATCH 1/3] Update configuration for docgen due to changes to API of Typedoc package. --- .gitignore | 1 + tsconfig.docgen.json | 6 +++--- typedoc.json | 20 ++++++++++++++++---- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 6f28bd239..8e482162a 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ idea-out *.iws _doc +_ng2_docs _bundles lib lib-esm diff --git a/tsconfig.docgen.json b/tsconfig.docgen.json index 8a94b27b1..746e8f5f8 100644 --- a/tsconfig.docgen.json +++ b/tsconfig.docgen.json @@ -4,9 +4,9 @@ "rootDir": ".", "baseUrl": ".", "paths": { - "@uirouter/core": ["./includes/@uirouter/core/src"], - "@uirouter/core/lib/globals": ["./includes/@uirouter/core/src/globals"], - "@uirouter/rx": ["./includes/@uirouter/rx/src"] + "@uirouter/core": ["../includes/@uirouter/core/src"], + "@uirouter/core/lib/globals": ["../includes/@uirouter/core/src/globals"], + "@uirouter/rx": ["../includes/@uirouter/rx/src"] } } } diff --git a/typedoc.json b/typedoc.json index 1864848d5..81f8a77a0 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,8 +1,20 @@ { "name": "@uirouter/angular", "readme": "README.md", - "out": "project/_doc", - "stripInternal": true, - "excludeNotExported": true, - "excludePrivate": true + "out": "project/_ng2_docs", + "entryPoints": ["src/index.ts"], + "excludeInternal": true, + "visibilityFilters": { + "external": true, + "inherited": true, + "private": true, + "protected": true + }, + "navigation": { + "includeCategories": true, + "includeGroups": true + }, + "plugin": [ + "typedoc-plugin-ui-router" + ] } From fca2c53c8dd7f29422197048563caada699cd7c3 Mon Sep 17 00:00:00 2001 From: Rolando Date: Mon, 16 Mar 2026 09:26:34 -0400 Subject: [PATCH 2/3] Updated Docgen navigation configuration to include newer Classes and other relevant items. --- package.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1cbc06778..a9eab8e82 100644 --- a/package.json +++ b/package.json @@ -85,13 +85,15 @@ "docgen": { "publishDir": "_ng2_docs", "navigation": { - "": [ - "UIRouter" + "UIRouter": [ + "UIRouter", + "UIRouterModule" ], "Services": [ "StateService", "StateRegistry", "TransitionService", + "UIRouterGlobals", "UrlService", "UrlConfig", "UrlRules" @@ -104,7 +106,11 @@ "Components": [ "UIView", "UISref", - "UISrefActive" + "UISrefActive", + "UISrefStatus" + ], + "Standalone": [ + "provideUIRouter" ], "Other": [ "Transition", From bb8accee37ceb078f46cfac52b1cb979eb4e23c6 Mon Sep 17 00:00:00 2001 From: Rolando Date: Wed, 1 Apr 2026 21:01:37 -0400 Subject: [PATCH 3/3] Added githubPages false and other properties for typedoc config --- typedoc.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/typedoc.json b/typedoc.json index 81f8a77a0..815a9ea19 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,9 +1,13 @@ { + "$schema": "https://typedoc.org/schema.json", "name": "@uirouter/angular", "readme": "README.md", "out": "project/_ng2_docs", - "entryPoints": ["src/index.ts"], + "entryPoints": [ + "src/index.ts" + ], "excludeInternal": true, + "githubPages": false, "visibilityFilters": { "external": true, "inherited": true,