Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/build-angular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,12 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 22.x
- name: Install packages
run: npm ci
- name: DotNet tool restore
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/build-blazor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,12 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 22.x
- name: Install packages
run: npm ci
- name: DotNet tool restore
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/build-react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,12 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 22.x
- name: Install packages
run: npm ci
- name: DotNet tool restore
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/build-wc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,12 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 22.x
- name: Install packages
run: npm ci
- name: DotNet tool restore
Expand Down
406 changes: 257 additions & 149 deletions doc/en/components/ai/skills.md

Large diffs are not rendered by default.

395 changes: 395 additions & 0 deletions doc/jp/components/ai/skills.md

Large diffs are not rendered by default.

387 changes: 387 additions & 0 deletions doc/jp/components/ai/theming-mcp.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docfx/en/components/toc.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[
{
"exclude": ["Angular", "Blazor", "React"],
"exclude": ["Blazor"],
"name": "AI-Assisted Development",
"header": true
},
{
"exclude": ["Blazor", "Angular", "React"],
"name": "{ProductName} Skills",
"exclude": ["Blazor"],
"name": "Agent Skills",
"href": "ai/skills.md",
"status": "new"
},
{
"exclude": ["Blazor", "Angular", "React"],
"exclude": ["Blazor"],
"name": "Theming MCP",
"href": "ai/theming-mcp.md",
"status": "new"
Expand Down
17 changes: 17 additions & 0 deletions docfx/jp/components/toc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
[
{
"exclude": ["Blazor"],
"name": "AI 支援開発",
"header": true
},
{
"exclude": ["Blazor"],
"name": "エージェント スキル",
"href": "ai/skills.md",
"status": "new"
},
{
"exclude": ["Blazor"],
"name": "Theming MCP",
"href": "ai/theming-mcp.md",
"status": "new"
},
{
"name": "概要",
"header": true
Expand Down
5 changes: 3 additions & 2 deletions src/ext/MarkdownTransformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ function getFrontMatterTypes(options: any, filePath: string) {

function transformDocLinks(options: any) {
function transformLink(node: any) {
let reference = node.url;
let reference: string = node.url;

// allows usage of $Platform$ in links to topics/sections
if (reference.indexOf("$Platform$") > 0) {
Expand All @@ -607,7 +607,8 @@ function transformDocLinks(options: any) {
var isSampleLink = reference.indexOf("{environment:dvDemo") > 0 ||
reference.indexOf("{environment:demo") > 0;

var isTopicLink = !isApiDocLink && reference.indexOf(".md") > 0;
var isExternalLink = reference.startsWith("http://") || reference.startsWith("https://");
var isTopicLink = !isApiDocLink && !isExternalLink && reference.indexOf(".md") > 0;
if (isTopicLink) {
// ensuring link to topics/section using lower-case per DocFX requirement
node.url = reference.toLowerCase();
Expand Down
2 changes: 1 addition & 1 deletion stats/docStats-Angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@
"https://staging.infragistics.com/products/ignite-ui-angular/angular/components/geo-map-type-shape-polyline-series"
]
},
"topicsCount": 99,
"topicsCount": 101,
"topicsHost": "https://staging.infragistics.com/products/ignite-ui-angular/angular/components",
"topicsNote": "the 'topicsWithSamples' provides lookup of topics that used at least 1 sample",
"topicsWithSamples": {
Expand Down
Loading