@skyux/phone-field 8.0.0 → 8.0.2

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.
Files changed (2) hide show
  1. package/documentation.json +666 -722
  2. package/package.json +7 -7
@@ -19,10 +19,25 @@
19
19
  "kind": 128,
20
20
  "kindString": "Class",
21
21
  "flags": {},
22
+ "decorators": [
23
+ {
24
+ "name": "NgModule",
25
+ "type": {
26
+ "type": "reference",
27
+ "qualifiedName": "NgModuleDecorator",
28
+ "package": "@angular/core",
29
+ "name": "NgModule"
30
+ },
31
+ "arguments": {
32
+ "obj": "{\n declarations: [SkyPhoneFieldComponent, SkyPhoneFieldInputDirective],\n imports: [\n CommonModule,\n FormsModule,\n ReactiveFormsModule,\n SkyCountryFieldModule,\n SkyI18nModule,\n SkyIconModule,\n SkyPhoneFieldResourcesModule,\n SkyThemeModule,\n ],\n exports: [SkyPhoneFieldComponent, SkyPhoneFieldInputDirective],\n}"
33
+ }
34
+ }
35
+ ],
22
36
  "children": [],
23
37
  "groups": [
24
38
  {
25
39
  "title": "Constructors",
40
+ "kind": 512,
26
41
  "children": [
27
42
  154
28
43
  ]
@@ -32,8 +47,7 @@
32
47
  {
33
48
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.module.ts",
34
49
  "line": 28,
35
- "character": 13,
36
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.module.ts#L28"
50
+ "character": 13
37
51
  }
38
52
  ]
39
53
  },
@@ -43,6 +57,20 @@
43
57
  "kind": 128,
44
58
  "kindString": "Class",
45
59
  "flags": {},
60
+ "decorators": [
61
+ {
62
+ "name": "Component",
63
+ "type": {
64
+ "type": "reference",
65
+ "qualifiedName": "ComponentDecorator",
66
+ "package": "@angular/core",
67
+ "name": "Component"
68
+ },
69
+ "arguments": {
70
+ "obj": "{\n selector: 'sky-phone-field',\n templateUrl: './phone-field.component.html',\n styleUrls: ['./phone-field.component.scss'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n SkyPhoneFieldAdapterService,\n // Prevents the embedded country field component from changing its behavior based on\n // being inside an input box. The phone field itself will handle the required changes\n // for input box.\n {\n provide: SkyInputBoxHostService,\n useValue: undefined,\n },\n {\n provide: SKY_COUNTRY_FIELD_CONTEXT,\n useValue: { showPlaceholderText: true },\n },\n ],\n animations: [\n trigger('blockAnimationOnLoad', [transition(':enter', [])]),\n trigger('countrySearchAnimation', [\n transition('void => open', [\n style({\n opacity: 0,\n width: 0,\n }),\n animate(\n '200ms ease-in',\n style({\n opacity: 1,\n width: '*',\n })\n ),\n ]),\n transition('open => void', [\n animate(\n '200ms ease-in',\n style({\n opacity: 0,\n width: 0,\n })\n ),\n ]),\n transition('void => open-modern', [\n style({\n opacity: 0,\n }),\n animate(\n '200ms ease-in',\n style({\n opacity: 1,\n })\n ),\n ]),\n transition('open-modern => void', [\n animate(\n '200ms ease-in',\n style({\n opacity: 0,\n })\n ),\n ]),\n ]),\n trigger('phoneInputAnimation', [\n transition('void => open', [\n style({\n opacity: 0,\n }),\n animate(\n '200ms ease-in',\n style({\n opacity: 1,\n })\n ),\n ]),\n transition('open => void', [\n animate(\n '200ms ease-in',\n style({\n opacity: 0,\n })\n ),\n ]),\n ]),\n ],\n}"
71
+ }
72
+ }
73
+ ],
46
74
  "children": [
47
75
  {
48
76
  "id": 4,
@@ -54,8 +82,7 @@
54
82
  {
55
83
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
56
84
  "line": 284,
57
- "character": 2,
58
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L284"
85
+ "character": 2
59
86
  }
60
87
  ],
61
88
  "signatures": [
@@ -74,9 +101,9 @@
74
101
  "flags": {},
75
102
  "type": {
76
103
  "type": "reference",
77
- "name": "FormBuilder",
78
104
  "qualifiedName": "FormBuilder",
79
- "package": "@angular/forms"
105
+ "package": "@angular/forms",
106
+ "name": "FormBuilder"
80
107
  }
81
108
  },
82
109
  {
@@ -98,9 +125,9 @@
98
125
  "flags": {},
99
126
  "type": {
100
127
  "type": "reference",
101
- "name": "ChangeDetectorRef",
102
128
  "qualifiedName": "ChangeDetectorRef",
103
- "package": "@angular/core"
129
+ "package": "@angular/core",
130
+ "name": "ChangeDetectorRef"
104
131
  }
105
132
  },
106
133
  {
@@ -111,6 +138,18 @@
111
138
  "flags": {
112
139
  "isOptional": true
113
140
  },
141
+ "decorators": [
142
+ {
143
+ "name": "Optional",
144
+ "type": {
145
+ "type": "reference",
146
+ "qualifiedName": "OptionalDecorator",
147
+ "package": "@angular/core",
148
+ "name": "Optional"
149
+ },
150
+ "arguments": {}
151
+ }
152
+ ],
114
153
  "type": {
115
154
  "type": "reference",
116
155
  "name": "SkyThemeService"
@@ -124,6 +163,28 @@
124
163
  "flags": {
125
164
  "isOptional": true
126
165
  },
166
+ "decorators": [
167
+ {
168
+ "name": "Optional",
169
+ "type": {
170
+ "type": "reference",
171
+ "qualifiedName": "OptionalDecorator",
172
+ "package": "@angular/core",
173
+ "name": "Optional"
174
+ },
175
+ "arguments": {}
176
+ },
177
+ {
178
+ "name": "SkipSelf",
179
+ "type": {
180
+ "type": "reference",
181
+ "qualifiedName": "SkipSelfDecorator",
182
+ "package": "@angular/core",
183
+ "name": "SkipSelf"
184
+ },
185
+ "arguments": {}
186
+ }
187
+ ],
127
188
  "type": {
128
189
  "type": "reference",
129
190
  "name": "SkyInputBoxHostService"
@@ -146,12 +207,26 @@
146
207
  "flags": {
147
208
  "isPublic": true
148
209
  },
210
+ "decorators": [
211
+ {
212
+ "name": "ViewChild",
213
+ "type": {
214
+ "type": "reference",
215
+ "qualifiedName": "ViewChildDecorator",
216
+ "package": "@angular/core",
217
+ "name": "ViewChild"
218
+ },
219
+ "arguments": {
220
+ "selector": "'buttonsInsetTemplateRef'",
221
+ "opts": "{\n read: TemplateRef,\n static: true,\n }"
222
+ }
223
+ }
224
+ ],
149
225
  "sources": [
150
226
  {
151
227
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
152
228
  "line": 263,
153
- "character": 9,
154
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L263"
229
+ "character": 9
155
230
  }
156
231
  ],
157
232
  "type": {
@@ -162,9 +237,9 @@
162
237
  "name": "unknown"
163
238
  }
164
239
  ],
165
- "name": "TemplateRef",
166
240
  "qualifiedName": "TemplateRef",
167
- "package": "@angular/core"
241
+ "package": "@angular/core",
242
+ "name": "TemplateRef"
168
243
  }
169
244
  },
170
245
  {
@@ -179,8 +254,7 @@
179
254
  {
180
255
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
181
256
  "line": 202,
182
- "character": 9,
183
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L202"
257
+ "character": 9
184
258
  }
185
259
  ],
186
260
  "type": {
@@ -200,12 +274,26 @@
200
274
  "flags": {
201
275
  "isPublic": true
202
276
  },
277
+ "decorators": [
278
+ {
279
+ "name": "ViewChild",
280
+ "type": {
281
+ "type": "reference",
282
+ "qualifiedName": "ViewChildDecorator",
283
+ "package": "@angular/core",
284
+ "name": "ViewChild"
285
+ },
286
+ "arguments": {
287
+ "selector": "'countryBtnTemplateRef'",
288
+ "opts": "{\n read: TemplateRef,\n static: true,\n }"
289
+ }
290
+ }
291
+ ],
203
292
  "sources": [
204
293
  {
205
294
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
206
295
  "line": 257,
207
- "character": 9,
208
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L257"
296
+ "character": 9
209
297
  }
210
298
  ],
211
299
  "type": {
@@ -216,9 +304,9 @@
216
304
  "name": "unknown"
217
305
  }
218
306
  ],
219
- "name": "TemplateRef",
220
307
  "qualifiedName": "TemplateRef",
221
- "package": "@angular/core"
308
+ "package": "@angular/core",
309
+ "name": "TemplateRef"
222
310
  }
