Skip to content

Commit

Permalink
Merge branch 'v18' into modern-input-icon
Browse files Browse the repository at this point in the history
  • Loading branch information
medbenmakhlouf authored Nov 1, 2024
2 parents 1d3db93 + e819d60 commit 4e19bc5
Show file tree
Hide file tree
Showing 1,461 changed files with 20,870 additions and 18,818 deletions.
5 changes: 1 addition & 4 deletions api-generator/build-apidoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ async function main() {
const module_interface_group = module.groups.find((g) => g.title === 'Interface');
const module_service_group = module.groups.find((g) => g.title === 'Service');
const module_enums_group = module.groups.find((g) => g.title === 'Enumerations');

const module_types_group = module.groups.find((g) => g.title === 'Types');

if (isProcessable(module_types_group)) {
Expand Down Expand Up @@ -288,14 +287,12 @@ async function main() {
const templateType = template.type && template.type.toString();
let contextType = 'unknown';

// Regex ile TemplateRef<ContextType> kısmını yakalamak
const match = templateType && templateType.match(/TemplateRef<(.+)>/);
if (match && match[1]) {
contextType = match[1];
}

templates.values.push({
name: template.name,
name: template.name.replace(/Template$/, '').toLowerCase(),
description: template.comment && template.comment.summary.map((s) => s.text || '').join(' '),
type: templateType,
parameters: parameters(template).map((param) =>
Expand Down
7,598 changes: 3,799 additions & 3,799 deletions api-generator/themedoc.json

Large diffs are not rendered by default.

Loading

0 comments on commit 4e19bc5

Please sign in to comment.