ngxsmk-tel-input 1.0.4 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -18,9 +18,9 @@ An Angular component for entering and validating **international telephone numbe
18
18
  ## Screenshots
19
19
 
20
20
  <p align="left">
21
- <img src="./docs/valid.png" alt="Valid phone number" width="420" />
21
+ <img src="https://unpkg.com/ngxsmk-tel-input@1.0.4/docs/valid.png" alt="Angular international phone input - valid" width="420" />
22
22
  &nbsp;&nbsp;
23
- <img src="./docs/invalid.png" alt="Invalid phone number" width="420" />
23
+ <img src="https://unpkg.com/ngxsmk-tel-input@1.0.4/docs/invalid.png" alt="Angular international phone input - Invalid" width="420" />
24
24
  </p>
25
25
 
26
26
  ---
package/package.json CHANGED
@@ -1,18 +1,51 @@
1
1
  {
2
2
  "name": "ngxsmk-tel-input",
3
- "version": "1.0.4",
3
+ "version": "1.0.7",
4
+ "description": "Angular international telephone input with country flag dropdown, formatting & validation (intl-tel-input + libphonenumber). ControlValueAccessor. Supports Angular 17–19.",
5
+ "keywords": [
6
+ "angular",
7
+ "angular-forms",
8
+ "controlvalueaccessor",
9
+ "phone-input",
10
+ "telephone",
11
+ "tel-input",
12
+ "international",
13
+ "intl-tel-input",
14
+ "libphonenumber",
15
+ "e164",
16
+ "phone-number-validation",
17
+ "country-flag"
18
+ ],
19
+ "homepage": "https://github.com/toozuuu/ngxsmk-tel-input#readme",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/toozuuu/ngxsmk-tel-input.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/toozuuu/ngxsmk-tel-input/issues"
26
+ },
4
27
  "author": {
5
- "email": "sachindilshan040@gmail.com",
6
28
  "name": "Sachin Dilshan",
29
+ "email": "sachindilshan040@gmail.com",
7
30
  "url": "https://www.linkedin.com/in/sachindilshan"
8
31
  },
9
- "description": "Angular telephone input with intl-tel-input + libphonenumber-js",
10
32
  "license": "MIT",
11
33
  "private": false,
12
34
  "sideEffects": false,
13
35
  "publishConfig": {
14
36
  "access": "public"
15
37
  },
38
+ "files": [
39
+ "bundles/",
40
+ "fesm*",
41
+ "esm*",
42
+ "schematics/",
43
+ "migrations/",
44
+ "src/",
45
+ "README.md",
46
+ "LICENSE",
47
+ "docs/"
48
+ ],
16
49
  "peerDependencies": {
17
50
  "@angular/common": ">=17",
18
51
  "@angular/core": ">=17",
@@ -1,8 +0,0 @@
1
- # Changesets
2
-
3
- Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
- with multi-package repos, or single-package repos to help you version and publish your code. You can
5
- find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
-
7
- We have a quick list of common questions to get you started engaging with this project in
8
- [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -1,11 +0,0 @@
1
- {
2
- "$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
3
- "changelog": "@changesets/cli/changelog",
4
- "commit": false,
5
- "fixed": [],
6
- "linked": [],
7
- "access": "restricted",
8
- "baseBranch": "main",
9
- "updateInternalDependencies": "patch",
10
- "ignore": []
11
- }
package/ng-package.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
- "dest": "../../dist/ngxsmk-tel-input",
4
- "lib": {
5
- "entryFile": "src/public-api.ts"
6
- },
7
- "allowedNonPeerDependencies": [
8
- "intl-tel-input",
9
- "libphonenumber-js"
10
- ],
11
- "assets": [
12
- "README.md",
13
- "LICENSE",
14
- "docs"
15
- ]
16
- }
package/tsconfig.lib.json DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../out-tsc/lib",
5
- "declaration": true,
6
- "declarationMap": true,
7
- "inlineSources": true,
8
- "types": []
9
- },
10
- "exclude": [
11
- "**/*.spec.ts"
12
- ]
13
- }
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "./tsconfig.lib.json",
3
- "compilerOptions": {
4
- "declarationMap": false
5
- },
6
- "angularCompilerOptions": {
7
- "compilationMode": "partial"
8
- }
9
- }
@@ -1,13 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../out-tsc/spec",
5
- "types": [
6
- "jasmine"
7
- ]
8
- },
9
- "include": [
10
- "**/*.spec.ts",
11
- "**/*.d.ts"
12
- ]
13
- }