@seniorsistemas/angular-components 16.6.4 → 16.7.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.
Files changed (48) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +822 -55
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/country-phone-picker/country-phone-picker.component.d.ts +47 -0
  6. package/components/country-phone-picker/country-phone-picker.module.d.ts +2 -0
  7. package/components/country-phone-picker/country-phone-picker.service.d.ts +10 -0
  8. package/components/country-phone-picker/index.d.ts +3 -0
  9. package/components/country-phone-picker/models/country-phone-data.d.ts +5 -0
  10. package/components/country-phone-picker/models/index.d.ts +3 -0
  11. package/components/country-phone-picker/models/ordination.d.ts +5 -0
  12. package/components/country-phone-picker/models/phone-selection-data.d.ts +6 -0
  13. package/components/country-phone-picker/resources/countries.d.ts +2 -0
  14. package/esm2015/components/country-phone-picker/country-phone-picker.component.js +231 -0
  15. package/esm2015/components/country-phone-picker/country-phone-picker.module.js +25 -0
  16. package/esm2015/components/country-phone-picker/country-phone-picker.service.js +43 -0
  17. package/esm2015/components/country-phone-picker/index.js +4 -0
  18. package/esm2015/components/country-phone-picker/models/country-phone-data.js +1 -0
  19. package/esm2015/components/country-phone-picker/models/index.js +2 -0
  20. package/esm2015/components/country-phone-picker/models/ordination.js +7 -0
  21. package/esm2015/components/country-phone-picker/models/phone-selection-data.js +1 -0
  22. package/esm2015/components/country-phone-picker/resources/countries.js +227 -0
  23. package/esm2015/components/file-upload/file-upload.module.js +2 -2
  24. package/esm2015/locale/fallback.js +227 -0
  25. package/esm2015/public-api.js +3 -1
  26. package/esm2015/seniorsistemas-angular-components.js +53 -52
  27. package/esm5/components/country-phone-picker/country-phone-picker.component.js +250 -0
  28. package/esm5/components/country-phone-picker/country-phone-picker.module.js +28 -0
  29. package/esm5/components/country-phone-picker/country-phone-picker.service.js +46 -0
  30. package/esm5/components/country-phone-picker/index.js +4 -0
  31. package/esm5/components/country-phone-picker/models/country-phone-data.js +1 -0
  32. package/esm5/components/country-phone-picker/models/index.js +2 -0
  33. package/esm5/components/country-phone-picker/models/ordination.js +7 -0
  34. package/esm5/components/country-phone-picker/models/phone-selection-data.js +1 -0
  35. package/esm5/components/country-phone-picker/resources/countries.js +227 -0
  36. package/esm5/components/file-upload/file-upload.module.js +2 -2
  37. package/esm5/locale/fallback.js +227 -0
  38. package/esm5/public-api.js +3 -1
  39. package/esm5/seniorsistemas-angular-components.js +53 -52
  40. package/fesm2015/seniorsistemas-angular-components.js +743 -4
  41. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  42. package/fesm5/seniorsistemas-angular-components.js +769 -5
  43. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  44. package/locale/fallback.d.ts +1 -0
  45. package/package.json +5 -1
  46. package/public-api.d.ts +2 -0
  47. package/seniorsistemas-angular-components.d.ts +52 -51
  48. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1,5 +1,5 @@
1
- import { __decorate, __spread, __assign, __extends, __rest, __values, __param, __awaiter, __generator, __read } from 'tslib';
2
- import { EventEmitter, Input, Output, HostListener, Component, NgModule, HostBinding, ViewChild, Renderer2, Directive, Injectable, Pipe, forwardRef, ViewEncapsulation, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, TemplateRef, ViewContainerRef, ChangeDetectorRef, InjectionToken, Inject, Optional, ContentChild, ContentChildren } from '@angular/core';
1
+ import { __decorate, __spread, __assign, __values, __extends, __rest, __param, __awaiter, __generator, __read } from 'tslib';
2
+ import { EventEmitter, Input, Output, HostListener, Component, NgModule, HostBinding, ViewChild, Renderer2, Directive, Injectable, ElementRef, Pipe, forwardRef, ViewEncapsulation, ApplicationRef, ComponentFactoryResolver, Injector, TemplateRef, ViewContainerRef, ChangeDetectorRef, InjectionToken, Inject, Optional, ContentChild, ContentChildren } from '@angular/core';
3
3
  import { CommonModule } from '@angular/common';
4
4
  import { RouterModule, NavigationEnd, PRIMARY_OUTLET, ActivatedRoute, Router } from '@angular/router';
5
5
  import { BreadcrumbModule as BreadcrumbModule$1 } from 'primeng/breadcrumb';
@@ -10,7 +10,9 @@ import { TooltipModule as TooltipModule$1 } from 'primeng/tooltip';
10
10
  import { DomHandler } from 'primeng/dom';
11
11
  import { Calendar, CalendarModule } from 'primeng/calendar';
12
12
  import { trigger, state, style as style$7, transition, animate, group, query, animateChild } from '@angular/animations';
13
- import { FormsModule, ReactiveFormsModule, NG_VALUE_ACCESSOR, FormControl, FormGroup, NG_VALIDATORS, Validators, FormArray, ControlContainer } from '@angular/forms';
13
+ import { FormsModule, ReactiveFormsModule, FormControl, NG_VALUE_ACCESSOR, FormGroup, NG_VALIDATORS, Validators, FormArray, ControlContainer } from '@angular/forms';
14
+ import { TranslateService, TranslateModule } from '@ngx-translate/core';
15
+ import { NgxMaskModule } from 'ngx-mask';
14
16
  import { HttpClient, HttpEventType, HttpClientModule } from '@angular/common/http';
15
17
  import { Hotkey, HotkeysService, HotkeyModule } from 'angular2-hotkeys';
16
18
  import BigNumber, { BigNumber as BigNumber$1 } from 'bignumber.js';
@@ -37,7 +39,6 @@ import { PanelModule } from 'primeng/panel';
37
39
  import { RadioButtonModule } from 'primeng/radiobutton';
38
40
  import { ProgressBarModule as ProgressBarModule$1 } from 'primeng/progressbar';
39
41
  import { DomSanitizer } from '@angular/platform-browser';
40
- import { TranslateService, TranslateModule } from '@ngx-translate/core';
41
42
  import Cropper from 'cropperjs';
42
43
  import * as elementResizeDetectorMaker_ from 'element-resize-detector';
43
44
  import { FocusTrapFactory, A11yModule } from '@angular/cdk/a11y';
@@ -1088,6 +1089,542 @@ var ControlErrorsModule = /** @class */ (function () {
1088
1089
  return ControlErrorsModule;
1089
1090
  }());
1090
1091
 
