@smart-webcomponents-angular/phoneinput 16.0.2 → 19.0.8
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/index.d.ts +1158 -477
- package/package.json +14 -13
- package/source/modules/smart.input.js +2 -2
- package/source/modules/smart.phoneinput.js +2 -2
- package/source/smart.button.js +1 -1
- package/source/smart.countryinput.js +1 -1
- package/source/smart.element.js +2 -2
- package/source/smart.input.js +2 -2
- package/source/smart.phoneinput.js +2 -2
- package/source/smart.scrollbar.js +1 -1
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +11 -1
- package/styles/font/smart-icons.ttf +0 -0
- package/styles/font/smart-icons.woff +0 -0
- package/styles/font/smart-icons.woff2 +0 -0
- package/styles/smart.base.css +1 -1
- package/styles/smart.common.css +1 -1
- package/styles/smart.phoneinput.css +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smart-webcomponents-angular/phoneinput",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.8",
|
|
4
4
|
"preferGlobal": true,
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"angular 14 phoneinput",
|
|
10
10
|
"angular 15 phoneinput",
|
|
11
11
|
"angular 16 phoneinput",
|
|
12
|
+
"angular 17 phoneinput",
|
|
12
13
|
"phoneinput",
|
|
13
14
|
"angular phoneinput component",
|
|
14
15
|
"phoneinput for angular",
|
|
@@ -22,23 +23,23 @@
|
|
|
22
23
|
"tslib": "^2.3.0"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
|
-
"@angular/animations": "
|
|
26
|
-
"@angular/common": "
|
|
27
|
-
"@angular/compiler": "
|
|
28
|
-
"@angular/core": "
|
|
29
|
-
"@angular/forms": "
|
|
26
|
+
"@angular/animations": "14 - 17",
|
|
27
|
+
"@angular/common": "14 - 17",
|
|
28
|
+
"@angular/compiler": "14 - 17",
|
|
29
|
+
"@angular/core": "14 - 17",
|
|
30
|
+
"@angular/forms": "14 - 17",
|
|
30
31
|
"@angular/platform-browser": "12 - 16",
|
|
31
32
|
"core-js": "^2.6.9",
|
|
32
33
|
"rxjs": "^6.5.3",
|
|
33
34
|
"systemjs": "0.19.43",
|
|
34
35
|
"zone.js": "~0.11.4",
|
|
35
|
-
"@angular-devkit/core": "
|
|
36
|
-
"@angular-devkit/schematics": "
|
|
37
|
-
"@angular/bazel": "
|
|
38
|
-
"@angular/compiler-cli": "
|
|
39
|
-
"@angular/platform-browser-dynamic": "
|
|
40
|
-
"@angular/platform-server": "
|
|
41
|
-
"@angular/router": "
|
|
36
|
+
"@angular-devkit/core": "14 - 17",
|
|
37
|
+
"@angular-devkit/schematics": "14 - 17",
|
|
38
|
+
"@angular/bazel": "14 - 17",
|
|
39
|
+
"@angular/compiler-cli": "14 - 17",
|
|
40
|
+
"@angular/platform-browser-dynamic": "14 - 17",
|
|
41
|
+
"@angular/platform-server": "14 - 17",
|
|
42
|
+
"@angular/router": "14 - 17",
|
|
42
43
|
"typescript": "~4.9.5"
|
|
43
44
|
},
|
|
44
45
|
"author": "jQWidgets <support@jqwidgets.com> (https://www.htmlelements.com/)",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
/* Smart UI
|
|
3
|
-
Copyright (c) 2011-
|
|
2
|
+
/* Smart UI v19.0.8 (2024-05-01)
|
|
3
|
+
Copyright (c) 2011-2024 jQWidgets.
|
|
4
4
|
License: https://htmlelements.com/license/ */ //
|
|
5
5
|
|
|
6
6
|
import "../../common/i18n.phonenumbers.min.js"; //Addition library for repeating dates
|
package/source/smart.button.js
CHANGED