223
311
  },
224
312
  {
@@ -233,8 +321,7 @@
233
321
  {
234
322
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
235
323
  "line": 210,
236
- "character": 9,
237
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L210"
324
+ "character": 9
238
325
  }
239
326
  ],
240
327
  "type": {
@@ -259,8 +346,7 @@
259
346
  {
260
347
  "fileName": "src/lib/modules/phone-field/phone-field.component.ts",
261
348
  "line": 211,
262
- "character": 4,
263
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L211"
349
+ "character": 4
264
350
  }
265
351
  ],
266
352
  "type": {
@@ -271,34 +357,27 @@
271
357
  "name": "SkyCountryFieldCountry"
272
358
  }
273
359
  ],
274
- "name": "FormControl",
275
360
  "qualifiedName": "FormControl",
276
- "package": "@angular/forms"
361
+ "package": "@angular/forms",
362
+ "name": "FormControl"
277
363
  }
278
364
  }
279
365
  ],
280
366
  "groups": [
281
367
  {
282
368
  "title": "Properties",
369
+ "kind": 1024,
283
370
  "children": [
284
371
  33
285
372
  ]
286
373
  }
287
- ],
288
- "sources": [
289
- {
290
- "fileName": "src/lib/modules/phone-field/phone-field.component.ts",
291
- "line": 210,
292
- "character": 38,
293
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L210"
294
- }
295
374
  ]
296
375
  }
297
376
  }
298
377
  ],
299
- "name": "FormGroup",
300
378
  "qualifiedName": "FormGroup",
301
- "package": "@angular/forms"
379
+ "package": "@angular/forms",
380
+ "name": "FormGroup"
302
381
  }
303
382
  },
304
383
  {
@@ -313,8 +392,7 @@
313
392
  {
314
393
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
315
394
  "line": 206,
316
- "character": 9,
317
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L206"
395
+ "character": 9
318
396
  }
319
397
  ],
320
398
  "type": {
@@ -335,8 +413,7 @@
335
413
  {
336
414
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
337
415
  "line": 204,
338
- "character": 9,
339
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L204"
416
+ "character": 9
340
417
  }
341
418
  ],
342
419
  "type": {
@@ -345,28 +422,6 @@
345
422
  },
346
423
  "defaultValue": "false"
347
424
  },
348
- {
349
- "id": 52,
350
- "name": "inputBoxHostSvc",
351
- "kind": 1024,
352
- "kindString": "Property",
353
- "flags": {
354
- "isPublic": true,
355
- "isOptional": true
356
- },
357
- "sources": [
358
- {
359
- "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
360
- "line": 289,
361
- "character": 35,
362
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L289"
363
- }
364
- ],
365
- "type": {
366
- "type": "reference",
367
- "name": "SkyInputBoxHostService"
368
- }
369
- },
370
425
  {
371
426
  "id": 38,
372
427
  "name": "inputTemplateRef",
@@ -375,12 +430,26 @@
375
430
  "flags": {
376
431
  "isPublic": true
377
432
  },
433
+ "decorators": [
434
+ {
435
+ "name": "ViewChild",
436
+ "type": {
437
+ "type": "reference",
438
+ "qualifiedName": "ViewChildDecorator",
439
+ "package": "@angular/core",
440
+ "name": "ViewChild"
441
+ },
442
+ "arguments": {
443
+ "selector": "'inputTemplateRef'",
444
+ "opts": "{\n read: TemplateRef,\n static: true,\n }"
445
+ }
446
+ }
447
+ ],
378
448
  "sources": [
379
449
  {
380
450
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
381
451
  "line": 251,
382
- "character": 9,
383
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L251"
452
+ "character": 9
384
453
  }
385
454
  ],
386
455
  "type": {
@@ -391,9 +460,9 @@
391
460
  "name": "unknown"
392
461
  }
393
462
  ],
394
- "name": "TemplateRef",
395
463
  "qualifiedName": "TemplateRef",
396
- "package": "@angular/core"
464
+ "package": "@angular/core",
465
+ "name": "TemplateRef"
397
466
  }
398
467
  },
399
468
  {
@@ -408,8 +477,7 @@
408
477
  {
409
478
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
410
479
  "line": 208,
411
- "character": 9,
412
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L208"
480
+ "character": 9
413
481
  }
414
482
  ],
415
483
  "type": {
@@ -427,27 +495,25 @@
427
495
  "isPublic": true
428
496
  },
429
497
  "comment": {
430
- "summary": [
431
- {
432
- "kind": "text",
433
- "text": "Emits a "
434
- },
435
- {
436
- "kind": "code",
437
- "text": "`SkyPhoneFieldCountry`"
438
- },
439
- {
440
- "kind": "text",
441
- "text": " object when the selected country in the country search\ninput changes."
442
- }
443
- ]
498
+ "shortText": "Emits a `SkyPhoneFieldCountry` object when the selected country in the country search\ninput changes."
444
499
  },
500
+ "decorators": [
501
+ {
502
+ "name": "Output",
503
+ "type": {
504
+ "type": "reference",
505
+ "qualifiedName": "OutputDecorator",
506
+ "package": "@angular/core",
507
+ "name": "Output"
508
+ },
509
+ "arguments": {}
510
+ }
511
+ ],
445
512
  "sources": [
446
513
  {
447
514
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
448
515
  "line": 200,
449
- "character": 9,
450
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L200"
516
+ "character": 9
451
517
  }
452
518
  ],
453
519
  "type": {
@@ -459,9 +525,9 @@
459
525
  "name": "SkyPhoneFieldCountry"
460
526
  }
461
527
  ],
462
- "name": "EventEmitter",
463
528
  "qualifiedName": "EventEmitter",
464
- "package": "@angular/core"
529
+ "package": "@angular/core",
530
+ "name": "EventEmitter"
465
531
  },
466
532
  "defaultValue": "..."
467
533
  },
@@ -474,19 +540,25 @@
474
540
  "isPublic": true
475
541
  },
476
542
  "comment": {
477
- "summary": [
478
- {
479
- "kind": "text",
480
- "text": "The [International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry codes for the countries that users can select. By default, all countries are available."
481
- }
482
- ]
543
+ "shortText": "The [International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry codes for the countries that users can select. By default, all countries are available."
483
544
  },
545
+ "decorators": [
546
+ {
547
+ "name": "Input",
548
+ "type": {
549
+ "type": "reference",
550
+ "qualifiedName": "InputDecorator",
551
+ "package": "@angular/core",
552
+ "name": "Input"
553
+ },
554
+ "arguments": {}
555
+ }
556
+ ],
484
557
  "sources": [
485
558
  {
486
559
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
487
560
  "line": 192,
488
- "character": 9,
489
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L192"
561
+ "character": 9
490
562
  }
491
563
  ],
492
564
  "type": {
@@ -497,28 +569,6 @@
497
569
  }
498
570
  }
499
571
  },
