Skip to content

Commit

Permalink
Merge pull request #28 from mpalourdio/umdfix
Browse files Browse the repository at this point in the history
fix(UMD): Change import type because of UMD removal in ng-packagr
  • Loading branch information
mpalourdio committed Nov 4, 2021
2 parents c8ca08c + 4a8a7bc commit 424565f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.5.1

- Fix after ng-packagr removal of UMD support.

## v0.5.0

- `angular 13` migration.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-tel-input-ng",
"version": "0.5.0",
"version": "0.5.1",
"scripts": {
"ng": "ng",
"build": "ng build",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/intl-tel-input.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import { AfterViewInit, Component, ElementRef, EventEmitter, Input, Output, ViewChild } from '@angular/core';
import { ControlContainer, NgForm } from '@angular/forms';
import * as intlTelInput from 'intl-tel-input';
import intlTelInput from 'intl-tel-input';
import { CountryData, IntlTelInputOptions } from '../model/intl-tel-input-options';

@Component({
Expand Down

0 comments on commit 424565f

Please sign in to comment.