@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.
- package/bundles/seniorsistemas-angular-components.umd.js +822 -55
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/country-phone-picker/country-phone-picker.component.d.ts +47 -0
- package/components/country-phone-picker/country-phone-picker.module.d.ts +2 -0
- package/components/country-phone-picker/country-phone-picker.service.d.ts +10 -0
- package/components/country-phone-picker/index.d.ts +3 -0
- package/components/country-phone-picker/models/country-phone-data.d.ts +5 -0
- package/components/country-phone-picker/models/index.d.ts +3 -0
- package/components/country-phone-picker/models/ordination.d.ts +5 -0
- package/components/country-phone-picker/models/phone-selection-data.d.ts +6 -0
- package/components/country-phone-picker/resources/countries.d.ts +2 -0
- package/esm2015/components/country-phone-picker/country-phone-picker.component.js +231 -0
- package/esm2015/components/country-phone-picker/country-phone-picker.module.js +25 -0
- package/esm2015/components/country-phone-picker/country-phone-picker.service.js +43 -0
- package/esm2015/components/country-phone-picker/index.js +4 -0
- package/esm2015/components/country-phone-picker/models/country-phone-data.js +1 -0
- package/esm2015/components/country-phone-picker/models/index.js +2 -0
- package/esm2015/components/country-phone-picker/models/ordination.js +7 -0
- package/esm2015/components/country-phone-picker/models/phone-selection-data.js +1 -0
- package/esm2015/components/country-phone-picker/resources/countries.js +227 -0
- package/esm2015/components/file-upload/file-upload.module.js +2 -2
- package/esm2015/locale/fallback.js +227 -0
- package/esm2015/public-api.js +3 -1
- package/esm2015/seniorsistemas-angular-components.js +53 -52
- package/esm5/components/country-phone-picker/country-phone-picker.component.js +250 -0
- package/esm5/components/country-phone-picker/country-phone-picker.module.js +28 -0
- package/esm5/components/country-phone-picker/country-phone-picker.service.js +46 -0
- package/esm5/components/country-phone-picker/index.js +4 -0
- package/esm5/components/country-phone-picker/models/country-phone-data.js +1 -0
- package/esm5/components/country-phone-picker/models/index.js +2 -0
- package/esm5/components/country-phone-picker/models/ordination.js +7 -0
- package/esm5/components/country-phone-picker/models/phone-selection-data.js +1 -0
- package/esm5/components/country-phone-picker/resources/countries.js +227 -0
- package/esm5/components/file-upload/file-upload.module.js +2 -2
- package/esm5/locale/fallback.js +227 -0
- package/esm5/public-api.js +3 -1
- package/esm5/seniorsistemas-angular-components.js +53 -52
- package/fesm2015/seniorsistemas-angular-components.js +743 -4
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +769 -5
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/locale/fallback.d.ts +1 -0
- package/package.json +5 -1
- package/public-api.d.ts +2 -0
- package/seniorsistemas-angular-components.d.ts +52 -51
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __rest, __param, __awaiter } from 'tslib';
|
|
2
|
-
import { EventEmitter, Input, Output, HostListener, Component, NgModule, HostBinding, ViewChild, Renderer2, Directive, Injectable, Pipe, forwardRef, ViewEncapsulation,
|
|
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,
|
|
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';
|
|
@@ -1045,6 +1046,517 @@ ControlErrorsModule = __decorate([
|
|
|
1045
1046
|
})
|
|
1046
1047
|
], ControlErrorsModule);
|
|
1047
1048
|
|
|
1049
|
+
const countries = [
|
|
1050
|
+
{ id: "br", ddi: "+55", mask: ["(00) 0000-00009", "(00) 00000-0000"] },
|
|
1051
|
+
{ id: "us", ddi: "+1", mask: "000-0000" },
|
|
1052
|
+
{ id: "co", ddi: "+57", mask: "000 0000000" },
|
|
1053
|
+
{ id: "ar", ddi: "+54", mask: "000 00-0000-0000" },
|
|
1054
|
+
{ id: "cl", ddi: "+56", mask: "(0) 0000-0000" },
|
|
1055
|
+
{ id: "py", ddi: "+595", mask: "0000 000000" },
|
|
1056
|
+
{ id: "uy", ddi: "+598", mask: "000 000 000" },
|
|
1057
|
+
{ id: "cn", ddi: "+86", mask: "000 0000 0000" },
|
|
1058
|
+
{ id: "ca", ddi: "+1", mask: "000-0000" },
|
|
1059
|
+
{ id: "as", ddi: "+1684", mask: "000-0000" },
|
|
1060
|
+
{ id: "ai", ddi: "+1264", mask: "000-0000" },
|
|
1061
|
+
{ id: "ag", ddi: "+1268", mask: "000-0000" },
|
|
1062
|
+
{ id: "bs", ddi: "+1242", mask: "000-0000" },
|
|
1063
|
+
{ id: "bb", ddi: "+1246", mask: "000-0000" },
|
|
1064
|
+
{ id: "bm", ddi: "+1441", mask: "000-0000" },
|
|
1065
|
+
{ id: "vg", ddi: "+1284", mask: "000-0000" },
|
|
1066
|
+
{ id: "ky", ddi: "+1345", mask: "000-0000" },
|
|
1067
|
+
{ id: "dm", ddi: "+1767", mask: "000-0000" },
|
|
1068
|
+
{ id: "do", ddi: "+1809", mask: "000-0000" },
|
|
1069
|
+
{ id: "gd", ddi: "+1473", mask: "000-0000" },
|
|
1070
|
+
{ id: "gu", ddi: "+1671", mask: "000-0000" },
|
|
1071
|
+
{ id: "jm", ddi: "+1876", mask: "000-0000" },
|
|
1072
|
+
{ id: "ms", ddi: "+1664", mask: "000-0000" },
|
|
1073
|
+
{ id: "mp", ddi: "+1670", mask: "000-0000" },
|
|
1074
|
+
{ id: "pr", ddi: "+1", mask: "000-0000" },
|
|
1075
|
+
{ id: "kn", ddi: "+1869", mask: "000-0000" },
|
|
1076
|
+
{ id: "lc", ddi: "+1758", mask: "000-0000" },
|
|
1077
|
+
{ id: "vc", ddi: "+1784", mask: "000-0000" },
|
|
1078
|
+
{ id: "tt", ddi: "+1868", mask: "000-0000" },
|
|
1079
|
+
{ id: "tc", ddi: "+1649", mask: "000-0000" },
|
|
1080
|
+
{ id: "fi", ddi: "+358", mask: "000 0000000" },
|
|
1081
|
+
{ id: "rs", ddi: "+381", mask: "000 0000000" },
|
|
1082
|
+
{ id: "zm", ddi: "+260", mask: "000 0000000" },
|
|
1083
|
+
{ id: "af", ddi: "+93", mask: "000 000 0000" },
|
|
1084
|
+
{ id: "al", ddi: "+355", mask: "000 000 0000" },
|
|
1085
|
+
{ id: "hr", ddi: "+385", mask: "000 000 0000" },
|
|
1086
|
+
{ id: "ec", ddi: "+593", mask: "000 000 0000" },
|
|
1087
|
+
{ id: "et", ddi: "+251", mask: "000 000 0000" },
|
|
1088
|
+
{ id: "gh", ddi: "+233", mask: "000 000 0000" },
|
|
1089
|
+
{ id: "gr", ddi: "+30", mask: "000 000 0000" },
|
|
1090
|
+
{ id: "ie", ddi: "+353", mask: "000 000 0000" },
|
|
1091
|
+
{ id: "it", ddi: "+39", mask: "000 000 0000" },
|
|
1092
|
+
{ id: "lr", ddi: "+231", mask: "000 000 0000" },
|
|
1093
|
+
{ id: "na", ddi: "+264", mask: "000 000 0000" },
|
|
1094
|
+
{ id: "nz", ddi: "+64", mask: "000 000 0000" },
|
|
1095
|
+
{ id: "sa", ddi: "+966", mask: "000 000 0000" },
|
|
1096
|
+
{ id: "za", ddi: "+27", mask: "000 000 0000" },
|
|
1097
|
+
{ id: "lk", ddi: "+94", mask: "000 000 0000" },
|
|
1098
|
+
{ id: "sd", ddi: "+249", mask: "000 000 0000" },
|
|
1099
|
+
{ id: "th", ddi: "+66", mask: "000 000 0000" },
|
|
1100
|
+
{ id: "ua", ddi: "+380", mask: "000 000 0000" },
|
|
1101
|
+
{ id: "ae", ddi: "+971", mask: "000 000 0000" },
|
|
1102
|
+
{ id: "va", ddi: "+39", mask: "000 000 0000" },
|
|
1103
|
+
{ id: "zw", ddi: "+263", mask: "000 000 0000" },
|
|
1104
|
+
{ id: "dz", ddi: "+213", mask: "0000 00 00 00" },
|
|
1105
|
+
{ id: "be", ddi: "+32", mask: "0000 00 00 00" },
|
|
1106
|
+
{ id: "yt", ddi: "+262", mask: "0000 00 00 00" },
|
|
1107
|
+
{ id: "bl", ddi: "+590", mask: "0000 00 00 00" },
|
|
1108
|
+
{ id: "mf", ddi: "+1599", mask: "0000 00 00 00" },
|
|
1109
|
+
{ id: "ad", ddi: "+376", mask: "000-000" },
|
|
1110
|
+
{ id: "ao", ddi: "+244", mask: "000 000 000" },
|
|
1111
|
+
{ id: "ba", ddi: "+387", mask: "000 000 000" },
|
|
1112
|
+
{ id: "bg", ddi: "+359", mask: "000 000 000" },
|
|
1113
|
+
{ id: "kh", ddi: "+855", mask: "000 000 000" },
|
|
1114
|
+
{ id: "cz", ddi: "+420", mask: "000 000 000" },
|
|
1115
|
+
{ id: "gq", ddi: "+240", mask: "000 000 000" },
|
|
1116
|
+
{ id: "gw", ddi: "+245", mask: "000 000 000" },
|
|
1117
|
+
{ id: "li", ddi: "+423", mask: "000 000 000" },
|
|
1118
|
+
{ id: "lu", ddi: "+352", mask: "000 000 000" },
|
|
1119
|
+
{ id: "mk", ddi: "+389", mask: "000 000 000" },
|
|
1120
|
+
{ id: "me", ddi: "+382", mask: "000 000 000" },
|
|
1121
|
+
{ id: "pe", ddi: "+51", mask: "000 000 000" },
|
|
1122
|
+
{ id: "pl", ddi: "+48", mask: "000 000 000" },
|
|
1123
|
+
{ id: "pt", ddi: "+351", mask: "000 000 000" },
|
|
1124
|
+
{ id: "si", ddi: "+386", mask: "000 000 000" },
|
|
1125
|
+
{ id: "am", ddi: "+374", mask: "000 000000" },
|
|
1126
|
+
{ id: "aw", ddi: "+297", mask: "000 0000" },
|
|
1127
|
+
{ id: "bn", ddi: "+673", mask: "000 0000" },
|
|
1128
|
+
{ id: "fj", ddi: "+679", mask: "000 0000" },
|
|
1129
|
+
{ id: "gm", ddi: "+220", mask: "000 0000" },
|
|
1130
|
+
{ id: "gy", ddi: "+592", mask: "000 0000" },
|
|
1131
|
+
{ id: "is", ddi: "+354", mask: "000 0000" },
|
|
1132
|
+
{ id: "fm", ddi: "+691", mask: "000 0000" },
|
|
1133
|
+
{ id: "nr", ddi: "+674", mask: "000 0000" },
|
|
1134
|
+
{ id: "nu", ddi: "+683", mask: "000 0000" },
|
|
1135
|
+
{ id: "pw", ddi: "+680", mask: "000 0000" },
|
|
1136
|
+
{ id: "st", ddi: "+239", mask: "000 0000" },
|
|
1137
|
+
{ id: "to", ddi: "+676", mask: "000 0000" },
|
|
1138
|
+
{ id: "vu", ddi: "+678", mask: "000 0000" },
|
|
1139
|
+
{ id: "fk", ddi: "+500", mask: "00000" },
|
|
1140
|
+
{ id: "fo", ddi: "+298", mask: "00000" },
|
|
1141
|
+
{ id: "sh", ddi: "+290", mask: "00000" },
|
|
1142
|
+
{ id: "au", ddi: "+61", mask: "0000 000 000" },
|
|
1143
|
+
{ id: "cx", ddi: "+61", mask: "0000 000 000" },
|
|
1144
|
+
{ id: "cc", ddi: "+61", mask: "0000 000 000" },
|
|
1145
|
+
{ id: "cd", ddi: "+243", mask: "0000 000 000" },
|
|
1146
|
+
{ id: "kg", ddi: "+996", mask: "0000 000 000" },
|
|
1147
|
+
{ id: "ro", ddi: "+40", mask: "0000 000 000" },
|
|
1148
|
+
{ id: "rw", ddi: "+250", mask: "0000 000 000" },
|
|
1149
|
+
{ id: "sk", ddi: "+421", mask: "0000 000 000" },
|
|
1150
|
+
{ id: "sy", ddi: "+963", mask: "0000 000 000" },
|
|
1151
|
+
{ id: "tw", ddi: "+886", mask: "0000 000 000" },
|
|
1152
|
+
{ id: "tz", ddi: "+255", mask: "0000 000 000" },
|
|
1153
|
+
{ id: "ye", ddi: "+967", mask: "0000 000 000" },
|
|
1154
|
+
{ id: "at", ddi: "+43", mask: "0000 000000" },
|
|
1155
|
+
{ id: "ke", ddi: "+254", mask: "0000 000000" },
|
|
1156
|
+
{ id: "ug", ddi: "+256", mask: "0000 000000" },
|
|
1157
|
+
{ id: "az", ddi: "+994", mask: "000 000 00 00" },
|
|
1158
|
+
{ id: "ch", ddi: "+41", mask: "000 000 00 00" },
|
|
1159
|
+
{ id: "vn", ddi: "+84", mask: "000 000 00 00" },
|
|
1160
|
+
{ id: "bh", ddi: "+973", mask: "0000 0000" },
|
|
1161
|
+
{ id: "cr", ddi: "+506", mask: "0000 0000" },
|
|
1162
|
+
{ id: "sv", ddi: "+503", mask: "0000 0000" },
|
|
1163
|
+
{ id: "ee", ddi: "+372", mask: "0000 0000" },
|
|
1164
|
+
{ id: "sz", ddi: "+268", mask: "0000 0000" },
|
|
1165
|
+
{ id: "gt", ddi: "+502", mask: "0000 0000" },
|
|
1166
|
+
{ id: "hk", ddi: "+852", mask: "0000 0000" },
|
|
1167
|
+
{ id: "ls", ddi: "+266", mask: "0000 0000" },
|
|
1168
|
+
{ id: "mo", ddi: "+853", mask: "0000 0000" },
|
|
1169
|
+
{ id: "mt", ddi: "+356", mask: "0000 0000" },
|
|
1170
|
+
{ id: "mu", ddi: "+230", mask: "0000 0000" },
|
|
1171
|
+
{ id: "mn", ddi: "+976", mask: "0000 0000" },
|
|
1172
|
+
{ id: "ni", ddi: "+505", mask: "0000 0000" },
|
|
1173
|
+
{ id: "om", ddi: "+968", mask: "0000 0000" },
|
|
1174
|
+
{ id: "pg", ddi: "+675", mask: "0000 0000" },
|
|
1175
|
+
{ id: "qa", ddi: "+974", mask: "0000 0000" },
|
|
1176
|
+
{ id: "sg", ddi: "+65", mask: "0000 0000" },
|
|
1177
|
+
{ id: "tl", ddi: "+670", mask: "0000 0000" },
|
|
1178
|
+
{ id: "bd", ddi: "+880", mask: "00000 000000" },
|
|
1179
|
+
{ id: "im", ddi: "+44", mask: "00000 000000" },
|
|
1180
|
+
{ id: "by", ddi: "+375", mask: "0 000 000-00-00" },
|
|
1181
|
+
{ id: "bz", ddi: "+501", mask: "000-0000" },
|
|
1182
|
+
{ id: "mv", ddi: "+960", mask: "000-0000" },
|
|
1183
|
+
{ id: "mh", ddi: "+692", mask: "000-0000" },
|
|
1184
|
+
{ id: "sr", ddi: "+597", mask: "000-0000" },
|
|
1185
|
+
{ id: "bj", ddi: "+229", mask: "00 00 00 00" },
|
|
1186
|
+
{ id: "bt", ddi: "+975", mask: "00 00 00 00" },
|
|
1187
|
+
{ id: "bf", ddi: "+226", mask: "00 00 00 00" },
|
|
1188
|
+
{ id: "bi", ddi: "+257", mask: "00 00 00 00" },
|
|
1189
|
+
{ id: "cf", ddi: "+236", mask: "00 00 00 00" },
|
|
1190
|
+
{ id: "td", ddi: "+235", mask: "00 00 00 00" },
|
|
1191
|
+
{ id: "ci", ddi: "+225", mask: "00 00 00 00" },
|
|
1192
|
+
{ id: "dk", ddi: "+45", mask: "00 00 00 00" },
|
|
1193
|
+
{ id: "dj", ddi: "+253", mask: "00 00 00 00" },
|
|
1194
|
+
{ id: "fr", ddi: "+33", mask: "00 00 00 00" },
|
|
1195
|
+
{ id: "pf", ddi: "+689", mask: "00 00 00 00" },
|
|
1196
|
+
{ id: "ga", ddi: "+241", mask: "00 00 00 00" },
|
|
1197
|
+
{ id: "ml", ddi: "+223", mask: "00 00 00 00" },
|
|
1198
|
+
{ id: "mr", ddi: "+222", mask: "00 00 00 00" },
|
|
1199
|
+
{ id: "ne", ddi: "+227", mask: "00 00 00 00" },
|
|
1200
|
+
{ id: "sm", ddi: "+378", mask: "00 00 00 00" },
|
|
1201
|
+
{ id: "tg", ddi: "+228", mask: "00 00 00 00" },
|
|
1202
|
+
{ id: "bo", ddi: "+591", mask: "00000000" },
|
|
1203
|
+
{ id: "gi", ddi: "+350", mask: "00000000" },
|
|
1204
|
+
{ id: "ki", ddi: "+686", mask: "00000000" },
|
|
1205
|
+
{ id: "tv", ddi: "+688", mask: "00000000" },
|
|
1206
|
+
{ id: "bw", ddi: "+267", mask: "00 000 000" },
|
|
1207
|
+
{ id: "er", ddi: "+291", mask: "00 000 000" },
|
|
1208
|
+
{ id: "lv", ddi: "+371", mask: "00 000 000" },
|
|
1209
|
+
{ id: "lb", ddi: "+961", mask: "00 000 000" },
|
|
1210
|
+
{ id: "tn", ddi: "+216", mask: "00 000 000" },
|
|
1211
|
+
{ id: "cm", ddi: "+237", mask: "0 00 00 00 00" },
|
|
1212
|
+
{ id: "cv", ddi: "+238", mask: "000 00 00" },
|
|
1213
|
+
{ id: "km", ddi: "+269", mask: "000 00 00" },
|
|
1214
|
+
{ id: "pm", ddi: "+508", mask: "000 00 00" },
|
|
1215
|
+
{ id: "cg", ddi: "+242", mask: "00 000 0000" },
|
|
1216
|
+
{ id: "mz", ddi: "+258", mask: "00 000 0000" },
|
|
1217
|
+
{ id: "mm", ddi: "+95", mask: "00 000 0000" },
|
|
1218
|
+
{ id: "ck", ddi: "+682", mask: "00 000" },
|
|
1219
|
+
{ id: "cu", ddi: "+53", mask: "00 000000" },
|
|
1220
|
+
{ id: "cy", ddi: "+357", mask: "00 000000" },
|
|
1221
|
+
{ id: "eg", ddi: "+20", mask: "0000 000 0000" },
|
|
1222
|
+
{ id: "ir", ddi: "+98", mask: "0000 000 0000" },
|
|
1223
|
+
{ id: "iq", ddi: "+964", mask: "0000 000 0000" },
|
|
1224
|
+
{ id: "ng", ddi: "+234", mask: "0000 000 0000" },
|
|
1225
|
+
{ id: "kp", ddi: "+850", mask: "0000 000 0000" },
|
|
1226
|
+
{ id: "ph", ddi: "+63", mask: "0000 000 0000" },
|
|
1227
|
+
{ id: "ge", ddi: "+995", mask: "000 00 00 00" },
|
|
1228
|
+
{ id: "gn", ddi: "+224", mask: "000 00 00 00" },
|
|
1229
|
+
{ id: "es", ddi: "+34", mask: "000 00 00 00" },
|
|
1230
|
+
{ id: "de", ddi: "+49", mask: "00000 0000000" },
|
|
1231
|
+
{ id: "gl", ddi: "+299", mask: "00 00 00" },
|
|
1232
|
+
{ id: "wf", ddi: "+681", mask: "00 00 00" },
|
|
1233
|
+
{ id: "ht", ddi: "+509", mask: "00 00 0000" },
|
|
1234
|
+
{ id: "hn", ddi: "+504", mask: "0000-0000" },
|
|
1235
|
+
{ id: "pa", ddi: "+507", mask: "0000-0000" },
|
|
1236
|
+
{ id: "hu", ddi: "+36", mask: "(00) 000 0000" },
|
|
1237
|
+
{ id: "in", ddi: "+91", mask: "000000 00000" },
|
|
1238
|
+
{ id: "id", ddi: "+62", mask: "0000-000-000" },
|
|
1239
|
+
{ id: "il", ddi: "+972", mask: "000-000-0000" },
|
|
1240
|
+
{ id: "jp", ddi: "+81", mask: "000-000-0000" },
|
|
1241
|
+
{ id: "jo", ddi: "+962", mask: "00 0000 0000" },
|
|
1242
|
+
{ id: "kz", ddi: "+7", mask: "0 (000) 000-0000" },
|
|
1243
|
+
{ id: "kw", ddi: "+965", mask: "000 00000" },
|
|
1244
|
+
{ id: "la", ddi: "+856", mask: "000 00 000 000" },
|
|
1245
|
+
{ id: "ly", ddi: "+218", mask: "000-0000000" },
|
|
1246
|
+
{ id: "lt", ddi: "+370", mask: "(0-000) 00000" },
|
|
1247
|
+
{ id: "np", ddi: "+977", mask: "(0-000) 00000" },
|
|
1248
|
+
{ id: "mg", ddi: "+261", mask: "000 00 000 00" },
|
|
1249
|
+
{ id: "mw", ddi: "+265", mask: "000 00 000 00" },
|
|
1250
|
+
{ id: "my", ddi: "+60", mask: "000-000 0000" },
|
|
1251
|
+
{ id: "mx", ddi: "+52", mask: "000 000 000 0000" },
|
|
1252
|
+
{ id: "md", ddi: "+373", mask: "0000 00 000" },
|
|
1253
|
+
{ id: "mc", ddi: "+377", mask: "00 00 00 00 00" },
|
|
1254
|
+
{ id: "ma", ddi: "+212", mask: "0000-000000" },
|
|
1255
|
+
{ id: "nl", ddi: "+31", mask: "00 00000000" },
|
|
1256
|
+
{ id: "nc", ddi: "+687", mask: "00.00.00" },
|
|
1257
|
+
{ id: "no", ddi: "+47", mask: "000 00 000" },
|
|
1258
|
+
{ id: "pk", ddi: "+92", mask: "0000 0000000" },
|
|
1259
|
+
{ id: "ru", ddi: "+7", mask: "0 (000) 000-00-00" },
|
|
1260
|
+
{ id: "ws", ddi: "+685", mask: "00 00000" },
|
|
1261
|
+
{ id: "sb", ddi: "+677", mask: "00 00000" },
|
|
1262
|
+
{ id: "sn", ddi: "+221", mask: "00 000 00 00" },
|
|
1263
|
+
{ id: "sc", ddi: "+248", mask: "0 000 000" },
|
|
1264
|
+
{ id: "sl", ddi: "+232", mask: "(000) 000000" },
|
|
1265
|
+
{ id: "so", ddi: "+252", mask: "0 0000000" },
|
|
1266
|
+
{ id: "kr", ddi: "+82", mask: "000-0000-0000" },
|
|
1267
|
+
{ id: "se", ddi: "+46", mask: "000-000 00 00" },
|
|
1268
|
+
{ id: "tj", ddi: "+992", mask: "000 00 0000" },
|
|
1269
|
+
{ id: "tk", ddi: "+690", mask: "0000" },
|
|
1270
|
+
{ id: "tr", ddi: "+90", mask: "0000 000 00 00" },
|
|
1271
|
+
{ id: "tm", ddi: "+993", mask: "0 00 000000" },
|
|
1272
|
+
{ id: "uz", ddi: "+998", mask: "0 00 000 00 00" },
|
|
1273
|
+
{ id: "ve", ddi: "+58", mask: "0000-0000000" },
|
|
1274
|
+
];
|
|
1275
|
+
|
|
1276
|
+
var Ordination;
|
|
1277
|
+
(function (Ordination) {
|
|
1278
|
+
Ordination["NO"] = "no";
|
|
1279
|
+
Ordination["AZ"] = "az";
|
|
1280
|
+
Ordination["ZA"] = "za";
|
|
1281
|
+
})(Ordination || (Ordination = {}));
|
|
1282
|
+
|
|
1283
|
+
let CountryPhonePickerService = class CountryPhonePickerService {
|
|
1284
|
+
constructor(translate) {
|
|
1285
|
+
this.translate = translate;
|
|
1286
|
+
}
|
|
1287
|
+
getCountries(ordination) {
|
|
1288
|
+
switch (ordination) {
|
|
1289
|
+
case Ordination.AZ:
|
|
1290
|
+
return this.sortAlphabetically();
|
|
1291
|
+
case Ordination.ZA:
|
|
1292
|
+
return this.sortAlphabeticallyDescending();
|
|
1293
|
+
case Ordination.NO:
|
|
1294
|
+
default:
|
|
1295
|
+
return countries;
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
sortAlphabetically() {
|
|
1299
|
+
return countries.sort((a, b) => {
|
|
1300
|
+
const aName = this.translate.instant(`platform.angular_components_${a.id}`);
|
|
1301
|
+
const bName = this.translate.instant(`platform.angular_components_${b.id}`);
|
|
1302
|
+
return aName.localeCompare(bName);
|
|
1303
|
+
});
|
|
1304
|
+
}
|
|
1305
|
+
sortAlphabeticallyDescending() {
|
|
1306
|
+
return countries.sort((a, b) => {
|
|
1307
|
+
const aName = this.translate.instant(`platform.angular_components_${a.id}`);
|
|
1308
|
+
const bName = this.translate.instant(`platform.angular_components_${b.id}`);
|
|
1309
|
+
return bName.localeCompare(aName);
|
|
1310
|
+
});
|
|
1311
|
+
}
|
|
1312
|
+
};
|
|
1313
|
+
CountryPhonePickerService.ctorParameters = () => [
|
|
1314
|
+
{ type: TranslateService }
|
|
1315
|
+
];
|
|
1316
|
+
CountryPhonePickerService = __decorate([
|
|
1317
|
+
Injectable()
|
|
1318
|
+
], CountryPhonePickerService);
|
|
1319
|
+
|
|
1320
|
+
var CountryPhonePickerComponent_1;
|
|
1321
|
+
let CountryPhonePickerComponent = CountryPhonePickerComponent_1 = class CountryPhonePickerComponent {
|
|
1322
|
+
constructor(countryPhonePickerService, translate, eRef) {
|
|
1323
|
+
this.countryPhonePickerService = countryPhonePickerService;
|
|
1324
|
+
this.translate = translate;
|
|
1325
|
+
this.eRef = eRef;
|
|
1326
|
+
this.currentItemIndex = 0;
|
|
1327
|
+
this.phone = new FormControl("");
|
|
1328
|
+
this.filter = new FormControl("");
|
|
1329
|
+
this._open = false;
|
|
1330
|
+
this.offsetTop = 0;
|
|
1331
|
+
this.ordination = Ordination.NO;
|
|
1332
|
+
this.selected = new EventEmitter();
|
|
1333
|
+
this.tabindex = 0;
|
|
1334
|
+
this._filterCountries = (value) => {
|
|
1335
|
+
if (!value) {
|
|
1336
|
+
this.filteredCountriesList = this.countriesList;
|
|
1337
|
+
}
|
|
1338
|
+
else {
|
|
1339
|
+
this.filteredCountriesList = this.countriesList.filter((country) => {
|
|
1340
|
+
const countryName = this.translate.instant(`platform.angular_components.country_name_${country.id}`);
|
|
1341
|
+
return countryName.toLowerCase().includes(value.toLowerCase());
|
|
1342
|
+
});
|
|
1343
|
+
}
|
|
1344
|
+
};
|
|
1345
|
+
}
|
|
1346
|
+
writeValue(value) {
|
|
1347
|
+
this.value = value;
|
|
1348
|
+
}
|
|
1349
|
+
registerOnChange(onChange) {
|
|
1350
|
+
this.onChange = onChange;
|
|
1351
|
+
}
|
|
1352
|
+
registerOnTouched(onTouched) {
|
|
1353
|
+
this.onTouched = onTouched;
|
|
1354
|
+
}
|
|
1355
|
+
onClickout(event) {
|
|
1356
|
+
if (!this.eRef.nativeElement.contains(event.target)) {
|
|
1357
|
+
this.open = false;
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
ngOnInit() {
|
|
1361
|
+
var _a;
|
|
1362
|
+
const countries = this.countryPhonePickerService.getCountries(this.ordination);
|
|
1363
|
+
this.filter.valueChanges.subscribe(this._filterCountries);
|
|
1364
|
+
if ((_a = this.countries) === null || _a === void 0 ? void 0 : _a.length) {
|
|
1365
|
+
this.countriesList = countries.filter((country) => this.countries.includes(country.id));
|
|
1366
|
+
}
|
|
1367
|
+
else {
|
|
1368
|
+
this.countriesList = countries;
|
|
1369
|
+
}
|
|
1370
|
+
this.filteredCountriesList = this.countriesList;
|
|
1371
|
+
this.selectedItem = this._getSelectedCountryDefault();
|
|
1372
|
+
this.phone.valueChanges.subscribe((value) => {
|
|
1373
|
+
this.value = {
|
|
1374
|
+
id: this.selectedItem.id,
|
|
1375
|
+
ddi: this.selectedItem.ddi,
|
|
1376
|
+
rawValue: value !== null && value !== void 0 ? value : "",
|
|
1377
|
+
value: value ? `${this._applyMask(value)}` : "",
|
|
1378
|
+
};
|
|
1379
|
+
this.onChange(this.value);
|
|
1380
|
+
});
|
|
1381
|
+
}
|
|
1382
|
+
onKeydown(event) {
|
|
1383
|
+
if (event.key === "Enter" || event.key === " ") {
|
|
1384
|
+
if (this.open) {
|
|
1385
|
+
this.selectedItem = this.countriesList[this.currentItemIndex];
|
|
1386
|
+
this.selected.emit(this.selectedItem);
|
|
1387
|
+
}
|
|
1388
|
+
this.open = !this.open;
|
|
1389
|
+
}
|
|
1390
|
+
else if (event.key === "Escape") {
|
|
1391
|
+
this.open = false;
|
|
1392
|
+
}
|
|
1393
|
+
else if (event.key === "ArrowDown") {
|
|
1394
|
+
this._moveToDown();
|
|
1395
|
+
}
|
|
1396
|
+
else if (event.key === "ArrowUp") {
|
|
1397
|
+
this._moveToUp();
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
get open() {
|
|
1401
|
+
return this._open;
|
|
1402
|
+
}
|
|
1403
|
+
set open(open) {
|
|
1404
|
+
this._open = open;
|
|
1405
|
+
if (!open) {
|
|
1406
|
+
this.phoneInput.nativeElement.focus();
|
|
1407
|
+
}
|
|
1408
|
+
}
|
|
1409
|
+
onBlur() {
|
|
1410
|
+
this.open = false;
|
|
1411
|
+
this.currentItemIndex = this.countriesList.indexOf(this.selectedItem);
|
|
1412
|
+
}
|
|
1413
|
+
onSelectItem(country) {
|
|
1414
|
+
this.open = false;
|
|
1415
|
+
this.selectedItem = country;
|
|
1416
|
+
this.phone.setValue("");
|
|
1417
|
+
this.currentItemIndex = this.countriesList.indexOf(this.selectedItem);
|
|
1418
|
+
this.selected.emit(this.selectedItem);
|
|
1419
|
+
}
|
|
1420
|
+
onCleanFilter() {
|
|
1421
|
+
this.filter.setValue("");
|
|
1422
|
+
}
|
|
1423
|
+
onPhoneInputFocus() {
|
|
1424
|
+
this.open = false;
|
|
1425
|
+
}
|
|
1426
|
+
getMask() {
|
|
1427
|
+
const mask = this.selectedItem.mask;
|
|
1428
|
+
if (Array.isArray(mask)) {
|
|
1429
|
+
return !this.value || this.value.value.length <= mask[0].length - 1
|
|
1430
|
+
? mask[0] // fixo
|
|
1431
|
+
: mask[1]; // celular
|
|
1432
|
+
}
|
|
1433
|
+
else {
|
|
1434
|
+
return mask;
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1437
|
+
getPlaceholder() {
|
|
1438
|
+
return this.getMask().replace(/9/g, "");
|
|
1439
|
+
}
|
|
1440
|
+
_getSelectedCountryDefault() {
|
|
1441
|
+
if (!this.countriesList.length) {
|
|
1442
|
+
throw new Error("No country loaded");
|
|
1443
|
+
}
|
|
1444
|
+
const filteredByBr = this.countriesList.filter((country) => country.id === "br");
|
|
1445
|
+
return filteredByBr.length ? filteredByBr[0] : this.countriesList[0];
|
|
1446
|
+
}
|
|
1447
|
+
_moveToUp() {
|
|
1448
|
+
if (this.currentItemIndex == 0) {
|
|
1449
|
+
return;
|
|
1450
|
+
}
|
|
1451
|
+
this.currentItemIndex--;
|
|
1452
|
+
const selectList = document.querySelector(".select-list");
|
|
1453
|
+
const item = selectList.children[this.currentItemIndex];
|
|
1454
|
+
if (item.offsetTop - selectList.offsetTop <= this.offsetTop) {
|
|
1455
|
+
this.offsetTop -= 45;
|
|
1456
|
+
selectList.scrollTo(0, this.offsetTop);
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
_moveToDown() {
|
|
1460
|
+
if (this.currentItemIndex >= this.countriesList.length - 1) {
|
|
1461
|
+
return;
|
|
1462
|
+
}
|
|
1463
|
+
this.currentItemIndex++;
|
|
1464
|
+
const selectList = document.querySelector(".select-list");
|
|
1465
|
+
const item = selectList.children[this.currentItemIndex];
|
|
1466
|
+
if (item.offsetTop - selectList.offsetTop > this.offsetTop + 180) {
|
|
1467
|
+
this.offsetTop += 45;
|
|
1468
|
+
selectList.scrollTo(0, this.offsetTop);
|
|
1469
|
+
}
|
|
1470
|
+
}
|
|
1471
|
+
_applyMask(value) {
|
|
1472
|
+
let mask;
|
|
1473
|
+
if (Array.isArray(this.selectedItem.mask)) {
|
|
1474
|
+
const rawMask = this.selectedItem.mask[0].replace(/[^0]/g, "");
|
|
1475
|
+
mask = value.length <= rawMask.length
|
|
1476
|
+
? this.selectedItem.mask[0] + "\0"
|
|
1477
|
+
: this.selectedItem.mask[1] + "\0";
|
|
1478
|
+
}
|
|
1479
|
+
else {
|
|
1480
|
+
mask = this.selectedItem.mask;
|
|
1481
|
+
}
|
|
1482
|
+
let tokens = "";
|
|
1483
|
+
let replace = "";
|
|
1484
|
+
let acumulador = 0;
|
|
1485
|
+
let contador = 0;
|
|
1486
|
+
for (const token of mask) {
|
|
1487
|
+
if (isNaN(parseInt(token))) {
|
|
1488
|
+
if (acumulador) {
|
|
1489
|
+
tokens += `(\\d{${acumulador}})`;
|
|
1490
|
+
replace += `$${++contador}`;
|
|
1491
|
+
acumulador = 0;
|
|
1492
|
+
}
|
|
1493
|
+
if (token !== "\0") {
|
|
1494
|
+
replace += token;
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1497
|
+
else {
|
|
1498
|
+
acumulador++;
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
tokens = `^${tokens}*`;
|
|
1502
|
+
return this.phone.value.replace(new RegExp(tokens), replace);
|
|
1503
|
+
}
|
|
1504
|
+
};
|
|
1505
|
+
CountryPhonePickerComponent.ctorParameters = () => [
|
|
1506
|
+
{ type: CountryPhonePickerService },
|
|
1507
|
+
{ type: TranslateService },
|
|
1508
|
+
{ type: ElementRef }
|
|
1509
|
+
];
|
|
1510
|
+
__decorate([
|
|
1511
|
+
Input()
|
|
1512
|
+
], CountryPhonePickerComponent.prototype, "countries", void 0);
|
|
1513
|
+
__decorate([
|
|
1514
|
+
Input()
|
|
1515
|
+
], CountryPhonePickerComponent.prototype, "ordination", void 0);
|
|
1516
|
+
__decorate([
|
|
1517
|
+
Output()
|
|
1518
|
+
], CountryPhonePickerComponent.prototype, "selected", void 0);
|
|
1519
|
+
__decorate([
|
|
1520
|
+
ViewChild("phoneInput", { static: true })
|
|
1521
|
+
], CountryPhonePickerComponent.prototype, "phoneInput", void 0);
|
|
1522
|
+
__decorate([
|
|
1523
|
+
HostListener("document:click", ["$event"])
|
|
1524
|
+
], CountryPhonePickerComponent.prototype, "onClickout", null);
|
|
1525
|
+
__decorate([
|
|
1526
|
+
HostBinding("attr.tabindex")
|
|
1527
|
+
], CountryPhonePickerComponent.prototype, "tabindex", void 0);
|
|
1528
|
+
__decorate([
|
|
1529
|
+
HostListener("keydown", ["$event"])
|
|
1530
|
+
], CountryPhonePickerComponent.prototype, "onKeydown", null);
|
|
1531
|
+
CountryPhonePickerComponent = CountryPhonePickerComponent_1 = __decorate([
|
|
1532
|
+
Component({
|
|
1533
|
+
selector: "s-country-phone-picker",
|
|
1534
|
+
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>",
|
|
1535
|
+
providers: [{
|
|
1536
|
+
provide: NG_VALUE_ACCESSOR,
|
|
1537
|
+
useExisting: CountryPhonePickerComponent_1,
|
|
1538
|
+
multi: true,
|
|
1539
|
+
}],
|
|
1540
|
+
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}"]
|
|
1541
|
+
})
|
|
1542
|
+
], CountryPhonePickerComponent);
|
|
1543
|
+
|
|
1544
|
+
let CountryPhonePickerModule = class CountryPhonePickerModule {
|
|
1545
|
+
};
|
|
1546
|
+
CountryPhonePickerModule = __decorate([
|
|
1547
|
+
NgModule({
|
|
1548
|
+
imports: [
|
|
1549
|
+
CommonModule,
|
|
1550
|
+
TranslateModule,
|
|
1551
|
+
ReactiveFormsModule,
|
|
1552
|
+
NgxMaskModule.forRoot(),
|
|
1553
|
+
],
|
|
1554
|
+
declarations: [CountryPhonePickerComponent],
|
|
1555
|
+
exports: [CountryPhonePickerComponent],
|
|
1556
|
+
providers: [CountryPhonePickerService],
|
|
1557
|
+
})
|
|
1558
|
+
], CountryPhonePickerModule);
|
|
1559
|
+
|
|
1048
1560
|
var FieldType;
|
|
1049
1561
|
(function (FieldType) {
|
|
1050
1562
|
FieldType["Autocomplete"] = "Autocomplete";
|
|
@@ -10339,9 +10851,236 @@ var ProgressBarColors;
|
|
|
10339
10851
|
ProgressBarColors["Yellow"] = "yellow";
|
|
10340
10852
|
})(ProgressBarColors || (ProgressBarColors = {}));
|
|
10341
10853
|
|
|
10854
|
+
const fallback = {
|
|
10855
|
+
"platform.angular_components.country_name_br": "Brasil",
|
|
10856
|
+
"platform.angular_components.country_name_us": "Estados Unidos",
|
|
10857
|
+
"platform.angular_components.country_name_co": "Colômbia",
|
|
10858
|
+
"platform.angular_components.country_name_ar": "Argentina",
|
|
10859
|
+
"platform.angular_components.country_name_cl": "Chile",
|
|
10860
|
+
"platform.angular_components.country_name_py": "Paraguai",
|
|
10861
|
+
"platform.angular_components.country_name_uy": "Uruguai",
|
|
10862
|
+
"platform.angular_components.country_name_cn": "China",
|
|
10863
|
+
"platform.angular_components.country_name_ca": "Canadá",
|
|
10864
|
+
"platform.angular_components.country_name_as": "Samoa Americana",
|
|
10865
|
+
"platform.angular_components.country_name_ai": "Anguilla",
|
|
10866
|
+
"platform.angular_components.country_name_ag": "Antígua e Barbuda",
|
|
10867
|
+
"platform.angular_components.country_name_bs": "Bahamas",
|
|
10868
|
+
"platform.angular_components.country_name_bb": "Barbados",
|
|
10869
|
+
"platform.angular_components.country_name_bm": "Bermuda",
|
|
10870
|
+
"platform.angular_components.country_name_vg": "Ilhas Virgens Britânicas",
|
|
10871
|
+
"platform.angular_components.country_name_ky": "Ilhas Cayman",
|
|
10872
|
+
"platform.angular_components.country_name_dm": "Dominica",
|
|
10873
|
+
"platform.angular_components.country_name_do": "República Dominicana",
|
|
10874
|
+
"platform.angular_components.country_name_gd": "Granada",
|
|
10875
|
+
"platform.angular_components.country_name_gu": "Guam",
|
|
10876
|
+
"platform.angular_components.country_name_jm": "Jamaica",
|
|
10877
|
+
"platform.angular_components.country_name_ms": "Montserrat",
|
|
10878
|
+
"platform.angular_components.country_name_mp": "Ilhas Mariana do Norte",
|
|
10879
|
+
"platform.angular_components.country_name_pr": "Porto Rico",
|
|
10880
|
+
"platform.angular_components.country_name_kn": "Saint Kitts and Nevis",
|
|
10881
|
+
"platform.angular_components.country_name_lc": "Saint Lucia",
|
|
10882
|
+
"platform.angular_components.country_name_vc": "Saint Vincent and the Grenadines",
|
|
10883
|
+
"platform.angular_components.country_name_tt": "Trinidad e Tobago",
|
|
10884
|
+
"platform.angular_components.country_name_tc": "Ilhas Turcas e Caicos",
|
|
10885
|
+
"platform.angular_components.country_name_fi": "Finlândia",
|
|
10886
|
+
"platform.angular_components.country_name_rs": "Sérvia",
|
|
10887
|
+
"platform.angular_components.country_name_zm": "Zâmbia",
|
|
10888
|
+
"platform.angular_components.country_name_af": "Afghanistão",
|
|
10889
|
+
"platform.angular_components.country_name_al": "Albânia",
|
|
10890
|
+
"platform.angular_components.country_name_hr": "Croácia",
|
|
10891
|
+
"platform.angular_components.country_name_ec": "Equador",
|
|
10892
|
+
"platform.angular_components.country_name_et": "Etiópia",
|
|
10893
|
+
"platform.angular_components.country_name_gh": "Gana",
|
|
10894
|
+
"platform.angular_components.country_name_gr": "Grécia",
|
|
10895
|
+
"platform.angular_components.country_name_ie": "Irlanda",
|
|
10896
|
+
"platform.angular_components.country_name_it": "Itália",
|
|
10897
|
+
"platform.angular_components.country_name_lr": "Libéria",
|
|
10898
|
+
"platform.angular_components.country_name_na": "Namíbia",
|
|
10899
|
+
"platform.angular_components.country_name_nz": "Nova Zelândia",
|
|
10900
|
+
"platform.angular_components.country_name_sa": "Arábia Saudita",
|
|
10901
|
+
"platform.angular_components.country_name_za": "África do Sul",
|
|
10902
|
+
"platform.angular_components.country_name_lk": "Sri Lanka",
|
|
10903
|
+
"platform.angular_components.country_name_sd": "Sudão",
|
|
10904
|
+
"platform.angular_components.country_name_th": "Tailândia",
|
|
10905
|
+
"platform.angular_components.country_name_ua": "Ucrânia",
|
|
10906
|
+
"platform.angular_components.country_name_ae": "Emirados Árabes Unidos",
|
|
10907
|
+
"platform.angular_components.country_name_va": "Vaticano",
|
|
10908
|
+
"platform.angular_components.country_name_zw": "Zimbábue",
|
|
10909
|
+
"platform.angular_components.country_name_dz": "Argélia",
|
|
10910
|
+
"platform.angular_components.country_name_be": "Bélgica",
|
|
10911
|
+
"platform.angular_components.country_name_yt": "Mayotte",
|
|
10912
|
+
"platform.angular_components.country_name_bl": "Saint Barthelemy",
|
|
10913
|
+
"platform.angular_components.country_name_mf": "Saint Martin",
|
|
10914
|
+
"platform.angular_components.country_name_ad": "Andora",
|
|
10915
|
+
"platform.angular_components.country_name_ao": "Angola",
|
|
10916
|
+
"platform.angular_components.country_name_ba": "Bósnia e Herzegovina",
|
|
10917
|
+
"platform.angular_components.country_name_bg": "Bulgária",
|
|
10918
|
+
"platform.angular_components.country_name_kh": "Camboja",
|
|
10919
|
+
"platform.angular_components.country_name_cz": "República Checa",
|
|
10920
|
+
"platform.angular_components.country_name_gq": "Guiné Equatorial",
|
|
10921
|
+
"platform.angular_components.country_name_gw": "Guiné-Bissau",
|
|
10922
|
+
"platform.angular_components.country_name_li": "Liechtenstein",
|
|
10923
|
+
"platform.angular_components.country_name_lu": "Luxemburgo",
|
|
10924
|
+
"platform.angular_components.country_name_mk": "Macedónia",
|
|
10925
|
+
"platform.angular_components.country_name_me": "Montenegro",
|
|
10926
|
+
"platform.angular_components.country_name_pe": "Peru",
|
|
10927
|
+
"platform.angular_components.country_name_pl": "Polónia",
|
|
10928
|
+
"platform.angular_components.country_name_pt": "Portugal",
|
|
10929
|
+
"platform.angular_components.country_name_si": "Slovenia",
|
|
10930
|
+
"platform.angular_components.country_name_am": "Arménia",
|
|
10931
|
+
"platform.angular_components.country_name_aw": "Aruba",
|
|
10932
|
+
"platform.angular_components.country_name_bn": "Brunei",
|
|
10933
|
+
"platform.angular_components.country_name_fj": "Fiji",
|
|
10934
|
+
"platform.angular_components.country_name_gm": "Gâmbia",
|
|
10935
|
+
"platform.angular_components.country_name_gy": "Guiana",
|
|
10936
|
+
"platform.angular_components.country_name_is": "Islândia",
|
|
10937
|
+
"platform.angular_components.country_name_fm": "Micronésia",
|
|
10938
|
+
"platform.angular_components.country_name_nr": "Nauru",
|
|
10939
|
+
"platform.angular_components.country_name_nu": "Niue",
|
|
10940
|
+
"platform.angular_components.country_name_pw": "Palau",
|
|
10941
|
+
"platform.angular_components.country_name_st": "Sao Tome e Principe",
|
|
10942
|
+
"platform.angular_components.country_name_to": "Tonga",
|
|
10943
|
+
"platform.angular_components.country_name_vu": "Vanuatu",
|
|
10944
|
+
"platform.angular_components.country_name_fk": "Ilhas Falkland (Malvinas)",
|
|
10945
|
+
"platform.angular_components.country_name_fo": "Ilhas Feroé",
|
|
10946
|
+
"platform.angular_components.country_name_sh": "Saint Helena",
|
|
10947
|
+
"platform.angular_components.country_name_au": "Austrália",
|
|
10948
|
+
"platform.angular_components.country_name_cx": "Christmas Island",
|
|
10949
|
+
"platform.angular_components.country_name_cc": "Ilhas Cocos (Keeling)",
|
|
10950
|
+
"platform.angular_components.country_name_cd": "República Democrática do Congo",
|
|
10951
|
+
"platform.angular_components.country_name_kg": "Quirguistão",
|
|
10952
|
+
"platform.angular_components.country_name_ro": "Roménia",
|
|
10953
|
+
"platform.angular_components.country_name_rw": "Ruanda",
|
|
10954
|
+
"platform.angular_components.country_name_sk": "Slovakia",
|
|
10955
|
+
"platform.angular_components.country_name_sy": "Syria",
|
|
10956
|
+
"platform.angular_components.country_name_tw": "Taiwan",
|
|
10957
|
+
"platform.angular_components.country_name_tz": "Tanzânia",
|
|
10958
|
+
"platform.angular_components.country_name_ye": "Iémen (Iémen, Yemen)",
|
|
10959
|
+
"platform.angular_components.country_name_at": "Áustria",
|
|
10960
|
+
"platform.angular_components.country_name_ke": "Quénia (Kenya)",
|
|
10961
|
+
"platform.angular_components.country_name_ug": "Uganda",
|
|
10962
|
+
"platform.angular_components.country_name_az": "Azerbaijão",
|
|
10963
|
+
"platform.angular_components.country_name_ch": "Suiça",
|
|
10964
|
+
"platform.angular_components.country_name_vn": "Vietnã (Vietname)",
|
|
10965
|
+
"platform.angular_components.country_name_bh": "Bahrein",
|
|
10966
|
+
"platform.angular_components.country_name_cr": "Costa Rica",
|
|
10967
|
+
"platform.angular_components.country_name_sv": "El Salvador",
|
|
10968
|
+
"platform.angular_components.country_name_ee": "Estónia",
|
|
10969
|
+
"platform.angular_components.country_name_sz": "Suazilândia",
|
|
10970
|
+
"platform.angular_components.country_name_gt": "Guatemala",
|
|
10971
|
+
"platform.angular_components.country_name_hk": "Hong Kong",
|
|
10972
|
+
"platform.angular_components.country_name_ls": "Lesoto",
|
|
10973
|
+
"platform.angular_components.country_name_mo": "Macau",
|
|
10974
|
+
"platform.angular_components.country_name_mt": "Malta",
|
|
10975
|
+
"platform.angular_components.country_name_mu": "Maurícia",
|
|
10976
|
+
"platform.angular_components.country_name_mn": "Mongólia",
|
|
10977
|
+
"platform.angular_components.country_name_ni": "Nicaragua",
|
|
10978
|
+
"platform.angular_components.country_name_om": "Omã",
|
|
10979
|
+
"platform.angular_components.country_name_pg": "Papua-Nova Guiné",
|
|
10980
|
+
"platform.angular_components.country_name_qa": "Catar",
|
|
10981
|
+
"platform.angular_components.country_name_sg": "Cingapura",
|
|
10982
|
+
"platform.angular_components.country_name_tl": "Timor-Leste",
|
|
10983
|
+
"platform.angular_components.country_name_bd": "Bangladesh",
|
|
10984
|
+
"platform.angular_components.country_name_im": "Ilha de Man",
|
|
10985
|
+
"platform.angular_components.country_name_by": "Bielorrússia",
|
|
10986
|
+
"platform.angular_components.country_name_bz": "Belize",
|
|
10987
|
+
"platform.angular_components.country_name_mv": "Maldivas",
|
|
10988
|
+
"platform.angular_components.country_name_mh": "Ilhas Marshall",
|
|
10989
|
+
"platform.angular_components.country_name_sr": "Suriname",
|
|
10990
|
+
"platform.angular_components.country_name_bj": "Benim",
|
|
10991
|
+
"platform.angular_components.country_name_bt": "Butão",
|
|
10992
|
+
"platform.angular_components.country_name_bf": "Burkina Faso",
|
|
10993
|
+
"platform.angular_components.country_name_bi": "Burundi",
|
|
10994
|
+
"platform.angular_components.country_name_cf": "República Centro-Africana",
|
|
10995
|
+
"platform.angular_components.country_name_td": "Chad",
|
|
10996
|
+
"platform.angular_components.country_name_ci": "Costa do Marfim",
|
|
10997
|
+
"platform.angular_components.country_name_dk": "Dinamarca",
|
|
10998
|
+
"platform.angular_components.country_name_dj": "Djibouti",
|
|
10999
|
+
"platform.angular_components.country_name_fr": "França",
|
|
11000
|
+
"platform.angular_components.country_name_pf": "Polinésia Francesa",
|
|
11001
|
+
"platform.angular_components.country_name_ga": "Gabão",
|
|
11002
|
+
"platform.angular_components.country_name_ml": "Mali",
|
|
11003
|
+
"platform.angular_components.country_name_mr": "Mauritânia",
|
|
11004
|
+
"platform.angular_components.country_name_ne": "Níger",
|
|
11005
|
+
"platform.angular_components.country_name_sm": "San Marino",
|
|
11006
|
+
"platform.angular_components.country_name_tg": "Togo",
|
|
11007
|
+
"platform.angular_components.country_name_bo": "Bolívia",
|
|
11008
|
+
"platform.angular_components.country_name_gi": "Gibraltar",
|
|
11009
|
+
"platform.angular_components.country_name_ki": "Kiribati",
|
|
11010
|
+
"platform.angular_components.country_name_tv": "Tuvalu",
|
|
11011
|
+
"platform.angular_components.country_name_bw": "Botswana",
|
|
11012
|
+
"platform.angular_components.country_name_er": "Eritreia",
|
|
11013
|
+
"platform.angular_components.country_name_lv": "Letônia",
|
|
11014
|
+
"platform.angular_components.country_name_lb": "Líbano",
|
|
11015
|
+
"platform.angular_components.country_name_tn": "Tunísia",
|
|
11016
|
+
"platform.angular_components.country_name_cm": "Camarões",
|
|
11017
|
+
"platform.angular_components.country_name_cv": "Cabo Verde",
|
|
11018
|
+
"platform.angular_components.country_name_km": "Comores",
|
|
11019
|
+
"platform.angular_components.country_name_pm": "Saint Pierre and Miquelon",
|
|
11020
|
+
"platform.angular_components.country_name_cg": "República do Congo",
|
|
11021
|
+
"platform.angular_components.country_name_mz": "Moçambique",
|
|
11022
|
+
"platform.angular_components.country_name_mm": "Myanmar (Burma)",
|
|
11023
|
+
"platform.angular_components.country_name_ck": "Ilhas Cook",
|
|
11024
|
+
"platform.angular_components.country_name_cu": "Cuba",
|
|
11025
|
+
"platform.angular_components.country_name_cy": "Chipre",
|
|
11026
|
+
"platform.angular_components.country_name_eg": "Egito",
|
|
11027
|
+
"platform.angular_components.country_name_ir": "Irã",
|
|
11028
|
+
"platform.angular_components.country_name_iq": "Iraque",
|
|
11029
|
+
"platform.angular_components.country_name_ng": "Nigéria",
|
|
11030
|
+
"platform.angular_components.country_name_kp": "Coreia do Norte",
|
|
11031
|
+
"platform.angular_components.country_name_ph": "Filipinas",
|
|
11032
|
+
"platform.angular_components.country_name_ge": "Geórgia",
|
|
11033
|
+
"platform.angular_components.country_name_gn": "Guiné",
|
|
11034
|
+
"platform.angular_components.country_name_es": "Espanha",
|
|
11035
|
+
"platform.angular_components.country_name_de": "Alemanha",
|
|
11036
|
+
"platform.angular_components.country_name_gl": "Groelândia",
|
|
11037
|
+
"platform.angular_components.country_name_wf": "Wallis e Futuna",
|
|
11038
|
+
"platform.angular_components.country_name_ht": "Haiti",
|
|
11039
|
+
"platform.angular_components.country_name_hn": "Honduras",
|
|
11040
|
+
"platform.angular_components.country_name_pa": "Panamá",
|
|
11041
|
+
"platform.angular_components.country_name_hu": "Hungria",
|
|
11042
|
+
"platform.angular_components.country_name_in": "India",
|
|
11043
|
+
"platform.angular_components.country_name_id": "Indonésia",
|
|
11044
|
+
"platform.angular_components.country_name_il": "Israel",
|
|
11045
|
+
"platform.angular_components.country_name_jp": "Japão",
|
|
11046
|
+
"platform.angular_components.country_name_jo": "Jordânia",
|
|
11047
|
+
"platform.angular_components.country_name_kz": "Cazaquistão",
|
|
11048
|
+
"platform.angular_components.country_name_kw": "Kuwait",
|
|
11049
|
+
"platform.angular_components.country_name_la": "Laos",
|
|
11050
|
+
"platform.angular_components.country_name_ly": "Líbia",
|
|
11051
|
+
"platform.angular_components.country_name_lt": "Lituânia",
|
|
11052
|
+
"platform.angular_components.country_name_np": "Nepal",
|
|
11053
|
+
"platform.angular_components.country_name_mg": "Madagáscar",
|
|
11054
|
+
"platform.angular_components.country_name_mw": "Malawi",
|
|
11055
|
+
"platform.angular_components.country_name_my": "Malásia",
|
|
11056
|
+
"platform.angular_components.country_name_mx": "México",
|
|
11057
|
+
"platform.angular_components.country_name_md": "Moldávia",
|
|
11058
|
+
"platform.angular_components.country_name_mc": "Monaco",
|
|
11059
|
+
"platform.angular_components.country_name_ma": "Marrocos",
|
|
11060
|
+
"platform.angular_components.country_name_nl": "Países Baixos",
|
|
11061
|
+
"platform.angular_components.country_name_nc": "Nova Caledônia",
|
|
11062
|
+
"platform.angular_components.country_name_no": "Noruega",
|
|
11063
|
+
"platform.angular_components.country_name_pk": "Paquistão",
|
|
11064
|
+
"platform.angular_components.country_name_ru": "Rússia",
|
|
11065
|
+
"platform.angular_components.country_name_ws": "Samoa",
|
|
11066
|
+
"platform.angular_components.country_name_sb": "Ilhas Salomão",
|
|
11067
|
+
"platform.angular_components.country_name_sn": "Senegal",
|
|
11068
|
+
"platform.angular_components.country_name_sc": "Seychelles",
|
|
11069
|
+
"platform.angular_components.country_name_sl": "Serra Leoa",
|
|
11070
|
+
"platform.angular_components.country_name_so": "Somalia",
|
|
11071
|
+
"platform.angular_components.country_name_kr": "Coreia do Sul",
|
|
11072
|
+
"platform.angular_components.country_name_se": "Suécia",
|
|
11073
|
+
"platform.angular_components.country_name_tj": "Tajiquistão",
|
|
11074
|
+
"platform.angular_components.country_name_tk": "Tokelau",
|
|
11075
|
+
"platform.angular_components.country_name_tr": "Turquia",
|
|
11076
|
+
"platform.angular_components.country_name_tm": "Turquemenistão",
|
|
11077
|
+
"platform.angular_components.country_name_uz": "Uzbequistão",
|
|
11078
|
+
"platform.angular_components.country_name_ve": "Venezuela"
|
|
11079
|
+
};
|
|
11080
|
+
|
|
10342
11081
|
/**
|
|
10343
11082
|
* Generated bundle index. Do not edit.
|
|
10344
11083
|
*/
|
|
10345
11084
|
|
|
10346
|
-
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,
|
|
11085
|
+
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 };
|
|
10347
11086
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|