diff --git a/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.css b/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.css deleted file mode 100644 index 691958b..0000000 --- a/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.css +++ /dev/null @@ -1,24 +0,0 @@ -.head { - color: grey; - font-weight: bold; - /*border-bottom:1px solid black;*/ -} - -.body { - display: block; -} - -.widget { - display: block; - height: 100%; - width: 100%; -} - -.unit { - font-size: 0.8rem; - color: gray; -} - -.dateformat { - font-size: 0.8rem; -} diff --git a/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.html b/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.html deleted file mode 100644 index d33d712..0000000 --- a/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.html +++ /dev/null @@ -1,14 +0,0 @@ -
diff --git a/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.ts b/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.ts deleted file mode 100644 index 71cfea4..0000000 --- a/projects/common-map/src/fm-map/components/item-list-item-bofek/item-list-item-bofek.component.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { Component, OnInit, Injectable } from '@angular/core'; -import { Input } from '@angular/core'; -import { Store } from '@ngrx/store'; -import * as mapReducers from '../../reducers/map.reducer'; -import { commonReducers, ItemTypeService, ItemService, IListItem } from '@farmmaps/common'; -import { AbstractItemListItemComponent } from '../item-list-item/item-list-item.component' -import { ForItemType } from '../for-item/for-itemtype.decorator'; -import { ForSourceTask } from '../for-item/for-sourcetask.decorator'; - -@ForItemType("vnd.farmmaps.itemtype.shape.processed") -@ForSourceTask("vnd.farmmaps.task.bofek") -@Injectable() -@Component({ - selector: 'fm-map-item-list-item-bofek', - templateUrl: './item-list-item-bofek.component.html', - styleUrls: ['./item-list-item-bofek.component.css'] -}) -export class ItemListItemBofekComponent extends AbstractItemListItemComponent implements OnInit { - @Input() item: IListItem; - feature; - - constructor(store: Store