500
- {
501
- "id": 51,
502
- "name": "themeSvc",
503
- "kind": 1024,
504
- "kindString": "Property",
505
- "flags": {
506
- "isPublic": true,
507
- "isOptional": true
508
- },
509
- "sources": [
510
- {
511
- "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
512
- "line": 288,
513
- "character": 23,
514
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L288"
515
- }
516
- ],
517
- "type": {
518
- "type": "reference",
519
- "name": "SkyThemeService"
520
- }
521
- },
522
572
  {
523
573
  "id": 11,
524
574
  "name": "allowExtensions",
@@ -527,74 +577,82 @@
527
577
  "flags": {
528
578
  "isPublic": true
529
579
  },
580
+ "decorators": [
581
+ {
582
+ "name": "Input",
583
+ "type": {
584
+ "type": "reference",
585
+ "qualifiedName": "InputDecorator",
586
+ "package": "@angular/core",
587
+ "name": "Input"
588
+ },
589
+ "arguments": {}
590
+ }
591
+ ],
530
592
  "sources": [
531
593
  {
532
594
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
533
595
  "line": 139,
534
- "character": 13,
535
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L139"
536
- },
596
+ "character": 13
597
+ }
598
+ ],
599
+ "getSignature": [
537
600
  {
538
- "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
539
- "line": 143,
540
- "character": 13,
541
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L143"
542
- }
543
- ],
544
- "getSignature": {
545
- "id": 12,
546
- "name": "allowExtensions",
547
- "kind": 524288,
548
- "kindString": "Get signature",
549
- "flags": {},
550
- "type": {
551
- "type": "intrinsic",
552
- "name": "boolean"
601
+ "id": 12,
602
+ "name": "allowExtensions",
603
+ "kind": 524288,
604
+ "kindString": "Get signature",
605
+ "flags": {},
606
+ "comment": {
607
+ "shortText": "Whether phone number extensions are allowed.",
608
+ "tags": [
609
+ {
610
+ "tag": "default",
611
+ "text": "true\n"
612
+ }
613
+ ]
614
+ },
615
+ "type": {
616
+ "type": "intrinsic",
617
+ "name": "boolean"
618
+ }
553
619
  }
554
- },
555
- "setSignature": {
556
- "id": 13,
557
- "name": "allowExtensions",
558
- "kind": 1048576,
559
- "kindString": "Set signature",
560
- "flags": {},
561
- "comment": {
562
- "summary": [
620
+ ],
621
+ "setSignature": [
622
+ {
623
+ "id": 13,
624
+ "name": "allowExtensions",
625
+ "kind": 1048576,
626
+ "kindString": "Set signature",
627
+ "flags": {},
628
+ "comment": {
629
+ "shortText": "Whether phone number extensions are allowed.",
630
+ "tags": [
631
+ {
632
+ "tag": "default",
633
+ "text": "true\n"
634
+ }
635
+ ]
636
+ },
637
+ "parameters": [
563
638
  {
564
- "kind": "text",
565
- "text": "Whether phone number extensions are allowed."
639
+ "id": 14,
640
+ "name": "value",
641
+ "kind": 32768,
642
+ "kindString": "Parameter",
643
+ "flags": {},
644
+ "type": {
645
+ "type": "intrinsic",
646
+ "name": "boolean"
647
+ }
566
648
  }
567
649
  ],
568
- "blockTags": [
569
- {
570
- "tag": "@default",
571
- "content": [
572
- {
573
- "kind": "text",
574
- "text": "true"
575
- }
576
- ]
577
- }
578
- ]
579
- },
580
- "parameters": [
581
- {
582
- "id": 14,
583
- "name": "value",
584
- "kind": 32768,
585
- "kindString": "Parameter",
586
- "flags": {},
587
- "type": {
588
- "type": "intrinsic",
589
- "name": "boolean"
590
- }
650
+ "type": {
651
+ "type": "intrinsic",
652
+ "name": "void"
591
653
  }
592
- ],
593
- "type": {
594
- "type": "intrinsic",
595
- "name": "void"
596
654
  }
597
- }
655
+ ]
598
656
  },
599
657
  {
600
658
  "id": 16,
@@ -604,74 +662,82 @@
604
662
  "flags": {
605
663
  "isPublic": true
606
664
  },
665
+ "decorators": [
666
+ {
667
+ "name": "Input",
668
+ "type": {
669
+ "type": "reference",
670
+ "qualifiedName": "InputDecorator",
671
+ "package": "@angular/core",
672
+ "name": "Input"
673
+ },
674
+ "arguments": {}
675
+ }
676
+ ],
607
677
  "sources": [
608
678
  {
609
679
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
610
680
  "line": 157,
611
- "character": 13,
612
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L157"
613
- },
681
+ "character": 13
682
+ }
683
+ ],
684
+ "getSignature": [
614
685
  {
615
- "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
616
- "line": 167,
617
- "character": 13,
618
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L167"
619
- }
620
- ],
621
- "getSignature": {
622
- "id": 17,
623
- "name": "defaultCountry",
624
- "kind": 524288,
625
- "kindString": "Get signature",
626
- "flags": {},
627
- "type": {
628
- "type": "intrinsic",
629
- "name": "string"
686
+ "id": 17,
687
+ "name": "defaultCountry",
688
+ "kind": 524288,
689
+ "kindString": "Get signature",
690
+ "flags": {},
691
+ "comment": {
692
+ "shortText": "The\n[International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry code for the default country. The country selector button displays a flag\nicon for this default country until users select a different country.",
693
+ "tags": [
694
+ {
695
+ "tag": "default",
696
+ "text": "\"us\"\n"
697
+ }
698
+ ]
699
+ },
700
+ "type": {
701
+ "type": "intrinsic",
702
+ "name": "string"
703
+ }
630
704
  }
631
- },
632
- "setSignature": {
633
- "id": 18,
634
- "name": "defaultCountry",
635
- "kind": 1048576,
636
- "kindString": "Set signature",
637
- "flags": {},
638
- "comment": {
639
- "summary": [
705
+ ],
706
+ "setSignature": [
707
+ {
708
+ "id": 18,
709
+ "name": "defaultCountry",
710
+ "kind": 1048576,
711
+ "kindString": "Set signature",
712
+ "flags": {},
713
+ "comment": {
714
+ "shortText": "The\n[International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry code for the default country. The country selector button displays a flag\nicon for this default country until users select a different country.",
715
+ "tags": [
716
+ {
717
+ "tag": "default",
718
+ "text": "\"us\"\n"
719
+ }
720
+ ]
721
+ },
722
+ "parameters": [
640
723
  {
641
- "kind": "text",
642
- "text": "The\n[International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry code for the default country. The country selector button displays a flag\nicon for this default country until users select a different country."
724
+ "id": 19,
725
+ "name": "value",
726
+ "kind": 32768,
727
+ "kindString": "Parameter",
728
+ "flags": {},
729
+ "type": {
730
+ "type": "intrinsic",
731
+ "name": "string"
732
+ }
643
733
  }
644
734
  ],
645
- "blockTags": [
646
- {
647
- "tag": "@default",
648
- "content": [
649
- {
650
- "kind": "text",
651
- "text": "\"us\""
652
- }
653
- ]
654
- }
655
- ]
656
- },
657
- "parameters": [
658
- {
659
- "id": 19,
660
- "name": "value",
661
- "kind": 32768,
662
- "kindString": "Parameter",
663
- "flags": {},
664
- "type": {
665
- "type": "intrinsic",
666
- "name": "string"
667
- }
735
+ "type": {
736
+ "type": "intrinsic",
737
+ "name": "void"
668
738
  }
669
- ],
670
- "type": {
671
- "type": "intrinsic",
672
- "name": "void"
673
739
  }
674
- }
740
+ ]
675
741
  },
676
742
  {
677
743
  "id": 20,
@@ -681,100 +747,84 @@
681
747
  "flags": {
682
748
  "isPublic": true
683
749
  },
750
+ "decorators": [
751
+ {
752
+ "name": "Input",
753
+ "type": {
754
+ "type": "reference",
755
+ "qualifiedName": "InputDecorator",
756
+ "package": "@angular/core",
757
+ "name": "Input"
758
+ },
759
+ "arguments": {}
760
+ }
761
+ ],
684
762
  "sources": [
685
763
  {
686
764
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
687
765
  "line": 177,
688
- "character": 13,
689
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L177"
690
- },
766
+ "character": 13
767
+ }
768
+ ],
769
+ "getSignature": [
691
770
  {
692
- "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
693
- "line": 181,
694
- "character": 13,
695
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L181"
696
- }
697
- ],
698
- "getSignature": {
699
- "id": 21,
700
- "name": "returnFormat",
701
- "kind": 524288,
702
- "kindString": "Get signature",
703
- "flags": {},
704
- "comment": {
705
- "summary": [
706
- {
707
- "kind": "text",
708
- "text": "The format for validated phone numbers.\nOptions include: "
709
- },
710
- {
711
- "kind": "code",
712
- "text": "`\"default\"`"
713
- },
714
- {
715
- "kind": "text",
716
- "text": ", "
717
- },
718
- {
719
- "kind": "code",
720
- "text": "`\"international\"`"
721
- },
722
- {
723
- "kind": "text",
724
- "text": ", and "
725
- },
726
- {
727
- "kind": "code",
728
- "text": "`\"national\"`"
729
- },
771
+ "id": 21,
772
+ "name": "returnFormat",
773
+ "kind": 524288,
774
+ "kindString": "Get signature",
775
+ "flags": {},
776
+ "comment": {
777
+ "shortText": "The format for validated phone numbers.\nOptions include: `\"default\"`, `\"international\"`, and `\"national\"`.",
778
+ "tags": [
779
+ {
780
+ "tag": "default",
781
+ "text": "\"default\"\n"
782
+ }
783
+ ]
784
+ },
785
+ "type": {
786
+ "type": "reference",
787
+ "id": 163,
788
+ "name": "SkyPhoneFieldNumberReturnFormat"
789
+ }
790
+ }
791
+ ],
792
+ "setSignature": [
793
+ {
794
+ "id": 22,
795
+ "name": "returnFormat",
796
+ "kind": 1048576,
797
+ "kindString": "Set signature",
798
+ "flags": {},
799
+ "comment": {
800
+ "shortText": "The format for validated phone numbers.\nOptions include: `\"default\"`, `\"international\"`, and `\"national\"`.",
801
+ "tags": [
802
+ {
803
+ "tag": "default",
804
+ "text": "\"default\"\n"
805
+ }
806
+ ]
807
+ },
808
+ "parameters": [
730
809
  {
731
- "kind": "text",
732
- "text": "."
810
+ "id": 23,
811
+ "name": "value",
812
+ "kind": 32768,
813
+ "kindString": "Parameter",
814
+ "flags": {},
815
+ "type": {
816
+ "type": "reference",
817
+ "id": 163,
818
+ "name": "SkyPhoneFieldNumberReturnFormat"
819
+ }
733
820
  }
734
821
  ],
735
- "blockTags": [
736
- {
737
- "tag": "@default",
738
- "content": [
739
- {
740
- "kind": "text",
741
- "text": "\"default\""
742
- }
743
- ]
744
- }
745
- ]
746
- },
747
- "type": {
748
- "type": "reference",
749
- "id": 163,
750
- "name": "SkyPhoneFieldNumberReturnFormat"
751
- }
752
- },
753
- "setSignature": {
754
- "id": 22,
755
- "name": "returnFormat",
756
- "kind": 1048576,
757
- "kindString": "Set signature",
758
- "flags": {},
759
- "parameters": [
760
- {
761
- "id": 23,
762
- "name": "value",
763
- "kind": 32768,
764
- "kindString": "Parameter",
765
- "flags": {},
766
- "type": {
767
- "type": "reference",
768
- "id": 163,
769
- "name": "SkyPhoneFieldNumberReturnFormat"
770
- }
771
- }
772
- ],
773
- "type": {
774
- "type": "intrinsic",
775
- "name": "void"
822
+ "type": {
823
+ "type": "intrinsic",
824
+ "name": "void"
825
+ }
776
826
  }
777
- }
827
+ ]
778
828
  },
779
829
  {
780
830
  "id": 34,
@@ -784,65 +834,72 @@
784
834
  "flags": {
785
835
  "isPublic": true
786
836
  },
837
+ "decorators": [
838
+ {
839
+ "name": "Input",
840
+ "type": {
841
+ "type": "reference",
842
+ "qualifiedName": "InputDecorator",
843
+ "package": "@angular/core",
844
+ "name": "Input"
845
+ },
846
+ "arguments": {}
847
+ }
848
+ ],
787
849
  "sources": [
788
850
  {
789
851
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
790
852
  "line": 218,
791
- "character": 13,
792
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L218"
793
- },
794
- {
795
- "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
796
- "line": 243,
797
- "character": 13,
798
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L243"
853
+ "character": 13
799
854
  }
800
855
  ],
801
- "getSignature": {
802
- "id": 35,
803
- "name": "selectedCountry",
804
- "kind": 524288,
805
- "kindString": "Get signature",
806
- "flags": {},
807
- "type": {
808
- "type": "reference",
809
- "id": 156,
810
- "name": "SkyPhoneFieldCountry"
856
+ "getSignature": [
857
+ {
858
+ "id": 35,
859
+ "name": "selectedCountry",
860
+ "kind": 524288,
861
+ "kindString": "Get signature",
862
+ "flags": {},
863
+ "comment": {
864
+ "shortText": "The currently selected country to validate against."
865
+ },
866
+ "type": {
867
+ "type": "reference",
868
+ "id": 156,
869
+ "name": "SkyPhoneFieldCountry"
870
+ }
811
871
  }
812
- },
813
- "setSignature": {
814
- "id": 36,
815
- "name": "selectedCountry",
816
- "kind": 1048576,
817
- "kindString": "Set signature",
818
- "flags": {},
819
- "comment": {
820
- "summary": [
872
+ ],
873
+ "setSignature": [
874
+ {
875
+ "id": 36,
876
+ "name": "selectedCountry",
877
+ "kind": 1048576,
878
+ "kindString": "Set signature",
879
+ "flags": {},
880
+ "comment": {
881
+ "shortText": "The currently selected country to validate against."
882
+ },
883
+ "parameters": [
821
884
  {
822
- "kind": "text",
823
- "text": "The currently selected country to validate against."
824
- }
825
- ]
826
- },
827
- "parameters": [
828
- {
829
- "id": 37,
830
- "name": "newCountry",
831
- "kind": 32768,
832
- "kindString": "Parameter",
833
- "flags": {},
834
- "type": {
835
- "type": "reference",
836
- "id": 156,
837
- "name": "SkyPhoneFieldCountry"
885
+ "id": 37,
886
+ "name": "newCountry",
887
+ "kind": 32768,
888
+ "kindString": "Parameter",
889
+ "flags": {},
890
+ "type": {
891
+ "type": "reference",
892
+ "id": 156,
893
+ "name": "SkyPhoneFieldCountry"
894
+ }
838
895
  }
896
+ ],
897
+ "type": {
898
+ "type": "intrinsic",
899
+ "name": "void"
839
900
  }
840
- ],
841
- "type": {
842
- "type": "intrinsic",
843
- "name": "void"
844
901
  }
845
- }
902
+ ]
846
903
  },
847
904
  {
848
905
  "id": 63,
@@ -856,8 +913,7 @@
856
913
  {
857
914
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
858
915
  "line": 382,
859
- "character": 9,
860
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L382"
916
+ "character": 9
861
917
  }
862
918
  ],
863
919
  "signatures": [
@@ -876,9 +932,9 @@
876
932
  "flags": {},
877
933
  "type": {
878
934
  "type": "reference",
879
- "name": "AnimationEvent_2",
880
935
  "qualifiedName": "AnimationEvent_2",
881
- "package": "@angular/animations"
936
+ "package": "@angular/animations",
937
+ "name": "AnimationEvent_2"
882
938
  }
883
939
  }
884
940
  ],
@@ -901,8 +957,7 @@
901
957
  {
902
958
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
903
959
  "line": 349,
904
- "character": 9,
905
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L349"
960
+ "character": 9
906
961
  }
907
962
  ],
908
963
  "signatures": [
@@ -939,8 +994,7 @@
939
994
  {
940
995
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
941
996
  "line": 318,
942
- "character": 9,
943
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L318"
997
+ "character": 9
944
998
  }
945
999
  ],
946
1000
  "signatures": [
@@ -977,8 +1031,7 @@
977
1031
  {
978
1032
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
979
1033
  "line": 392,
980
- "character": 9,
981
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L392"
1034
+ "character": 9
982
1035
  }
983
1036
  ],
984
1037
  "signatures": [
@@ -997,9 +1050,9 @@
997
1050
  "flags": {},
998
1051
  "type": {
999
1052
  "type": "reference",
1000
- "name": "AnimationEvent_2",
1001
1053
  "qualifiedName": "AnimationEvent_2",
1002
- "package": "@angular/animations"
1054
+ "package": "@angular/animations",
1055
+ "name": "AnimationEvent_2"
1003
1056
  }
1004
1057
  }
1005
1058
  ],
@@ -1022,8 +1075,7 @@
1022
1075
  {
1023
1076
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
1024
1077
  "line": 405,
1025
- "character": 9,
1026
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L405"
1078
+ "character": 9
1027
1079
  }
1028
1080
  ],
