summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/forms/value-edit/value-edit.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/ng2/components/ui/forms/value-edit/value-edit.component.ts')
-rw-r--r--catalog-ui/src/app/ng2/components/ui/forms/value-edit/value-edit.component.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/catalog-ui/src/app/ng2/components/ui/forms/value-edit/value-edit.component.ts b/catalog-ui/src/app/ng2/components/ui/forms/value-edit/value-edit.component.ts
deleted file mode 100644
index 08bc0586c7..0000000000
--- a/catalog-ui/src/app/ng2/components/ui/forms/value-edit/value-edit.component.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Component, Input } from "@angular/core";
-
-@Component({
- selector: 'value-edit',
- templateUrl: './value-edit.component.html',
- styleUrls: ['./value-edit.component.less']
-})
-export class ValueEditComponent {
-
- @Input() name:String;
- @Input() validityChangedCallback: Function;
-
- private pattern:string = "^[\\s\\w\&_.:-]{1,1024}$"
- constructor(){
- }
-
- private validityChanged = (value):void => {
- if(this.validityChangedCallback) {
- this.validityChangedCallback(value);
- }
- }
-
-
-
-} \ No newline at end of file