641 lines
46 KiB
HTML
641 lines
46 KiB
HTML
|
<html lang="en"><head></head><body>
|
||
|
<form id="mainForm" method="post" action="https://run.stackblitz.com/api/angular/v1?file=src/app/app.component.ts" target="_self"><input type="hidden" name="files[src/app/app.component.ts]" value="import { Component } from '@angular/core';
|
||
|
import { Item } from './item';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrls: ['./app.component.css']
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
|
||
|
currentItem = { name: 'teapot'} ;
|
||
|
clickMessage = '';
|
||
|
|
||
|
onSave(event?: MouseEvent) {
|
||
|
const evtMsg = event ? ' Event target is ' + (event.target as HTMLElement).textContent : '';
|
||
|
alert('Saved.' + evtMsg);
|
||
|
if (event) { event.stopPropagation(); }
|
||
|
}
|
||
|
|
||
|
deleteItem(item: Item) {
|
||
|
alert(`Delete the ${item.name}.`);
|
||
|
}
|
||
|
|
||
|
onClickMe(event?: MouseEvent) {
|
||
|
const evtMsg = event ? ' Event target class is ' + (event.target as HTMLElement).className : '';
|
||
|
alert('Click me.' + evtMsg);
|
||
|
}
|
||
|
|
||
|
getValue(target: EventTarget): string {
|
||
|
return (target as HTMLInputElement).value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/app.module.ts]" value="import { BrowserModule } from '@angular/platform-browser';
|
||
|
import { NgModule } from '@angular/core';
|
||
|
|
||
|
|
||
|
import { AppComponent } from './app.component';
|
||
|
import { ItemDetailComponent } from './item-detail/item-detail.component';
|
||
|
import { ClickDirective } from './click.directive';
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
AppComponent,
|
||
|
ItemDetailComponent,
|
||
|
ClickDirective
|
||
|
],
|
||
|
imports: [
|
||
|
BrowserModule
|
||
|
],
|
||
|
providers: [],
|
||
|
bootstrap: [AppComponent]
|
||
|
})
|
||
|
export class AppModule { }
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/click.directive.ts]" value="// tslint:disable: directive-selector
|
||
|
import { Directive, ElementRef, EventEmitter, Output } from '@angular/core';
|
||
|
|
||
|
@Directive({selector: '[myClick]'})
|
||
|
export class ClickDirective {
|
||
|
@Output('myClick') clicks = new EventEmitter<string>(); // @Output(alias) propertyName = ...
|
||
|
|
||
|
toggle = false;
|
||
|
|
||
|
constructor(el: ElementRef) {
|
||
|
el.nativeElement
|
||
|
.addEventListener('click', (event: Event) => {
|
||
|
this.toggle = !this.toggle;
|
||
|
this.clicks.emit(this.toggle ? 'Click!' : '');
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/item-detail/item-detail.component.ts]" value="/* tslint:disable use-input-property-decorator use-output-property-decorator */
|
||
|
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||
|
|
||
|
import { Item } from '../item';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-item-detail',
|
||
|
styleUrls: ['./item-detail.component.css'],
|
||
|
templateUrl: './item-detail.component.html'
|
||
|
})
|
||
|
export class ItemDetailComponent {
|
||
|
|
||
|
@Input() item;
|
||
|
itemImageUrl = 'assets/teapot.svg';
|
||
|
lineThrough = '';
|
||
|
displayNone = '';
|
||
|
@Input() prefix = '';
|
||
|
|
||
|
// This component makes a request but it can't actually delete a hero.
|
||
|
@Output() deleteRequest = new EventEmitter<Item>();
|
||
|
|
||
|
delete() {
|
||
|
this.deleteRequest.emit(this.item);
|
||
|
this.displayNone = this.displayNone ? '' : 'none';
|
||
|
this.lineThrough = this.lineThrough ? '' : 'line-through';
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/item.ts]" value="export class Item {
|
||
|
name: '';
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/environments/environment.prod.ts]" value="export const environment = {
|
||
|
production: true
|
||
|
};
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/environments/environment.ts]" value="// This file can be replaced during build by using the `fileReplacements` array.
|
||
|
// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
|
||
|
// The list of file replacements can be found in `angular.json`.
|
||
|
|
||
|
export const environment = {
|
||
|
production: false
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* For easier debugging in development mode, you can import the following file
|
||
|
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
||
|
*
|
||
|
* This import should be commented out in production mode because it will have a negative impact
|
||
|
* on performance if an error is thrown.
|
||
|
*/
|
||
|
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/main.ts]" value="import { enableProdMode } from '@angular/core';
|
||
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
||
|
|
||
|
import { AppModule } from './app/app.module';
|
||
|
import { environment } from './environments/environment';
|
||
|
|
||
|
if (environment.production) {
|
||
|
enableProdMode();
|
||
|
}
|
||
|
|
||
|
platformBrowserDynamic().bootstrapModule(AppModule)
|
||
|
.catch(err => console.log(err));
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/polyfills.ts]" value="/**
|
||
|
* This file includes polyfills needed by Angular and is loaded before the app.
|
||
|
* You can add your own extra polyfills to this file.
|
||
|
*
|
||
|
* This file is divided into 2 sections:
|
||
|
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
|
||
|
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main
|
||
|
* file.
|
||
|
*
|
||
|
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
|
||
|
* automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
|
||
|
* Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
|
||
|
*
|
||
|
* Learn more in https://angular.io/guide/browser-support
|
||
|
*/
|
||
|
|
||
|
/***************************************************************************************************
|
||
|
* BROWSER POLYFILLS
|
||
|
*/
|
||
|
|
||
|
/** IE11 requires the following for NgClass support on SVG elements */
|
||
|
// import 'classlist.js'; // Run `npm install --save classlist.js`.
|
||
|
|
||
|
/**
|
||
|
* Web Animations `@angular/platform-browser/animations`
|
||
|
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
|
||
|
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
|
||
|
*/
|
||
|
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
|
||
|
|
||
|
/**
|
||
|
* By default, zone.js will patch all possible macroTask and DomEvents
|
||
|
* user can disable parts of macroTask/DomEvents patch by setting following flags
|
||
|
* because those flags need to be set before `zone.js` being loaded, and webpack
|
||
|
* will put import in the top of bundle, so user need to create a separate file
|
||
|
* in this directory (for example: zone-flags.ts), and put the following flags
|
||
|
* into that file, and then add the following code before importing zone.js.
|
||
|
* import './zone-flags';
|
||
|
*
|
||
|
* The flags allowed in zone-flags.ts are listed here.
|
||
|
*
|
||
|
* The following flags will work for all browsers.
|
||
|
*
|
||
|
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch
|
||
|
* requestAnimationFrame
|
||
|
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
|
||
|
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch
|
||
|
* specified eventNames
|
||
|
*
|
||
|
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
|
||
|
* with the following flag, it will bypass `zone.js` patch for IE/Edge
|
||
|
*
|
||
|
* (window as any).__Zone_enable_cross_context_check = true;
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/***************************************************************************************************
|
||
|
* Zone JS is required by default for Angular itself.
|
||
|
*/
|
||
|
import 'zone.js'; // Included with Angular CLI.
|
||
|
|
||
|
/***************************************************************************************************
|
||
|
* APPLICATION IMPORTS
|
||
|
*/
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/app.component.css]" value=".group {
|
||
|
background-color: #dae8f9;
|
||
|
padding: 1rem;
|
||
|
margin: 1rem 0;
|
||
|
}
|
||
|
|
||
|
.parent-div {
|
||
|
background-color: #bdd1f7;
|
||
|
border: solid 1px rgb(25, 118, 210);
|
||
|
padding: 1rem;
|
||
|
}
|
||
|
|
||
|
.parent-div:hover {
|
||
|
background-color: #8fb4f9;
|
||
|
}
|
||
|
|
||
|
.child-div {
|
||
|
margin-top: 1rem;
|
||
|
background-color: #fff;
|
||
|
padding: 1rem;
|
||
|
}
|
||
|
|
||
|
.child-div:hover {
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/item-detail/item-detail.component.css]" value=".detail {
|
||
|
border: 1px solid rgb(25, 118, 210);
|
||
|
padding: 1rem;
|
||
|
margin: 1rem 0;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-width: 100px;
|
||
|
display: block;
|
||
|
padding: 1rem 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/styles.css]" value="/* Global Styles */
|
||
|
* {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
h1 {
|
||
|
color: #264D73;
|
||
|
font-size: 2.5rem;
|
||
|
}
|
||
|
h2, h3 {
|
||
|
color: #444;
|
||
|
font-weight: lighter;
|
||
|
}
|
||
|
h3 {
|
||
|
font-size: 1.3rem;
|
||
|
}
|
||
|
body {
|
||
|
padding: .5rem;
|
||
|
max-width: 1000px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
@media (min-width: 600px) {
|
||
|
body {
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
}
|
||
|
body, input[text] {
|
||
|
color: #333;
|
||
|
font-family: Cambria, Georgia, serif;
|
||
|
}
|
||
|
a {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
button {
|
||
|
background-color: #eee;
|
||
|
border: none;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
color: black;
|
||
|
font-size: 1.2rem;
|
||
|
padding: 1rem;
|
||
|
margin-right: 1rem;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
button:hover {
|
||
|
background-color: black;
|
||
|
color: white;
|
||
|
}
|
||
|
button:disabled {
|
||
|
background-color: #eee;
|
||
|
color: #aaa;
|
||
|
cursor: auto;
|
||
|
}
|
||
|
|
||
|
/* Navigation link styles */
|
||
|
nav a {
|
||
|
padding: 5px 10px;
|
||
|
text-decoration: none;
|
||
|
margin-right: 10px;
|
||
|
margin-top: 10px;
|
||
|
display: inline-block;
|
||
|
background-color: #e8e8e8;
|
||
|
color: #3d3d3d;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
nav a:hover {
|
||
|
color: white;
|
||
|
background-color: #42545C;
|
||
|
}
|
||
|
nav a.active {
|
||
|
background-color: black;
|
||
|
color: white;
|
||
|
}
|
||
|
hr {
|
||
|
margin: 1.5rem 0;
|
||
|
}
|
||
|
input[type="text"] {
|
||
|
box-sizing: border-box;
|
||
|
width: 100%;
|
||
|
padding: .5rem;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/app.component.html]" value="<h1 id="event-binding">Event Binding</h1>
|
||
|
|
||
|
<div class="group">
|
||
|
<h3>Target event</h3>
|
||
|
<button (click)="onSave($event)">Save</button>
|
||
|
|
||
|
<button on-click="onSave($event)">on-click Save</button>
|
||
|
|
||
|
<h4>myClick is an event on the custom ClickDirective:</h4>
|
||
|
<button (myClick)="clickMessage=$event" clickable>click with myClick</button>
|
||
|
{{clickMessage}}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="group">
|
||
|
<h3>$event and event handling statements</h3>
|
||
|
<h4>Result: {{currentItem.name}}</h4>
|
||
|
|
||
|
<input [value]="currentItem.name"
|
||
|
(input)="currentItem.name=getValue($event.target)">
|
||
|
without NgModel
|
||
|
</div>
|
||
|
|
||
|
<div class="group">
|
||
|
<h3>Binding to a nested component</h3>
|
||
|
<h4>Custom events with EventEmitter</h4>
|
||
|
<app-item-detail (deleteRequest)="deleteItem($event)" [item]="currentItem"></app-item-detail>
|
||
|
|
||
|
|
||
|
<h4>Click to see event target class:</h4>
|
||
|
<div class="parent-div" (click)="onClickMe($event)" clickable>Click me (parent)
|
||
|
<div class="child-div">Click me too! (child) </div>
|
||
|
</div>
|
||
|
|
||
|
<h3>Saves only once:</h3>
|
||
|
<div (click)="onSave()" clickable>
|
||
|
<button (click)="onSave($event)">Save, no propagation</button>
|
||
|
</div>
|
||
|
|
||
|
<h3>Saves twice:</h3>
|
||
|
<div (click)="onSave()" clickable>
|
||
|
<button (click)="onSave()">Save with propagation</button>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
-->"><input type="hidden" name="files[src/app/item-detail/item-detail.component.html]" value="<div class="detail">
|
||
|
<p>This is the ItemDetailComponent</p>
|
||
|
<img src="{{itemImageUrl}}" [style.display]="displayNone">
|
||
|
<span [style.text-decoration]="lineThrough">{{ item.name }}
|
||
|
</span>
|
||
|
<button (click)="delete()">Delete</button>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
-->"><input type="hidden" name="files[src/index.html]" value="<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>EventBinding</title>
|
||
|
<base href="/">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||
|
</head>
|
||
|
<body>
|
||
|
<app-root></app-root>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
-->"><input type="hidden" name="files[angular.json]" value="{
|
||
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||
|
"version": 1,
|
||
|
"newProjectRoot": "projects",
|
||
|
"projects": {
|
||
|
"angular.io-example": {
|
||
|
"projectType": "application",
|
||
|
"schematics": {
|
||
|
"@schematics/angular:application": {
|
||
|
"strict": true
|
||
|
}
|
||
|
},
|
||
|
"root": "",
|
||
|
"sourceRoot": "src",
|
||
|
"prefix": "app",
|
||
|
"architect": {
|
||
|
"build": {
|
||
|
"builder": "@angular-devkit/build-angular:browser",
|
||
|
"options": {
|
||
|
"outputPath": "dist",
|
||
|
"index": "src/index.html",
|
||
|
"main": "src/main.ts",
|
||
|
"polyfills": "src/polyfills.ts",
|
||
|
"tsConfig": "tsconfig.app.json",
|
||
|
"aot": true,
|
||
|
"assets": [
|
||
|
"src/favicon.ico",
|
||
|
"src/assets"
|
||
|
],
|
||
|
"styles": [
|
||
|
"src/styles.css"
|
||
|
],
|
||
|
"scripts": []
|
||
|
},
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"fileReplacements": [
|
||
|
{
|
||
|
"replace": "src/environments/environment.ts",
|
||
|
"with": "src/environments/environment.prod.ts"
|
||
|
}
|
||
|
],
|
||
|
"optimization": true,
|
||
|
"outputHashing": "all",
|
||
|
"sourceMap": false,
|
||
|
"namedChunks": false,
|
||
|
"extractLicenses": true,
|
||
|
"vendorChunk": false,
|
||
|
"buildOptimizer": true,
|
||
|
"budgets": [
|
||
|
{
|
||
|
"type": "initial",
|
||
|
"maximumWarning": "500kb",
|
||
|
"maximumError": "1mb"
|
||
|
},
|
||
|
{
|
||
|
"type": "anyComponentStyle",
|
||
|
"maximumWarning": "2kb",
|
||
|
"maximumError": "4kb"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"serve": {
|
||
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||
|
"options": {
|
||
|
"browserTarget": "angular.io-example:build"
|
||
|
},
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"browserTarget": "angular.io-example:build:production"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"extract-i18n": {
|
||
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||
|
"options": {
|
||
|
"browserTarget": "angular.io-example:build"
|
||
|
}
|
||
|
},
|
||
|
"test": {
|
||
|
"builder": "@angular-devkit/build-angular:karma",
|
||
|
"options": {
|
||
|
"main": "src/test.ts",
|
||
|
"polyfills": "src/polyfills.ts",
|
||
|
"tsConfig": "tsconfig.spec.json",
|
||
|
"karmaConfig": "karma.conf.js",
|
||
|
"assets": [
|
||
|
"src/favicon.ico",
|
||
|
"src/assets"
|
||
|
],
|
||
|
"styles": [
|
||
|
"src/styles.css"
|
||
|
],
|
||
|
"scripts": []
|
||
|
}
|
||
|
},
|
||
|
"lint": {
|
||
|
"builder": "@angular-devkit/build-angular:tslint",
|
||
|
"options": {
|
||
|
"tsConfig": [
|
||
|
"tsconfig.app.json",
|
||
|
"tsconfig.spec.json",
|
||
|
"e2e/tsconfig.json"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/node_modules/**"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"e2e": {
|
||
|
"builder": "@angular-devkit/build-angular:protractor",
|
||
|
"options": {
|
||
|
"protractorConfig": "e2e/protractor.conf.js",
|
||
|
"devServerTarget": "angular.io-example:serve"
|
||
|
},
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"devServerTarget": "angular.io-example:serve:production"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"defaultProject": "angular.io-example"
|
||
|
}
|
||
|
"><input type="hidden" name="files[tsconfig.json]" value="{
|
||
|
"compileOnSave": false,
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": "./",
|
||
|
"outDir": "./dist/out-tsc",
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"sourceMap": true,
|
||
|
"declaration": false,
|
||
|
"downlevelIteration": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"moduleResolution": "node",
|
||
|
"importHelpers": true,
|
||
|
"target": "es2015",
|
||
|
"module": "es2020",
|
||
|
"lib": [
|
||
|
"es2018",
|
||
|
"dom"
|
||
|
]
|
||
|
},
|
||
|
"angularCompilerOptions": {
|
||
|
"strictInjectionParameters": true,
|
||
|
"strictInputAccessModifiers": true,
|
||
|
"strictTemplates": true,
|
||
|
"enableIvy": true
|
||
|
}
|
||
|
}"><input type="hidden" name="files[src/assets/teapot.svg]" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 200 140" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><clipPath id="_clip1"><rect x="0.181" y="0" width="201" height="140"/></clipPath><g clip-path="url(#_clip1)"><use xlink:href="#_Image2" x="0.181" y="0" width="199.819px" height="140px" transform="matrix(0.999096,0,0,1,0,0)"/></g><clipPath id="_clip3"><rect x="9" y="8" width="183" height="127"/></clipPath><g clip-path="url(#_clip3)"><use xlink:href="#_Image4" x="9" y="8" width="183px" height="127px"/></g><clipPath id="_clip5"><rect x="60.34" y="55.934" width="10" height="19"/></clipPath><g clip-path="url(#_clip5)"><use xlink:href="#_Image6" x="60.34" y="55.934" width="10px" height="19px"/></g><clipPath id="_clip7"><rect x="59.34" y="53.934" width="12" height="21"/></clipPath><g clip-path="url(#_clip7)"><use xlink:href="#_Image8" x="59.34" y="53.934" width="12px" height="21px"/></g><clipPath id="_clip9"><rect id="Background" x="3.649" y="6.854" width="190" height="126"/></clipPath><g clip-path="url(#_clip9)"><use xlink:href="#_Image10" x="3.649" y="6.854" width="190px" height="126px"/></g><defs><image id="_Image2" width="200px" height="140px" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAACMCAYAAAA5kebkAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABf0lEQVR4nO3TsRHAIBDAsJD9d34W4NxCIU3gxmtm5gOO/tsB8DKDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCASDQDAIBINAMAgEg0AwCIQNBuMFFNthxkEAAAAASUVORK5CYII="/><image id="_Image4" width="183px" height="127px" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAAB/CAYAAACt1VNGAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAgAElEQVR4nO19eZwcR5Xm90VWVV/qbt1YPuT7kC1Zakm2fMiSu4Vs+bbVauMZYLiWGY5lGdbDwDALxsPAMrDDMLAeZs2a42cGbNrdssQYm7XVLckGJNxSS5blS74vWffRZ3VV5ts/6srKyszKzMrqS/39flJlZ0S8F5n5xYsXLyIjiQkMO97f0sWkrs3WIBcaQBWhBqDkkABvdXLBe2iljHQdxwM40hU4kfD+li7NMCJLANwN4ApAogBJgiICAMcBrBPD+F+daxftHtHKjgNMkHuYsPSWJ6tjkUlfAfhFQCKk0On2i2AIwC8NqgeU6Fs72hYeG97ajg9MkHsY0HjTnmrGen8G8BZSova5SEAk9ZuCiAjB1wwxPhXR1IbHWxcYw1TlcQE10hU4EcBY73cI3gRIxJLCHJmlwM8mAYGcqajuNwysGY66jidMkLvMaFrdfSXAvwAlRmZ6SjOpzX/T0pOSJCmQ6QJ8uPG27WcPX83HPibIXW6QHyKlBqDKnAD8BUNIaoDMFk0mfG8fmCB3+XEuAAuhgwx15HQkVUVIdTohMEHuskNqU79EodvhB6xSCpeGUqUTBBPkLj8i9qd9uyYRkCeHUJ8TBhPkLicWfkKB1AsttiBlyb0TXASESGWo9RvnmCB3ObH9PgMiLxUm0PLrhmwDEBJJQKwNZWKuwgET5A4d+WQj5XFTWpHfAllIW3gBRDeErwHWdScT61CcMEHuQLjL5b5ZyJbU1wNIpNPg/lsgK3dEvCkJbvdZ0RMaE+T2hbvSbLvbdhp80aIuBQiXLt3M5uakFou1a+8kVK+I7AyuU0QECTHwzfhg38GlLU/XXXXD1qplN3TVYU3rxPNzwYS/FhhCnAIsmLM5NrliUrWqUOdTYY4IZoCYCgFBJAn2GYYsVworU+XswoEZ98N6DKRXmH
|
||
|
"><input type="hidden" name="tags[0]" value="angular"><input type="hidden" name="tags[1]" value="example"><input type="hidden" name="tags[2]" value="Event Binding"><input type="hidden" name="description" value="Angular Example - Event Binding"><input type="hidden" name="dependencies" value="{"@angular/animations":"~11.0.1","@angular/common":"~11.0.1","@angular/compiler":"~11.0.1","@angular/core":"~11.0.1","@angular/forms":"~11.0.1","@angular/platform-browser":"~11.0.1","@angular/platform-browser-dynamic":"~11.0.1","@angular/router":"~11.0.1","angular-in-memory-web-api":"~0.11.0","rxjs":"~6.6.0","tslib":"^2.0.0","zone.js":"~0.11.4","jasmine-core":"~3.6.0","jasmine-marbles":"~0.6.0"}"></form>
|
||
|
<script>
|
||
|
var embedded = 'ctl=1';
|
||
|
var isEmbedded = window.location.search.indexOf(embedded) > -1;
|
||
|
|
||
|
if (isEmbedded) {
|
||
|
var form = document.getElementById('mainForm');
|
||
|
var action = form.action;
|
||
|
var actionHasParams = action.indexOf('?') > -1;
|
||
|
var symbol = actionHasParams ? '&' : '?'
|
||
|
form.action = form.action + symbol + embedded;
|
||
|
}
|
||
|
document.getElementById("mainForm").submit();
|
||
|
</script>
|
||
|
</body></html>
|