1029
1081
  "signatures": [
@@ -1065,8 +1117,7 @@
1065
1117
  {
1066
1118
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
1067
1119
  "line": 368,
1068
- "character": 9,
1069
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L368"
1120
+ "character": 9
1070
1121
  }
1071
1122
  ],
1072
1123
  "signatures": [
@@ -1100,12 +1151,14 @@
1100
1151
  "groups": [
1101
1152
  {
1102
1153
  "title": "Constructors",
1154
+ "kind": 512,
1103
1155
  "children": [
1104
1156
  4
1105
1157
  ]
1106
1158
  },
1107
1159
  {
1108
1160
  "title": "Properties",
1161
+ "kind": 1024,
1109
1162
  "children": [
1110
1163
  40,
1111
1164
  27,
@@ -1123,6 +1176,7 @@
1123
1176
  },
1124
1177
  {
1125
1178
  "title": "Accessors",
1179
+ "kind": 262144,
1126
1180
  "children": [
1127
1181
  11,
1128
1182
  16,
@@ -1132,6 +1186,7 @@
1132
1186
  },
1133
1187
  {
1134
1188
  "title": "Methods",
1189
+ "kind": 2048,
1135
1190
  "children": [
1136
1191
  63,
1137
1192
  55,
@@ -1146,22 +1201,21 @@
1146
1201
  {
1147
1202
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field.component.ts",
1148
1203
  "line": 133,
1149
- "character": 13,
1150
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field.component.ts#L133"
1204
+ "character": 13
1151
1205
  }
1152
1206
  ],
1153
1207
  "implementedTypes": [
1154
1208
  {
1155
1209
  "type": "reference",
1156
- "name": "OnDestroy",
1157
1210
  "qualifiedName": "OnDestroy",
1158
- "package": "@angular/core"
1211
+ "package": "@angular/core",
1212
+ "name": "OnDestroy"
1159
1213
  },
1160
1214
  {
1161
1215
  "type": "reference",
1162
- "name": "OnInit",
1163
1216
  "qualifiedName": "OnInit",
1164
- "package": "@angular/core"
1217
+ "package": "@angular/core",
1218
+ "name": "OnInit"
1165
1219
  }
1166
1220
  ]
1167
1221
  },
@@ -1172,43 +1226,28 @@
1172
1226
  "kindString": "Class",
1173
1227
  "flags": {},
1174
1228
  "comment": {
1175
- "summary": [
1176
- {
1177
- "kind": "text",
1178
- "text": "Creates a button, search input, and text input for entering and validating\ninternational phone numbers. Place this attribute on an "
1179
- },
1180
- {
1181
- "kind": "code",
1182
- "text": "`input`"
1183
- },
1184
- {
1185
- "kind": "text",
1186
- "text": " element, and wrap\nthat element in a "
1187
- },
1188
- {
1189
- "kind": "code",
1190
- "text": "`sky-phone-field`"
1191
- },
1192
- {
1193
- "kind": "text",
1194
- "text": " component. By default, the country selector\nbutton displays a flag icon for the default country, and the phone number input\ndisplays a sample of the correct phone number format. When users select the country\nselector button, they expose the country search input, which is\n[an autocomplete input](https://developer.blackbaud.com/skyux/components/autocomplete)\nthat allows them to select different countries. When users enter "
1195
- },
1196
- {
1197
- "kind": "code",
1198
- "text": "`+`"
1199
- },
1200
- {
1201
- "kind": "text",
1202
- "text": " followed by an\ninternational dial code in the phone number input, the country automatically switches\nto the country associated with the dial code."
1203
- }
1204
- ],
1205
- "blockTags": [
1229
+ "shortText": "Creates a button, search input, and text input for entering and validating\ninternational phone numbers. Place this attribute on an `input` element, and wrap\nthat element in a `sky-phone-field` component. By default, the country selector\nbutton displays a flag icon for the default country, and the phone number input\ndisplays a sample of the correct phone number format. When users select the country\nselector button, they expose the country search input, which is\n[an autocomplete input](https://developer.blackbaud.com/skyux/components/autocomplete)\nthat allows them to select different countries. When users enter `+` followed by an\ninternational dial code in the phone number input, the country automatically switches\nto the country associated with the dial code.",
1230
+ "tags": [
1206
1231
  {
1207
- "tag": "@required",
1208
- "content": []
1232
+ "tag": "required",
1233
+ "text": "\n"
1209
1234
  }
1210
1235
  ]
1211
1236
  },
1237
+ "decorators": [
1238
+ {
1239
+ "name": "Directive",
1240
+ "type": {
1241
+ "type": "reference",
1242
+ "qualifiedName": "DirectiveDecorator",
1243
+ "package": "@angular/core",
1244
+ "name": "Directive"
1245
+ },
1246
+ "arguments": {
1247
+ "obj": "{\n selector: '[skyPhoneFieldInput]',\n providers: [SKY_PHONE_FIELD_VALUE_ACCESSOR, SKY_PHONE_FIELD_VALIDATOR],\n}"
1248
+ }
1249
+ }
1250
+ ],
1212
1251
  "children": [
1213
1252
  {
1214
1253
  "id": 73,
@@ -1220,8 +1259,7 @@
1220
1259
  {
1221
1260
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1222
1261
  "line": 128,
1223
- "character": 2,
1224
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L128"
1262
+ "character": 2
1225
1263
  }
1226
1264
  ],
1227
1265
  "signatures": [
@@ -1240,9 +1278,9 @@
1240
1278
  "flags": {},
1241
1279
  "type": {
1242
1280
  "type": "reference",
1243
- "name": "ChangeDetectorRef",
1244
1281
  "qualifiedName": "ChangeDetectorRef",
1245
- "package": "@angular/core"
1282
+ "package": "@angular/core",
1283
+ "name": "ChangeDetectorRef"
1246
1284
  }
1247
1285
  },
1248
1286
  {
@@ -1259,9 +1297,9 @@
1259
1297
  "name": "any"
1260
1298
  }
1261
1299
  ],
1262
- "name": "ElementRef",
1263
1300
  "qualifiedName": "ElementRef",
1264
- "package": "@angular/core"
1301
+ "package": "@angular/core",
1302
+ "name": "ElementRef"
1265
1303
  }
1266
1304
  },
1267
1305
  {
@@ -1272,6 +1310,18 @@
1272
1310
  "flags": {
1273
1311
  "isOptional": true
1274
1312
  },
1313
+ "decorators": [
1314
+ {
1315
+ "name": "Optional",
1316
+ "type": {
1317
+ "type": "reference",
1318
+ "qualifiedName": "OptionalDecorator",
1319
+ "package": "@angular/core",
1320
+ "name": "Optional"
1321
+ },
1322
+ "arguments": {}
1323
+ }
1324
+ ],
1275
1325
  "type": {
1276
1326
  "type": "reference",
1277
1327
  "name": "SkyPhoneFieldAdapterService"
@@ -1285,6 +1335,18 @@
1285
1335
  "flags": {
1286
1336
  "isOptional": true
1287
1337
  },
1338
+ "decorators": [
1339
+ {
1340
+ "name": "Optional",
1341
+ "type": {
1342
+ "type": "reference",
1343
+ "qualifiedName": "OptionalDecorator",
1344
+ "package": "@angular/core",
1345
+ "name": "Optional"
1346
+ },
1347
+ "arguments": {}
1348
+ }
1349
+ ],
1288
1350
  "type": {
1289
1351
  "type": "reference",
1290
1352
  "id": 3,
@@ -1309,62 +1371,31 @@
1309
1371
  "isPublic": true
1310
1372
  },
1311
1373
  "comment": {
1312
- "summary": [
1313
- {
1314
- "kind": "text",
1315
- "text": "Whether to prevent validation on the phone number input. For validation,\nphone numbers are driven through the "
1316
- },
1317
- {
1318
- "kind": "code",
1319
- "text": "`ngModel`"
1320
- },
1321
- {
1322
- "kind": "text",
1323
- "text": " attribute that you specify on an\n"
1324
- },
1325
- {
1326
- "kind": "code",
1327
- "text": "`input`"
1328
- },
1329
- {
1330
- "kind": "text",
1331
- "text": " element or on a "
1332
- },
1333
- {
1334
- "kind": "code",
1335
- "text": "`FormControl`"
1336
- },
1374
+ "shortText": "Whether to prevent validation on the phone number input. For validation,\nphone numbers are driven through the `ngModel` attribute that you specify on an\n`input` element or on a `FormControl` in a reactive form. To prevent validation,\nset this property to `true`.",
1375
+ "tags": [
1337
1376
  {
1338
- "kind": "text",
1339
- "text": " in a reactive form. To prevent validation,\nset this property to "
1340
- },
1341
- {
1342
- "kind": "code",
1343
- "text": "`true`"
1344
- },
1345
- {
1346
- "kind": "text",
1347
- "text": "."
1348
- }
1349
- ],
1350
- "blockTags": [
1351
- {
1352
- "tag": "@default",
1353
- "content": [
1354
- {
1355
- "kind": "text",
1356
- "text": "false"
1357
- }
1358
- ]
1377
+ "tag": "default",
1378
+ "text": "false\n"
1359
1379
  }
1360
1380
  ]
1361
1381
  },
1382
+ "decorators": [
1383
+ {
1384
+ "name": "Input",
1385
+ "type": {
1386
+ "type": "reference",
1387
+ "qualifiedName": "InputDecorator",
1388
+ "package": "@angular/core",
1389
+ "name": "Input"
1390
+ },
1391
+ "arguments": {}
1392
+ }
1393
+ ],
1362
1394
  "sources": [
1363
1395
  {
1364
1396
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1365
1397
  "line": 89,
1366
- "character": 9,
1367
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L89"
1398
+ "character": 9
1368
1399
  }
1369
1400
  ],
1370
1401
  "type": {
@@ -1381,74 +1412,82 @@
1381
1412
  "flags": {
1382
1413
  "isPublic": true
1383
1414
  },
1415
+ "decorators": [
1416
+ {
1417
+ "name": "Input",
1418
+ "type": {
1419
+ "type": "reference",
1420
+ "qualifiedName": "InputDecorator",
1421
+ "package": "@angular/core",
1422
+ "name": "Input"
1423
+ },
1424
+ "arguments": {}
1425
+ }
1426
+ ],
1384
1427
  "sources": [
1385
1428
  {
1386
1429
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1387
1430
  "line": 68,
1388
- "character": 13,
1389
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L68"
1390
- },
1431
+ "character": 13
1432
+ }
1433
+ ],
1434
+ "getSignature": [
1391
1435
  {
1392
- "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1393
- "line": 77,
1394
- "character": 13,
1395
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L77"
1396
- }
1397
- ],
1398
- "getSignature": {
1399
- "id": 80,
1400
- "name": "disabled",
1401
- "kind": 524288,
1402
- "kindString": "Get signature",
1403
- "flags": {},
1404
- "type": {
1405
- "type": "intrinsic",
1406
- "name": "boolean"
1436
+ "id": 80,
1437
+ "name": "disabled",
1438
+ "kind": 524288,
1439
+ "kindString": "Get signature",
1440
+ "flags": {},
1441
+ "comment": {
1442
+ "shortText": "Whether to disable the phone field.",
1443
+ "tags": [
1444
+ {
1445
+ "tag": "default",
1446
+ "text": "false\n"
1447
+ }
1448
+ ]
1449
+ },
1450
+ "type": {
1451
+ "type": "intrinsic",
1452
+ "name": "boolean"
1453
+ }
1407
1454
  }
1408
- },
1409
- "setSignature": {
1410
- "id": 81,
1411
- "name": "disabled",
1412
- "kind": 1048576,
1413
- "kindString": "Set signature",
1414
- "flags": {},
1415
- "comment": {
1416
- "summary": [
1455
+ ],
1456
+ "setSignature": [
1457
+ {
1458
+ "id": 81,
1459
+ "name": "disabled",
1460
+ "kind": 1048576,
1461
+ "kindString": "Set signature",
1462
+ "flags": {},
1463
+ "comment": {
1464
+ "shortText": "Whether to disable the phone field.",
1465
+ "tags": [
1466
+ {
1467
+ "tag": "default",
1468
+ "text": "false\n"
1469
+ }
1470
+ ]
1471
+ },
1472
+ "parameters": [
1417
1473
  {
1418
- "kind": "text",
1419
- "text": "Whether to disable the phone field."
1474
+ "id": 82,
1475
+ "name": "value",
1476
+ "kind": 32768,
1477
+ "kindString": "Parameter",
1478
+ "flags": {},
1479
+ "type": {
1480
+ "type": "intrinsic",
1481
+ "name": "boolean"
1482
+ }
1420
1483
  }
1421
1484
  ],
1422
- "blockTags": [
1423
- {
1424
- "tag": "@default",
1425
- "content": [
1426
- {
1427
- "kind": "text",
1428
- "text": "false"
1429
- }
1430
- ]
1431
- }
1432
- ]
1433
- },
1434
- "parameters": [
1435
- {
1436
- "id": 82,
1437
- "name": "value",
1438
- "kind": 32768,
1439
- "kindString": "Parameter",
1440
- "flags": {},
1441
- "type": {
1442
- "type": "intrinsic",
1443
- "name": "boolean"
1444
- }
1485
+ "type": {
1486
+ "type": "intrinsic",
1487
+ "name": "void"
1445
1488
  }
1446
- ],
1447
- "type": {
1448
- "type": "intrinsic",
1449
- "name": "void"
1450
1489
  }
1451
- }
1490
+ ]
1452
1491
  },
1453
1492
  {
1454
1493
  "id": 100,
@@ -1462,8 +1501,7 @@
1462
1501
  {
1463
1502
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1464
1503
  "line": 160,
1465
- "character": 9,
1466
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L160"
1504
+ "character": 9
1467
1505
  }
1468
1506
  ],
1469
1507
  "signatures": [
@@ -1500,8 +1538,7 @@
1500
1538
  {
1501
1539
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1502
1540
  "line": 182,
1503
- "character": 9,
1504
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L182"
1541
+ "character": 9
1505
1542
  }
1506
1543
  ],
1507
1544
  "signatures": [
@@ -1538,8 +1575,7 @@
1538
1575
  {
1539
1576
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1540
1577
  "line": 140,
1541
- "character": 9,
1542
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L140"
1578
+ "character": 9
1543
1579
  }
1544
1580
  ],
1545
1581
  "signatures": [
@@ -1572,12 +1608,25 @@
1572
1608
  "flags": {
1573
1609
  "isPublic": true
1574
1610
  },
1611
+ "decorators": [
1612
+ {
1613
+ "name": "HostListener",
1614
+ "type": {
1615
+ "type": "reference",
1616
+ "qualifiedName": "HostListenerDecorator",
1617
+ "package": "@angular/core",
1618
+ "name": "HostListener"
1619
+ },
1620
+ "arguments": {
1621
+ "eventName": "'blur'"
1622
+ }
1623
+ }
1624
+ ],
1575
1625
  "sources": [
1576
1626
  {
1577
1627
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1578
1628
  "line": 204,
1579
- "character": 9,
1580
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L204"
1629
+ "character": 9
1581
1630
  }
1582
1631
  ],
1583
1632
  "signatures": [
@@ -1588,12 +1637,7 @@
1588
1637
  "kindString": "Call signature",
1589
1638
  "flags": {},
1590
1639
  "comment": {
1591
- "summary": [
1592
- {
1593
- "kind": "text",
1594
- "text": "Marks reactive form controls as touched on input blur events"
1595
- }
1596
- ]
1640
+ "shortText": "Marks reactive form controls as touched on input blur events"
1597
1641
  },
1598
1642
  "type": {
1599
1643
  "type": "intrinsic",
@@ -1610,12 +1654,26 @@
1610
1654
  "flags": {
1611
1655
  "isPublic": true
1612
1656
  },
1657
+ "decorators": [
1658
+ {
1659
+ "name": "HostListener",
1660
+ "type": {
1661
+ "type": "reference",
1662
+ "qualifiedName": "HostListenerDecorator",
1663
+ "package": "@angular/core",
1664
+ "name": "HostListener"
1665
+ },
1666
+ "arguments": {
1667
+ "eventName": "'change'",
1668
+ "args": "['$event']"
1669
+ }
1670
+ }
1671
+ ],
1613
1672
  "sources": [
1614
1673
  {
1615
1674
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1616
1675
  "line": 192,
1617
- "character": 9,
1618
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L192"
1676
+ "character": 9
1619
1677
  }
1620
1678
  ],
1621
1679
  "signatures": [
@@ -1626,12 +1684,7 @@
1626
1684
  "kindString": "Call signature",
1627
1685
  "flags": {},
1628
1686
  "comment": {
1629
- "summary": [
1630
- {
1631
- "kind": "text",
1632
- "text": "Writes the new value for reactive forms on change events on the input element"
1633
- }
1634
- ]
1687
+ "shortText": "Writes the new value for reactive forms on change events on the input element"
1635
1688
  },
1636
1689
  "parameters": [
1637
1690
  {
@@ -1641,12 +1694,7 @@
1641
1694
  "kindString": "Parameter",
1642
1695
  "flags": {},
1643
1696
  "comment": {
1644
- "summary": [
1645
- {
1646
- "kind": "text",
1647
- "text": "The change event that was received"
1648
- }
1649
- ]
1697
+ "shortText": "The change event that was received\n"
1650
1698
  },
1651
1699
  "type": {
1652
1700
  "type": "intrinsic",
@@ -1669,12 +1717,26 @@
1669
1717
  "flags": {
1670
1718
  "isPublic": true
1671
1719
  },
1720
+ "decorators": [
1721
+ {
1722
+ "name": "HostListener",
1723
+ "type": {
1724
+ "type": "reference",
1725
+ "qualifiedName": "HostListenerDecorator",
1726
+ "package": "@angular/core",
1727
+ "name": "HostListener"
1728
+ },
1729
+ "arguments": {
1730
+ "eventName": "'input'",
1731
+ "args": "['$event']"
1732
+ }
1733
+ }
1734
+ ],
1672
1735
  "sources": [
1673
1736
  {
1674
1737
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1675
1738
  "line": 209,
1676
- "character": 9,
1677
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L209"
1739
+ "character": 9
1678
1740
  }
1679
1741
  ],
1680
1742
  "signatures": [
@@ -1716,8 +1778,7 @@
1716
1778
  {
1717
1779
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1718
1780
  "line": 227,
1719
- "character": 9,
1720
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L227"
1781
+ "character": 9
1721
1782
  }
1722
1783
  ],
1723
1784
  "signatures": [
@@ -1742,14 +1803,6 @@
1742
1803
  "kind": 65536,
1743
1804
  "kindString": "Type literal",
1744
1805
  "flags": {},
1745
- "sources": [
1746
- {
1747
- "fileName": "src/lib/modules/phone-field/phone-field-input.directive.ts",
1748
- "line": 227,
1749
- "character": 30,
1750
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L227"
1751
- }
1752
- ],
1753
1806
  "signatures": [
1754
1807
  {
1755
1808
  "id": 119,
@@ -1807,8 +1860,7 @@
1807
1860
  {
1808
1861
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1809
1862
  "line": 231,
1810
- "character": 9,
1811
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L231"
1863
+ "character": 9
1812
1864
  }
1813
1865
  ],
1814
1866
  "signatures": [
@@ -1833,14 +1885,6 @@
1833
1885
  "kind": 65536,
1834
1886
  "kindString": "Type literal",
1835
1887
  "flags": {},
1836
- "sources": [
1837
- {
1838
- "fileName": "src/lib/modules/phone-field/phone-field-input.directive.ts",
1839
- "line": 231,
1840
- "character": 31,
1841
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L231"
1842
- }
1843
- ],
1844
1888
  "signatures": [
1845
1889
  {
1846
1890
  "id": 125,
@@ -1885,8 +1929,7 @@
1885
1929
  {
1886
1930
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1887
1931
  "line": 235,
1888
- "character": 9,
1889
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L235"
1932
+ "character": 9
1890
1933
  }
1891
1934
  ],
1892
1935
  "signatures": [
@@ -1911,14 +1954,6 @@
1911
1954
  "kind": 65536,
1912
1955
  "kindString": "Type literal",
1913
1956
  "flags": {},
1914
- "sources": [
1915
- {
1916
- "fileName": "src/lib/modules/phone-field/phone-field-input.directive.ts",
1917
- "line": 235,
1918
- "character": 39,
1919
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L235"
1920
- }
1921
- ],
1922
1957
  "signatures": [
1923
1958
  {
1924
1959
  "id": 130,
@@ -1963,8 +1998,7 @@
1963
1998
  {
1964
1999
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
1965
2000
  "line": 243,
1966
- "character": 9,
1967
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L243"
2001
+ "character": 9
1968
2002
  }
1969
2003
  ],
1970
2004
  "signatures": [
@@ -1975,12 +2009,7 @@
1975
2009
  "kindString": "Call signature",
1976
2010
  "flags": {},
1977
2011
  "comment": {
1978
- "summary": [
1979
- {
1980
- "kind": "text",
1981
- "text": "Sets the disabled state on the input"
1982
- }
1983
- ]
2012
+ "shortText": "Sets the disabled state on the input"
1984
2013
  },
1985
2014
  "parameters": [
1986
2015
  {
@@ -1990,12 +2019,7 @@
1990
2019
  "kindString": "Parameter",
1991
2020
  "flags": {},
1992
2021
  "comment": {
1993
- "summary": [
1994
- {
1995
- "kind": "text",
1996
- "text": "the new value of the input's disabled state"
1997
- }
1998
- ]
2022
+ "shortText": "the new value of the input's disabled state\n"
1999
2023
  },
2000
2024
  "type": {
2001
2025
  "type": "intrinsic",
@@ -2030,8 +2054,7 @@
2030
2054
  {
2031
2055
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
2032
2056
  "line": 251,
2033
- "character": 9,
2034
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L251"
2057
+ "character": 9
2035
2058
  }
2036
2059
  ],
2037
2060
  "signatures": [
@@ -2042,12 +2065,7 @@
2042
2065
  "kindString": "Call signature",
2043
2066
  "flags": {},
2044
2067
  "comment": {
2045
- "summary": [
2046
- {
2047
- "kind": "text",
2048
- "text": "Validate's the form control's current value"
2049
- }
2050
- ]
2068
+ "shortText": "Validate's the form control's current value"
2051
2069
  },
2052
2070
  "parameters": [
2053
2071
  {
@@ -2057,12 +2075,7 @@
2057
2075
  "kindString": "Parameter",
2058
2076
  "flags": {},
2059
2077
  "comment": {
2060
- "summary": [
2061
- {
2062
- "kind": "text",
2063
- "text": "the form control for the input"
2064
- }
2065
- ]
2078
+ "shortText": "the form control for the input\n"
2066
2079
  },
2067
2080
  "type": {
2068
2081
  "type": "reference",
@@ -2076,17 +2089,17 @@
2076
2089
  "name": "any"
2077
2090
  }
2078
2091
  ],
2079
- "name": "AbstractControl",
2080
2092
  "qualifiedName": "AbstractControl",
2081
- "package": "@angular/forms"
2093
+ "package": "@angular/forms",
2094
+ "name": "AbstractControl"
2082
2095
  }
2083
2096
  }
2084
2097
  ],
2085
2098
  "type": {
2086
2099
  "type": "reference",
2087
- "name": "ValidationErrors",
2088
2100
  "qualifiedName": "ValidationErrors",
2089
- "package": "@angular/forms"
2101
+ "package": "@angular/forms",
2102
+ "name": "ValidationErrors"
2090
2103
  },
2091
2104
  "implementationOf": {
2092
2105
  "type": "reference",
@@ -2111,8 +2124,7 @@
2111
2124
  {
2112
2125
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
2113
2126
  "line": 221,
2114
- "character": 9,
2115
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L221"
2127
+ "character": 9
2116
2128
  }
2117
2129
  ],
2118
2130
  "signatures": [
@@ -2123,12 +2135,7 @@
2123
2135
  "kindString": "Call signature",
2124
2136
  "flags": {},
2125
2137
  "comment": {
2126
- "summary": [
2127
- {
2128
- "kind": "text",
2129
- "text": "Writes the new value for reactive forms"
2130
- }
2131
- ]
2138
+ "shortText": "Writes the new value for reactive forms"
2132
2139
  },
2133
2140
  "parameters": [
2134
2141
  {
@@ -2138,12 +2145,7 @@
2138
2145
  "kindString": "Parameter",
2139
2146
  "flags": {},
2140
2147
  "comment": {
2141
- "summary": [
2142
- {
2143
- "kind": "text",
2144
- "text": "The new value for the input"
2145
- }
2146
- ]
2148
+ "shortText": "The new value for the input\n"
2147
2149
  },
2148
2150
  "type": {
2149
2151
  "type": "intrinsic",
@@ -2170,24 +2172,28 @@
2170
2172
  "groups": [
2171
2173
  {
2172
2174
  "title": "Constructors",
2175
+ "kind": 512,
2173
2176
  "children": [
2174
2177
  73
2175
2178
  ]
2176
2179
  },
2177
2180
  {
2178
2181
  "title": "Properties",
2182
+ "kind": 1024,
2179
2183
  "children": [
2180
2184
  83
2181
2185
  ]
2182
2186
  },
2183
2187
  {
2184
2188
  "title": "Accessors",
2189
+ "kind": 262144,
2185
2190
  "children": [
2186
2191
  79
2187
2192
  ]
2188
2193
  },
2189
2194
  {
2190
2195
  "title": "Methods",
2196
+ "kind": 2048,
2191
2197
  "children": [
2192
2198
  100,
2193
2199
  102,
@@ -2208,40 +2214,39 @@
2208
2214
  {
2209
2215
  "fileName": "projects/phone-field/src/modules/phone-field/phone-field-input.directive.ts",
2210
2216
  "line": 60,
2211
- "character": 13,
2212
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/phone-field-input.directive.ts#L60"
2217
+ "character": 13
2213
2218
  }
2214
2219
  ],
2215
2220
  "implementedTypes": [
2216
2221
  {
2217
2222
  "type": "reference",
2218
- "name": "OnInit",
2219
2223
  "qualifiedName": "OnInit",
2220
- "package": "@angular/core"
2224
+ "package": "@angular/core",
2225
+ "name": "OnInit"
2221
2226
  },
2222
2227
  {
2223
2228
  "type": "reference",
2224
- "name": "OnDestroy",
2225
2229
  "qualifiedName": "OnDestroy",
2226
- "package": "@angular/core"
2230
+ "package": "@angular/core",
2231
+ "name": "OnDestroy"
2227
2232
  },
2228
2233
  {
2229
2234
  "type": "reference",
2230
- "name": "AfterViewInit",
2231
2235
  "qualifiedName": "AfterViewInit",
2232
- "package": "@angular/core"
2236
+ "package": "@angular/core",
2237
+ "name": "AfterViewInit"
2233
2238
  },
2234
2239
  {
2235
2240
  "type": "reference",
2236
- "name": "ControlValueAccessor",
2237
2241
  "qualifiedName": "ControlValueAccessor",
2238
- "package": "@angular/forms"
2242
+ "package": "@angular/forms",
2243
+ "name": "ControlValueAccessor"
2239
2244
  },
2240
2245
  {
2241
2246
  "type": "reference",
2242
- "name": "Validator",
2243
2247
  "qualifiedName": "Validator",
2244
- "package": "@angular/forms"
2248
+ "package": "@angular/forms",
2249
+ "name": "Validator"
2245
2250
  }
2246
2251
  ]
2247
2252
  },
@@ -2261,19 +2266,13 @@
2261
2266
  "isOptional": true
2262
2267
  },
2263
2268
  "comment": {
2264
- "summary": [
2265
- {
2266
- "kind": "text",
2267
- "text": "The country's international dial code."
2268
- }
2269
- ]
2269
+ "shortText": "The country's international dial code."
2270
2270
  },
2271
2271
  "sources": [
2272
2272
  {
2273
2273
  "fileName": "projects/phone-field/src/modules/phone-field/types/country.ts",
2274
2274
  "line": 12,
2275
- "character": 2,
2276
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/types/country.ts#L12"
2275
+ "character": 2
2277
2276
  }
2278
2277
  ],
2279
2278
  "type": {
@@ -2290,27 +2289,13 @@
2290
2289
  "isOptional": true
2291
2290
  },
2292
2291
  "comment": {
2293
- "summary": [
2294
- {
2295
- "kind": "text",
2296
- "text": "The placeholder value that demonstrates the country's number format. This\nvalue is "
2297
- },
2298
- {
2299
- "kind": "code",
2300
- "text": "`undefined`"
2301
- },
2302
- {
2303
- "kind": "text",
2304
- "text": " until a country is selected to validate against."
2305
- }
2306
- ]
2292
+ "shortText": "The placeholder value that demonstrates the country's number format. This\nvalue is `undefined` until a country is selected to validate against."
2307
2293
  },
2308
2294
  "sources": [
2309
2295
  {
2310
2296
  "fileName": "projects/phone-field/src/modules/phone-field/types/country.ts",
2311
2297
  "line": 17,
2312
- "character": 2,
2313
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/types/country.ts#L17"
2298
+ "character": 2
2314
2299
  }
2315
2300
  ],
2316
2301
  "type": {
@@ -2325,16 +2310,11 @@
2325
2310
  "kindString": "Property",
2326
2311
  "flags": {},
2327
2312
  "comment": {
2328
- "summary": [
2329
- {
2330
- "kind": "text",
2331
- "text": "The country's\n[International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry code."
2332
- }
2333
- ],
2334
- "blockTags": [
2313
+ "shortText": "The country's\n[International Organization for Standardization Alpha 2](https://www.nationsonline.org/oneworld/country_code_list.htm)\ncountry code.",
2314
+ "tags": [
2335
2315
  {
2336
- "tag": "@required",
2337
- "content": []
2316
+ "tag": "required",
2317
+ "text": "\n"
2338
2318
  }
2339
2319
  ]
2340
2320
  },
@@ -2342,8 +2322,7 @@
2342
2322
  {
2343
2323
  "fileName": "projects/phone-field/src/modules/phone-field/types/country.ts",
2344
2324
  "line": 8,
2345
- "character": 2,
2346
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/types/country.ts#L8"
2325
+ "character": 2
2347
2326
  }
2348
2327
  ],
2349
2328
  "type": {
@@ -2360,19 +2339,13 @@
2360
2339
  "isOptional": true
2361
2340
  },
2362
2341
  "comment": {
2363
- "summary": [
2364
- {
2365
- "kind": "text",
2366
- "text": "The name of the country."
2367
- }
2368
- ]
2342
+ "shortText": "The name of the country."
2369
2343
  },
2370
2344
  "sources": [
2371
2345
  {
2372
2346
  "fileName": "projects/phone-field/src/modules/phone-field/types/country.ts",
2373
2347
  "line": 21,
2374
- "character": 2,
2375
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/types/country.ts#L21"
2348
+ "character": 2
2376
2349
  }
2377
2350
  ],
2378
2351
  "type": {
@@ -2384,6 +2357,7 @@
2384
2357
  "groups": [
2385
2358
  {
2386
2359
  "title": "Properties",
2360
+ "kind": 1024,
2387
2361
  "children": [
2388
2362
  158,
2389
2363
  159,
@@ -2396,8 +2370,7 @@
2396
2370
  {
2397
2371
  "fileName": "projects/phone-field/src/modules/phone-field/types/country.ts",
2398
2372
  "line": 1,
2399
- "character": 17,
2400
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/types/country.ts#L1"
2373
+ "character": 17
2401
2374
  }
2402
2375
  ]
2403
2376
  },
@@ -2408,43 +2381,13 @@
2408
2381
  "kindString": "Type alias",
2409
2382
  "flags": {},
2410
2383
  "comment": {
2411
- "summary": [
2412
- {
2413
- "kind": "text",
2414
- "text": "Represents the format for validated phone numbers. "
2415
- },
2416
- {
2417
- "kind": "code",
2418
- "text": "`default`"
2419
- },
2420
- {
2421
- "kind": "text",
2422
- "text": " returns the national format for the\ndefault country, "
2423
- },
2424
- {
2425
- "kind": "code",
2426
- "text": "`national`"
2427
- },
2428
- {
2429
- "kind": "text",
2430
- "text": " returns the national format for all countries, and "
2431
- },
2432
- {
2433
- "kind": "code",
2434
- "text": "`international`"
2435
- },
2436
- {
2437
- "kind": "text",
2438
- "text": "\nreturns the international format for all countries."
2439
- }
2440
- ]
2384
+ "shortText": "Represents the format for validated phone numbers. `default` returns the national format for the\ndefault country, `national` returns the national format for all countries, and `international`\nreturns the international format for all countries."
2441
2385
  },
2442
2386
  "sources": [
2443
2387
  {
2444
2388
  "fileName": "projects/phone-field/src/modules/phone-field/types/number-return-format.ts",
2445
2389
  "line": 6,
2446
- "character": 12,
2447
- "url": "https://github.com/blackbaud/skyux/blob/84f2f13/libs/components/phone-field/src/lib/modules/phone-field/types/number-return-format.ts#L6"
2390
+ "character": 12
2448
2391
  }
2449
2392
  ],
2450
2393
  "type": {
@@ -2469,6 +2412,7 @@
2469
2412
  "groups": [
2470
2413
  {
2471
2414
  "title": "Modules",
2415
+ "kind": 2,
2472
2416
  "children": [
2473
2417
  1,
2474
2418
  2