Loading package-lock.json +428 −734 File changed.Preview size limit exceeded, changes collapsed. Show changes package.json +14 −14 Original line number Diff line number Diff line Loading @@ -9,15 +9,15 @@ }, "private": true, "dependencies": { "@angular/animations": "20.1.4", "@angular/common": "20.1.4", "@angular/compiler": "20.1.4", "@angular/core": "20.1.4", "@angular/forms": "20.1.4", "@angular/localize": "20.1.4", "@angular/platform-browser": "20.1.4", "@angular/platform-browser-dynamic": "20.1.4", "@angular/router": "20.1.4", "@angular/animations": "20.3.11", "@angular/common": "20.3.11", "@angular/compiler": "20.3.11", "@angular/core": "20.3.11", "@angular/forms": "20.3.11", "@angular/localize": "20.3.11", "@angular/platform-browser": "20.3.11", "@angular/platform-browser-dynamic": "20.3.11", "@angular/router": "20.3.11", "@ng-bootstrap/ng-bootstrap": "19.0.1", "@popperjs/core": "^2.11.8", "boosted": "5.3.3", Loading @@ -29,13 +29,13 @@ "zone.js": "0.15.1" }, "devDependencies": { "@angular/build": "^20.3.7", "@angular/cli": "20.1.3", "@angular/compiler-cli": "20.1.4", "@angular/language-service": "20.1.4", "@angular/build": "^20.3.10", "@angular/cli": "20.3.10", "@angular/compiler-cli": "20.3.11", "@angular/language-service": "20.3.11", "@biomejs/biome": "1.9.4", "@playwright/test": "^1.45.2", "@types/node": "22.13.6", "@types/node": "22.19.1", "angular-eslint": "20.1.1", "eslint": "^9.39.1", "ts-node": "10.9.2", Loading src/app/app.module.ts +1 −21 Original line number Diff line number Diff line import { BrowserModule } from '@angular/platform-browser'; import { NgModule, SecurityContext } from '@angular/core'; import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'; import { FormsModule } from '@angular/forms'; import { MARKED_OPTIONS, MarkdownModule, MarkedOptions, MarkedRenderer } from 'ngx-markdown'; import { AppComponent } from './app.component'; import { KickerComponent } from './kicker/kicker.component'; import { GitlabCiComponent } from './gitlab-ci/gitlab-ci.component'; import { TemplatesSectionComponent } from './templates-section/templates-section.component'; import { StepbarComponent } from './stepbar/stepbar.component'; import { VariableEditorComponent } from './variable-editor/variable-editor.component'; import { OptionsBoxComponent } from './options-box/options-box.component'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { OptionsFormComponent } from './options-form/options-form.component'; // Override `MarkedOptions` renderer to open in a new tab for links export function markedOptionsFactory(): MarkedOptions { Loading @@ -35,21 +26,10 @@ export function markedOptionsFactory(): MarkedOptions { } @NgModule({ declarations: [ AppComponent, KickerComponent, GitlabCiComponent, TemplatesSectionComponent, StepbarComponent, VariableEditorComponent, OptionsBoxComponent, OptionsFormComponent, ], bootstrap: [AppComponent], imports: [ AppComponent, BrowserModule, FormsModule, NgbModule, MarkdownModule.forRoot({ sanitize: SecurityContext.NONE, markedOptions: { Loading src/app/templates-section/templates-section.component.html +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ </div> <div *ngFor="let template of templates"> <div *ngIf="template.enabled"> <div [innerHTML]="renderMarkdown(template.description)" class="fst-italic"></div> <div class="fst-italic"><markdown [data]="template.description"></markdown></div> <a *ngIf="template.project?.web_url" class="readme" Loading src/app/templates-section/templates-section.component.ts +2 −7 Original line number Diff line number Diff line import { Component, Input, inject } from '@angular/core'; import { Component, Input } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { MarkdownModule, MarkdownService } from 'ngx-markdown'; import { MarkdownModule } from 'ngx-markdown'; import { Aggregated, Options, Template, Variant } from '../kicker'; import { VariableEditorComponent } from '../variable-editor/variable-editor.component'; Loading @@ -13,7 +13,6 @@ import { VariableEditorComponent } from '../variable-editor/variable-editor.comp styleUrls: ['./templates-section.component.css'], }) export class TemplatesSectionComponent { private readonly markdownService = inject(MarkdownService); /** * Section ID Loading Loading @@ -75,10 +74,6 @@ export class TemplatesSectionComponent { console.log('event', action, name); } renderMarkdown(template: string) { return this.markdownService.parse(template); } /** * Return template variants, part of selected extensions */ Loading Loading
package-lock.json +428 −734 File changed.Preview size limit exceeded, changes collapsed. Show changes
package.json +14 −14 Original line number Diff line number Diff line Loading @@ -9,15 +9,15 @@ }, "private": true, "dependencies": { "@angular/animations": "20.1.4", "@angular/common": "20.1.4", "@angular/compiler": "20.1.4", "@angular/core": "20.1.4", "@angular/forms": "20.1.4", "@angular/localize": "20.1.4", "@angular/platform-browser": "20.1.4", "@angular/platform-browser-dynamic": "20.1.4", "@angular/router": "20.1.4", "@angular/animations": "20.3.11", "@angular/common": "20.3.11", "@angular/compiler": "20.3.11", "@angular/core": "20.3.11", "@angular/forms": "20.3.11", "@angular/localize": "20.3.11", "@angular/platform-browser": "20.3.11", "@angular/platform-browser-dynamic": "20.3.11", "@angular/router": "20.3.11", "@ng-bootstrap/ng-bootstrap": "19.0.1", "@popperjs/core": "^2.11.8", "boosted": "5.3.3", Loading @@ -29,13 +29,13 @@ "zone.js": "0.15.1" }, "devDependencies": { "@angular/build": "^20.3.7", "@angular/cli": "20.1.3", "@angular/compiler-cli": "20.1.4", "@angular/language-service": "20.1.4", "@angular/build": "^20.3.10", "@angular/cli": "20.3.10", "@angular/compiler-cli": "20.3.11", "@angular/language-service": "20.3.11", "@biomejs/biome": "1.9.4", "@playwright/test": "^1.45.2", "@types/node": "22.13.6", "@types/node": "22.19.1", "angular-eslint": "20.1.1", "eslint": "^9.39.1", "ts-node": "10.9.2", Loading
src/app/app.module.ts +1 −21 Original line number Diff line number Diff line import { BrowserModule } from '@angular/platform-browser'; import { NgModule, SecurityContext } from '@angular/core'; import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'; import { FormsModule } from '@angular/forms'; import { MARKED_OPTIONS, MarkdownModule, MarkedOptions, MarkedRenderer } from 'ngx-markdown'; import { AppComponent } from './app.component'; import { KickerComponent } from './kicker/kicker.component'; import { GitlabCiComponent } from './gitlab-ci/gitlab-ci.component'; import { TemplatesSectionComponent } from './templates-section/templates-section.component'; import { StepbarComponent } from './stepbar/stepbar.component'; import { VariableEditorComponent } from './variable-editor/variable-editor.component'; import { OptionsBoxComponent } from './options-box/options-box.component'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { OptionsFormComponent } from './options-form/options-form.component'; // Override `MarkedOptions` renderer to open in a new tab for links export function markedOptionsFactory(): MarkedOptions { Loading @@ -35,21 +26,10 @@ export function markedOptionsFactory(): MarkedOptions { } @NgModule({ declarations: [ AppComponent, KickerComponent, GitlabCiComponent, TemplatesSectionComponent, StepbarComponent, VariableEditorComponent, OptionsBoxComponent, OptionsFormComponent, ], bootstrap: [AppComponent], imports: [ AppComponent, BrowserModule, FormsModule, NgbModule, MarkdownModule.forRoot({ sanitize: SecurityContext.NONE, markedOptions: { Loading
src/app/templates-section/templates-section.component.html +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ </div> <div *ngFor="let template of templates"> <div *ngIf="template.enabled"> <div [innerHTML]="renderMarkdown(template.description)" class="fst-italic"></div> <div class="fst-italic"><markdown [data]="template.description"></markdown></div> <a *ngIf="template.project?.web_url" class="readme" Loading
src/app/templates-section/templates-section.component.ts +2 −7 Original line number Diff line number Diff line import { Component, Input, inject } from '@angular/core'; import { Component, Input } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { MarkdownModule, MarkdownService } from 'ngx-markdown'; import { MarkdownModule } from 'ngx-markdown'; import { Aggregated, Options, Template, Variant } from '../kicker'; import { VariableEditorComponent } from '../variable-editor/variable-editor.component'; Loading @@ -13,7 +13,6 @@ import { VariableEditorComponent } from '../variable-editor/variable-editor.comp styleUrls: ['./templates-section.component.css'], }) export class TemplatesSectionComponent { private readonly markdownService = inject(MarkdownService); /** * Section ID Loading Loading @@ -75,10 +74,6 @@ export class TemplatesSectionComponent { console.log('event', action, name); } renderMarkdown(template: string) { return this.markdownService.parse(template); } /** * Return template variants, part of selected extensions */ Loading