monkey-style-guide 2.0.85 → 2.0.90
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/assets/scss/partials/components/_date-range-picker.scss +4 -6
- package/assets/scss/partials/components/_index.scss +1 -0
- package/assets/scss/partials/components/_input-phone.scss +17 -0
- package/bundles/monkey-style-guide.umd.js +230 -20
- package/bundles/monkey-style-guide.umd.js.map +1 -1
- package/esm2015/lib/components/date-range-picker/date-range-picker.component.js +13 -19
- package/esm2015/lib/components/date-range-picker/date-range-picker.component.ngfactory.js +20 -21
- package/esm2015/lib/components/date-range-picker/date-range-picker.component.ngsummary.json +1 -1
- package/esm2015/lib/components/date-range-picker/date-range-picker.module.ngfactory.js +1 -1
- package/esm2015/lib/components/date-range-picker/index.ngsummary.json +1 -1
- package/esm2015/lib/components/index.js +2 -1
- package/esm2015/lib/components/index.ngsummary.json +1 -1
- package/esm2015/lib/components/input-phone/index.js +3 -0
- package/esm2015/lib/components/input-phone/index.ngsummary.json +1 -0
- package/esm2015/lib/components/input-phone/input-phone.component.js +205 -0
- package/esm2015/lib/components/input-phone/input-phone.component.ngfactory.js +27 -0
- package/esm2015/lib/components/input-phone/input-phone.component.ngsummary.json +1 -0
- package/esm2015/lib/components/input-phone/input-phone.module.js +25 -0
- package/esm2015/lib/components/input-phone/input-phone.module.ngfactory.js +18 -0
- package/esm2015/lib/components/input-phone/input-phone.module.ngsummary.json +1 -0
- package/esm2015/monkey-style-guide.ngsummary.json +1 -1
- package/esm2015/public-api.ngsummary.json +1 -1
- package/fesm2015/monkey-style-guide.js +229 -18
- package/fesm2015/monkey-style-guide.js.map +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/input-phone/index.d.ts +2 -0
- package/lib/components/input-phone/input-phone.component.d.ts +61 -0
- package/lib/components/input-phone/input-phone.component.ngfactory.d.ts +1 -0
- package/lib/components/input-phone/input-phone.module.d.ts +2 -0
- package/lib/components/input-phone/input-phone.module.ngfactory.d.ts +3 -0
- package/monkey-style-guide-2.0.90.tgz +0 -0
- package/monkey-style-guide.metadata.json +1 -1
- package/package.json +3 -2
- package/monkey-style-guide-2.0.85.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,7 @@ class MonkeyDateRangePickerComponent {
|
|
|
2108
2103
|
}
|
|
2109
2104
|
build() {
|
|
2110
2105
|
this._daysArrFirst = this.createCalendar(this._dateFirst);
|
|
2111
|
-
|
|
2112
|
-
this._daysArrSecond = this.createCalendar(this._dateSecond);
|
|
2113
|
-
}
|
|
2106
|
+
this._daysArrSecond = this.createCalendar(this._dateSecond);
|
|
2114
2107
|
}
|
|
2115
2108
|
navigateToToday() {
|
|
2116
2109
|
this._dateFirst = moment();
|
|
@@ -2127,10 +2120,13 @@ class MonkeyDateRangePickerComponent {
|
|
|
2127
2120
|
this.onModelTouched = fn;
|
|
2128
2121
|
}
|
|
2129
2122
|
set value(value) {
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2123
|
+
if (Object.prototype.hasOwnProperty.call(value, 'startDate') &&
|
|
2124
|
+
Object.prototype.hasOwnProperty.call(value, 'endDate')) {
|
|
2125
|
+
this._dateForm.setValue(value);
|
|
2126
|
+
this.cdr.detectChanges();
|
|
2127
|
+
this.onModelChange(this._dateForm.value);
|
|
2128
|
+
this.onModelTouched(this._dateForm.value);
|
|
2129
|
+
}
|
|
2134
2130
|
}
|
|
2135
2131
|
get value() {
|
|
2136
2132
|
return this._dateForm.value;
|
|
@@ -2185,7 +2181,7 @@ class MonkeyDateRangePickerComponent {
|
|
|
2185
2181
|
let dayFormatted = day.format('YYYY-MM-DD');
|
|
2186
2182
|
if (_dateForm.valid) {
|
|
2187
2183
|
_dateForm.setValue({ startDate: null, endDate: null });
|
|
2188
|
-
this.writeValue(
|
|
2184
|
+
this.writeValue(_dateForm.value);
|
|
2189
2185
|
return;
|
|
2190
2186
|
}
|
|
2191
2187
|
if (!_dateForm.get('startDate').value) {
|
|
@@ -2210,7 +2206,7 @@ MonkeyDateRangePickerComponent.decorators = [
|
|
|
2210
2206
|
{ type: Component, args: [{
|
|
2211
2207
|
selector: 'monkey-date-range-picker',
|
|
2212
2208
|
template: `
|
|
2213
|
-
<mecx-date-range-picker-group
|
|
2209
|
+
<mecx-date-range-picker-group>
|
|
2214
2210
|
<mecx-date-range-picker-group-body>
|
|
2215
2211
|
<mecx-date-range-picker class="first-date-range">
|
|
2216
2212
|
<mecx-date-range-picker-header>
|
|
@@ -2265,7 +2261,7 @@ MonkeyDateRangePickerComponent.decorators = [
|
|
|
2265
2261
|
</mecx-date-range-picker-body>
|
|
2266
2262
|
</mecx-date-range-picker>
|
|
2267
2263
|
|
|
2268
|
-
<mecx-date-range-picker class="second-date-range"
|
|
2264
|
+
<mecx-date-range-picker class="second-date-range">
|
|
2269
2265
|
<mecx-date-range-picker-header>
|
|
2270
2266
|
<div class="calendar-title">
|
|
2271
2267
|
<div class="month-year-title">
|
|
@@ -2316,7 +2312,7 @@ MonkeyDateRangePickerComponent.decorators = [
|
|
|
2316
2312
|
{{ errorMessage }}
|
|
2317
2313
|
</error>
|
|
2318
2314
|
</mecx-date-range-picker-group-info>
|
|
2319
|
-
<mecx-date-range-picker-group-action>
|
|
2315
|
+
<mecx-date-range-picker-group-action [class.error]="errorMessage?.trim()">
|
|
2320
2316
|
<div class="action-days">
|
|
2321
2317
|
<monkey-button color="theme" type="secondary" (click)="selectRangeOfDays(30)">
|
|
2322
2318
|
{{ i18n?.actions?.['30'] }}
|
|
@@ -2827,6 +2823,203 @@ MonkeyInputModule.decorators = [
|
|
|
2827
2823
|
},] }
|
|
2828
2824
|
];
|
|
2829
2825
|
|
|
2826
|
+
/**************************
|
|
2827
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
2828
|
+
* This style guide was developed by Monkey Exchange Team
|
|
2829
|
+
* MIT Licence
|
|
2830
|
+
**************************/
|
|
2831
|
+
const phoneUtil = PhoneNumberUtil.getInstance();
|
|
2832
|
+
const formatter = new AsYouTypeFormatter('US');
|
|
2833
|
+
class MonkeyInputPhoneComponent {
|
|
2834
|
+
constructor(currencyPipe, settingsService, cdr) {
|
|
2835
|
+
this.currencyPipe = currencyPipe;
|
|
2836
|
+
this.settingsService = settingsService;
|
|
2837
|
+
this.cdr = cdr;
|
|
2838
|
+
this.name = `mecx-input-phone-${MonkeyUtils.getRandomString(10)}`;
|
|
2839
|
+
this.helperMessage = '';
|
|
2840
|
+
this.placeholder = '';
|
|
2841
|
+
this.maxLength = 255;
|
|
2842
|
+
this.maxDateToday = false;
|
|
2843
|
+
this.onChange = new EventEmitter();
|
|
2844
|
+
this.onModelChange = (value) => { };
|
|
2845
|
+
this.onModelTouched = (value) => { };
|
|
2846
|
+
this._id = `mecx-input-phone-${MonkeyUtils.getRandomString(10)}`;
|
|
2847
|
+
this._disabled = false;
|
|
2848
|
+
this._maxDateToday = new Date().toISOString().split('T')[0];
|
|
2849
|
+
this._symbol = '';
|
|
2850
|
+
this._countryCodes = [];
|
|
2851
|
+
}
|
|
2852
|
+
handleValue(value, apply = false) {
|
|
2853
|
+
if (this.onlyNumber) {
|
|
2854
|
+
return MonkeyUtils.handleOnlyNumbers(`${value}`);
|
|
2855
|
+
}
|
|
2856
|
+
else if (this.onlyAlphaNumeric)
|
|
2857
|
+
return MonkeyUtils.handleOnlyAlphaNumeric(`${value}`);
|
|
2858
|
+
else if (this.upperCase)
|
|
2859
|
+
return `${value}`.toUpperCase();
|
|
2860
|
+
else if (this.lowerCase)
|
|
2861
|
+
return `${value}`.toLowerCase();
|
|
2862
|
+
else if (this.capitalize)
|
|
2863
|
+
return MonkeyUtils.capitalize(`${value}`.toUpperCase());
|
|
2864
|
+
else if (this.currency || this.percent) {
|
|
2865
|
+
return MonkeyUtils.handleOnlyNumbers(`${value}`) / (apply ? 100 : 1);
|
|
2866
|
+
}
|
|
2867
|
+
return value;
|
|
2868
|
+
}
|
|
2869
|
+
replaceZero(value) {
|
|
2870
|
+
return `${value}`.replace(new RegExp(/0/, 'g'), '');
|
|
2871
|
+
}
|
|
2872
|
+
formatValue(value) {
|
|
2873
|
+
//console.log(this.phoneUtil);
|
|
2874
|
+
//console.log(this.phoneUtil.formatInOriginalFormat(value, 'US'));
|
|
2875
|
+
//this.phoneUtil.inputDigit('2');
|
|
2876
|
+
console.log(formatter.inputDigit(value));
|
|
2877
|
+
const number = phoneUtil.parse(value, 'BR');
|
|
2878
|
+
console.log(phoneUtil.isPossibleNumber(number));
|
|
2879
|
+
console.log(phoneUtil.format(number, PhoneNumberFormat.INTERNATIONAL));
|
|
2880
|
+
return phoneUtil.format(number, PhoneNumberFormat.INTERNATIONAL);
|
|
2881
|
+
}
|
|
2882
|
+
handleSymbol() {
|
|
2883
|
+
var _a;
|
|
2884
|
+
const { settings } = this;
|
|
2885
|
+
if (this.currency) {
|
|
2886
|
+
this._symbol = {
|
|
2887
|
+
BRL: 'R$',
|
|
2888
|
+
CLP: 'CLP',
|
|
2889
|
+
}[((_a = settings === null || settings === void 0 ? void 0 : settings.currency) === null || _a === void 0 ? void 0 : _a.code) || 'BRL'];
|
|
2890
|
+
}
|
|
2891
|
+
else if (this.percent) {
|
|
2892
|
+
this._symbol = '%';
|
|
2893
|
+
}
|
|
2894
|
+
}
|
|
2895
|
+
ngOnInit() {
|
|
2896
|
+
const { settingsService } = this;
|
|
2897
|
+
this._oldType = this.type;
|
|
2898
|
+
settingsService.settings().subscribe((val) => {
|
|
2899
|
+
this.settings = val;
|
|
2900
|
+
this.handleSymbol();
|
|
2901
|
+
});
|
|
2902
|
+
this._countryCodes = phoneUtil
|
|
2903
|
+
.getSupportedRegions()
|
|
2904
|
+
.map((code) => {
|
|
2905
|
+
return phoneUtil.getCountryCodeForRegion(code);
|
|
2906
|
+
})
|
|
2907
|
+
.filter((v, i, a) => a.indexOf(v) === i)
|
|
2908
|
+
.sort((a, b) => (a < b ? -1 : 1));
|
|
2909
|
+
}
|
|
2910
|
+
registerOnChange(fn) {
|
|
2911
|
+
this.onModelChange = fn;
|
|
2912
|
+
}
|
|
2913
|
+
registerOnTouched(fn) {
|
|
2914
|
+
this.onModelTouched = fn;
|
|
2915
|
+
}
|
|
2916
|
+
setDisabledState(isDisabled) {
|
|
2917
|
+
this._disabled = isDisabled;
|
|
2918
|
+
}
|
|
2919
|
+
set value(value) {
|
|
2920
|
+
this.handledValue = value;
|
|
2921
|
+
this._formatedValue = this.formatValue(value);
|
|
2922
|
+
this.cdr.detectChanges();
|
|
2923
|
+
this.onModelChange(this.handledValue);
|
|
2924
|
+
this.onModelTouched(this.handledValue);
|
|
2925
|
+
}
|
|
2926
|
+
get value() {
|
|
2927
|
+
return this.handledValue;
|
|
2928
|
+
}
|
|
2929
|
+
writeValue(value) {
|
|
2930
|
+
this.value = value;
|
|
2931
|
+
}
|
|
2932
|
+
onChangeValue(event) {
|
|
2933
|
+
const value = this._formatedValue;
|
|
2934
|
+
event === null || event === void 0 ? void 0 : event.preventDefault();
|
|
2935
|
+
event === null || event === void 0 ? void 0 : event.stopPropagation();
|
|
2936
|
+
const handled = this.handleValue(value, true);
|
|
2937
|
+
this.writeValue(handled);
|
|
2938
|
+
this.onChange.next(handled);
|
|
2939
|
+
}
|
|
2940
|
+
onShowAndHidePassword() {
|
|
2941
|
+
this.type = this.type === 'password' ? 'text' : 'password';
|
|
2942
|
+
}
|
|
2943
|
+
onClick() {
|
|
2944
|
+
var _a, _b, _c;
|
|
2945
|
+
(_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();
|
|
2946
|
+
}
|
|
2947
|
+
onKeyPress(event) {
|
|
2948
|
+
var _a;
|
|
2949
|
+
let pattern = null;
|
|
2950
|
+
const cmp = (_a = event === null || event === void 0 ? void 0 : event.target) === null || _a === void 0 ? void 0 : _a.value;
|
|
2951
|
+
const inputChar = String.fromCharCode(event.charCode);
|
|
2952
|
+
if (this.currency || this.onlyNumber || this.percent) {
|
|
2953
|
+
pattern = /[0-9]/;
|
|
2954
|
+
if (inputChar === '0' && !this.replaceZero(cmp)) {
|
|
2955
|
+
event.preventDefault();
|
|
2956
|
+
return;
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
2959
|
+
else if (this.onlyAlphaNumeric) {
|
|
2960
|
+
pattern = /[^0-9A-Za-z]/;
|
|
2961
|
+
}
|
|
2962
|
+
if (pattern && !pattern.test(inputChar)) {
|
|
2963
|
+
event.preventDefault();
|
|
2964
|
+
}
|
|
2965
|
+
}
|
|
2966
|
+
}
|
|
2967
|
+
MonkeyInputPhoneComponent.decorators = [
|
|
2968
|
+
{ type: Component, args: [{
|
|
2969
|
+
selector: 'monkey-input-phone',
|
|
2970
|
+
template: `
|
|
2971
|
+
<monkey-select
|
|
2972
|
+
[label]="'teste'"
|
|
2973
|
+
errorMessage=""
|
|
2974
|
+
errorMessage=""
|
|
2975
|
+
[placeholder]="'Selecione um banco'"
|
|
2976
|
+
>
|
|
2977
|
+
<monkey-option label="op" value="op"> </monkey-option>
|
|
2978
|
+
<monkey-option label="op" value="op"> </monkey-option>
|
|
2979
|
+
<monkey-option label="op" value="op"> </monkey-option>
|
|
2980
|
+
</monkey-select>
|
|
2981
|
+
`,
|
|
2982
|
+
encapsulation: ViewEncapsulation.None,
|
|
2983
|
+
providers: [
|
|
2984
|
+
{
|
|
2985
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2986
|
+
useExisting: forwardRef(() => MonkeyInputPhoneComponent),
|
|
2987
|
+
multi: true,
|
|
2988
|
+
},
|
|
2989
|
+
CurrencyPipe,
|
|
2990
|
+
]
|
|
2991
|
+
},] }
|
|
2992
|
+
];
|
|
2993
|
+
MonkeyInputPhoneComponent.ctorParameters = () => [
|
|
2994
|
+
{ type: CurrencyPipe },
|
|
2995
|
+
{ type: MonkeyStyleGuideSettingsService },
|
|
2996
|
+
{ type: ChangeDetectorRef }
|
|
2997
|
+
];
|
|
2998
|
+
MonkeyInputPhoneComponent.propDecorators = {
|
|
2999
|
+
name: [{ type: Input }],
|
|
3000
|
+
label: [{ type: Input }],
|
|
3001
|
+
helperMessage: [{ type: Input }],
|
|
3002
|
+
placeholder: [{ type: Input }],
|
|
3003
|
+
icon: [{ type: Input }],
|
|
3004
|
+
type: [{ type: Input }],
|
|
3005
|
+
infoMessage: [{ type: Input }],
|
|
3006
|
+
errorMessage: [{ type: Input }],
|
|
3007
|
+
mask: [{ type: Input }],
|
|
3008
|
+
prefix: [{ type: Input }],
|
|
3009
|
+
maxLength: [{ type: Input }],
|
|
3010
|
+
onlyNumber: [{ type: Input }],
|
|
3011
|
+
onlyAlphaNumeric: [{ type: Input }],
|
|
3012
|
+
upperCase: [{ type: Input }],
|
|
3013
|
+
lowerCase: [{ type: Input }],
|
|
3014
|
+
capitalize: [{ type: Input }],
|
|
3015
|
+
currency: [{ type: Input }],
|
|
3016
|
+
percent: [{ type: Input }],
|
|
3017
|
+
maxDateToday: [{ type: Input }],
|
|
3018
|
+
onChange: [{ type: Output }],
|
|
3019
|
+
value: [{ type: Input }],
|
|
3020
|
+
onClick: [{ type: HostListener, args: ['click',] }]
|
|
3021
|
+
};
|
|
3022
|
+
|
|
2830
3023
|
/**************************
|
|
2831
3024
|
* Copyright Monkey Exchange. All Rights Reserved
|
|
2832
3025
|
* This style guide was developed by Monkey Exchange Team
|
|
@@ -3764,6 +3957,24 @@ MonkeySelectModule.decorators = [
|
|
|
3764
3957
|
},] }
|
|
3765
3958
|
];
|
|
3766
3959
|
|
|
3960
|
+
class MonkeyInputPhoneModule {
|
|
3961
|
+
}
|
|
3962
|
+
MonkeyInputPhoneModule.decorators = [
|
|
3963
|
+
{ type: NgModule, args: [{
|
|
3964
|
+
declarations: [MonkeyInputPhoneComponent],
|
|
3965
|
+
imports: [
|
|
3966
|
+
CommonModule,
|
|
3967
|
+
FormsModule,
|
|
3968
|
+
ReactiveFormsModule,
|
|
3969
|
+
NgxMaskModule.forRoot(),
|
|
3970
|
+
MonkeyIconModule,
|
|
3971
|
+
MonkeySelectModule,
|
|
3972
|
+
],
|
|
3973
|
+
exports: [MonkeyInputPhoneComponent],
|
|
3974
|
+
schemas: [NO_ERRORS_SCHEMA],
|
|
3975
|
+
},] }
|
|
3976
|
+
];
|
|
3977
|
+
|
|
3767
3978
|
/**************************
|
|
3768
3979
|
* Copyright Monkey Exchange. All Rights Reserved
|
|
3769
3980
|
* This style guide was developed by Monkey Exchange Team
|
|
@@ -5389,5 +5600,5 @@ MonkeyStyleGuideModule.decorators = [
|
|
|
5389
5600
|
* Generated bundle index. Do not edit.
|
|
5390
5601
|
*/
|
|
5391
5602
|
|
|
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,
|
|
5603
|
+
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
5604
|
//# sourceMappingURL=monkey-style-guide.js.map
|