1092
+ var countries = [
1093
+ { id: "br", ddi: "+55", mask: ["(00) 0000-00009", "(00) 00000-0000"] },
1094
+ { id: "us", ddi: "+1", mask: "000-0000" },
1095
+ { id: "co", ddi: "+57", mask: "000 0000000" },
1096
+ { id: "ar", ddi: "+54", mask: "000 00-0000-0000" },
1097
+ { id: "cl", ddi: "+56", mask: "(0) 0000-0000" },
1098
+ { id: "py", ddi: "+595", mask: "0000 000000" },
1099
+ { id: "uy", ddi: "+598", mask: "000 000 000" },
1100
+ { id: "cn", ddi: "+86", mask: "000 0000 0000" },
1101
+ { id: "ca", ddi: "+1", mask: "000-0000" },
1102
+ { id: "as", ddi: "+1684", mask: "000-0000" },
1103
+ { id: "ai", ddi: "+1264", mask: "000-0000" },
1104
+ { id: "ag", ddi: "+1268", mask: "000-0000" },
1105
+ { id: "bs", ddi: "+1242", mask: "000-0000" },
1106
+ { id: "bb", ddi: "+1246", mask: "000-0000" },
1107
+ { id: "bm", ddi: "+1441", mask: "000-0000" },
1108
+ { id: "vg", ddi: "+1284", mask: "000-0000" },
1109
+ { id: "ky", ddi: "+1345", mask: "000-0000" },
1110
+ { id: "dm", ddi: "+1767", mask: "000-0000" },
1111
+ { id: "do", ddi: "+1809", mask: "000-0000" },
1112
+ { id: "gd", ddi: "+1473", mask: "000-0000" },
1113
+ { id: "gu", ddi: "+1671", mask: "000-0000" },
1114
+ { id: "jm", ddi: "+1876", mask: "000-0000" },
1115
+ { id: "ms", ddi: "+1664", mask: "000-0000" },
1116
+ { id: "mp", ddi: "+1670", mask: "000-0000" },
1117
+ { id: "pr", ddi: "+1", mask: "000-0000" },
1118
+ { id: "kn", ddi: "+1869", mask: "000-0000" },
1119
+ { id: "lc", ddi: "+1758", mask: "000-0000" },
1120
+ { id: "vc", ddi: "+1784", mask: "000-0000" },
1121
+ { id: "tt", ddi: "+1868", mask: "000-0000" },
1122
+ { id: "tc", ddi: "+1649", mask: "000-0000" },
1123
+ { id: "fi", ddi: "+358", mask: "000 0000000" },
1124
+ { id: "rs", ddi: "+381", mask: "000 0000000" },
1125
+ { id: "zm", ddi: "+260", mask: "000 0000000" },
1126
+ { id: "af", ddi: "+93", mask: "000 000 0000" },
1127
+ { id: "al", ddi: "+355", mask: "000 000 0000" },
1128
+ { id: "hr", ddi: "+385", mask: "000 000 0000" },
1129
+ { id: "ec", ddi: "+593", mask: "000 000 0000" },
1130
+ { id: "et", ddi: "+251", mask: "000 000 0000" },
1131
+ { id: "gh", ddi: "+233", mask: "000 000 0000" },
1132
+ { id: "gr", ddi: "+30", mask: "000 000 0000" },
1133
+ { id: "ie", ddi: "+353", mask: "000 000 0000" },
1134
+ { id: "it", ddi: "+39", mask: "000 000 0000" },
1135
+ { id: "lr", ddi: "+231", mask: "000 000 0000" },
1136
+ { id: "na", ddi: "+264", mask: "000 000 0000" },
1137
+ { id: "nz", ddi: "+64", mask: "000 000 0000" },
1138
+ { id: "sa", ddi: "+966", mask: "000 000 0000" },
1139
+ { id: "za", ddi: "+27", mask: "000 000 0000" },
1140
+ { id: "lk", ddi: "+94", mask: "000 000 0000" },
1141
+ { id: "sd", ddi: "+249", mask: "000 000 0000" },
1142
+ { id: "th", ddi: "+66", mask: "000 000 0000" },
1143
+ { id: "ua", ddi: "+380", mask: "000 000 0000" },
1144
+ { id: "ae", ddi: "+971", mask: "000 000 0000" },
1145
+ { id: "va", ddi: "+39", mask: "000 000 0000" },
1146
+ { id: "zw", ddi: "+263", mask: "000 000 0000" },
1147
+ { id: "dz", ddi: "+213", mask: "0000 00 00 00" },
1148
+ { id: "be", ddi: "+32", mask: "0000 00 00 00" },
1149
+ { id: "yt", ddi: "+262", mask: "0000 00 00 00" },
1150
+ { id: "bl", ddi: "+590", mask: "0000 00 00 00" },
1151
+ { id: "mf", ddi: "+1599", mask: "0000 00 00 00" },
1152
+ { id: "ad", ddi: "+376", mask: "000-000" },
1153
+ { id: "ao", ddi: "+244", mask: "000 000 000" },
1154
+ { id: "ba", ddi: "+387", mask: "000 000 000" },
1155
+ { id: "bg", ddi: "+359", mask: "000 000 000" },
1156
+ { id: "kh", ddi: "+855", mask: "000 000 000" },
1157
+ { id: "cz", ddi: "+420", mask: "000 000 000" },
1158
+ { id: "gq", ddi: "+240", mask: "000 000 000" },
1159
+ { id: "gw", ddi: "+245", mask: "000 000 000" },
1160
+ { id: "li", ddi: "+423", mask: "000 000 000" },
1161
+ { id: "lu", ddi: "+352", mask: "000 000 000" },
1162
+ { id: "mk", ddi: "+389", mask: "000 000 000" },
1163
+ { id: "me", ddi: "+382", mask: "000 000 000" },
1164
+ { id: "pe", ddi: "+51", mask: "000 000 000" },
1165
+ { id: "pl", ddi: "+48", mask: "000 000 000" },
1166
+ { id: "pt", ddi: "+351", mask: "000 000 000" },
1167
+ { id: "si", ddi: "+386", mask: "000 000 000" },
1168
+ { id: "am", ddi: "+374", mask: "000 000000" },
1169
+ { id: "aw", ddi: "+297", mask: "000 0000" },
1170
+ { id: "bn", ddi: "+673", mask: "000 0000" },
1171
+ { id: "fj", ddi: "+679", mask: "000 0000" },
1172
+ { id: "gm", ddi: "+220", mask: "000 0000" },
1173
+ { id: "gy", ddi: "+592", mask: "000 0000" },
1174
+ { id: "is", ddi: "+354", mask: "000 0000" },
1175
+ { id: "fm", ddi: "+691", mask: "000 0000" },
1176
+ { id: "nr", ddi: "+674", mask: "000 0000" },
1177
+ { id: "nu", ddi: "+683", mask: "000 0000" },
1178
+ { id: "pw", ddi: "+680", mask: "000 0000" },
1179
+ { id: "st", ddi: "+239", mask: "000 0000" },
1180
+ { id: "to", ddi: "+676", mask: "000 0000" },
1181
+ { id: "vu", ddi: "+678", mask: "000 0000" },
1182
+ { id: "fk", ddi: "+500", mask: "00000" },
1183
+ { id: "fo", ddi: "+298", mask: "00000" },
1184
+ { id: "sh", ddi: "+290", mask: "00000" },
1185
+ { id: "au", ddi: "+61", mask: "0000 000 000" },
1186
+ { id: "cx", ddi: "+61", mask: "0000 000 000" },
1187
+ { id: "cc", ddi: "+61", mask: "0000 000 000" },
1188
+ { id: "cd", ddi: "+243", mask: "0000 000 000" },
1189
+ { id: "kg", ddi: "+996", mask: "0000 000 000" },
1190
+ { id: "ro", ddi: "+40", mask: "0000 000 000" },
1191
+ { id: "rw", ddi: "+250", mask: "0000 000 000" },
1192
+ { id: "sk", ddi: "+421", mask: "0000 000 000" },
1193
+ { id: "sy", ddi: "+963", mask: "0000 000 000" },
1194
+ { id: "tw", ddi: "+886", mask: "0000 000 000" },
1195
+ { id: "tz", ddi: "+255", mask: "0000 000 000" },
1196
+ { id: "ye", ddi: "+967", mask: "0000 000 000" },
1197
+ { id: "at", ddi: "+43", mask: "0000 000000" },
1198
+ { id: "ke", ddi: "+254", mask: "0000 000000" },
1199
+ { id: "ug", ddi: "+256", mask: "0000 000000" },
1200
+ { id: "az", ddi: "+994", mask: "000 000 00 00" },
1201
+ { id: "ch", ddi: "+41", mask: "000 000 00 00" },
1202
+ { id: "vn", ddi: "+84", mask: "000 000 00 00" },
1203
+ { id: "bh", ddi: "+973", mask: "0000 0000" },
1204
+ { id: "cr", ddi: "+506", mask: "0000 0000" },
1205
+ { id: "sv", ddi: "+503", mask: "0000 0000" },
1206
+ { id: "ee", ddi: "+372", mask: "0000 0000" },
1207
+ { id: "sz", ddi: "+268", mask: "0000 0000" },
1208
+ { id: "gt", ddi: "+502", mask: "0000 0000" },
1209
+ { id: "hk", ddi: "+852", mask: "0000 0000" },
1210
+ { id: "ls", ddi: "+266", mask: "0000 0000" },
1211
+ { id: "mo", ddi: "+853", mask: "0000 0000" },
1212
+ { id: "mt", ddi: "+356", mask: "0000 0000" },
1213
+ { id: "mu", ddi: "+230", mask: "0000 0000" },
1214
+ { id: "mn", ddi: "+976", mask: "0000 0000" },
1215
+ { id: "ni", ddi: "+505", mask: "0000 0000" },
1216
+ { id: "om", ddi: "+968", mask: "0000 0000" },
1217
+ { id: "pg", ddi: "+675", mask: "0000 0000" },
1218
+ { id: "qa", ddi: "+974", mask: "0000 0000" },
1219
+ { id: "sg", ddi: "+65", mask: "0000 0000" },
1220
+ { id: "tl", ddi: "+670", mask: "0000 0000" },
1221
+ { id: "bd", ddi: "+880", mask: "00000 000000" },
1222
+ { id: "im", ddi: "+44", mask: "00000 000000" },
1223
+ { id: "by", ddi: "+375", mask: "0 000 000-00-00" },
1224
+ { id: "bz", ddi: "+501", mask: "000-0000" },
1225
+ { id: "mv", ddi: "+960", mask: "000-0000" },
1226
+ { id: "mh", ddi: "+692", mask: "000-0000" },
1227
+ { id: "sr", ddi: "+597", mask: "000-0000" },
1228
+ { id: "bj", ddi: "+229", mask: "00 00 00 00" },
1229
+ { id: "bt", ddi: "+975", mask: "00 00 00 00" },
1230
+ { id: "bf", ddi: "+226", mask: "00 00 00 00" },
1231
+ { id: "bi", ddi: "+257", mask: "00 00 00 00" },
1232
+ { id: "cf", ddi: "+236", mask: "00 00 00 00" },
1233
+ { id: "td", ddi: "+235", mask: "00 00 00 00" },
1234
+ { id: "ci", ddi: "+225", mask: "00 00 00 00" },
1235
+ { id: "dk", ddi: "+45", mask: "00 00 00 00" },
1236
+ { id: "dj", ddi: "+253", mask: "00 00 00 00" },
1237
+ { id: "fr", ddi: "+33", mask: "00 00 00 00" },
1238
+ { id: "pf", ddi: "+689", mask: "00 00 00 00" },
1239
+ { id: "ga", ddi: "+241", mask: "00 00 00 00" },
1240
+ { id: "ml", ddi: "+223", mask: "00 00 00 00" },
1241
+ { id: "mr", ddi: "+222", mask: "00 00 00 00" },
1242
+ { id: "ne", ddi: "+227", mask: "00 00 00 00" },
1243
+ { id: "sm", ddi: "+378", mask: "00 00 00 00" },
1244
+ { id: "tg", ddi: "+228", mask: "00 00 00 00" },
1245
+ { id: "bo", ddi: "+591", mask: "00000000" },
1246
+ { id: "gi", ddi: "+350", mask: "00000000" },
1247
+ { id: "ki", ddi: "+686", mask: "00000000" },
1248
+ { id: "tv", ddi: "+688", mask: "00000000" },
1249
+ { id: "bw", ddi: "+267", mask: "00 000 000" },
1250
+ { id: "er", ddi: "+291", mask: "00 000 000" },
1251
+ { id: "lv", ddi: "+371", mask: "00 000 000" },
1252
+ { id: "lb", ddi: "+961", mask: "00 000 000" },
1253
+ { id: "tn", ddi: "+216", mask: "00 000 000" },
1254
+ { id: "cm", ddi: "+237", mask: "0 00 00 00 00" },
1255
+ { id: "cv", ddi: "+238", mask: "000 00 00" },
1256
+ { id: "km", ddi: "+269", mask: "000 00 00" },
1257
+ { id: "pm", ddi: "+508", mask: "000 00 00" },
1258
+ { id: "cg", ddi: "+242", mask: "00 000 0000" },
1259
+ { id: "mz", ddi: "+258", mask: "00 000 0000" },
1260
+ { id: "mm", ddi: "+95", mask: "00 000 0000" },
1261
+ { id: "ck", ddi: "+682", mask: "00 000" },
1262
+ { id: "cu", ddi: "+53", mask: "00 000000" },
1263
+ { id: "cy", ddi: "+357", mask: "00 000000" },
1264
+ { id: "eg", ddi: "+20", mask: "0000 000 0000" },
1265
+ { id: "ir", ddi: "+98", mask: "0000 000 0000" },
1266
+ { id: "iq", ddi: "+964", mask: "0000 000 0000" },
1267
+ { id: "ng", ddi: "+234", mask: "0000 000 0000" },
1268
+ { id: "kp", ddi: "+850", mask: "0000 000 0000" },
1269
+ { id: "ph", ddi: "+63", mask: "0000 000 0000" },
1270
+ { id: "ge", ddi: "+995", mask: "000 00 00 00" },
1271
+ { id: "gn", ddi: "+224", mask: "000 00 00 00" },
1272
+ { id: "es", ddi: "+34", mask: "000 00 00 00" },
1273
+ { id: "de", ddi: "+49", mask: "00000 0000000" },
1274
+ { id: "gl", ddi: "+299", mask: "00 00 00" },
1275
+ { id: "wf", ddi: "+681", mask: "00 00 00" },
1276
+ { id: "ht", ddi: "+509", mask: "00 00 0000" },
1277
+ { id: "hn", ddi: "+504", mask: "0000-0000" },
1278
+ { id: "pa", ddi: "+507", mask: "0000-0000" },
1279
+ { id: "hu", ddi: "+36", mask: "(00) 000 0000" },
1280
+ { id: "in", ddi: "+91", mask: "000000 00000" },
1281
+ { id: "id", ddi: "+62", mask: "0000-000-000" },
1282
+ { id: "il", ddi: "+972", mask: "000-000-0000" },
1283
+ { id: "jp", ddi: "+81", mask: "000-000-0000" },
1284
+ { id: "jo", ddi: "+962", mask: "00 0000 0000" },
1285
+ { id: "kz", ddi: "+7", mask: "0 (000) 000-0000" },
1286
+ { id: "kw", ddi: "+965", mask: "000 00000" },
1287
+ { id: "la", ddi: "+856", mask: "000 00 000 000" },
1288
+ { id: "ly", ddi: "+218", mask: "000-0000000" },
1289
+ { id: "lt", ddi: "+370", mask: "(0-000) 00000" },
1290
+ { id: "np", ddi: "+977", mask: "(0-000) 00000" },
1291
+ { id: "mg", ddi: "+261", mask: "000 00 000 00" },
1292
+ { id: "mw", ddi: "+265", mask: "000 00 000 00" },
1293
+ { id: "my", ddi: "+60", mask: "000-000 0000" },
1294
+ { id: "mx", ddi: "+52", mask: "000 000 000 0000" },
1295
+ { id: "md", ddi: "+373", mask: "0000 00 000" },
1296
+ { id: "mc", ddi: "+377", mask: "00 00 00 00 00" },
1297
+ { id: "ma", ddi: "+212", mask: "0000-000000" },
1298
+ { id: "nl", ddi: "+31", mask: "00 00000000" },
1299
+ { id: "nc", ddi: "+687", mask: "00.00.00" },
1300
+ { id: "no", ddi: "+47", mask: "000 00 000" },
1301
+ { id: "pk", ddi: "+92", mask: "0000 0000000" },
1302
+ { id: "ru", ddi: "+7", mask: "0 (000) 000-00-00" },
1303
+ { id: "ws", ddi: "+685", mask: "00 00000" },
1304
+ { id: "sb", ddi: "+677", mask: "00 00000" },
1305
+ { id: "sn", ddi: "+221", mask: "00 000 00 00" },
1306
+ { id: "sc", ddi: "+248", mask: "0 000 000" },
1307
+ { id: "sl", ddi: "+232", mask: "(000) 000000" },
1308
+ { id: "so", ddi: "+252", mask: "0 0000000" },
1309
+ { id: "kr", ddi: "+82", mask: "000-0000-0000" },
1310
+ { id: "se", ddi: "+46", mask: "000-000 00 00" },
1311
+ { id: "tj", ddi: "+992", mask: "000 00 0000" },
1312
+ { id: "tk", ddi: "+690", mask: "0000" },
1313
+ { id: "tr", ddi: "+90", mask: "0000 000 00 00" },
1314
+ { id: "tm", ddi: "+993", mask: "0 00 000000" },
1315
+ { id: "uz", ddi: "+998", mask: "0 00 000 00 00" },
1316
+ { id: "ve", ddi: "+58", mask: "0000-0000000" },
1317
+ ];
1318
+
1319
+ var Ordination;
1320
+ (function (Ordination) {
1321
+ Ordination["NO"] = "no";
1322
+ Ordination["AZ"] = "az";
1323
+ Ordination["ZA"] = "za";
1324
+ })(Ordination || (Ordination = {}));
1325
+
1326
+ var CountryPhonePickerService = /** @class */ (function () {
1327
+ function CountryPhonePickerService(translate) {
1328
+ this.translate = translate;
1329
+ }
1330
+ CountryPhonePickerService.prototype.getCountries = function (ordination) {
1331
+ switch (ordination) {
1332
+ case Ordination.AZ:
1333
+ return this.sortAlphabetically();
1334
+ case Ordination.ZA:
1335
+ return this.sortAlphabeticallyDescending();
1336
+ case Ordination.NO:
1337
+ default:
1338
+ return countries;
1339
+ }
1340
+ };
1341
+ CountryPhonePickerService.prototype.sortAlphabetically = function () {
1342
+ var _this = this;
1343
+ return countries.sort(function (a, b) {
1344
+ var aName = _this.translate.instant("platform.angular_components_" + a.id);
1345
+ var bName = _this.translate.instant("platform.angular_components_" + b.id);
1346
+ return aName.localeCompare(bName);
1347
+ });
1348
+ };
1349
+ CountryPhonePickerService.prototype.sortAlphabeticallyDescending = function () {
1350
+ var _this = this;
1351
+ return countries.sort(function (a, b) {
1352
+ var aName = _this.translate.instant("platform.angular_components_" + a.id);
1353
+ var bName = _this.translate.instant("platform.angular_components_" + b.id);
1354
+ return bName.localeCompare(aName);
1355
+ });
1356
+ };
1357
+ CountryPhonePickerService.ctorParameters = function () { return [
1358
+ { type: TranslateService }
1359
+ ]; };
1360
+ CountryPhonePickerService = __decorate([
1361
+ Injectable()
1362
+ ], CountryPhonePickerService);
1363
+ return CountryPhonePickerService;
1364
+ }());
1365
+
1366
+ var CountryPhonePickerComponent = /** @class */ (function () {
1367
+ function CountryPhonePickerComponent(countryPhonePickerService, translate, eRef) {
1368
+ var _this = this;
1369
+ this.countryPhonePickerService = countryPhonePickerService;
1370
+ this.translate = translate;
1371
+ this.eRef = eRef;
1372
+ this.currentItemIndex = 0;
1373
+ this.phone = new FormControl("");
1374
+ this.filter = new FormControl("");
1375
+ this._open = false;
1376
+ this.offsetTop = 0;
1377
+ this.ordination = Ordination.NO;
1378
+ this.selected = new EventEmitter();
1379
+ this.tabindex = 0;
1380
+ this._filterCountries = function (value) {
1381
+ if (!value) {
1382
+ _this.filteredCountriesList = _this.countriesList;
1383
+ }
1384
+ else {
1385
+ _this.filteredCountriesList = _this.countriesList.filter(function (country) {
1386
+ var countryName = _this.translate.instant("platform.angular_components.country_name_" + country.id);
1387
+ return countryName.toLowerCase().includes(value.toLowerCase());
1388
+ });
1389
+ }
1390
+ };
1391
+ }
1392
+ CountryPhonePickerComponent_1 = CountryPhonePickerComponent;
1393
+ CountryPhonePickerComponent.prototype.writeValue = function (value) {
1394
+ this.value = value;
1395
+ };
1396
+ CountryPhonePickerComponent.prototype.registerOnChange = function (onChange) {
1397
+ this.onChange = onChange;
1398
+ };
1399
+ CountryPhonePickerComponent.prototype.registerOnTouched = function (onTouched) {
1400
+ this.onTouched = onTouched;
1401
+ };
1402
+ CountryPhonePickerComponent.prototype.onClickout = function (event) {
1403
+ if (!this.eRef.nativeElement.contains(event.target)) {
1404
+ this.open = false;
1405
+ }
1406
+ };
1407
+ CountryPhonePickerComponent.prototype.ngOnInit = function () {
1408
+ var _this = this;
1409
+ var _a;
1410
+ var countries = this.countryPhonePickerService.getCountries(this.ordination);
1411
+ this.filter.valueChanges.subscribe(this._filterCountries);
1412
+ if ((_a = this.countries) === null || _a === void 0 ? void 0 : _a.length) {
1413
+ this.countriesList = countries.filter(function (country) { return _this.countries.includes(country.id); });
1414
+ }
1415
+ else {
1416
+ this.countriesList = countries;
1417
+ }
1418
+ this.filteredCountriesList = this.countriesList;
1419
+ this.selectedItem = this._getSelectedCountryDefault();
1420
+ this.phone.valueChanges.subscribe(function (value) {
1421
+ _this.value = {
1422
+ id: _this.selectedItem.id,
1423
+ ddi: _this.selectedItem.ddi,
1424
+ rawValue: value !== null && value !== void 0 ? value : "",
1425
+ value: value ? "" + _this._applyMask(value) : "",
1426
+ };
1427
+ _this.onChange(_this.value);
1428
+ });
1429
+ };
1430
+ CountryPhonePickerComponent.prototype.onKeydown = function (event) {
1431
+ if (event.key === "Enter" || event.key === " ") {
1432
+ if (this.open) {
1433
+ this.selectedItem = this.countriesList[this.currentItemIndex];
1434
+ this.selected.emit(this.selectedItem);
1435
+ }
1436
+ this.open = !this.open;
1437
+ }
1438
+ else if (event.key === "Escape") {
1439
+ this.open = false;
1440
+ }
1441
+ else if (event.key === "ArrowDown") {
1442
+ this._moveToDown();
1443
+ }
1444
+ else if (event.key === "ArrowUp") {
1445
+ this._moveToUp();
1446
+ }
1447
+ };
1448
+ Object.defineProperty(CountryPhonePickerComponent.prototype, "open", {
1449
+ get: function () {
1450
+ return this._open;
1451
+ },
1452
+ set: function (open) {
1453
+ this._open = open;
1454
+ if (!open) {
1455
+ this.phoneInput.nativeElement.focus();
1456
+ }
1457
+ },
1458
+ enumerable: true,
1459
+ configurable: true
1460
+ });
1461
+ CountryPhonePickerComponent.prototype.onBlur = function () {
1462
+ this.open = false;
1463
+ this.currentItemIndex = this.countriesList.indexOf(this.selectedItem);
1464
+ };
1465
+ CountryPhonePickerComponent.prototype.onSelectItem = function (country) {
1466
+ this.open = false;
1467
+ this.selectedItem = country;
1468
+ this.phone.setValue("");
1469
+ this.currentItemIndex = this.countriesList.indexOf(this.selectedItem);
1470
+ this.selected.emit(this.selectedItem);
1471
+ };
1472
+ CountryPhonePickerComponent.prototype.onCleanFilter = function () {
1473
+ this.filter.setValue("");
1474
+ };
1475
+ CountryPhonePickerComponent.prototype.onPhoneInputFocus = function () {
1476
+ this.open = false;
1477
+ };
1478
+ CountryPhonePickerComponent.prototype.getMask = function () {
1479
+ var mask = this.selectedItem.mask;
1480
+ if (Array.isArray(mask)) {
1481
+ return !this.value || this.value.value.length <= mask[0].length - 1
1482
+ ? mask[0] // fixo
1483
+ : mask[1]; // celular
1484
+ }
1485
+ else {
1486
+ return mask;
1487
+ }
1488
+ };
1489
+ CountryPhonePickerComponent.prototype.getPlaceholder = function () {
1490
+ return this.getMask().replace(/9/g, "");
1491
+ };
1492
+ CountryPhonePickerComponent.prototype._getSelectedCountryDefault = function () {
1493
+ if (!this.countriesList.length) {
1494
+ throw new Error("No country loaded");
1495
+ }
1496
+ var filteredByBr = this.countriesList.filter(function (country) { return country.id === "br"; });
1497
+ return filteredByBr.length ? filteredByBr[0] : this.countriesList[0];
1498
+ };
1499
+ CountryPhonePickerComponent.prototype._moveToUp = function () {
1500
+ if (this.currentItemIndex == 0) {
1501
+ return;
1502
+ }
1503
+ this.currentItemIndex--;
1504
+ var selectList = document.querySelector(".select-list");
1505
+ var item = selectList.children[this.currentItemIndex];
1506
+ if (item.offsetTop - selectList.offsetTop <= this.offsetTop) {
1507
+ this.offsetTop -= 45;
1508
+ selectList.scrollTo(0, this.offsetTop);
1509
+ }
1510
+ };
1511
+ CountryPhonePickerComponent.prototype._moveToDown = function () {
1512
+ if (this.currentItemIndex >= this.countriesList.length - 1) {
1513
+ return;
1514
+ }
1515
+ this.currentItemIndex++;
1516
+ var selectList = document.querySelector(".select-list");
1517
+ var item = selectList.children[this.currentItemIndex];
1518
+ if (item.offsetTop - selectList.offsetTop > this.offsetTop + 180) {
1519
+ this.offsetTop += 45;
1520
+ selectList.scrollTo(0, this.offsetTop);
1521
+ }
1522
+ };
1523
+ CountryPhonePickerComponent.prototype._applyMask = function (value) {
1524
+ var e_1, _a;
1525
+ var mask;
1526
+ if (Array.isArray(this.selectedItem.mask)) {
1527
+ var rawMask = this.selectedItem.mask[0].replace(/[^0]/g, "");
1528
+ mask = value.length <= rawMask.length
1529
+ ? this.selectedItem.mask[0] + "\0"
1530
+ : this.selectedItem.mask[1] + "\0";
1531
+ }
1532
+ else {
1533
+ mask = this.selectedItem.mask;
1534
+ }
1535
+ var tokens = "";
1536
+ var replace = "";
1537
+ var acumulador = 0;
1538
+ var contador = 0;
1539
+ try {
1540
+ for (var mask_1 = __values(mask), mask_1_1 = mask_1.next(); !mask_1_1.done; mask_1_1 = mask_1.next()) {
1541
+ var token = mask_1_1.value;
1542
+ if (isNaN(parseInt(token))) {
1543
+ if (acumulador) {
1544
+ tokens += "(\\d{" + acumulador + "})";
1545
+ replace += "$" + ++contador;
1546
+ acumulador = 0;
1547
+ }
1548
+ if (token !== "\0") {
1549
+ replace += token;
1550
+ }
1551
+ }
1552
+ else {
1553
+ acumulador++;
1554
+ }
1555
+ }
1556
+ }
1557
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
1558
+ finally {
1559
+ try {
1560
+ if (mask_1_1 && !mask_1_1.done && (_a = mask_1.return)) _a.call(mask_1);
1561
+ }
1562
+ finally { if (e_1) throw e_1.error; }
1563
+ }
1564
+ tokens = "^" + tokens + "*";
1565
+ return this.phone.value.replace(new RegExp(tokens), replace);
1566
+ };
1567
+ var CountryPhonePickerComponent_1;
1568
+ CountryPhonePickerComponent.ctorParameters = function () { return [
1569
+ { type: CountryPhonePickerService },
1570
+ { type: TranslateService },
1571
+ { type: ElementRef }
1572
+ ]; };
1573
+ __decorate([
1574
+ Input()
1575
+ ], CountryPhonePickerComponent.prototype, "countries", void 0);
1576
+ __decorate([
1577
+ Input()
1578
+ ], CountryPhonePickerComponent.prototype, "ordination", void 0);
1579
+ __decorate([
1580
+ Output()
1581
+ ], CountryPhonePickerComponent.prototype, "selected", void 0);
1582
+ __decorate([
1583
+ ViewChild("phoneInput", { static: true })
1584
+ ], CountryPhonePickerComponent.prototype, "phoneInput", void 0);
1585
+ __decorate([
1586
+ HostListener("document:click", ["$event"])
1587
+ ], CountryPhonePickerComponent.prototype, "onClickout", null);
1588
+ __decorate([
1589
+ HostBinding("attr.tabindex")
1590
+ ], CountryPhonePickerComponent.prototype, "tabindex", void 0);
1591
+ __decorate([
1592
+ HostListener("keydown", ["$event"])
1593
+ ], CountryPhonePickerComponent.prototype, "onKeydown", null);
1594
+ CountryPhonePickerComponent = CountryPhonePickerComponent_1 = __decorate([
1595
+ Component({
1596
+ selector: "s-country-phone-picker",
1597
+ template: "<div class=\"country-phone-picker\">\n <div class=\"phone-input\">\n <div class=\"drop\" (click)=\"open = !open\">\n <span class=\"drop-flag\" [ngClass]=\"'fi fi-' + selectedItem.id\">\n </span>\n <span class=\"drop-icon fas fa-caret-down\"></span>\n </div>\n <p class=\"phone-ddi\">{{ selectedItem.ddi }}</p>\n <input\n #phoneInput\n type=\"tel\"\n autofocus\n [mask]=\"getMask()\" \n [placeholder]=\"getPlaceholder()\"\n [formControl]=\"phone\"\n (focus)=\"onPhoneInputFocus()\" />\n </div>\n <div *ngIf=\"open\" class=\"dropdown\">\n <div class=\"search\">\n <input\n class=\"search-field\"\n type=\"text\"\n [formControl]=\"filter\">\n <span class=\"search-icon fas fa-search\"></span>\n <span\n class=\"search-clear fa fa-times\"\n (click)=\"onCleanFilter()\"></span>\n </div>\n <ul class=\"select-list\">\n <li\n *ngFor=\"let country of filteredCountriesList; let i = index;\"\n class=\"select-option\"\n [ngClass]=\"{ 'select-option--focused': i == currentItemIndex }\"\n (click)=\"onSelectItem(country)\">\n <span\n class=\"select-option__flag\"\n [ngClass]=\"'fi fi-' + country.id\">\n </span>\n <span class=\"select-option__name\">\n {{ \"platform.angular_components.country_name_\" + country.id | translate }}\n </span>\n <span class=\"select-option__ddi\">\n {{ country.ddi }}\n </span>\n </li>\n </ul>\n </div>\n</div>",
1598
+ providers: [{
1599
+ provide: NG_VALUE_ACCESSOR,
1600
+ useExisting: CountryPhonePickerComponent_1,
1601
+ multi: true,
1602
+ }],
1603
+ styles: [".country-phone-picker .phone-input{background-color:#fff;border:1px solid #d8d8d8;border-radius:4px;display:-ms-flexbox;display:flex}.country-phone-picker .phone-input .drop{-ms-flex-align:center;align-items:center;cursor:pointer;display:-ms-flexbox;display:flex}.country-phone-picker .phone-input .drop .drop-flag{margin-left:12px}.country-phone-picker .phone-input .drop .drop-icon{font-size:12px;margin:0 8px}.country-phone-picker .phone-input .phone-ddi{margin:8px 0}.country-phone-picker .phone-input input{border:none;-ms-flex-positive:1;flex-grow:1;font-family:\"Open Sans\",sans-serif;font-size:14px;font-weight:400;line-height:150%;margin-left:8px}.country-phone-picker .phone-input input:focus{color:#697882;outline:0}.country-phone-picker .dropdown{background-color:#fff;border-radius:4px;box-shadow:0 4px 5px #00000033;padding:4px 0;position:absolute;margin:2px 0;z-index:999999}.country-phone-picker .dropdown .search{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;padding:8px 12px}.country-phone-picker .dropdown .search .search-field{border:1px solid #d8d8d8;border-radius:4px;-ms-flex-positive:1;flex-grow:1;font-family:\"Open Sans\",sans-serif;font-size:14px;font-weight:400;height:36px;line-height:150%;padding:0 32px 0 8px}.country-phone-picker .dropdown .search .search-icon{color:#333;font-size:12px;position:relative;right:24px}.country-phone-picker .dropdown .search .search-clear{color:#333;cursor:pointer;font-size:1rem}.country-phone-picker .dropdown .select-list{list-style:none;max-height:234px;min-width:360px;max-width:100vw;overflow:scroll;padding:0}.country-phone-picker .dropdown .select-list .select-option{cursor:pointer;display:-ms-flexbox;display:flex;padding:12px;-webkit-user-select:none;-ms-user-select:none;user-select:none}.country-phone-picker .dropdown .select-list .select-option .select-option__flag{margin-right:12px}.country-phone-picker .dropdown .select-list .select-option .select-option__name{margin-right:.5rem;max-width:100%;overflow:hidden;text-overflow:ellipsis}.country-phone-picker .dropdown .select-list .select-option .select-option__ddi{color:#697882;font-size:14px;font-family:\"Open Sans\",sans-serif;font-weight:400;line-height:150%}.country-phone-picker .dropdown .select-list .select-option--focused,.country-phone-picker .dropdown .select-list .select-option:hover{background-color:#e5eaea}"]
1604
+ })
1605
+ ], CountryPhonePickerComponent);
1606
+ return CountryPhonePickerComponent;
1607
+ }());
1608
+
1609
+ var CountryPhonePickerModule = /** @class */ (function () {
1610
+ function CountryPhonePickerModule() {
1611
+ }
1612
+ CountryPhonePickerModule = __decorate([
1613
+ NgModule({
1614
+ imports: [
1615
+ CommonModule,
1616
+ TranslateModule,
1617
+ ReactiveFormsModule,
1618
+ NgxMaskModule.forRoot(),
1619
+ ],
1620
+ declarations: [CountryPhonePickerComponent],
1621
+ exports: [CountryPhonePickerComponent],
1622
+ providers: [CountryPhonePickerService],
1623
+ })
1624
+ ], CountryPhonePickerModule);
1625
+ return CountryPhonePickerModule;
1626
+ }());
1627
+
1091
1628
  var FieldType;
