monkey-style-guide 2.0.86 → 2.0.91

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 (35) hide show
  1. package/assets/scss/partials/components/_date-range-picker.scss +4 -5
  2. package/assets/scss/partials/components/_index.scss +1 -0
  3. package/assets/scss/partials/components/_input-phone.scss +17 -0
  4. package/bundles/monkey-style-guide.umd.js +248 -27
  5. package/bundles/monkey-style-guide.umd.js.map +1 -1
  6. package/esm2015/lib/components/date-range-picker/date-range-picker.component.js +31 -26
  7. package/esm2015/lib/components/date-range-picker/date-range-picker.component.ngfactory.js +20 -21
  8. package/esm2015/lib/components/date-range-picker/date-range-picker.component.ngsummary.json +1 -1
  9. package/esm2015/lib/components/date-range-picker/date-range-picker.module.ngfactory.js +1 -1
  10. package/esm2015/lib/components/date-range-picker/index.ngsummary.json +1 -1
  11. package/esm2015/lib/components/index.js +2 -1
  12. package/esm2015/lib/components/index.ngsummary.json +1 -1
  13. package/esm2015/lib/components/input-phone/index.js +3 -0
  14. package/esm2015/lib/components/input-phone/index.ngsummary.json +1 -0
  15. package/esm2015/lib/components/input-phone/input-phone.component.js +205 -0
  16. package/esm2015/lib/components/input-phone/input-phone.component.ngfactory.js +27 -0
  17. package/esm2015/lib/components/input-phone/input-phone.component.ngsummary.json +1 -0
  18. package/esm2015/lib/components/input-phone/input-phone.module.js +25 -0
  19. package/esm2015/lib/components/input-phone/input-phone.module.ngfactory.js +18 -0
  20. package/esm2015/lib/components/input-phone/input-phone.module.ngsummary.json +1 -0
  21. package/esm2015/monkey-style-guide.ngsummary.json +1 -1
  22. package/esm2015/public-api.ngsummary.json +1 -1
  23. package/fesm2015/monkey-style-guide.js +247 -25
  24. package/fesm2015/monkey-style-guide.js.map +1 -1
  25. package/lib/components/date-range-picker/date-range-picker.component.d.ts +1 -0
  26. package/lib/components/index.d.ts +1 -0
  27. package/lib/components/input-phone/index.d.ts +2 -0
  28. package/lib/components/input-phone/input-phone.component.d.ts +61 -0
  29. package/lib/components/input-phone/input-phone.component.ngfactory.d.ts +1 -0
  30. package/lib/components/input-phone/input-phone.module.d.ts +2 -0
  31. package/lib/components/input-phone/input-phone.module.ngfactory.d.ts +3 -0
  32. package/monkey-style-guide-2.0.91.tgz +0 -0
  33. package/monkey-style-guide.metadata.json +1 -1
  34. package/package.json +3 -2
  35. package/monkey-style-guide-2.0.86.tgz +0 -0
