Skip to content

Commit b5d0e91

Browse files
committed
deps(typedoc): bump to latest version of theme and package
1 parent 65f311c commit b5d0e91

File tree

4 files changed

+83
-34
lines changed

4 files changed

+83
-34
lines changed

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"gulp-uglify": "^3.0.1",
119119
"hammer-simulator": "0.0.1",
120120
"hammerjs": "^2.0.8",
121-
"ig-typedoc-theme": "^6.0.0",
121+
"ig-typedoc-theme": "^7.0.0-beta.1",
122122
"igniteui-dockmanager": "^1.17.0",
123123
"igniteui-sassdoc-theme": "^2.1.0",
124124
"igniteui-webcomponents": "6.2.1",
@@ -146,8 +146,8 @@
146146
"stylelint-prettier": "^5.0.2",
147147
"stylelint-scss": "^6.9.0",
148148
"ts-node": "^10.8.1",
149-
"typedoc": "^0.27.0",
150-
"typedoc-plugin-localization": "^3.0.6",
149+
"typedoc": "^0.28.14",
150+
"typedoc-plugin-localization": "^3.1.0-beta.1",
151151
"typescript": "5.8.3"
152152
}
153153
}

projects/igniteui-angular/src/lib/services/excel/excel-exporter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export class IgxExcelExporterService extends IgxBaseExporter {
146146
}
147147

148148
private saveFile(data: Uint8Array, fileName: string): void {
149-
const blob = new Blob([data], {
149+
const blob = new Blob([data as BlobPart], {
150150
type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
151151
});
152152

scripts/build-typedoc.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import getArgs from "./get-args.mjs";
66
const product = "ignite-ui-angular";
77
const { localize, jsonExport, jsonImport } = getArgs();
88
const __dirname = path.dirname(fileURLToPath(import.meta.url));
9+
const toPosix = (p) => p.split(path.sep).join(path.posix.sep);
10+
911
const DEST = path.join.bind(
1012
null,
1113
path.resolve(__dirname, "../dist/igniteui-angular/docs"),
@@ -39,8 +41,8 @@ function entryPoints() {
3941
* The output directory for the static site or json generation.
4042
*/
4143
const OUT_DIR = jsonExport
42-
? DEST("/typescript-exported/igniteui-angular.json")
43-
: DEST("/typescript");
44+
? toPosix(DEST("/typescript-exported/igniteui-angular.json"))
45+
: toPosix(DEST("/typescript"));
4446

4547
/*
4648
* The Typedoc configuration object.
@@ -62,6 +64,8 @@ const CONFIG = {
6264
name: "Ignite UI for Angular",
6365
readme: "none",
6466
out: OUT_DIR,
67+
router: "structure",
68+
logLevel: "Verbose",
6569
tsconfig: path.resolve(__dirname, "../tsconfig.typedoc.json"),
6670
};
6771

0 commit comments

Comments
 (0)