1092
1629
  (function (FieldType) {
1093
1630
  FieldType["Autocomplete"] = "Autocomplete";
@@ -11076,9 +11613,236 @@ var ProgressBarColors;
11076
11613
  ProgressBarColors["Yellow"] = "yellow";
11077
11614
  })(ProgressBarColors || (ProgressBarColors = {}));
11078
11615
 
11616
+ var fallback = {
11617
+ "platform.angular_components.country_name_br": "Brasil",
11618
+ "platform.angular_components.country_name_us": "Estados Unidos",
11619
+ "platform.angular_components.country_name_co": "Colômbia",
11620
+ "platform.angular_components.country_name_ar": "Argentina",
11621
+ "platform.angular_components.country_name_cl": "Chile",
11622
+ "platform.angular_components.country_name_py": "Paraguai",
11623
+ "platform.angular_components.country_name_uy": "Uruguai",
11624
+ "platform.angular_components.country_name_cn": "China",
11625
+ "platform.angular_components.country_name_ca": "Canadá",
11626
+ "platform.angular_components.country_name_as": "Samoa Americana",
11627
+ "platform.angular_components.country_name_ai": "Anguilla",
11628
+ "platform.angular_components.country_name_ag": "Antígua e Barbuda",
11629
+ "platform.angular_components.country_name_bs": "Bahamas",
11630
+ "platform.angular_components.country_name_bb": "Barbados",
11631
+ "platform.angular_components.country_name_bm": "Bermuda",
11632
+ "platform.angular_components.country_name_vg": "Ilhas Virgens Britânicas",
11633
+ "platform.angular_components.country_name_ky": "Ilhas Cayman",
11634
+ "platform.angular_components.country_name_dm": "Dominica",
11635
+ "platform.angular_components.country_name_do": "República Dominicana",
11636
+ "platform.angular_components.country_name_gd": "Granada",
11637
+ "platform.angular_components.country_name_gu": "Guam",
11638
+ "platform.angular_components.country_name_jm": "Jamaica",
11639
+ "platform.angular_components.country_name_ms": "Montserrat",
11640
+ "platform.angular_components.country_name_mp": "Ilhas Mariana do Norte",
11641
+ "platform.angular_components.country_name_pr": "Porto Rico",
11642
+ "platform.angular_components.country_name_kn": "Saint Kitts and Nevis",
11643
+ "platform.angular_components.country_name_lc": "Saint Lucia",
11644
+ "platform.angular_components.country_name_vc": "Saint Vincent and the Grenadines",
11645
+ "platform.angular_components.country_name_tt": "Trinidad e Tobago",
11646
+ "platform.angular_components.country_name_tc": "Ilhas Turcas e Caicos",
11647
+ "platform.angular_components.country_name_fi": "Finlândia",
11648
+ "platform.angular_components.country_name_rs": "Sérvia",
11649
+ "platform.angular_components.country_name_zm": "Zâmbia",
11650
+ "platform.angular_components.country_name_af": "Afghanistão",
11651
+ "platform.angular_components.country_name_al": "Albânia",
11652
+ "platform.angular_components.country_name_hr": "Croácia",
11653
+ "platform.angular_components.country_name_ec": "Equador",
11654
+ "platform.angular_components.country_name_et": "Etiópia",
11655
+ "platform.angular_components.country_name_gh": "Gana",
11656
+ "platform.angular_components.country_name_gr": "Grécia",
11657
+ "platform.angular_components.country_name_ie": "Irlanda",
11658
+ "platform.angular_components.country_name_it": "Itália",
11659
+ "platform.angular_components.country_name_lr": "Libéria",
11660
+ "platform.angular_components.country_name_na": "Namíbia",
11661
+ "platform.angular_components.country_name_nz": "Nova Zelândia",
11662
+ "platform.angular_components.country_name_sa": "Arábia Saudita",
11663
+ "platform.angular_components.country_name_za": "África do Sul",
11664
+ "platform.angular_components.country_name_lk": "Sri Lanka",
11665
+ "platform.angular_components.country_name_sd": "Sudão",
11666
+ "platform.angular_components.country_name_th": "Tailândia",
11667
+ "platform.angular_components.country_name_ua": "Ucrânia",
11668
+ "platform.angular_components.country_name_ae": "Emirados Árabes Unidos",
11669
+ "platform.angular_components.country_name_va": "Vaticano",
11670
+ "platform.angular_components.country_name_zw": "Zimbábue",
11671
+ "platform.angular_components.country_name_dz": "Argélia",
11672
+ "platform.angular_components.country_name_be": "Bélgica",
11673
+ "platform.angular_components.country_name_yt": "Mayotte",
11674
+ "platform.angular_components.country_name_bl": "Saint Barthelemy",
11675
+ "platform.angular_components.country_name_mf": "Saint Martin",
11676
+ "platform.angular_components.country_name_ad": "Andora",
11677
+ "platform.angular_components.country_name_ao": "Angola",
11678
+ "platform.angular_components.country_name_ba": "Bósnia e Herzegovina",
11679
+ "platform.angular_components.country_name_bg": "Bulgária",
11680
+ "platform.angular_components.country_name_kh": "Camboja",
11681
+ "platform.angular_components.country_name_cz": "República Checa",
11682
+ "platform.angular_components.country_name_gq": "Guiné Equatorial",
11683
+ "platform.angular_components.country_name_gw": "Guiné-Bissau",
11684
+ "platform.angular_components.country_name_li": "Liechtenstein",
11685
+ "platform.angular_components.country_name_lu": "Luxemburgo",
11686
+ "platform.angular_components.country_name_mk": "Macedónia",
11687
+ "platform.angular_components.country_name_me": "Montenegro",
11688
+ "platform.angular_components.country_name_pe": "Peru",
11689
+ "platform.angular_components.country_name_pl": "Polónia",
11690
+ "platform.angular_components.country_name_pt": "Portugal",
11691
+ "platform.angular_components.country_name_si": "Slovenia",
11692
+ "platform.angular_components.country_name_am": "Arménia",
11693
+ "platform.angular_components.country_name_aw": "Aruba",
11694
+ "platform.angular_components.country_name_bn": "Brunei",
11695
+ "platform.angular_components.country_name_fj": "Fiji",
11696
+ "platform.angular_components.country_name_gm": "Gâmbia",
11697
+ "platform.angular_components.country_name_gy": "Guiana",
11698
+ "platform.angular_components.country_name_is": "Islândia",
11699
+ "platform.angular_components.country_name_fm": "Micronésia",
11700
+ "platform.angular_components.country_name_nr": "Nauru",
11701
+ "platform.angular_components.country_name_nu": "Niue",
11702
+ "platform.angular_components.country_name_pw": "Palau",
11703
+ "platform.angular_components.country_name_st": "Sao Tome e Principe",
11704
+ "platform.angular_components.country_name_to": "Tonga",
11705
+ "platform.angular_components.country_name_vu": "Vanuatu",
11706
+ "platform.angular_components.country_name_fk": "Ilhas Falkland (Malvinas)",
11707
+ "platform.angular_components.country_name_fo": "Ilhas Feroé",
11708
+ "platform.angular_components.country_name_sh": "Saint Helena",
11709
+ "platform.angular_components.country_name_au": "Austrália",
11710
+ "platform.angular_components.country_name_cx": "Christmas Island",
11711
+ "platform.angular_components.country_name_cc": "Ilhas Cocos (Keeling)",
11712
+ "platform.angular_components.country_name_cd": "República Democrática do Congo",
11713
+ "platform.angular_components.country_name_kg": "Quirguistão",
11714
+ "platform.angular_components.country_name_ro": "Roménia",
11715
+ "platform.angular_components.country_name_rw": "Ruanda",
11716
+ "platform.angular_components.country_name_sk": "Slovakia",
11717
+ "platform.angular_components.country_name_sy": "Syria",
11718
+ "platform.angular_components.country_name_tw": "Taiwan",
11719
+ "platform.angular_components.country_name_tz": "Tanzânia",
11720
+ "platform.angular_components.country_name_ye": "Iémen (Iémen, Yemen)",
11721
+ "platform.angular_components.country_name_at": "Áustria",
11722
+ "platform.angular_components.country_name_ke": "Quénia (Kenya)",
11723
+ "platform.angular_components.country_name_ug": "Uganda",
11724
+ "platform.angular_components.country_name_az": "Azerbaijão",
11725
+ "platform.angular_components.country_name_ch": "Suiça",
11726
+ "platform.angular_components.country_name_vn": "Vietnã (Vietname)",
11727
+ "platform.angular_components.country_name_bh": "Bahrein",
11728
+ "platform.angular_components.country_name_cr": "Costa Rica",
11729
+ "platform.angular_components.country_name_sv": "El Salvador",
11730
+ "platform.angular_components.country_name_ee": "Estónia",
11731
+ "platform.angular_components.country_name_sz": "Suazilândia",
11732
+ "platform.angular_components.country_name_gt": "Guatemala",
11733
+ "platform.angular_components.country_name_hk": "Hong Kong",
11734
+ "platform.angular_components.country_name_ls": "Lesoto",
11735
+ "platform.angular_components.country_name_mo": "Macau",
11736
+ "platform.angular_components.country_name_mt": "Malta",
11737
+ "platform.angular_components.country_name_mu": "Maurícia",
11738
+ "platform.angular_components.country_name_mn": "Mongólia",
11739
+ "platform.angular_components.country_name_ni": "Nicaragua",
11740
+ "platform.angular_components.country_name_om": "Omã",
11741
+ "platform.angular_components.country_name_pg": "Papua-Nova Guiné",
11742
+ "platform.angular_components.country_name_qa": "Catar",
11743
+ "platform.angular_components.country_name_sg": "Cingapura",
11744
+ "platform.angular_components.country_name_tl": "Timor-Leste",
11745
+ "platform.angular_components.country_name_bd": "Bangladesh",
11746
+ "platform.angular_components.country_name_im": "Ilha de Man",
11747
+ "platform.angular_components.country_name_by": "Bielorrússia",
11748
+ "platform.angular_components.country_name_bz": "Belize",
11749
+ "platform.angular_components.country_name_mv": "Maldivas",
11750
+ "platform.angular_components.country_name_mh": "Ilhas Marshall",
11751
+ "platform.angular_components.country_name_sr": "Suriname",
11752
+ "platform.angular_components.country_name_bj": "Benim",
11753
+ "platform.angular_components.country_name_bt": "Butão",
11754
+ "platform.angular_components.country_name_bf": "Burkina Faso",
11755
+ "platform.angular_components.country_name_bi": "Burundi",
11756
+ "platform.angular_components.country_name_cf": "República Centro-Africana",
11757
+ "platform.angular_components.country_name_td": "Chad",
11758
+ "platform.angular_components.country_name_ci": "Costa do Marfim",
11759
+ "platform.angular_components.country_name_dk": "Dinamarca",
11760
+ "platform.angular_components.country_name_dj": "Djibouti",
11761
+ "platform.angular_components.country_name_fr": "França",
11762
+ "platform.angular_components.country_name_pf": "Polinésia Francesa",
11763
+ "platform.angular_components.country_name_ga": "Gabão",
11764
+ "platform.angular_components.country_name_ml": "Mali",
11765
+ "platform.angular_components.country_name_mr": "Mauritânia",
11766
+ "platform.angular_components.country_name_ne": "Níger",
11767
+ "platform.angular_components.country_name_sm": "San Marino",
11768
+ "platform.angular_components.country_name_tg": "Togo",
11769
+ "platform.angular_components.country_name_bo": "Bolívia",
11770
+ "platform.angular_components.country_name_gi": "Gibraltar",
11771
+ "platform.angular_components.country_name_ki": "Kiribati",
11772
+ "platform.angular_components.country_name_tv": "Tuvalu",
11773
+ "platform.angular_components.country_name_bw": "Botswana",
11774
+ "platform.angular_components.country_name_er": "Eritreia",
11775
+ "platform.angular_components.country_name_lv": "Letônia",
11776
+ "platform.angular_components.country_name_lb": "Líbano",
11777
+ "platform.angular_components.country_name_tn": "Tunísia",
11778
+ "platform.angular_components.country_name_cm": "Camarões",
11779
+ "platform.angular_components.country_name_cv": "Cabo Verde",
11780
+ "platform.angular_components.country_name_km": "Comores",
11781
+ "platform.angular_components.country_name_pm": "Saint Pierre and Miquelon",
11782
+ "platform.angular_components.country_name_cg": "República do Congo",
11783
+ "platform.angular_components.country_name_mz": "Moçambique",
11784
+ "platform.angular_components.country_name_mm": "Myanmar (Burma)",
11785
+ "platform.angular_components.country_name_ck": "Ilhas Cook",
11786
+ "platform.angular_components.country_name_cu": "Cuba",
11787
+ "platform.angular_components.country_name_cy": "Chipre",
11788
+ "platform.angular_components.country_name_eg": "Egito",
11789
+ "platform.angular_components.country_name_ir": "Irã",
11790
+ "platform.angular_components.country_name_iq": "Iraque",
11791
+ "platform.angular_components.country_name_ng": "Nigéria",
11792
+ "platform.angular_components.country_name_kp": "Coreia do Norte",
11793
+ "platform.angular_components.country_name_ph": "Filipinas",
11794
+ "platform.angular_components.country_name_ge": "Geórgia",
11795
+ "platform.angular_components.country_name_gn": "Guiné",
11796
+ "platform.angular_components.country_name_es": "Espanha",
11797
+ "platform.angular_components.country_name_de": "Alemanha",
11798
+ "platform.angular_components.country_name_gl": "Groelândia",
11799
+ "platform.angular_components.country_name_wf": "Wallis e Futuna",
11800
+ "platform.angular_components.country_name_ht": "Haiti",
11801
+ "platform.angular_components.country_name_hn": "Honduras",
11802
+ "platform.angular_components.country_name_pa": "Panamá",
11803
+ "platform.angular_components.country_name_hu": "Hungria",
11804
+ "platform.angular_components.country_name_in": "India",
11805
+ "platform.angular_components.country_name_id": "Indonésia",
11806
+ "platform.angular_components.country_name_il": "Israel",
11807
+ "platform.angular_components.country_name_jp": "Japão",
11808
+ "platform.angular_components.country_name_jo": "Jordânia",
11809
+ "platform.angular_components.country_name_kz": "Cazaquistão",
11810
+ "platform.angular_components.country_name_kw": "Kuwait",
11811
+ "platform.angular_components.country_name_la": "Laos",
11812
+ "platform.angular_components.country_name_ly": "Líbia",
11813
+ "platform.angular_components.country_name_lt": "Lituânia",
11814
+ "platform.angular_components.country_name_np": "Nepal",
11815
+ "platform.angular_components.country_name_mg": "Madagáscar",
11816
+ "platform.angular_components.country_name_mw": "Malawi",
11817
+ "platform.angular_components.country_name_my": "Malásia",
11818
+ "platform.angular_components.country_name_mx": "México",
11819
+ "platform.angular_components.country_name_md": "Moldávia",
11820
+ "platform.angular_components.country_name_mc": "Monaco",
11821
+ "platform.angular_components.country_name_ma": "Marrocos",
11822
+ "platform.angular_components.country_name_nl": "Países Baixos",
11823
+ "platform.angular_components.country_name_nc": "Nova Caledônia",
11824
+ "platform.angular_components.country_name_no": "Noruega",
11825
+ "platform.angular_components.country_name_pk": "Paquistão",
11826
+ "platform.angular_components.country_name_ru": "Rússia",
11827
+ "platform.angular_components.country_name_ws": "Samoa",
11828
+ "platform.angular_components.country_name_sb": "Ilhas Salomão",
11829
+ "platform.angular_components.country_name_sn": "Senegal",
11830
+ "platform.angular_components.country_name_sc": "Seychelles",
11831
+ "platform.angular_components.country_name_sl": "Serra Leoa",
11832
+ "platform.angular_components.country_name_so": "Somalia",
11833
+ "platform.angular_components.country_name_kr": "Coreia do Sul",
11834
+ "platform.angular_components.country_name_se": "Suécia",
11835
+ "platform.angular_components.country_name_tj": "Tajiquistão",
11836
+ "platform.angular_components.country_name_tk": "Tokelau",
11837
+ "platform.angular_components.country_name_tr": "Turquia",
11838
+ "platform.angular_components.country_name_tm": "Turquemenistão",
11839
+ "platform.angular_components.country_name_uz": "Uzbequistão",
11840
+ "platform.angular_components.country_name_ve": "Venezuela"
11841
+ };
11842
+
11079
11843
  /**
11080
11844
  * Generated bundle index. Do not edit.
11081
11845
  */
