@skyux/phone-field 7.0.0 → 7.1.1
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/documentation.json +1 -1
- package/package.json +7 -7
package/documentation.json
CHANGED
|
@@ -2436,7 +2436,7 @@
|
|
|
2436
2436
|
{
|
|
2437
2437
|
"fileName": "phone-field-demo.component.ts",
|
|
2438
2438
|
"filePath": "/projects/phone-field/documentation/code-examples/phone-field/basic/phone-field-demo.component.ts",
|
|
2439
|
-
"rawContents": "import { Component
|
|
2439
|
+
"rawContents": "import { Component } from '@angular/core';\nimport { UntypedFormControl, UntypedFormGroup } from '@angular/forms';\n\n@Component({\n selector: 'app-phone-field-demo',\n templateUrl: './phone-field-demo.component.html',\n styleUrls: ['./phone-field-demo.component.scss'],\n})\nexport class PhoneFieldDemoComponent {\n public phoneControl: UntypedFormControl;\n\n public phoneForm: UntypedFormGroup;\n\n constructor() {\n this.phoneControl = new UntypedFormControl();\n this.phoneForm = new UntypedFormGroup({\n phoneControl: this.phoneControl,\n });\n }\n}\n"
|
|
2440
2440
|
},
|
|
2441
2441
|
{
|
|
2442
2442
|
"fileName": "phone-field-demo.module.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/phone-field",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"@angular/core": "^14.2.11",
|
|
47
47
|
"@angular/forms": "^14.2.11",
|
|
48
48
|
"@angular/platform-browser": "^14.2.11",
|
|
49
|
-
"@skyux-sdk/testing": "7.
|
|
50
|
-
"@skyux/forms": "7.
|
|
51
|
-
"@skyux/i18n": "7.
|
|
52
|
-
"@skyux/indicators": "7.
|
|
53
|
-
"@skyux/lookup": "7.
|
|
54
|
-
"@skyux/theme": "7.
|
|
49
|
+
"@skyux-sdk/testing": "7.1.1",
|
|
50
|
+
"@skyux/forms": "7.1.1",
|
|
51
|
+
"@skyux/i18n": "7.1.1",
|
|
52
|
+
"@skyux/indicators": "7.1.1",
|
|
53
|
+
"@skyux/lookup": "7.1.1",
|
|
54
|
+
"@skyux/theme": "7.1.1"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"google-libphonenumber": "3.2.31",
|