user11352561
user11352561

Reputation: 2647

Angular - Module '"ngx-intl-tel-input"' has no exported member 'TooltipLabel'

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

Answers (1)

Yong Shun
Yong Shun

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';

Reference(s)

Fully remove reference to tooltip

Upvotes: 3

Related Questions