11082
11846
 
11083
- export { AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, WorkspaceSwitchComponent, WorkspaceSwitchModule, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, TextFieldComponent as ɵba, BooleanSwitchFieldComponent as ɵbb, PasswordFieldComponent as ɵbc, DecimalField as ɵbe, StructureModule as ɵbf, HeaderComponent as ɵbg, FooterComponent as ɵbh, NumberLocaleOptions as ɵbi, ThumbnailService as ɵbj, TimelineItemModule as ɵbk, TimelineIconItemComponent as ɵbl, HorizontalTimelineModule as ɵbm, HorizontalTimelineComponent as ɵbn, VerticalTimelineModule as ɵbo, VerticalTimelineComponent as ɵbp, RangeLineComponent as ɵbq, CollapseOptionComponent as ɵbr, CollapsedItemsComponent as ɵbs, VerticalItemsComponent as ɵbt, InfiniteScrollModule as ɵbu, InfiniteScrollDirective as ɵbv, CustomTranslationsModule as ɵbw, CodeEditorComponent as ɵbx, CoreFacade as ɵby, CodeMirror6Core as ɵbz, LocalizedBignumberImpurePipe as ɵc, TooltipComponent as ɵd, TooltipDirective as ɵe, EmptyStateGoBackComponent as ɵf, InfoSignComponent as ɵg, TableColumnsComponent as ɵh, TablePagingComponent as ɵi, AutocompleteFieldComponent as ɵj, BooleanFieldComponent as ɵk, CalendarFieldComponent as ɵl, ChipsFieldComponent as ɵm, CurrencyFieldComponent as ɵn, DynamicFieldComponent as ɵo, DynamicFormDirective as ɵp, FieldsetComponent as ɵq, FileUploadComponent$1 as ɵr, LookupFieldComponent as ɵs, NumberFieldComponent as ɵt, BignumberFieldComponent as ɵu, RadioButtonComponent as ɵv, RowComponent as ɵw, SectionComponent as ɵx, SelectFieldComponent as ɵy, TextAreaFieldComponent as ɵz };
11847
+ export { AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, WorkspaceSwitchComponent, WorkspaceSwitchModule, fallback, CountryPhonePickerService as ɵa, LocalizedCurrencyImpurePipe as ɵb, TextAreaFieldComponent as ɵba, TextFieldComponent as ɵbb, BooleanSwitchFieldComponent as ɵbc, PasswordFieldComponent as ɵbd, DecimalField as ɵbf, StructureModule as ɵbg, HeaderComponent as ɵbh, FooterComponent as ɵbi, NumberLocaleOptions as ɵbj, ThumbnailService as ɵbk, TimelineItemModule as ɵbl, TimelineIconItemComponent as ɵbm, HorizontalTimelineModule as ɵbn, HorizontalTimelineComponent as ɵbo, VerticalTimelineModule as ɵbp, VerticalTimelineComponent as ɵbq, RangeLineComponent as ɵbr, CollapseOptionComponent as ɵbs, CollapsedItemsComponent as ɵbt, VerticalItemsComponent as ɵbu, InfiniteScrollModule as ɵbv, InfiniteScrollDirective as ɵbw, CustomTranslationsModule as ɵbx, CodeEditorComponent as ɵby, CoreFacade as ɵbz, LocalizedBignumberPipe as ɵc, CodeMirror6Core as ɵca, LocalizedBignumberImpurePipe as ɵd, TooltipComponent as ɵe, TooltipDirective as ɵf, EmptyStateGoBackComponent as ɵg, InfoSignComponent as ɵh, TableColumnsComponent as ɵi, TablePagingComponent as ɵj, AutocompleteFieldComponent as ɵk, BooleanFieldComponent as ɵl, CalendarFieldComponent as ɵm, ChipsFieldComponent as ɵn, CurrencyFieldComponent as ɵo, DynamicFieldComponent as ɵp, DynamicFormDirective as ɵq, FieldsetComponent as ɵr, FileUploadComponent$1 as ɵs, LookupFieldComponent as ɵt, NumberFieldComponent as ɵu, BignumberFieldComponent as ɵv, RadioButtonComponent as ɵw, RowComponent as ɵx, SectionComponent as ɵy, SelectFieldComponent as ɵz };
11084
11848
  //# sourceMappingURL=seniorsistemas-angular-components.js.map