@seniorsistemas/angular-components 17.13.0 → 17.14.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 +345 -177
- 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/checkbox/checkbox.component.d.ts +16 -0
- package/components/checkbox/checkbox.module.d.ts +2 -0
- package/components/checkbox/index.d.ts +3 -0
- package/components/checkbox/models/checkbox-data.d.ts +4 -0
- package/components/checkbox/models/checkbox-state.d.ts +6 -0
- package/components/checkbox/models/index.d.ts +2 -0
- package/components/dynamic-form/components/fields/base-field-component.d.ts +6 -5
- package/components/dynamic-form/components/fields/checkbox/checkbox-field.component.d.ts +7 -0
- package/components/dynamic-form/components/fields/checkbox/checkbox-field.module.d.ts +2 -0
- package/components/dynamic-form/components/fields/index.d.ts +1 -0
- package/components/dynamic-form/configurations/field-type.d.ts +1 -0
- package/components/dynamic-form/configurations/fields/checkbox-field.d.ts +9 -0
- package/components/dynamic-form/configurations/fields/index.d.ts +1 -0
- package/components/dynamic-form/configurations/fields/lookup-field.d.ts +1 -0
- package/components/index.d.ts +1 -0
- package/esm2015/components/checkbox/checkbox.component.js +104 -0
- package/esm2015/components/checkbox/checkbox.module.js +16 -0
- package/esm2015/components/checkbox/index.js +3 -0
- package/esm2015/components/checkbox/models/checkbox-data.js +1 -0
- package/esm2015/components/checkbox/models/checkbox-state.js +1 -0
- package/esm2015/components/checkbox/models/index.js +1 -0
- package/esm2015/components/dynamic-form/components/fields/base-field-component.js +1 -1
- package/esm2015/components/dynamic-form/components/fields/checkbox/checkbox-field.component.js +17 -0
- package/esm2015/components/dynamic-form/components/fields/checkbox/checkbox-field.module.js +17 -0
- package/esm2015/components/dynamic-form/components/fields/index.js +2 -1
- package/esm2015/components/dynamic-form/components/fields/lookup/lookup-field.component.js +2 -2
- package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm2015/components/dynamic-form/configurations/fields/checkbox-field.js +8 -0
- package/esm2015/components/dynamic-form/configurations/fields/index.js +2 -1
- package/esm2015/components/dynamic-form/configurations/fields/lookup-field.js +1 -1
- package/esm2015/components/dynamic-form/configurations/form-field.js +4 -2
- package/esm2015/components/dynamic-form/dynamic-form.js +4 -1
- package/esm2015/components/dynamic-form/dynamic-form.module.js +3 -1
- package/esm2015/components/index.js +2 -1
- package/esm2015/seniorsistemas-angular-components.js +66 -64
- package/esm5/components/checkbox/checkbox.component.js +109 -0
- package/esm5/components/checkbox/checkbox.module.js +19 -0
- package/esm5/components/checkbox/index.js +3 -0
- package/esm5/components/checkbox/models/checkbox-data.js +1 -0
- package/esm5/components/checkbox/models/checkbox-state.js +1 -0
- package/esm5/components/checkbox/models/index.js +1 -0
- package/esm5/components/dynamic-form/components/fields/base-field-component.js +1 -1
- package/esm5/components/dynamic-form/components/fields/checkbox/checkbox-field.component.js +20 -0
- package/esm5/components/dynamic-form/components/fields/checkbox/checkbox-field.module.js +20 -0
- package/esm5/components/dynamic-form/components/fields/index.js +2 -1
- package/esm5/components/dynamic-form/components/fields/lookup/lookup-field.component.js +2 -2
- package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm5/components/dynamic-form/configurations/fields/checkbox-field.js +13 -0
- package/esm5/components/dynamic-form/configurations/fields/index.js +2 -1
- package/esm5/components/dynamic-form/configurations/fields/lookup-field.js +1 -1
- package/esm5/components/dynamic-form/configurations/form-field.js +4 -2
- package/esm5/components/dynamic-form/dynamic-form.js +4 -1
- package/esm5/components/dynamic-form/dynamic-form.module.js +3 -1
- package/esm5/components/index.js +2 -1
- package/esm5/seniorsistemas-angular-components.js +66 -64
- package/fesm2015/seniorsistemas-angular-components.js +251 -104
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +281 -117
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +65 -63
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -34,7 +34,7 @@ import { Dialog, DialogModule } from 'primeng/dialog';
|
|
|
34
34
|
import { Table, RowToggler, TableService, TableModule as TableModule$1 } from 'primeng/table';
|
|
35
35
|
import { CurrencyMaskDirective as CurrencyMaskDirective$1 } from 'ng2-currency-mask';
|
|
36
36
|
import { ButtonModule as ButtonModule$1 } from 'primeng/button';
|
|
37
|
-
import { CheckboxModule } from 'primeng/checkbox';
|
|
37
|
+
import { CheckboxModule as CheckboxModule$1 } from 'primeng/checkbox';
|
|
38
38
|
import { ChipsModule } from 'primeng/chips';
|
|
39
39
|
import { DropdownModule } from 'primeng/dropdown';
|
|
40
40
|
import { FieldsetModule } from 'primeng/fieldset';
|
|
@@ -2918,6 +2918,116 @@ CardModule = __decorate([
|
|
|
2918
2918
|
})
|
|
2919
2919
|
], CardModule);
|
|
2920
2920
|
|
|
2921
|
+
var CheckboxComponent_1;
|
|
2922
|
+
let CheckboxComponent = CheckboxComponent_1 = class CheckboxComponent {
|
|
2923
|
+
constructor() {
|
|
2924
|
+
this.state = {
|
|
2925
|
+
checked: false,
|
|
2926
|
+
indeterminate: false,
|
|
2927
|
+
children: {},
|
|
2928
|
+
};
|
|
2929
|
+
this._onChange = () => { };
|
|
2930
|
+
this._onTouched = () => { };
|
|
2931
|
+
}
|
|
2932
|
+
writeValue(value) {
|
|
2933
|
+
if (value) {
|
|
2934
|
+
this.state = value;
|
|
2935
|
+
}
|
|
2936
|
+
else {
|
|
2937
|
+
this.state = {
|
|
2938
|
+
checked: false,
|
|
2939
|
+
indeterminate: false,
|
|
2940
|
+
disabled: false,
|
|
2941
|
+
children: this._initializeChildren(this.data),
|
|
2942
|
+
};
|
|
2943
|
+
}
|
|
2944
|
+
}
|
|
2945
|
+
registerOnChange(onChange) {
|
|
2946
|
+
this._onChange = onChange;
|
|
2947
|
+
}
|
|
2948
|
+
registerOnTouched(onTouched) {
|
|
2949
|
+
this._onTouched = onTouched;
|
|
2950
|
+
}
|
|
2951
|
+
_initializeChildren(item) {
|
|
2952
|
+
const childrenState = {};
|
|
2953
|
+
if (item.children) {
|
|
2954
|
+
item.children.forEach((child) => {
|
|
2955
|
+
childrenState[child.label] = {
|
|
2956
|
+
checked: false,
|
|
2957
|
+
indeterminate: false,
|
|
2958
|
+
children: this._initializeChildren(child),
|
|
2959
|
+
};
|
|
2960
|
+
});
|
|
2961
|
+
}
|
|
2962
|
+
return childrenState;
|
|
2963
|
+
}
|
|
2964
|
+
updateParent() {
|
|
2965
|
+
if (this.data.children && this.data.children.length > 0) {
|
|
2966
|
+
const allChecked = this.data.children.every((child) => { var _a; return (_a = this.state.children[child.label]) === null || _a === void 0 ? void 0 : _a.checked; });
|
|
2967
|
+
const someChecked = this.data.children.some((child) => { var _a, _b; return ((_a = this.state.children[child.label]) === null || _a === void 0 ? void 0 : _a.checked) || ((_b = this.state.children[child.label]) === null || _b === void 0 ? void 0 : _b.indeterminate); });
|
|
2968
|
+
this.state.checked = allChecked;
|
|
2969
|
+
this.state.indeterminate = !allChecked && someChecked;
|
|
2970
|
+
}
|
|
2971
|
+
this._onChange(this.state);
|
|
2972
|
+
this._onTouched();
|
|
2973
|
+
}
|
|
2974
|
+
onCheckboxChange() {
|
|
2975
|
+
if (this.state.disabled)
|
|
2976
|
+
return;
|
|
2977
|
+
this.state.checked = !this.state.checked;
|
|
2978
|
+
this.state.indeterminate = false;
|
|
2979
|
+
this._toggleChildrenCheck(this.data, this.state, this.state.checked);
|
|
2980
|
+
this._onChange(this.state);
|
|
2981
|
+
this._onTouched();
|
|
2982
|
+
}
|
|
2983
|
+
_toggleChildrenCheck(item, state, checked) {
|
|
2984
|
+
var _a;
|
|
2985
|
+
if ((_a = item.children) === null || _a === void 0 ? void 0 : _a.length) {
|
|
2986
|
+
item.children.forEach((child) => {
|
|
2987
|
+
if (!state.children[child.label]) {
|
|
2988
|
+
state.children[child.label] = {
|
|
2989
|
+
checked: false,
|
|
2990
|
+
indeterminate: false,
|
|
2991
|
+
children: this._initializeChildren(child),
|
|
2992
|
+
};
|
|
2993
|
+
}
|
|
2994
|
+
state.children[child.label].checked = checked;
|
|
2995
|
+
state.children[child.label].indeterminate = false;
|
|
2996
|
+
if (child.children) {
|
|
2997
|
+
this._toggleChildrenCheck(child, state.children[child.label], checked);
|
|
2998
|
+
}
|
|
2999
|
+
});
|
|
3000
|
+
}
|
|
3001
|
+
}
|
|
3002
|
+
};
|
|
3003
|
+
__decorate([
|
|
3004
|
+
Input()
|
|
3005
|
+
], CheckboxComponent.prototype, "data", void 0);
|
|
3006
|
+
CheckboxComponent = CheckboxComponent_1 = __decorate([
|
|
3007
|
+
Component({
|
|
3008
|
+
selector: "s-checkbox",
|
|
3009
|
+
template: "<div class=\"checkbox\">\n <label>\n <div\n class=\"checkbox-wrapper\"\n [ngClass]=\"{ 'checkbox-wrapper--disabled': state.disabled }\">\n <input\n type=\"checkbox\"\n class=\"checkbox-input\"\n [disabled]=\"state.disabled\"\n [ngClass]=\"{\n 'checkbox-input--checked': state.checked,\n 'checkbox-input--indeterminate': state.indeterminate\n }\"\n (change)=\"onCheckboxChange()\"\n [attr.aria-checked]=\"state.indeterminate ? 'mixed' : state.checked\"\n [attr.aria-disabled]=\"state.disabled\"\n role=\"checkbox\" />\n {{ data.label }}\n </div>\n </label>\n <div *ngIf=\"data.children && data.children.length\" class=\"checkbox-children\">\n <s-checkbox\n *ngFor=\"let child of data.children\"\n [data]=\"child\"\n [ngModel]=\"state.children[child.label]\"\n (ngModelChange)=\"updateParent()\">\n </s-checkbox>\n </div>\n</div>\n",
|
|
3010
|
+
providers: [
|
|
3011
|
+
{
|
|
3012
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3013
|
+
useExisting: forwardRef(() => CheckboxComponent_1),
|
|
3014
|
+
multi: true,
|
|
3015
|
+
},
|
|
3016
|
+
],
|
|
3017
|
+
styles: [".checkbox{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:10px;margin-bottom:10px}.checkbox .checkbox-wrapper{-ms-flex-align:center;align-items:center;color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\" sans-serif;font-size:14px;gap:12px}.checkbox .checkbox-wrapper .checkbox-input{-webkit-appearance:none;appearance:none;background-color:#fff;border:1px solid #c1c1cc;border-radius:4px;cursor:pointer;-ms-flex-negative:0;flex-shrink:0;height:20px;width:20px;position:relative}.checkbox .checkbox-wrapper .checkbox-input--checked{background-color:#428bca;border-color:#428bca}.checkbox .checkbox-wrapper .checkbox-input--checked::after{border:solid #fff;border-width:0 2px 2px 0;content:\"\";height:12px;left:6px;position:absolute;top:2px;transform:rotate(45deg);width:6px}.checkbox .checkbox-wrapper .checkbox-input--indeterminate{background-color:#428bca;border-color:#428bca}.checkbox .checkbox-wrapper .checkbox-input--indeterminate::after{background-color:#fff;content:\"\";height:2px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:10px}.checkbox .checkbox-wrapper:not(.checkbox-wrapper--disabled) .checkbox-input:not(.checkbox-input--checked):hover{background-color:#e5eaea;border-color:#ccc}.checkbox .checkbox-wrapper--disabled{opacity:.5;cursor:auto}.checkbox .checkbox-children{margin-left:20px}"]
|
|
3018
|
+
})
|
|
3019
|
+
], CheckboxComponent);
|
|
3020
|
+
|
|
3021
|
+
let CheckboxModule = class CheckboxModule {
|
|
3022
|
+
};
|
|
3023
|
+
CheckboxModule = __decorate([
|
|
3024
|
+
NgModule({
|
|
3025
|
+
imports: [CommonModule, FormsModule],
|
|
3026
|
+
declarations: [CheckboxComponent],
|
|
3027
|
+
exports: [CheckboxComponent],
|
|
3028
|
+
})
|
|
3029
|
+
], CheckboxModule);
|
|
3030
|
+
|
|
2921
3031
|
var Languages;
|
|
2922
3032
|
(function (Languages) {
|
|
2923
3033
|
Languages["TaxCalculation"] = "TaxCalculation";
|
|
@@ -4999,6 +5109,7 @@ var FieldType;
|
|
|
4999
5109
|
FieldType["Binary"] = "Binary";
|
|
5000
5110
|
FieldType["Blob"] = "Blob";
|
|
5001
5111
|
FieldType["Boolean"] = "Boolean";
|
|
5112
|
+
FieldType["Checkbox"] = "Checkbox";
|
|
5002
5113
|
FieldType["Chips"] = "Chips";
|
|
5003
5114
|
FieldType["CountryPhonePicker"] = "CountryPhonePicker";
|
|
5004
5115
|
FieldType["Custom"] = "Custom";
|
|
@@ -5537,6 +5648,13 @@ class SliderField extends Field {
|
|
|
5537
5648
|
}
|
|
5538
5649
|
}
|
|
5539
5650
|
|
|
5651
|
+
class CheckboxField extends Field {
|
|
5652
|
+
constructor(config) {
|
|
5653
|
+
super(config);
|
|
5654
|
+
this.data = config.data;
|
|
5655
|
+
}
|
|
5656
|
+
}
|
|
5657
|
+
|
|
5540
5658
|
class CountryPhonePickerField extends Field {
|
|
5541
5659
|
constructor(config) {
|
|
5542
5660
|
super(config);
|
|
@@ -5612,6 +5730,8 @@ class FormField {
|
|
|
5612
5730
|
return new LookupField(config);
|
|
5613
5731
|
case FieldType.Radio:
|
|
5614
5732
|
return new RadioButtonField(config);
|
|
5733
|
+
case FieldType.Checkbox:
|
|
5734
|
+
return new CheckboxField(config);
|
|
5615
5735
|
case FieldType.Chips:
|
|
5616
5736
|
return new ChipsField(config);
|
|
5617
5737
|
case FieldType.CountryPhonePicker:
|
|
@@ -9780,7 +9900,7 @@ __decorate([
|
|
|
9780
9900
|
], LookupFieldComponent.prototype, "formControl", void 0);
|
|
9781
9901
|
LookupFieldComponent = __decorate([
|
|
9782
9902
|
Component({
|
|
9783
|
-
template: "<s-field-label [field]=\"field\"></s-field-label>\n\n<div [sTooltip]=\"field.tooltip\" tooltipPosition=\"top\" [showDelay]=\"500\">\n <s-lookup\n [id]=\"field.id || field.name\"\n [multiple]=\"field.multiple\"\n [formControl]=\"formControl\"\n [lookupSuggestions]=\"field.lookupSuggestions\"\n [dataKey]=\"field.dataKey\"\n [placeholder]=\"field.placeholder\"\n [showSearch]=\"field.showSearch\"\n [searchFields]=\"field.searchFields\"\n [searchGridFields]=\"field.searchGridFields\"\n [searchGridData]=\"field.gridData\"\n (onLookupRequest)=\"field.onLookupRequest($event)\"\n (onSearchRequest)=\"field.onSearchRequest($event)\"\n [lookupDisplayField]=\"field.lookupDisplayField\"\n [searchTotalRecords]=\"field.searchTotalRecords\"\n [searchTotalRecordsLabel]=\"field.searchTotalRecordsLabel\"\n [searchTitle]=\"field.searchTitle\"\n [selectLabel]=\"field.selectLabel\"\n [searchEmptyTitle]=\"field.searchEmptyTitle\"\n [filterLabel]=\"field.filterLabel\"\n [filterTitle]=\"field.filterTitle\"\n [clearLabel]=\"field.clearLabel\"\n [cancelLabel]=\"field.cancelLabel\"\n [emptyFieldLabel]=\"field.emptyFieldLabel\"\n (onSelect)=\"field.onSelect($event)\"\n (onUnselect)=\"field.onUnselect($event)\"\n (onClear)=\"field.onClear ? field.onClear($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [lookupAppendTo]=\"field.appendTo\"\n [lookupEmptyMessage]=\"field.emptyMessage\"\n [recordLabel]=\"field.recordLabel\"\n [recordsLabel]=\"field.recordsLabel\"\n [defaultFilter]=\"field.defaultFilter\"\n [autocompleteForceSelection]=\"field.autocompleteForceSelection\"\n [showAddOption]=\"field.showAddOption\"\n [showEditOption]=\"field.showEditOption\"\n [showRemoveOption]=\"field.showRemoveOption\"\n (onAdd)=\"field.onAdd()\"\n (onEdit)=\"field.onEdit($event)\"\n (onRemove)=\"field.onRemove($event)\"\n >\n </s-lookup>\n</div>\n"
|
|
9903
|
+
template: "<s-field-label [field]=\"field\"></s-field-label>\n\n<div [sTooltip]=\"field.tooltip\" tooltipPosition=\"top\" [showDelay]=\"500\">\n <s-lookup\n [id]=\"field.id || field.name\"\n [multiple]=\"field.multiple\"\n [formControl]=\"formControl\"\n [lookupSuggestions]=\"field.lookupSuggestions\"\n [dataKey]=\"field.dataKey\"\n [placeholder]=\"field.placeholder\"\n [showSearch]=\"field.showSearch\"\n [searchFields]=\"field.searchFields\"\n [searchGridFields]=\"field.searchGridFields\"\n [searchGridData]=\"field.gridData\"\n (onLookupRequest)=\"field.onLookupRequest($event)\"\n (onSearchRequest)=\"field.onSearchRequest($event)\"\n [lookupDisplayField]=\"field.lookupDisplayField\"\n [searchTotalRecords]=\"field.searchTotalRecords\"\n [searchTotalRecordsLabel]=\"field.searchTotalRecordsLabel\"\n [searchTitle]=\"field.searchTitle\"\n [selectLabel]=\"field.selectLabel\"\n [searchEmptyTitle]=\"field.searchEmptyTitle\"\n [filterLabel]=\"field.filterLabel\"\n [filterTitle]=\"field.filterTitle\"\n [clearLabel]=\"field.clearLabel\"\n [cancelLabel]=\"field.cancelLabel\"\n [emptyFieldLabel]=\"field.emptyFieldLabel\"\n (onSelect)=\"field.onSelect($event)\"\n (onUnselect)=\"field.onUnselect($event)\"\n (onClear)=\"field.onClear ? field.onClear($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [lookupAppendTo]=\"field.appendTo\"\n [lookupEmptyMessage]=\"field.emptyMessage\"\n [recordLabel]=\"field.recordLabel\"\n [recordsLabel]=\"field.recordsLabel\"\n [defaultFilter]=\"field.defaultFilter\"\n [autocompleteForceSelection]=\"field.autocompleteForceSelection\"\n [showAddOption]=\"field.showAddOption\"\n [showEditOption]=\"field.showEditOption\"\n [showRemoveOption]=\"field.showRemoveOption\"\n [sortableColumnsDisabled]=\"field.sortableColumnsDisabled\"\n (onAdd)=\"field.onAdd()\"\n (onEdit)=\"field.onEdit($event)\"\n (onRemove)=\"field.onRemove($event)\"\n >\n </s-lookup>\n</div>\n"
|
|
9784
9904
|
})
|
|
9785
9905
|
], LookupFieldComponent);
|
|
9786
9906
|
|
|
@@ -10477,6 +10597,120 @@ TextFieldComponent = __decorate([
|
|
|
10477
10597
|
})
|
|
10478
10598
|
], TextFieldComponent);
|
|
10479
10599
|
|
|
10600
|
+
let CheckboxFieldComponent = class CheckboxFieldComponent {
|
|
10601
|
+
};
|
|
10602
|
+
__decorate([
|
|
10603
|
+
Input()
|
|
10604
|
+
], CheckboxFieldComponent.prototype, "field", void 0);
|
|
10605
|
+
__decorate([
|
|
10606
|
+
Input()
|
|
10607
|
+
], CheckboxFieldComponent.prototype, "formControl", void 0);
|
|
10608
|
+
CheckboxFieldComponent = __decorate([
|
|
10609
|
+
Component({
|
|
10610
|
+
template: "<s-checkbox [data]=\"field.data\"></s-checkbox>"
|
|
10611
|
+
})
|
|
10612
|
+
], CheckboxFieldComponent);
|
|
10613
|
+
|
|
10614
|
+
let NumberFieldComponent = class NumberFieldComponent extends BaseFieldComponent {
|
|
10615
|
+
constructor(localeService, elementRef, changeDetectorRef) {
|
|
10616
|
+
super();
|
|
10617
|
+
this.localeService = localeService;
|
|
10618
|
+
this.elementRef = elementRef;
|
|
10619
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
10620
|
+
this.onInput = new EventEmitter();
|
|
10621
|
+
this.onFocus = new EventEmitter();
|
|
10622
|
+
this.onComplete = new EventEmitter();
|
|
10623
|
+
this.ngUnsubscribe = new Subject();
|
|
10624
|
+
}
|
|
10625
|
+
ngOnInit() {
|
|
10626
|
+
this.onLocaleService();
|
|
10627
|
+
this.onFocus.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
10628
|
+
if (this.field.onFocus)
|
|
10629
|
+
this.field.onFocus(event);
|
|
10630
|
+
});
|
|
10631
|
+
this.onInput.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
10632
|
+
if (this.field.onInput)
|
|
10633
|
+
this.field.onInput(event);
|
|
10634
|
+
});
|
|
10635
|
+
this.onComplete.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
10636
|
+
if (this.field.onComplete)
|
|
10637
|
+
this.field.onComplete(event);
|
|
10638
|
+
});
|
|
10639
|
+
}
|
|
10640
|
+
ngAfterViewInit() {
|
|
10641
|
+
this.setInputRef();
|
|
10642
|
+
this.changeDetectorRef.detectChanges();
|
|
10643
|
+
}
|
|
10644
|
+
ngOnDestroy() {
|
|
10645
|
+
this.ngUnsubscribe.next();
|
|
10646
|
+
this.ngUnsubscribe.complete();
|
|
10647
|
+
}
|
|
10648
|
+
get numberAlignmentOption() {
|
|
10649
|
+
return NumberAlignmentOption;
|
|
10650
|
+
}
|
|
10651
|
+
get fieldType() {
|
|
10652
|
+
return FieldType;
|
|
10653
|
+
}
|
|
10654
|
+
onLocaleService() {
|
|
10655
|
+
this.localeService
|
|
10656
|
+
.getLocale()
|
|
10657
|
+
.pipe(first())
|
|
10658
|
+
.subscribe({
|
|
10659
|
+
next: () => {
|
|
10660
|
+
var _a, _b, _c;
|
|
10661
|
+
if (!((_a = this.field.numberLocaleOptions) === null || _a === void 0 ? void 0 : _a.decimalSeparator)) {
|
|
10662
|
+
this.field.numberLocaleOptions = Object.assign(Object.assign({}, this.field.numberLocaleOptions), { decimalSeparator: this.localeService.getDecimalSeparator() });
|
|
10663
|
+
}
|
|
10664
|
+
if (!((_b = this.field.numberLocaleOptions) === null || _b === void 0 ? void 0 : _b.thousandsSeparator)) {
|
|
10665
|
+
this.field.numberLocaleOptions = Object.assign(Object.assign({}, this.field.numberLocaleOptions), { thousandsSeparator: this.localeService.getGroupingSeparator() });
|
|
10666
|
+
}
|
|
10667
|
+
if (!((_c = this.field.numberLocaleOptions) === null || _c === void 0 ? void 0 : _c.currencySymbol)) {
|
|
10668
|
+
this.field.numberLocaleOptions = Object.assign(Object.assign({}, this.field.numberLocaleOptions), { currencySymbol: "R$" });
|
|
10669
|
+
}
|
|
10670
|
+
},
|
|
10671
|
+
error: () => {
|
|
10672
|
+
var _a;
|
|
10673
|
+
return (this.field.numberLocaleOptions = (_a = this.field.numberLocaleOptions) !== null && _a !== void 0 ? _a : {
|
|
10674
|
+
thousandsSeparator: ".",
|
|
10675
|
+
decimalSeparator: ",",
|
|
10676
|
+
currencySymbol: "R$",
|
|
10677
|
+
});
|
|
10678
|
+
},
|
|
10679
|
+
});
|
|
10680
|
+
}
|
|
10681
|
+
setInputRef() {
|
|
10682
|
+
const input = this.elementRef.nativeElement.querySelector("input");
|
|
10683
|
+
this.inputRef = input;
|
|
10684
|
+
}
|
|
10685
|
+
};
|
|
10686
|
+
NumberFieldComponent.ctorParameters = () => [
|
|
10687
|
+
{ type: LocaleService },
|
|
10688
|
+
{ type: ElementRef },
|
|
10689
|
+
{ type: ChangeDetectorRef }
|
|
10690
|
+
];
|
|
10691
|
+
__decorate([
|
|
10692
|
+
Input()
|
|
10693
|
+
], NumberFieldComponent.prototype, "field", void 0);
|
|
10694
|
+
__decorate([
|
|
10695
|
+
Input()
|
|
10696
|
+
], NumberFieldComponent.prototype, "formControl", void 0);
|
|
10697
|
+
__decorate([
|
|
10698
|
+
Output()
|
|
10699
|
+
], NumberFieldComponent.prototype, "onInput", void 0);
|
|
10700
|
+
__decorate([
|
|
10701
|
+
Output()
|
|
10702
|
+
], NumberFieldComponent.prototype, "onFocus", void 0);
|
|
10703
|
+
__decorate([
|
|
10704
|
+
Output()
|
|
10705
|
+
], NumberFieldComponent.prototype, "onComplete", void 0);
|
|
10706
|
+
NumberFieldComponent = __decorate([
|
|
10707
|
+
Component({
|
|
10708
|
+
template: "<s-field-label *ngIf=\"inputRef\" [field]=\"field\"\n [fieldContainerRef]=\"inputRef\"></s-field-label>\n\n<p-inputMask #inputRef\n *ngIf=\"field.mask; else noMask\"\n type=\"text\"\n [inputId]=\"(field.id || field.name)\"\n [name]=\"field.name\"\n [mask]=\"isFunction(field.mask) ? field.mask() : field.mask\"\n [placeholder]=\"field.placeholder\"\n slotChar=\"_\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [showDelay]=\"500\"\n styleClass=\"mousetrap\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n (onFocus)=\"onFocus.next($event)\"\n (onComplete)=\"onComplete.next($event)\"\n (onInput)=\"onInput.next($event)\"\n [formControl]=\"formControl\" >\n</p-inputMask>\n<ng-template #noMask>\n <ng-container>\n <div class=\"ui-inputgroup\">\n <ng-container *ngIf=\"field.leftAddon\">\n <span *ngIf=\"field.leftAddon.callback\" class=\"addon-button addon-button--left\">\n <s-button\n [label]=\"field.leftAddon.label\"\n [iconClass]=\"field.leftAddon.icon\"\n [priority]=\"field.leftAddon.priority\"\n [disabled]=\"isFunction(field.leftAddon.disabled) ? field.leftAddon.disabled() : field.leftAddon.disabled\"\n (onClick)=\"field.leftAddon.callback()\">\n </s-button>\n </span>\n <span *ngIf=\"!field.leftAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.leftAddon.label\">{{field.leftAddon.label}}</span>\n <span *ngIf=\"!field.leftAddon.label\" [ngClass]=\"field.leftAddon.icon\"></span>\n </span>\n </ng-container>\n\n <ng-container *ngTemplateOutlet=\"field.type === fieldType.Double && field.alignTo === numberAlignmentOption.LEFT ? localizedNumber : input\"></ng-container>\n\n <ng-container *ngIf=\"field.rightAddon\">\n <span *ngIf=\"field.rightAddon.callback\" class=\"addon-button addon-button--right\">\n <s-button\n [label]=\"field.rightAddon.label\"\n [iconClass]=\"field.rightAddon.icon\"\n [priority]=\"field.rightAddon.priority\"\n [disabled]=\"isFunction(field.rightAddon.disabled) ? field.rightAddon.disabled() : field.rightAddon.disabled\"\n (onClick)=\"field.rightAddon.callback()\">\n </s-button>\n </span>\n <span *ngIf=\"!field.rightAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.rightAddon.label\">{{field.rightAddon.label}}</span>\n <span *ngIf=\"!field.rightAddon.label\" [ngClass]=\"field.rightAddon.icon\"></span>\n </span>\n </ng-container>\n </div>\n </ng-container>\n</ng-template>\n<ng-template #input>\n <input #inputRef\n [id]=\"(field.id || field.name)\"\n type=\"text\"\n [name]=\"field.name\"\n sNumberInput\n [precision]=\"isFunction(field.precision) ? trigger(field.precision) : field.precision\"\n [scale]=\"isFunction(field.scale) ? trigger(field.scale) : field.scale\"\n [decimalSeparator]=\"field.numberLocaleOptions.decimalSeparator\"\n [thousandsSeparator]=\"field.numberLocaleOptions.thousandsSeparator\"\n [alignTo]=\"field.alignTo\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [placeholder]=\"field.placeholder\"\n [showDelay]=\"500\"\n pInputText\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n [ngClass]=\"'mousetrap'\"\n (blur)=\"field.onBlur ? field.onBlur($event) : null\"\n (focus)=\"onFocus.next($event)\"\n [formControl]=\"formControl\" />\n</ng-template>\n<ng-template #localizedNumber>\n <input #inputRef\n [id]=\"(field.id || field.name)\"\n type=\"text\"\n [name]=\"field.name\"\n sLocalizedNumberInput\n [precision]=\"isFunction(field.precision) ? trigger(field.precision) : field.precision\"\n [decimalSeparator]=\"field.numberLocaleOptions.decimalSeparator\"\n [thousandsSeparator]=\"field.numberLocaleOptions.thousandsSeparator\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [placeholder]=\"field.placeholder\"\n [showDelay]=\"500\"\n pInputText\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n [ngClass]=\"'mousetrap'\"\n (blur)=\"field.onBlur ? field.onBlur($event) : null\"\n (focus)=\"onFocus.next($event)\"\n [formControl]=\"formControl\" />\n</ng-template>\n",
|
|
10709
|
+
encapsulation: ViewEncapsulation.None,
|
|
10710
|
+
styles: ["s-number-field.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-number-field.ng-dirty.ng-invalid .ui-inputtext:hover{border-color:#e44328}.addon-button{border:1px solid #c1c1cc}.addon-button s-button .s-button-with-text,.addon-button s-button button{height:100%;min-width:40px}.addon-button--left{border-radius:5px 0 0 5px;border-right:none}.addon-button--left s-button button{border-bottom-right-radius:0;border-top-right-radius:0}.addon-button--right{border-left:none;border-radius:0 5px 5px 0}.addon-button--right s-button button{border-bottom-left-radius:0;border-top-left-radius:0}"]
|
|
10711
|
+
})
|
|
10712
|
+
], NumberFieldComponent);
|
|
10713
|
+
|
|
10480
10714
|
let ProfilePictureFieldComponent = class ProfilePictureFieldComponent {
|
|
10481
10715
|
};
|
|
10482
10716
|
__decorate([
|
|
@@ -10570,6 +10804,8 @@ class DynamicField extends DynamicForm {
|
|
|
10570
10804
|
return TextFieldComponent;
|
|
10571
10805
|
case FieldType.Boolean:
|
|
10572
10806
|
return this.field.representedBy === "switch" ? BooleanSwitchFieldComponent : BooleanFieldComponent;
|
|
10807
|
+
case FieldType.Checkbox:
|
|
10808
|
+
return CheckboxFieldComponent;
|
|
10573
10809
|
case FieldType.Chips:
|
|
10574
10810
|
return ChipsFieldComponent;
|
|
10575
10811
|
case FieldType.CountryPhonePicker:
|
|
@@ -10815,106 +11051,6 @@ TextFieldModule = __decorate([
|
|
|
10815
11051
|
})
|
|
10816
11052
|
], TextFieldModule);
|
|
10817
11053
|
|
|
10818
|
-
let NumberFieldComponent = class NumberFieldComponent extends BaseFieldComponent {
|
|
10819
|
-
constructor(localeService, elementRef, changeDetectorRef) {
|
|
10820
|
-
super();
|
|
10821
|
-
this.localeService = localeService;
|
|
10822
|
-
this.elementRef = elementRef;
|
|
10823
|
-
this.changeDetectorRef = changeDetectorRef;
|
|
10824
|
-
this.onInput = new EventEmitter();
|
|
10825
|
-
this.onFocus = new EventEmitter();
|
|
10826
|
-
this.onComplete = new EventEmitter();
|
|
10827
|
-
this.ngUnsubscribe = new Subject();
|
|
10828
|
-
}
|
|
10829
|
-
ngOnInit() {
|
|
10830
|
-
this.onLocaleService();
|
|
10831
|
-
this.onFocus.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
10832
|
-
if (this.field.onFocus)
|
|
10833
|
-
this.field.onFocus(event);
|
|
10834
|
-
});
|
|
10835
|
-
this.onInput.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
10836
|
-
if (this.field.onInput)
|
|
10837
|
-
this.field.onInput(event);
|
|
10838
|
-
});
|
|
10839
|
-
this.onComplete.pipe(takeUntil(this.ngUnsubscribe)).subscribe((event) => {
|
|
10840
|
-
if (this.field.onComplete)
|
|
10841
|
-
this.field.onComplete(event);
|
|
10842
|
-
});
|
|
10843
|
-
}
|
|
10844
|
-
ngAfterViewInit() {
|
|
10845
|
-
this.setInputRef();
|
|
10846
|
-
this.changeDetectorRef.detectChanges();
|
|
10847
|
-
}
|
|
10848
|
-
ngOnDestroy() {
|
|
10849
|
-
this.ngUnsubscribe.next();
|
|
10850
|
-
this.ngUnsubscribe.complete();
|
|
10851
|
-
}
|
|
10852
|
-
get numberAlignmentOption() {
|
|
10853
|
-
return NumberAlignmentOption;
|
|
10854
|
-
}
|
|
10855
|
-
get fieldType() {
|
|
10856
|
-
return FieldType;
|
|
10857
|
-
}
|
|
10858
|
-
onLocaleService() {
|
|
10859
|
-
this.localeService
|
|
10860
|
-
.getLocale()
|
|
10861
|
-
.pipe(first())
|
|
10862
|
-
.subscribe({
|
|
10863
|
-
next: () => {
|
|
10864
|
-
var _a, _b, _c;
|
|
10865
|
-
if (!((_a = this.field.numberLocaleOptions) === null || _a === void 0 ? void 0 : _a.decimalSeparator)) {
|
|
10866
|
-
this.field.numberLocaleOptions = Object.assign(Object.assign({}, this.field.numberLocaleOptions), { decimalSeparator: this.localeService.getDecimalSeparator() });
|
|
10867
|
-
}
|
|
10868
|
-
if (!((_b = this.field.numberLocaleOptions) === null || _b === void 0 ? void 0 : _b.thousandsSeparator)) {
|
|
10869
|
-
this.field.numberLocaleOptions = Object.assign(Object.assign({}, this.field.numberLocaleOptions), { thousandsSeparator: this.localeService.getGroupingSeparator() });
|
|
10870
|
-
}
|
|
10871
|
-
if (!((_c = this.field.numberLocaleOptions) === null || _c === void 0 ? void 0 : _c.currencySymbol)) {
|
|
10872
|
-
this.field.numberLocaleOptions = Object.assign(Object.assign({}, this.field.numberLocaleOptions), { currencySymbol: "R$" });
|
|
10873
|
-
}
|
|
10874
|
-
},
|
|
10875
|
-
error: () => {
|
|
10876
|
-
var _a;
|
|
10877
|
-
return (this.field.numberLocaleOptions = (_a = this.field.numberLocaleOptions) !== null && _a !== void 0 ? _a : {
|
|
10878
|
-
thousandsSeparator: ".",
|
|
10879
|
-
decimalSeparator: ",",
|
|
10880
|
-
currencySymbol: "R$",
|
|
10881
|
-
});
|
|
10882
|
-
},
|
|
10883
|
-
});
|
|
10884
|
-
}
|
|
10885
|
-
setInputRef() {
|
|
10886
|
-
const input = this.elementRef.nativeElement.querySelector("input");
|
|
10887
|
-
this.inputRef = input;
|
|
10888
|
-
}
|
|
10889
|
-
};
|
|
10890
|
-
NumberFieldComponent.ctorParameters = () => [
|
|
10891
|
-
{ type: LocaleService },
|
|
10892
|
-
{ type: ElementRef },
|
|
10893
|
-
{ type: ChangeDetectorRef }
|
|
10894
|
-
];
|
|
10895
|
-
__decorate([
|
|
10896
|
-
Input()
|
|
10897
|
-
], NumberFieldComponent.prototype, "field", void 0);
|
|
10898
|
-
__decorate([
|
|
10899
|
-
Input()
|
|
10900
|
-
], NumberFieldComponent.prototype, "formControl", void 0);
|
|
10901
|
-
__decorate([
|
|
10902
|
-
Output()
|
|
10903
|
-
], NumberFieldComponent.prototype, "onInput", void 0);
|
|
10904
|
-
__decorate([
|
|
10905
|
-
Output()
|
|
10906
|
-
], NumberFieldComponent.prototype, "onFocus", void 0);
|
|
10907
|
-
__decorate([
|
|
10908
|
-
Output()
|
|
10909
|
-
], NumberFieldComponent.prototype, "onComplete", void 0);
|
|
10910
|
-
NumberFieldComponent = __decorate([
|
|
10911
|
-
Component({
|
|
10912
|
-
template: "<s-field-label *ngIf=\"inputRef\" [field]=\"field\"\n [fieldContainerRef]=\"inputRef\"></s-field-label>\n\n<p-inputMask #inputRef\n *ngIf=\"field.mask; else noMask\"\n type=\"text\"\n [inputId]=\"(field.id || field.name)\"\n [name]=\"field.name\"\n [mask]=\"isFunction(field.mask) ? field.mask() : field.mask\"\n [placeholder]=\"field.placeholder\"\n slotChar=\"_\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [showDelay]=\"500\"\n styleClass=\"mousetrap\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n (onFocus)=\"onFocus.next($event)\"\n (onComplete)=\"onComplete.next($event)\"\n (onInput)=\"onInput.next($event)\"\n [formControl]=\"formControl\" >\n</p-inputMask>\n<ng-template #noMask>\n <ng-container>\n <div class=\"ui-inputgroup\">\n <ng-container *ngIf=\"field.leftAddon\">\n <span *ngIf=\"field.leftAddon.callback\" class=\"addon-button addon-button--left\">\n <s-button\n [label]=\"field.leftAddon.label\"\n [iconClass]=\"field.leftAddon.icon\"\n [priority]=\"field.leftAddon.priority\"\n [disabled]=\"isFunction(field.leftAddon.disabled) ? field.leftAddon.disabled() : field.leftAddon.disabled\"\n (onClick)=\"field.leftAddon.callback()\">\n </s-button>\n </span>\n <span *ngIf=\"!field.leftAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.leftAddon.label\">{{field.leftAddon.label}}</span>\n <span *ngIf=\"!field.leftAddon.label\" [ngClass]=\"field.leftAddon.icon\"></span>\n </span>\n </ng-container>\n\n <ng-container *ngTemplateOutlet=\"field.type === fieldType.Double && field.alignTo === numberAlignmentOption.LEFT ? localizedNumber : input\"></ng-container>\n\n <ng-container *ngIf=\"field.rightAddon\">\n <span *ngIf=\"field.rightAddon.callback\" class=\"addon-button addon-button--right\">\n <s-button\n [label]=\"field.rightAddon.label\"\n [iconClass]=\"field.rightAddon.icon\"\n [priority]=\"field.rightAddon.priority\"\n [disabled]=\"isFunction(field.rightAddon.disabled) ? field.rightAddon.disabled() : field.rightAddon.disabled\"\n (onClick)=\"field.rightAddon.callback()\">\n </s-button>\n </span>\n <span *ngIf=\"!field.rightAddon.callback\" class=\"ui-inputgroup-addon\">\n <span *ngIf=\"field.rightAddon.label\">{{field.rightAddon.label}}</span>\n <span *ngIf=\"!field.rightAddon.label\" [ngClass]=\"field.rightAddon.icon\"></span>\n </span>\n </ng-container>\n </div>\n </ng-container>\n</ng-template>\n<ng-template #input>\n <input #inputRef\n [id]=\"(field.id || field.name)\"\n type=\"text\"\n [name]=\"field.name\"\n sNumberInput\n [precision]=\"isFunction(field.precision) ? trigger(field.precision) : field.precision\"\n [scale]=\"isFunction(field.scale) ? trigger(field.scale) : field.scale\"\n [decimalSeparator]=\"field.numberLocaleOptions.decimalSeparator\"\n [thousandsSeparator]=\"field.numberLocaleOptions.thousandsSeparator\"\n [alignTo]=\"field.alignTo\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [placeholder]=\"field.placeholder\"\n [showDelay]=\"500\"\n pInputText\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n [ngClass]=\"'mousetrap'\"\n (blur)=\"field.onBlur ? field.onBlur($event) : null\"\n (focus)=\"onFocus.next($event)\"\n [formControl]=\"formControl\" />\n</ng-template>\n<ng-template #localizedNumber>\n <input #inputRef\n [id]=\"(field.id || field.name)\"\n type=\"text\"\n [name]=\"field.name\"\n sLocalizedNumberInput\n [precision]=\"isFunction(field.precision) ? trigger(field.precision) : field.precision\"\n [decimalSeparator]=\"field.numberLocaleOptions.decimalSeparator\"\n [thousandsSeparator]=\"field.numberLocaleOptions.thousandsSeparator\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n [placeholder]=\"field.placeholder\"\n [showDelay]=\"500\"\n pInputText\n [autocomplete]=\"field.browserAutocomplete ? 'on' : 'off'\"\n [ngClass]=\"'mousetrap'\"\n (blur)=\"field.onBlur ? field.onBlur($event) : null\"\n (focus)=\"onFocus.next($event)\"\n [formControl]=\"formControl\" />\n</ng-template>\n",
|
|
10913
|
-
encapsulation: ViewEncapsulation.None,
|
|
10914
|
-
styles: ["s-number-field.ng-dirty.ng-invalid .ui-inputtext{border-color:#c13018}s-number-field.ng-dirty.ng-invalid .ui-inputtext:hover{border-color:#e44328}.addon-button{border:1px solid #c1c1cc}.addon-button s-button .s-button-with-text,.addon-button s-button button{height:100%;min-width:40px}.addon-button--left{border-radius:5px 0 0 5px;border-right:none}.addon-button--left s-button button{border-bottom-right-radius:0;border-top-right-radius:0}.addon-button--right{border-left:none;border-radius:0 5px 5px 0}.addon-button--right s-button button{border-bottom-left-radius:0;border-top-left-radius:0}"]
|
|
10915
|
-
})
|
|
10916
|
-
], NumberFieldComponent);
|
|
10917
|
-
|
|
10918
11054
|
let NumberFieldModule = class NumberFieldModule {
|
|
10919
11055
|
};
|
|
10920
11056
|
NumberFieldModule = __decorate([
|
|
@@ -11695,6 +11831,16 @@ ProfilePictureModule = __decorate([
|
|
|
11695
11831
|
})
|
|
11696
11832
|
], ProfilePictureModule);
|
|
11697
11833
|
|
|
11834
|
+
let CheckboxFieldModule = class CheckboxFieldModule {
|
|
11835
|
+
};
|
|
11836
|
+
CheckboxFieldModule = __decorate([
|
|
11837
|
+
NgModule({
|
|
11838
|
+
imports: [CommonModule, FormsModule, ReactiveFormsModule, CheckboxModule],
|
|
11839
|
+
declarations: [CheckboxFieldComponent],
|
|
11840
|
+
exports: [CheckboxFieldComponent],
|
|
11841
|
+
})
|
|
11842
|
+
], CheckboxFieldModule);
|
|
11843
|
+
|
|
11698
11844
|
let EditorFieldModule = class EditorFieldModule {
|
|
11699
11845
|
};
|
|
11700
11846
|
EditorFieldModule = __decorate([
|
|
@@ -11716,7 +11862,7 @@ DynamicFormModule = __decorate([
|
|
|
11716
11862
|
ButtonModule,
|
|
11717
11863
|
CalendarMaskModule,
|
|
11718
11864
|
CalendarModule,
|
|
11719
|
-
CheckboxModule,
|
|
11865
|
+
CheckboxModule$1,
|
|
11720
11866
|
ChipsModule,
|
|
11721
11867
|
CommonModule,
|
|
11722
11868
|
ControlErrorsModule,
|
|
@@ -11758,6 +11904,7 @@ DynamicFormModule = __decorate([
|
|
|
11758
11904
|
NumberFieldModule,
|
|
11759
11905
|
CurrencyFieldModule,
|
|
11760
11906
|
BignumberFieldModule,
|
|
11907
|
+
CheckboxFieldModule,
|
|
11761
11908
|
ProfilePictureModule,
|
|
11762
11909
|
EditorFieldModule,
|
|
11763
11910
|
FieldLabelModule
|
|
@@ -18320,5 +18467,5 @@ const fallback = {
|
|
|
18320
18467
|
* Generated bundle index. Do not edit.
|
|
18321
18468
|
*/
|
|
18322
18469
|
|
|
18323
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, TablePagingComponent as ɵba, PasswordFieldModule as ɵbb, FieldLabelModule as ɵbc, InfoSignModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, LocalizedNumberInputModule as ɵbj, NumberInputModule as ɵbk, NumberFieldComponent as ɵbl, CurrencyFieldModule as ɵbm, CurrencyFieldComponent as ɵbn, BignumberFieldModule as ɵbo, BignumberInputModule as ɵbp, BignumberFieldComponent as ɵbq,
|
|
18470
|
+
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, CheckboxComponent, CheckboxModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, TablePagingComponent as ɵba, PasswordFieldModule as ɵbb, FieldLabelModule as ɵbc, InfoSignModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, LocalizedNumberInputModule as ɵbj, NumberInputModule as ɵbk, NumberFieldComponent as ɵbl, CurrencyFieldModule as ɵbm, CurrencyFieldComponent as ɵbn, BignumberFieldModule as ɵbo, BignumberInputModule as ɵbp, BignumberFieldComponent as ɵbq, CheckboxFieldModule as ɵbr, CheckboxFieldComponent as ɵbs, ProfilePictureModule as ɵbt, ThumbnailService as ɵbu, StructureModule as ɵbv, HeaderComponent as ɵbw, FooterComponent as ɵbx, ProfilePictureFieldComponent as ɵby, EditorFieldModule as ɵbz, TieredMenuEventService as ɵc, EditorFieldComponent as ɵca, AutocompleteFieldComponent as ɵcb, BooleanFieldComponent as ɵcc, BooleanSwitchFieldComponent as ɵcd, CalendarFieldComponent as ɵce, ChipsFieldComponent as ɵcf, CountryPhonePickerFieldComponent as ɵcg, DynamicFieldComponent as ɵch, DynamicFormDirective as ɵci, FieldsetComponent as ɵcj, FileUploadComponent$1 as ɵck, LookupFieldComponent as ɵcl, RadioButtonComponent as ɵcm, RowComponent as ɵcn, SectionComponent as ɵco, SelectFieldComponent as ɵcp, SliderFieldComponent as ɵcq, TextAreaFieldComponent as ɵcr, TextAreaIAFieldComponent as ɵcs, IAssistService as ɵct, DecimalField as ɵcv, SideTableComponent as ɵcw, InfiniteScrollModule as ɵcx, InfiniteScrollDirective as ɵcy, IAInsightSidebarComponent as ɵcz, TieredMenuService as ɵd, IAInsightCardComponent as ɵda, IAInsightCardLoaderComponent as ɵdb, InlineEditItemComponent as ɵdc, LocaleService as ɵdd, InlineEditCalendarComponent as ɵde, InlineEditLookupComponent as ɵdf, InlineEditNumberComponent as ɵdg, InlineEditTextComponent as ɵdh, InlineEditTextAreaComponent as ɵdi, InlineEditTextAreaIAComponent as ɵdj, KanbanEventService as ɵdk, KanbanItemComponent as ɵdl, KanbanColumnComponent as ɵdm, KanbanItemDraggingComponent as ɵdn, NumberLocaleOptions as ɵdo, BorderButtonModule as ɵdp, BorderButtonComponent as ɵdq, ProgressBarDeterminateComponent as ɵdr, ProgressBarIndeterminateComponent as ɵds, SelectButtonItemComponent as ɵdt, SlidePanelService as ɵdu, TimelineItemModule as ɵdv, TimelineIconItemComponent as ɵdw, HorizontalTimelineModule as ɵdx, HorizontalTimelineComponent as ɵdy, VerticalTimelineModule as ɵdz, TieredMenuGlobalService as ɵe, VerticalTimelineComponent as ɵea, RangeLineComponent as ɵeb, CollapseOptionComponent as ɵec, CollapsedItemsComponent as ɵed, VerticalItemsComponent as ɵee, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, CustomTranslationsModule as ɵj, CodeEditorComponent as ɵk, CoreFacade as ɵl, CodeMirror6Core as ɵm, CountryPhonePickerService as ɵn, LocalizedCurrencyImpurePipe as ɵo, LocalizedBignumberPipe as ɵp, LocalizedBignumberImpurePipe as ɵq, NumericPipe as ɵr, EmptyStateGoBackComponent as ɵs, IAssistIconComponent as ɵt, SeniorIconComponent as ɵu, DotsIndicatorComponent as ɵv, LoadingIndicatorComponent as ɵw, FileUploadService as ɵx, InfoSignComponent as ɵy, TableColumnsComponent as ɵz };
|
|
18324
18471
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|