瀏覽代碼

Correcting typo in comments

Richard Knight 6 年之前
父節點
當前提交
11de82f9a0

+ 1 - 1
src/app/dynaform/components/custom/checkbutton/checkbutton.component.ts

@@ -26,7 +26,7 @@ export class CheckbuttonComponent extends CustomInputComponent implements OnChan
 	checkedValue: string | number | boolean = true;
 	onChange: (val) => void;
 
-	readonly componentName = 'CheckbuttonComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'CheckbuttonComponent'; // For AOT compatibility, as class names don't survive minification
 
 	constructor(private _cdr: ChangeDetectorRef) {
 		super();

+ 1 - 1
src/app/dynaform/components/custom/dropdown-modified-input/dropdown-modified-input.component.ts

@@ -30,7 +30,7 @@ export class DropdownModifiedInputComponent extends CustomInputComponent impleme
 
 	private _controlValue: string;
 
-	readonly componentName = 'DropdownModifiedInputComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'DropdownModifiedInputComponent'; // For AOT compatibility, as class names don't survive minification
 
 	ngOnInit() {
 		this.controlValue = this.control.value;

+ 1 - 1
src/app/dynaform/components/custom/multiline/multiline.component.ts

@@ -22,7 +22,7 @@ export class MultilineComponent extends CustomInputComponent {
 	value: string;
 	maxLineLength: number;
 
-	readonly componentName = 'MultilineComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'MultilineComponent'; // For AOT compatibility, as class names don't survive minification
 
 	writeValue(value: any): void {
 		this.value = value;

+ 1 - 1
src/app/dynaform/components/group/checkbutton-group/checkbutton-group.component.ts

@@ -11,7 +11,7 @@ export class CheckbuttonGroupComponent extends GroupInputComponent implements On
 
 	firstControl: FormControl;
 
-	readonly componentName = 'CheckbuttonGroupComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'CheckbuttonGroupComponent'; // For AOT compatibility, as class names don't survive minification
 
 	constructor(
 		@Attribute('firstEnablesRest') private firstEnablesRest,

+ 1 - 1
src/app/dynaform/components/kendo/datepicker/datepicker.component.ts

@@ -12,6 +12,6 @@ export class DatepickerComponent extends NativeInputComponent {
 
 	placeholder: string;
 
-	readonly componentName = 'DatepickerComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'DatepickerComponent'; // For AOT compatibility, as class names don't survive minification
 
 }

+ 1 - 1
src/app/dynaform/components/kendo/timepicker/timepicker.component.ts

@@ -14,6 +14,6 @@ export class TimepickerComponent extends NativeInputComponent {
 	steps: number;
 	placeholder: string;
 
-	readonly componentName = 'TimepickerComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'TimepickerComponent'; // For AOT compatibility, as class names don't survive minification
 
 }

+ 1 - 1
src/app/dynaform/components/native/hidden/hidden.component.ts

@@ -8,6 +8,6 @@ import { NativeInputComponent } from '../../_abstract/native-input.component';
 })
 export class HiddenComponent extends NativeInputComponent {
 
-	readonly componentName = 'HiddenComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'HiddenComponent'; // For AOT compatibility, as class names don't survive minification
 
 }

+ 1 - 1
src/app/dynaform/components/native/password/password.component.ts

@@ -12,6 +12,6 @@ export class PasswordComponent extends NativeInputComponent {
 
 	placeholder: string;
 
-	readonly componentName = 'PasswordComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'PasswordComponent'; // For AOT compatibility, as class names don't survive minification
 
 }

+ 1 - 1
src/app/dynaform/components/native/radio/radio.component.ts

@@ -17,7 +17,7 @@ export class RadioComponent extends NativeInputComponent {
 	
 	prefix: string;
 
-	readonly componentName = 'RadioComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'RadioComponent'; // For AOT compatibility, as class names don't survive minification
 
 	constructor() {
 		super();

+ 1 - 1
src/app/dynaform/components/native/select/select.component.ts

@@ -15,7 +15,7 @@ export class SelectComponent extends NativeInputComponent {
 	options: IOption[];
 	link: ILink;
 	
-	readonly componentName = 'SelectComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'SelectComponent'; // For AOT compatibility, as class names don't survive minification
 
 	constructor(private router: Router, private route: ActivatedRoute) {
 		super();

+ 1 - 1
src/app/dynaform/components/native/text/text.component.ts

@@ -14,6 +14,6 @@ export class TextComponent extends NativeInputComponent {
 	placeholder: string;
 	link: ILink;
 
-	readonly componentName = 'TextComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'TextComponent'; // For AOT compatibility, as class names don't survive minification
 
 }

+ 1 - 1
src/app/dynaform/components/native/textarea/textarea.component.ts

@@ -12,6 +12,6 @@ export class TextareaComponent extends NativeInputComponent {
 
 	placeholder: string;
 
-	readonly componentName = 'TextareaComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'TextareaComponent'; // For AOT compatibility, as class names don't survive minification
 	
 }

+ 1 - 1
src/app/dynaform/components/nocontrol/button-group/button-group.component.ts

@@ -15,7 +15,7 @@ export class ButtonGroupComponent implements OnChanges {
 
 	buttons: StringMap<any>[];
 
-	readonly componentName = 'ButtonGroupComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'ButtonGroupComponent'; // For AOT compatibility, as class names don't survive minification
 
 	ngOnChanges() {
 		this.buttons = this.meta.meta;

+ 1 - 1
src/app/dynaform/components/nocontrol/display/display.component.ts

@@ -14,7 +14,7 @@ export class DisplayComponent implements OnChanges {
 	value: string;
 	link?: ILink;
 
-	readonly componentName = 'DisplayComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'DisplayComponent'; // For AOT compatibility, as class names don't survive minification
 
 	ngOnChanges() {
 		this.value = this.meta.value;

+ 1 - 1
src/app/dynaform/components/nocontrol/heading/heading.component.ts

@@ -13,7 +13,7 @@ export class HeadingComponent implements OnChanges {
 	text: string;
 	level: number;
 
-	readonly componentName = 'HeadingComponent'; // For AOT compatibility, as class names don't survice minification
+	readonly componentName = 'HeadingComponent'; // For AOT compatibility, as class names don't survive minification
 
 	ngOnChanges() {
 		this.text = this.meta.text;