Reputation: 2647
In my Angular-11, I have:
import { SearchCountryField, TooltipLabel, CountryISO, PhoneNumberFormat } from 'ngx-intl-tel-input';
But this error came up:
Module '"ngx-intl-tel-input"' has no exported member 'TooltipLabel'
and it highlights only:
TooltipLabel
How do I get this sorted out?
Thanks
Upvotes: 1
Views: 3190
Reputation: 51420
According to this GitHub issue comment,
TooltipLabel has been removed in the latest update. Ref: #336
Latest ngx-intl-tel-input (version 3.1.1) had remove Tooltip
. Hence you have to remove TooltipLabel
from ngx-intl-tel-input
import.
import { SearchCountryField, CountryISO, PhoneNumberFormat } from 'ngx-intl-tel-input';
Fully remove reference to tooltip
Upvotes: 3