Skip to content

Commit 0c3e33e

Browse files
authored
Merge branch 'master' into sivanova/list-styling
2 parents 30a736f + 518e1e9 commit 0c3e33e

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"gulp-uglify": "^3.0.1",
124124
"hammer-simulator": "0.0.1",
125125
"hammerjs": "^2.0.8",
126-
"ig-typedoc-theme": "^7.0.0",
126+
"ig-typedoc-theme": "^7.0.1",
127127
"igniteui-dockmanager": "^1.17.0",
128128
"igniteui-sassdoc-theme": "^2.1.0",
129129
"igniteui-webcomponents": "^6.3.1",

projects/igniteui-angular/migrations/update-21_0_0_import-migration/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,11 @@ function migrateImportDeclaration(node: ts.ImportDeclaration, sourceFile: ts.Sou
719719
const importPath = node.moduleSpecifier.text;
720720
const namedBindings = node.importClause.namedBindings;
721721

722+
// Only process main entry imports (not sub-entry points which igNamedImportFilter will allow)
723+
if (importPath !== IG_PACKAGE_NAME && importPath !== IG_LICENSED_PACKAGE_NAME) {
724+
return null;
725+
}
726+
722727
// Group imports by entry point
723728
const entryPointGroups = new Map<string, string[]>();
724729

scripts/build-typedoc.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const CONFIG = {
4848
name: "Ignite UI for Angular",
4949
readme: "none",
5050
out: OUT_DIR,
51-
router: "structure",
51+
router: "kind",
5252
logLevel: "Verbose",
5353
tsconfig: ROOT("tsconfig.typedoc.json")
5454
};

0 commit comments

Comments
 (0)