ngx-mat-input-tel 21.4.3 → 22.0.0
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/angular.json +11 -6
- package/package.json +26 -25
- package/pnpm-workspace.yaml +1 -0
- package/projects/demo/tsconfig.app.json +9 -1
- package/projects/demo/tsconfig.spec.json +10 -2
- package/projects/ngx-mat-input-tel/package.json +4 -2
- package/projects/ngx-mat-input-tel/src/lib/ngx-mat-input-tel-dialog/ngx-mat-input-tel.dialog.ts +9 -1
- package/projects/ngx-mat-input-tel/tsconfig.lib.json +6 -0
- package/projects/ngx-mat-input-tel/tsconfig.lib.prod.json +7 -1
- package/projects/ngx-mat-input-tel/tsconfig.spec.json +9 -1
package/angular.json
CHANGED
|
@@ -98,6 +98,12 @@
|
|
|
98
98
|
"maximumWarning": "6kb"
|
|
99
99
|
}
|
|
100
100
|
]
|
|
101
|
+
},
|
|
102
|
+
"testing": {
|
|
103
|
+
"aot": false,
|
|
104
|
+
"optimization": false,
|
|
105
|
+
"extractLicenses": false,
|
|
106
|
+
"styles": ["projects/demo/src/styles.scss"]
|
|
101
107
|
}
|
|
102
108
|
}
|
|
103
109
|
},
|
|
@@ -113,14 +119,13 @@
|
|
|
113
119
|
}
|
|
114
120
|
},
|
|
115
121
|
"test": {
|
|
116
|
-
"builder": "@angular/build:
|
|
122
|
+
"builder": "@angular/build:unit-test",
|
|
117
123
|
"options": {
|
|
118
|
-
"main": "projects/demo/src/test.ts",
|
|
119
124
|
"tsConfig": "projects/demo/tsconfig.spec.json",
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
125
|
+
"reporters": ["default"],
|
|
126
|
+
"setupFiles": ["projects/demo/src/test.ts"],
|
|
127
|
+
"buildTarget": ":build:testing",
|
|
128
|
+
"runner": "vitest"
|
|
124
129
|
}
|
|
125
130
|
},
|
|
126
131
|
"lint": {
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-mat-input-tel",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@angular/animations": "
|
|
6
|
-
"@angular/cdk": "
|
|
7
|
-
"@angular/common": "
|
|
8
|
-
"@angular/compiler": "
|
|
9
|
-
"@angular/core": "
|
|
10
|
-
"@angular/forms": "
|
|
11
|
-
"@angular/material": "
|
|
12
|
-
"@angular/platform-browser": "
|
|
13
|
-
"@angular/platform-browser-dynamic": "
|
|
14
|
-
"@angular/router": "
|
|
15
|
-
"libphonenumber-js": "1.13.
|
|
5
|
+
"@angular/animations": "22.0.0",
|
|
6
|
+
"@angular/cdk": "22.0.0",
|
|
7
|
+
"@angular/common": "22.0.0",
|
|
8
|
+
"@angular/compiler": "22.0.0",
|
|
9
|
+
"@angular/core": "22.0.0",
|
|
10
|
+
"@angular/forms": "22.0.0",
|
|
11
|
+
"@angular/material": "22.0.0",
|
|
12
|
+
"@angular/platform-browser": "22.0.0",
|
|
13
|
+
"@angular/platform-browser-dynamic": "22.0.0",
|
|
14
|
+
"@angular/router": "22.0.0",
|
|
15
|
+
"libphonenumber-js": "1.13.6",
|
|
16
16
|
"rxjs": "7.8.2",
|
|
17
17
|
"tslib": "2.8.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@angular-devkit/core": "
|
|
21
|
-
"@angular-devkit/schematics": "
|
|
22
|
-
"@angular/build": "
|
|
23
|
-
"@angular/cli": "
|
|
24
|
-
"@angular/compiler-cli": "
|
|
25
|
-
"@angular/language-service": "
|
|
20
|
+
"@angular-devkit/core": "22.0.0",
|
|
21
|
+
"@angular-devkit/schematics": "22.0.0",
|
|
22
|
+
"@angular/build": "^22.0.0",
|
|
23
|
+
"@angular/cli": "22.0.0",
|
|
24
|
+
"@angular/compiler-cli": "22.0.0",
|
|
25
|
+
"@angular/language-service": "22.0.0",
|
|
26
26
|
"@commitlint/cli": "21.0.2",
|
|
27
27
|
"@commitlint/config-conventional": "21.0.2",
|
|
28
28
|
"@semantic-release/commit-analyzer": "13.0.1",
|
|
@@ -32,12 +32,13 @@
|
|
|
32
32
|
"@semantic-release/release-notes-generator": "14.1.1",
|
|
33
33
|
"@types/jasmine": "5.1.15",
|
|
34
34
|
"@types/jasminewd2": "2.0.13",
|
|
35
|
-
"@types/node": "24.
|
|
35
|
+
"@types/node": "24.13.1",
|
|
36
36
|
"@vitest/coverage-v8": "4.1.8",
|
|
37
|
-
"angular-eslint": "
|
|
37
|
+
"angular-eslint": "22.0.0",
|
|
38
38
|
"eslint": "9.39.4",
|
|
39
39
|
"eslint-config-prettier": "10.1.8",
|
|
40
40
|
"husky": "9.1.7",
|
|
41
|
+
"istanbul-lib-instrument": "^6.0.3",
|
|
41
42
|
"jasmine-core": "5.13.0",
|
|
42
43
|
"jasmine-spec-reporter": "7.0.0",
|
|
43
44
|
"jsdom": "29.1.1",
|
|
@@ -47,12 +48,12 @@
|
|
|
47
48
|
"karma-jasmine": "5.1.0",
|
|
48
49
|
"karma-jasmine-html-reporter": "2.2.0",
|
|
49
50
|
"lint-staged": "17.0.7",
|
|
50
|
-
"ng-packagr": "
|
|
51
|
-
"prettier": "3.8.
|
|
52
|
-
"semantic-release": "25.0.
|
|
51
|
+
"ng-packagr": "22.0.0",
|
|
52
|
+
"prettier": "3.8.4",
|
|
53
|
+
"semantic-release": "25.0.5",
|
|
53
54
|
"ts-node": "10.9.2",
|
|
54
|
-
"typescript": "
|
|
55
|
-
"typescript-eslint": "8.
|
|
55
|
+
"typescript": "6.0.3",
|
|
56
|
+
"typescript-eslint": "8.61.0",
|
|
56
57
|
"vitest": "4.1.8"
|
|
57
58
|
},
|
|
58
59
|
"lint-staged": {
|
package/pnpm-workspace.yaml
CHANGED
|
@@ -5,5 +5,13 @@
|
|
|
5
5
|
"types": []
|
|
6
6
|
},
|
|
7
7
|
"files": ["src/main.ts"],
|
|
8
|
-
"include": ["src/**/*.d.ts"]
|
|
8
|
+
"include": ["src/**/*.d.ts"],
|
|
9
|
+
"angularCompilerOptions": {
|
|
10
|
+
"extendedDiagnostics": {
|
|
11
|
+
"checks": {
|
|
12
|
+
"nullishCoalescingNotNullable": "suppress",
|
|
13
|
+
"optionalChainNotNullable": "suppress"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
9
17
|
}
|
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
"extends": "../../tsconfig.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
4
|
"outDir": "../../out-tsc/spec",
|
|
5
|
-
"types": ["
|
|
5
|
+
"types": ["node", "vitest/globals"]
|
|
6
6
|
},
|
|
7
7
|
"files": ["src/test.ts"],
|
|
8
|
-
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"]
|
|
8
|
+
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"],
|
|
9
|
+
"angularCompilerOptions": {
|
|
10
|
+
"extendedDiagnostics": {
|
|
11
|
+
"checks": {
|
|
12
|
+
"nullishCoalescingNotNullable": "suppress",
|
|
13
|
+
"optionalChainNotNullable": "suppress"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
9
17
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-mat-input-tel",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Raphaël Balet",
|
|
6
6
|
"email": "raphael.balet@outlook.com"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/forms": ">=19.x",
|
|
15
15
|
"@angular/platform-browser": ">=19.x",
|
|
16
16
|
"@angular/platform-browser-dynamic": ">=19.x",
|
|
17
|
-
"libphonenumber-js": "^1.
|
|
17
|
+
"libphonenumber-js": "^1.13.6"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
"angular",
|
|
25
25
|
"material",
|
|
26
26
|
"ngx-mat-intl-tel-input",
|
|
27
|
+
"ngx-mat-input-tel",
|
|
28
|
+
"ngx-tel",
|
|
27
29
|
"intl-tel-input",
|
|
28
30
|
"ng-intl-tel-input",
|
|
29
31
|
"phone number",
|
package/projects/ngx-mat-input-tel/src/lib/ngx-mat-input-tel-dialog/ngx-mat-input-tel.dialog.ts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import { KeyValuePipe } from "@angular/common";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
Component,
|
|
4
|
+
ElementRef,
|
|
5
|
+
Inject,
|
|
6
|
+
OnInit,
|
|
7
|
+
ViewChild,
|
|
8
|
+
computed,
|
|
9
|
+
signal
|
|
10
|
+
} from "@angular/core";
|
|
3
11
|
import { FormsModule } from "@angular/forms";
|
|
4
12
|
import { MatButtonModule } from "@angular/material/button";
|
|
5
13
|
import { MAT_DIALOG_DATA, MatDialogModule, MatDialogRef } from "@angular/material/dialog";
|
|
@@ -11,6 +11,12 @@
|
|
|
11
11
|
"angularCompilerOptions": {
|
|
12
12
|
"skipTemplateCodegen": true,
|
|
13
13
|
"strictMetadataEmit": true,
|
|
14
|
+
"extendedDiagnostics": {
|
|
15
|
+
"checks": {
|
|
16
|
+
"nullishCoalescingNotNullable": "suppress",
|
|
17
|
+
"optionalChainNotNullable": "suppress"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
14
20
|
"fullTemplateTypeCheck": true,
|
|
15
21
|
"strictInjectionParameters": true,
|
|
16
22
|
"enableResourceInlining": true
|
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
"declarationMap": false
|
|
5
5
|
},
|
|
6
6
|
"angularCompilerOptions": {
|
|
7
|
-
"compilationMode": "partial"
|
|
7
|
+
"compilationMode": "partial",
|
|
8
|
+
"extendedDiagnostics": {
|
|
9
|
+
"checks": {
|
|
10
|
+
"nullishCoalescingNotNullable": "suppress",
|
|
11
|
+
"optionalChainNotNullable": "suppress"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
8
14
|
}
|
|
9
15
|
}
|
|
@@ -4,5 +4,13 @@
|
|
|
4
4
|
"outDir": "../../out-tsc/spec",
|
|
5
5
|
"types": ["vitest/globals", "node"]
|
|
6
6
|
},
|
|
7
|
-
"include": ["**/*.spec.ts", "**/*.d.ts"]
|
|
7
|
+
"include": ["**/*.spec.ts", "**/*.d.ts"],
|
|
8
|
+
"angularCompilerOptions": {
|
|
9
|
+
"extendedDiagnostics": {
|
|
10
|
+
"checks": {
|
|
11
|
+
"nullishCoalescingNotNullable": "suppress",
|
|
12
|
+
"optionalChainNotNullable": "suppress"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
8
16
|
}
|