// Angular Core
import { Component, Input, OnInit } from '@angular/core';

// Third Party
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap';

@Component({
  standalone: false,
  selector: 'app-specialshippingnotification',
  templateUrl: './specialshippingnotification.component.html',
  styleUrls: ['./specialshippingnotification.component.scss']
})
export class SpecialshippingnotificationComponent implements OnInit {
  @Input() suppliers!: any
  @Input() showspecialshippingnotificationPopup!: NgbModalRef
  @Input() closeSpecialShipping!: (action: any) => void;
  @Input() checkDisabled!: boolean;
  @Input() checkShippingFeeChange!: (suppliers: any) => boolean;

  constructor() { }

  ngOnInit(): void {
  }

}