@@ -6,6 +6,7 @@ import { FormsModule, ReactiveFormsModule, Validators, NG_VALUE_ACCESSOR, FormBu
6
6
  import { takeUntil } from 'rxjs/operators';
7
7
  import * as moment_ from 'moment';
8
8
  import { NgxMaskModule } from 'ngx-mask';
9
+ import { PhoneNumberUtil, AsYouTypeFormatter, PhoneNumberFormat } from 'google-libphonenumber';
9
10
  import { DomSanitizer } from '@angular/platform-browser';
10
11
 
11
12
  class MonkeyStyleGuideService {
@@ -2046,12 +2047,6 @@ MonkeyButtonModule.decorators = [
2046
2047
  * MIT Licence
2047
2048
  **************************/
2048
2049
  const moment = moment_;
2049
- const ɵ0 = () => {
2050
- const isMobileWidth = window.screen.width <= 640 ||
2051
- (window.matchMedia && window.matchMedia('only screen and (max-width: 640px)').matches);
2052
- return (/Android|webOS|iPhone|iPad|iPod|BlackBerry|Mobile/i.test(navigator.userAgent) || isMobileWidth);
2053
- };
2054
- const isMobile = (ɵ0)();
2055
2050
  class MonkeyDateRangePickerComponent {
2056
2051
  constructor(fb, cdr) {
2057
2052
  this.fb = fb;
@@ -2108,9 +2103,11 @@ class MonkeyDateRangePickerComponent {
2108
2103
  }
2109
2104
  build() {
2110
2105
  this._daysArrFirst = this.createCalendar(this._dateFirst);
2111
- if (!isMobile) {
2112
- this._daysArrSecond = this.createCalendar(this._dateSecond);
2113
- }
2106
+ this._daysArrSecond = this.createCalendar(this._dateSecond);
2107
+ }
2108
+ clearDates() {
2109
+ this._dateForm.setValue({ startDate: null, endDate: null });
2110
+ this.writeValue(this._dateForm.value);
2114
2111
  }
2115
2112
  navigateToToday() {
2116
2113
  this._dateFirst = moment();
@@ -2127,10 +2124,13 @@ class MonkeyDateRangePickerComponent {
2127
2124
  this.onModelTouched = fn;
2128
2125
  }
2129
2126
  set value(value) {
2130
- this._dateForm.setValue(value);
2131
- this.cdr.detectChanges();
2132
- this.onModelChange(this._dateForm.value);
2133
- this.onModelTouched(this._dateForm.value);
2127
+ if (Object.prototype.hasOwnProperty.call(value, 'startDate') &&
2128
+ Object.prototype.hasOwnProperty.call(value, 'endDate')) {
2129
+ this._dateForm.setValue(value);
2130
+ this.cdr.detectChanges();
2131
+ this.onModelChange(this._dateForm.value);
2132
+ this.onModelTouched(this._dateForm.value);
2133
+ }
2134
2134
  }
2135
2135
  get value() {
2136
2136
  return this._dateForm.value;
@@ -2184,17 +2184,24 @@ class MonkeyDateRangePickerComponent {
2184
2184
  const { _dateForm } = this;
2185
2185
  let dayFormatted = day.format('YYYY-MM-DD');
2186
2186
  if (_dateForm.valid) {
2187
- _dateForm.setValue({ startDate: null, endDate: null });
2188
- this.writeValue(null);
2189
- return;
2187
+ this.clearDates();
2188
+ }
2189
+ let { startDate, endDate } = _dateForm.value;
2190
+ if (startDate) {
2191
+ if (moment(startDate).isAfter(moment(dayFormatted))) {
2192
+ endDate = startDate;
2193
+ startDate = dayFormatted;
2194
+ }
2190
2195
  }
2191
- if (!_dateForm.get('startDate').value) {
2192
- _dateForm.get('startDate').patchValue(dayFormatted);
2196
+ else
2197
+ startDate = dayFormatted;
2198
+ if (startDate) {
2199
+ _dateForm.get('startDate').patchValue(startDate);
2193
2200
  }
2194
- else {
2195
- _dateForm.get('endDate').patchValue(dayFormatted);
2196
- this.writeValue(_dateForm.value);
2201
+ if (endDate) {
2202
+ _dateForm.get('endDate').patchValue(endDate);
2197
2203
  }
2204
+ this.writeValue(_dateForm.value);
2198
2205
  }
2199
2206
  selectRangeOfDays(days) {
2200
2207
  const { _dateForm, today } = this;
@@ -2210,7 +2217,7 @@ MonkeyDateRangePickerComponent.decorators = [
2210
2217
  { type: Component, args: [{
2211
2218
  selector: 'monkey-date-range-picker',
2212
2219
  template: `
2213
- <mecx-date-range-picker-group [class.error]="errorMessage?.trim()">
2220
+ <mecx-date-range-picker-group>
2214
2221
  <mecx-date-range-picker-group-body>
2215
2222
  <mecx-date-range-picker class="first-date-range">
2216
2223
  <mecx-date-range-picker-header>
@@ -2265,7 +2272,7 @@ MonkeyDateRangePickerComponent.decorators = [
2265
2272
  </mecx-date-range-picker-body>
2266
2273
  </mecx-date-range-picker>
2267
2274
 
2268
- <mecx-date-range-picker class="second-date-range" *ngIf="_daysArrSecond?.length">
2275
+ <mecx-date-range-picker class="second-date-range">
2269
2276
  <mecx-date-range-picker-header>
2270
2277
  <div class="calendar-title">
2271
2278
  <div class="month-year-title">
@@ -2316,7 +2323,7 @@ MonkeyDateRangePickerComponent.decorators = [
2316
2323
  {{ errorMessage }}
2317
2324
  </error>
2318
2325
  </mecx-date-range-picker-group-info>
2319
- <mecx-date-range-picker-group-action>
2326
+ <mecx-date-range-picker-group-action [class.error]="errorMessage?.trim()">
2320
2327
  <div class="action-days">
2321
2328
  <monkey-button color="theme" type="secondary" (click)="selectRangeOfDays(30)">
2322
2329
  {{ i18n?.actions?.['30'] }}
@@ -2827,6 +2834,203 @@ MonkeyInputModule.decorators = [
2827
2834
  },] }
2828
2835
  ];
2829
2836
 
2837
+ /**************************
2838
+ * Copyright Monkey Exchange. All Rights Reserved
2839
+ * This style guide was developed by Monkey Exchange Team
2840
+ * MIT Licence
2841
+ **************************/
2842
+ const phoneUtil = PhoneNumberUtil.getInstance();
2843
+ const formatter = new AsYouTypeFormatter('US');
2844
+ class MonkeyInputPhoneComponent {
2845
+ constructor(currencyPipe, settingsService, cdr) {
2846
+ this.currencyPipe = currencyPipe;
2847
+ this.settingsService = settingsService;
2848
+ this.cdr = cdr;
2849
+ this.name = `mecx-input-phone-${MonkeyUtils.getRandomString(10)}`;
2850
+ this.helperMessage = '';
2851
+ this.placeholder = '';
2852
+ this.maxLength = 255;
2853
+ this.maxDateToday = false;
2854
+ this.onChange = new EventEmitter();
2855
+ this.onModelChange = (value) => { };
2856
+ this.onModelTouched = (value) => { };
2857
+ this._id = `mecx-input-phone-${MonkeyUtils.getRandomString(10)}`;
2858
+ this._disabled = false;
2859
+ this._maxDateToday = new Date().toISOString().split('T')[0];
2860
+ this._symbol = '';
2861
+ this._countryCodes = [];
2862
+ }
2863
+ handleValue(value, apply = false) {
2864
+ if (this.onlyNumber) {
2865
+ return MonkeyUtils.handleOnlyNumbers(`${value}`);
2866
+ }
2867
+ else if (this.onlyAlphaNumeric)
2868
+ return MonkeyUtils.handleOnlyAlphaNumeric(`${value}`);
2869
+ else if (this.upperCase)
2870
+ return `${value}`.toUpperCase();
2871
+ else if (this.lowerCase)
2872
+ return `${value}`.toLowerCase();
2873
+ else if (this.capitalize)
2874
+ return MonkeyUtils.capitalize(`${value}`.toUpperCase());
2875
+ else if (this.currency || this.percent) {
2876
+ return MonkeyUtils.handleOnlyNumbers(`${value}`) / (apply ? 100 : 1);
2877
+ }
2878
+ return value;
2879
+ }
2880
+ replaceZero(value) {
2881
+ return `${value}`.replace(new RegExp(/0/, 'g'), '');
2882
+ }
2883
+ formatValue(value) {
2884
+ //console.log(this.phoneUtil);
2885
+ //console.log(this.phoneUtil.formatInOriginalFormat(value, 'US'));
2886
+ //this.phoneUtil.inputDigit('2');
2887
+ console.log(formatter.inputDigit(value));
2888
+ const number = phoneUtil.parse(value, 'BR');
2889
+ console.log(phoneUtil.isPossibleNumber(number));
2890
+ console.log(phoneUtil.format(number, PhoneNumberFormat.INTERNATIONAL));
2891
+ return phoneUtil.format(number, PhoneNumberFormat.INTERNATIONAL);
2892
+ }
2893
+ handleSymbol() {
2894
+ var _a;
2895
+ const { settings } = this;
2896
+ if (this.currency) {
2897
+ this._symbol = {
2898
+ BRL: 'R$',
2899
+ CLP: 'CLP',
2900
+ }[((_a = settings === null || settings === void 0 ? void 0 : settings.currency) === null || _a === void 0 ? void 0 : _a.code) || 'BRL'];
2901
+ }
2902
+ else if (this.percent) {
2903
+ this._symbol = '%';
2904
+ }
2905
+ }
2906
+ ngOnInit() {
2907
+ const { settingsService } = this;
2908
+ this._oldType = this.type;
2909
+ settingsService.settings().subscribe((val) => {
2910
+ this.settings = val;
2911
+ this.handleSymbol();
2912
+ });
2913
+ this._countryCodes = phoneUtil
2914
+ .getSupportedRegions()
2915
+ .map((code) => {
2916
+ return phoneUtil.getCountryCodeForRegion(code);
2917
+ })
2918
+ .filter((v, i, a) => a.indexOf(v) === i)
2919
+ .sort((a, b) => (a < b ? -1 : 1));
2920
+ }
2921
+ registerOnChange(fn) {
2922
+ this.onModelChange = fn;
2923
+ }
2924
+ registerOnTouched(fn) {
2925
+ this.onModelTouched = fn;
2926
+ }
2927
+ setDisabledState(isDisabled) {
2928
+ this._disabled = isDisabled;
2929
+ }
2930
+ set value(value) {
2931
+ this.handledValue = value;
2932
+ this._formatedValue = this.formatValue(value);
2933
+ this.cdr.detectChanges();
2934
+ this.onModelChange(this.handledValue);
2935
+ this.onModelTouched(this.handledValue);
2936
+ }
2937
+ get value() {
2938
+ return this.handledValue;
2939
+ }
2940
+ writeValue(value) {
2941
+ this.value = value;
2942
+ }
2943
+ onChangeValue(event) {
2944
+ const value = this._formatedValue;
2945
+ event === null || event === void 0 ? void 0 : event.preventDefault();
2946
+ event === null || event === void 0 ? void 0 : event.stopPropagation();
2947
+ const handled = this.handleValue(value, true);
2948
+ this.writeValue(handled);
2949
+ this.onChange.next(handled);
2950
+ }
2951
+ onShowAndHidePassword() {
2952
+ this.type = this.type === 'password' ? 'text' : 'password';
2953
+ }
2954
+ onClick() {
2955
+ var _a, _b, _c;
2956
+ (_c = (_b = (_a = document === null || document === void 0 ? void 0 : document.getElementById(this._id)) === null || _a === void 0 ? void 0 : _a.getElementsByTagName('input')) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.focus();
2957
+ }
2958
+ onKeyPress(event) {
2959
+ var _a;
2960
+ let pattern = null;
2961
+ const cmp = (_a = event === null || event === void 0 ? void 0 : event.target) === null || _a === void 0 ? void 0 : _a.value;
2962
+ const inputChar = String.fromCharCode(event.charCode);
2963
+ if (this.currency || this.onlyNumber || this.percent) {
2964
+ pattern = /[0-9]/;
2965
+ if (inputChar === '0' && !this.replaceZero(cmp)) {
2966
+ event.preventDefault();
2967
+ return;
2968
+ }
2969
+ }
2970
+ else if (this.onlyAlphaNumeric) {
2971
+ pattern = /[^0-9A-Za-z]/;
2972
+ }
2973
+ if (pattern && !pattern.test(inputChar)) {
2974
+ event.preventDefault();
2975
+ }
2976
+ }
2977
+ }
2978
+ MonkeyInputPhoneComponent.decorators = [
2979
+ { type: Component, args: [{
2980
+ selector: 'monkey-input-phone',
2981
+ template: `
2982
+ <monkey-select
2983
+ [label]="'teste'"
2984
+ errorMessage=""
2985
+ errorMessage=""
2986
+ [placeholder]="'Selecione um banco'"
2987
+ >
2988
+ <monkey-option label="op" value="op"> </monkey-option>
2989
+ <monkey-option label="op" value="op"> </monkey-option>
2990
+ <monkey-option label="op" value="op"> </monkey-option>
2991
+ </monkey-select>
2992
+ `,
2993
+ encapsulation: ViewEncapsulation.None,
2994
+ providers: [
2995
+ {
2996
+ provide: NG_VALUE_ACCESSOR,
2997
+ useExisting: forwardRef(() => MonkeyInputPhoneComponent),
2998
+ multi: true,
2999
+ },
3000
+ CurrencyPipe,
3001
+ ]
3002
+ },] }
3003
+ ];
3004
+ MonkeyInputPhoneComponent.ctorParameters = () => [
3005
+ { type: CurrencyPipe },
3006
+ { type: MonkeyStyleGuideSettingsService },
3007
+ { type: ChangeDetectorRef }
3008
+ ];
3009
+ MonkeyInputPhoneComponent.propDecorators = {
3010
+ name: [{ type: Input }],
3011
+ label: [{ type: Input }],
3012
+ helperMessage: [{ type: Input }],
3013
+ placeholder: [{ type: Input }],
3014
+ icon: [{ type: Input }],
3015
+ type: [{ type: Input }],
3016
+ infoMessage: [{ type: Input }],
3017
+ errorMessage: [{ type: Input }],
3018
+ mask: [{ type: Input }],
3019
+ prefix: [{ type: Input }],
3020
+ maxLength: [{ type: Input }],
3021
+ onlyNumber: [{ type: Input }],
3022
+ onlyAlphaNumeric: [{ type: Input }],
3023
+ upperCase: [{ type: Input }],
3024
+ lowerCase: [{ type: Input }],
3025
+ capitalize: [{ type: Input }],
3026
+ currency: [{ type: Input }],
3027
+ percent: [{ type: Input }],
3028
+ maxDateToday: [{ type: Input }],
3029
+ onChange: [{ type: Output }],
3030
+ value: [{ type: Input }],
3031
+ onClick: [{ type: HostListener, args: ['click',] }]
3032
+ };
3033
+
2830
3034
  /**************************
2831
3035
  * Copyright Monkey Exchange. All Rights Reserved
2832
3036
  * This style guide was developed by Monkey Exchange Team
@@ -3764,6 +3968,24 @@ MonkeySelectModule.decorators = [
3764
3968
  },] }
3765
3969
  ];
3766
3970
 
3971
+ class MonkeyInputPhoneModule {
3972
+ }
3973
+ MonkeyInputPhoneModule.decorators = [
3974
+ { type: NgModule, args: [{
3975
+ declarations: [MonkeyInputPhoneComponent],
3976
+ imports: [
3977
+ CommonModule,
3978
+ FormsModule,
3979
+ ReactiveFormsModule,
3980
+ NgxMaskModule.forRoot(),
3981
+ MonkeyIconModule,
3982
+ MonkeySelectModule,
3983
+ ],
3984
+ exports: [MonkeyInputPhoneComponent],
3985
+ schemas: [NO_ERRORS_SCHEMA],
3986
+ },] }
3987
+ ];
3988
+
3767
3989
  /**************************
3768
3990
  * Copyright Monkey Exchange. All Rights Reserved
3769
3991
  * This style guide was developed by Monkey Exchange Team
@@ -5389,5 +5611,5 @@ MonkeyStyleGuideModule.decorators = [
5389
5611
  * Generated bundle index. Do not edit.
5390
5612
  */
5391
5613
 
5392
- export { MonkeyBadgeComponent, MonkeyBadgeModule, MonkeyButtonAvatarComponent, MonkeyButtonComponent, MonkeyButtonDropdownComponent, MonkeyButtonModule, MonkeyCheckboxComponent, MonkeyCheckboxModule, MonkeyDateRangePickerComponent, MonkeyDateRangePickerModule, MonkeyExpansionComponent, MonkeyExpansionModule, MonkeyFileUploadComponent, MonkeyFileUploadModule, MonkeyIconArrowDownComponent, MonkeyIconArrowLeftComponent, MonkeyIconArrowRightComponent, MonkeyIconArrowUpComponent, MonkeyIconBankComponent, MonkeyIconBellComponent, MonkeyIconBookComponent, MonkeyIconBoxComponent, MonkeyIconCNPJComponent, MonkeyIconCalendarComponent, MonkeyIconCameraComponent, MonkeyIconChatComponent, MonkeyIconCheckCircleComponent, MonkeyIconCheckCircleOutComponent, MonkeyIconCheckComponent, MonkeyIconCheckGreyComponent, MonkeyIconCheckWhiteComponent, MonkeyIconClipboardComponent, MonkeyIconClockComponent, MonkeyIconCloseComponent, MonkeyIconCodepenComponent, MonkeyIconCompanyNameComponent, MonkeyIconComponent, MonkeyIconContractComponent, MonkeyIconDeleteComponent, MonkeyIconDocumentComponent, MonkeyIconDollarSignComponent, MonkeyIconDomainComponent, MonkeyIconDownloadComponent, MonkeyIconEditComponent, MonkeyIconEmailComponent, MonkeyIconEmptyDocComponent, MonkeyIconErrorComponent, MonkeyIconEyeClosedComponent, MonkeyIconEyeOpenComponent, MonkeyIconFilterComponent, MonkeyIconGridComponent, MonkeyIconHelpComponent, MonkeyIconHexagonComponent, MonkeyIconHomeComponent, MonkeyIconImageComponent, MonkeyIconListComponent, MonkeyIconLocationPinComponent, MonkeyIconLoginComponent, MonkeyIconLogoutComponent, MonkeyIconMenuComponent, MonkeyIconModule, MonkeyIconMoneySignComponent, MonkeyIconMoreComponent, MonkeyIconOfferedComponent, MonkeyIconPasswordComponent, MonkeyIconPeopleComponent, MonkeyIconPercentComponent, MonkeyIconPersonDocumentComponent, MonkeyIconPersonSadComponent, MonkeyIconPhoneComponent, MonkeyIconPorkComponent, MonkeyIconRefreshComponent, MonkeyIconRepeatComponent, MonkeyIconSearchComponent, MonkeyIconSecondWarningComponent, MonkeyIconSettingsComponent, MonkeyIconTrashComponent, MonkeyIconUploadComponent, MonkeyIconUserComponent, MonkeyIconWalletComponent, MonkeyIconWarningComponent, MonkeyImageCropComponent, MonkeyImageCropModule, MonkeyInputComponent, MonkeyInputFilterComponent, MonkeyInputModule, MonkeyModalComponent, MonkeyModalModule, MonkeyOptionComponent, MonkeyOptionModule, MonkeyRadioButtonComponent, MonkeyRadioButtonModule, MonkeySelectComponent, MonkeySelectFilterComponent, MonkeySelectModule, MonkeySelectMultipleComponent, MonkeySelectSearchComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStyleGuideModalFixedService, MonkeyStyleGuideModalService, MonkeyStyleGuideModule, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService, MonkeyTabComponent, MonkeyTabModule, MonkeyTableColumnComponent, MonkeyTableComponent, MonkeyTableModule, MonkeyToggleComponent, MonkeyToggleModule, MonkeyUtils, MonkeyWizardComponent, MonkeyWizardModule, ɵ0, MonkeyStyleGuideService as ɵa, MonkeyStyleGuideSettingsService as ɵb, MonkeyStyleGuideThemeSettingsService as ɵc, MonkeyStyleGuideSnackbarService as ɵd };
5614
+ export { MonkeyBadgeComponent, MonkeyBadgeModule, MonkeyButtonAvatarComponent, MonkeyButtonComponent, MonkeyButtonDropdownComponent, MonkeyButtonModule, MonkeyCheckboxComponent, MonkeyCheckboxModule, MonkeyDateRangePickerComponent, MonkeyDateRangePickerModule, MonkeyExpansionComponent, MonkeyExpansionModule, MonkeyFileUploadComponent, MonkeyFileUploadModule, MonkeyIconArrowDownComponent, MonkeyIconArrowLeftComponent, MonkeyIconArrowRightComponent, MonkeyIconArrowUpComponent, MonkeyIconBankComponent, MonkeyIconBellComponent, MonkeyIconBookComponent, MonkeyIconBoxComponent, MonkeyIconCNPJComponent, MonkeyIconCalendarComponent, MonkeyIconCameraComponent, MonkeyIconChatComponent, MonkeyIconCheckCircleComponent, MonkeyIconCheckCircleOutComponent, MonkeyIconCheckComponent, MonkeyIconCheckGreyComponent, MonkeyIconCheckWhiteComponent, MonkeyIconClipboardComponent, MonkeyIconClockComponent, MonkeyIconCloseComponent, MonkeyIconCodepenComponent, MonkeyIconCompanyNameComponent, MonkeyIconComponent, MonkeyIconContractComponent, MonkeyIconDeleteComponent, MonkeyIconDocumentComponent, MonkeyIconDollarSignComponent, MonkeyIconDomainComponent, MonkeyIconDownloadComponent, MonkeyIconEditComponent, MonkeyIconEmailComponent, MonkeyIconEmptyDocComponent, MonkeyIconErrorComponent, MonkeyIconEyeClosedComponent, MonkeyIconEyeOpenComponent, MonkeyIconFilterComponent, MonkeyIconGridComponent, MonkeyIconHelpComponent, MonkeyIconHexagonComponent, MonkeyIconHomeComponent, MonkeyIconImageComponent, MonkeyIconListComponent, MonkeyIconLocationPinComponent, MonkeyIconLoginComponent, MonkeyIconLogoutComponent, MonkeyIconMenuComponent, MonkeyIconModule, MonkeyIconMoneySignComponent, MonkeyIconMoreComponent, MonkeyIconOfferedComponent, MonkeyIconPasswordComponent, MonkeyIconPeopleComponent, MonkeyIconPercentComponent, MonkeyIconPersonDocumentComponent, MonkeyIconPersonSadComponent, MonkeyIconPhoneComponent, MonkeyIconPorkComponent, MonkeyIconRefreshComponent, MonkeyIconRepeatComponent, MonkeyIconSearchComponent, MonkeyIconSecondWarningComponent, MonkeyIconSettingsComponent, MonkeyIconTrashComponent, MonkeyIconUploadComponent, MonkeyIconUserComponent, MonkeyIconWalletComponent, MonkeyIconWarningComponent, MonkeyImageCropComponent, MonkeyImageCropModule, MonkeyInputComponent, MonkeyInputFilterComponent, MonkeyInputModule, MonkeyInputPhoneComponent, MonkeyInputPhoneModule, MonkeyModalComponent, MonkeyModalModule, MonkeyOptionComponent, MonkeyOptionModule, MonkeyRadioButtonComponent, MonkeyRadioButtonModule, MonkeySelectComponent, MonkeySelectFilterComponent, MonkeySelectModule, MonkeySelectMultipleComponent, MonkeySelectSearchComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStyleGuideModalFixedService, MonkeyStyleGuideModalService, MonkeyStyleGuideModule, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService, MonkeyTabComponent, MonkeyTabModule, MonkeyTableColumnComponent, MonkeyTableComponent, MonkeyTableModule, MonkeyToggleComponent, MonkeyToggleModule, MonkeyUtils, MonkeyWizardComponent, MonkeyWizardModule, MonkeyStyleGuideService as ɵa, MonkeyStyleGuideSettingsService as ɵb, MonkeyStyleGuideThemeSettingsService as ɵc, MonkeyStyleGuideSnackbarService as ɵd };
5393
5615
  //# sourceMappingURL=monkey-style-guide.js.map