@seniorsistemas/angular-components 14.15.0 → 14.16.1
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 +87 -24
- 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/dynamic-form/components/fields/boolean/boolean-switch-field.component.d.ts +7 -0
- package/components/dynamic-form/configurations/fields/boolean-switch-field.d.ts +8 -0
- package/components/dynamic-form/configurations/fields/field.d.ts +2 -0
- package/components/dynamic-form/configurations/form-field.d.ts +1 -0
- package/components/table/frozen-position/frozen-position.directive.d.ts +4 -1
- package/esm2015/components/dynamic-form/components/fields/boolean/boolean-field.component.js +2 -2
- package/esm2015/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +17 -0
- package/esm2015/components/dynamic-form/configurations/dynamic-config.js +6 -2
- package/esm2015/components/dynamic-form/configurations/fields/boolean-field.js +2 -1
- package/esm2015/components/dynamic-form/configurations/fields/boolean-switch-field.js +9 -0
- package/esm2015/components/dynamic-form/configurations/fields/field.js +2 -1
- package/esm2015/components/dynamic-form/configurations/form-field.js +5 -1
- package/esm2015/components/dynamic-form/dynamic-form.js +5 -1
- package/esm2015/components/dynamic-form/dynamic-form.module.js +9 -4
- package/esm2015/components/table/frozen-position/frozen-position.directive.js +24 -5
- package/esm2015/seniorsistemas-angular-components.js +14 -13
- package/esm5/components/dynamic-form/components/fields/boolean/boolean-field.component.js +2 -2
- package/esm5/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +20 -0
- package/esm5/components/dynamic-form/configurations/dynamic-config.js +6 -2
- package/esm5/components/dynamic-form/configurations/fields/boolean-field.js +2 -1
- package/esm5/components/dynamic-form/configurations/fields/boolean-switch-field.js +14 -0
- package/esm5/components/dynamic-form/configurations/fields/field.js +2 -1
- package/esm5/components/dynamic-form/configurations/form-field.js +5 -1
- package/esm5/components/dynamic-form/dynamic-form.js +5 -1
- package/esm5/components/dynamic-form/dynamic-form.module.js +9 -4
- package/esm5/components/table/frozen-position/frozen-position.directive.js +25 -5
- package/esm5/seniorsistemas-angular-components.js +14 -13
- package/fesm2015/seniorsistemas-angular-components.js +65 -9
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +72 -9
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +13 -12
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -32,6 +32,7 @@ import { InputTextModule } from 'primeng/inputtext';
|
|
|
32
32
|
import { InputTextareaModule } from 'primeng/inputtextarea';
|
|
33
33
|
import { KeyFilterModule } from 'primeng/keyfilter';
|
|
34
34
|
import { MultiSelectModule } from 'primeng/multiselect';
|
|
35
|
+
import { InputSwitchModule } from 'primeng/inputswitch';
|
|
35
36
|
import { PanelModule } from 'primeng/panel';
|
|
36
37
|
import { RadioButtonModule } from 'primeng/radiobutton';
|
|
37
38
|
import { ProgressBarModule } from 'primeng/progressbar';
|
|
@@ -1054,6 +1055,7 @@ var Field = /** @class */ (function () {
|
|
|
1054
1055
|
this.errorMessages = config.errorMessages;
|
|
1055
1056
|
this.gridClass = Object.keys(this.size).map(function (key) { return "ui-" + key + "-" + _this.size[key]; });
|
|
1056
1057
|
this.defaultValue = config.defaultValue;
|
|
1058
|
+
this.representedBy = config.representedBy;
|
|
1057
1059
|
}
|
|
1058
1060
|
return Field;
|
|
1059
1061
|
}());
|
|
@@ -1518,6 +1520,7 @@ var BooleanField = /** @class */ (function (_super) {
|
|
|
1518
1520
|
var _this = _super.call(this, config) || this;
|
|
1519
1521
|
_this.verticalAlignment = config.verticalAlignment;
|
|
1520
1522
|
_this.optionsLabel = new BooleanOptionsLabel(config.optionsLabel);
|
|
1523
|
+
_this.representedBy = "radio";
|
|
1521
1524
|
_this.onBlur = config.onBlur;
|
|
1522
1525
|
_this.onFocus = config.onFocus;
|
|
1523
1526
|
_this.onClick = config.onClick;
|
|
@@ -1526,6 +1529,17 @@ var BooleanField = /** @class */ (function (_super) {
|
|
|
1526
1529
|
return BooleanField;
|
|
1527
1530
|
}(Field));
|
|
1528
1531
|
|
|
1532
|
+
var BooleanSwitchField = /** @class */ (function (_super) {
|
|
1533
|
+
__extends(BooleanSwitchField, _super);
|
|
1534
|
+
function BooleanSwitchField(config) {
|
|
1535
|
+
var _this = _super.call(this, config) || this;
|
|
1536
|
+
_this.onChange = config.onChange;
|
|
1537
|
+
_this.representedBy = "switch";
|
|
1538
|
+
return _this;
|
|
1539
|
+
}
|
|
1540
|
+
return BooleanSwitchField;
|
|
1541
|
+
}(Field));
|
|
1542
|
+
|
|
1529
1543
|
var CalendarField = /** @class */ (function (_super) {
|
|
1530
1544
|
__extends(CalendarField, _super);
|
|
1531
1545
|
function CalendarField(config) {
|
|
@@ -1909,6 +1923,9 @@ var FormField = /** @class */ (function () {
|
|
|
1909
1923
|
case FieldType.Text:
|
|
1910
1924
|
return new TextAreaField(config);
|
|
1911
1925
|
case FieldType.Boolean:
|
|
1926
|
+
if (config.representedBy === "switch") {
|
|
1927
|
+
return new BooleanSwitchField(config);
|
|
1928
|
+
}
|
|
1912
1929
|
return new BooleanField(config);
|
|
1913
1930
|
case FieldType.Date:
|
|
1914
1931
|
case FieldType.DateTime:
|
|
@@ -2479,7 +2496,7 @@ var Section = /** @class */ (function (_super) {
|
|
|
2479
2496
|
|
|
2480
2497
|
var DynamicConfig = /** @class */ (function () {
|
|
2481
2498
|
function DynamicConfig(config) {
|
|
2482
|
-
var type = config.type;
|
|
2499
|
+
var type = config.type, representedBy = config.representedBy;
|
|
2483
2500
|
switch (type) {
|
|
2484
2501
|
case DynamicType.Autocomplete:
|
|
2485
2502
|
return new AutocompleteField(config);
|
|
@@ -2487,6 +2504,9 @@ var DynamicConfig = /** @class */ (function () {
|
|
|
2487
2504
|
case DynamicType.String:
|
|
2488
2505
|
return new TextField(config);
|
|
2489
2506
|
case DynamicType.Boolean:
|
|
2507
|
+
if (representedBy === "switch") {
|
|
2508
|
+
return new BooleanSwitchField(config);
|
|
2509
|
+
}
|
|
2490
2510
|
return new BooleanField(config);
|
|
2491
2511
|
case DynamicType.Chips:
|
|
2492
2512
|
return new ChipsField(config);
|
|
@@ -3772,23 +3792,25 @@ var TableFrozenPositionDirective = /** @class */ (function () {
|
|
|
3772
3792
|
this.el = el;
|
|
3773
3793
|
this.host = host;
|
|
3774
3794
|
this.sTableFrozenPosition = "left";
|
|
3795
|
+
this.onColumnsChanged = new EventEmitter();
|
|
3775
3796
|
this.host.onColResize.subscribe(function () {
|
|
3776
3797
|
_this.handleColResize();
|
|
3777
3798
|
});
|
|
3778
3799
|
window.addEventListener("resize", this.handleWindowResize.bind(this));
|
|
3779
3800
|
var componentId = new Date().getTime();
|
|
3801
|
+
var htmlHead = document.getElementsByTagName("head")[0];
|
|
3780
3802
|
this.resetRowHeightClassName = "resetTableRowsHeight_" + componentId;
|
|
3781
3803
|
var styleReset = document.createElement("style");
|
|
3782
3804
|
styleReset.innerHTML = "." + this.resetRowHeightClassName + " tbody > tr, ." + this.resetRowHeightClassName + " thead > tr { height: auto; }";
|
|
3783
|
-
|
|
3805
|
+
htmlHead.appendChild(styleReset);
|
|
3784
3806
|
this.fixBodyRowClassName = "fixTableBodyRowsHeight_" + componentId;
|
|
3785
3807
|
this.styleFixBodyRowHeight = document.createElement("style");
|
|
3786
3808
|
this.styleFixBodyRowHeight.innerHTML = "." + this.fixBodyRowClassName + " tbody > tr { height: auto; }";
|
|
3787
|
-
|
|
3809
|
+
htmlHead.appendChild(this.styleFixBodyRowHeight);
|
|
3788
3810
|
this.fixHeadRowClassName = "fixTableHeadRowsHeight_" + componentId;
|
|
3789
3811
|
this.styleFixHeadRowHeight = document.createElement("style");
|
|
3790
3812
|
this.styleFixHeadRowHeight.innerHTML = "." + this.fixHeadRowClassName + " thead > tr { height: auto; }";
|
|
3791
|
-
|
|
3813
|
+
htmlHead.appendChild(this.styleFixHeadRowHeight);
|
|
3792
3814
|
}
|
|
3793
3815
|
Object.defineProperty(TableFrozenPositionDirective.prototype, "sTableFrozenValue", {
|
|
3794
3816
|
set: function (_) {
|
|
@@ -3804,9 +3826,27 @@ var TableFrozenPositionDirective = /** @class */ (function () {
|
|
|
3804
3826
|
if (this.sTableFrozenPosition === "left")
|
|
3805
3827
|
return;
|
|
3806
3828
|
this.applyStylesForTable();
|
|
3829
|
+
this.setUpColumnMonitoring();
|
|
3807
3830
|
};
|
|
3808
3831
|
TableFrozenPositionDirective.prototype.ngOnDestroy = function () {
|
|
3809
3832
|
window.removeEventListener("resize", this.handleWindowResize.bind(this));
|
|
3833
|
+
if (this.tableHeadObservable) {
|
|
3834
|
+
this.tableHeadObservable.disconnect();
|
|
3835
|
+
}
|
|
3836
|
+
};
|
|
3837
|
+
TableFrozenPositionDirective.prototype.setUpColumnMonitoring = function () {
|
|
3838
|
+
var _this = this;
|
|
3839
|
+
this.tableHeadObservable = new MutationObserver(function () {
|
|
3840
|
+
_this.synchronizeRowHeight();
|
|
3841
|
+
_this.onColumnsChanged.emit(null);
|
|
3842
|
+
});
|
|
3843
|
+
var tableHeads = __spread(this.el.nativeElement.getElementsByTagName("thead"));
|
|
3844
|
+
tableHeads.forEach(function (tableHead) {
|
|
3845
|
+
_this.tableHeadObservable.observe(tableHead, {
|
|
3846
|
+
subtree: true,
|
|
3847
|
+
childList: true
|
|
3848
|
+
});
|
|
3849
|
+
});
|
|
3810
3850
|
};
|
|
3811
3851
|
TableFrozenPositionDirective.prototype.applyStylesForTable = function () {
|
|
3812
3852
|
var scrollWrapper = this.el.nativeElement.querySelector(".ui-table-scrollable-wrapper");
|
|
@@ -4468,7 +4508,7 @@ var BooleanFieldComponent = /** @class */ (function () {
|
|
|
4468
4508
|
], BooleanFieldComponent.prototype, "formControl", void 0);
|
|
4469
4509
|
BooleanFieldComponent = __decorate([
|
|
4470
4510
|
Component({
|
|
4471
|
-
template: "<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <p-radioButton [name]=\"field.name\" [value]=\"true\" [label]=\"field.optionsLabel.true\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-1'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div class=\"ui-g-12\">\n <p-radioButton [name]=\"field.name\" [value]=\"false\" [label]=\"field.optionsLabel.false\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-2'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div class=\"ui-g-12\">\n <p-radioButton *ngIf=\"!field.required()\" [name]=\"field.name\" [value]=\"null\"\n [label]=\"field.optionsLabel.empty\" [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-3'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <p-radioButton [name]=\"field.name\" [value]=\"true\" [label]=\"field.optionsLabel.true\" [formControl]=\"formControl\"\n
|
|
4511
|
+
template: "<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <p-radioButton [name]=\"field.name\" [value]=\"true\" [label]=\"field.optionsLabel.true\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-1'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div class=\"ui-g-12\">\n <p-radioButton [name]=\"field.name\" [value]=\"false\" [label]=\"field.optionsLabel.false\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-2'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div class=\"ui-g-12\">\n <p-radioButton *ngIf=\"!field.required()\" [name]=\"field.name\" [value]=\"null\"\n [label]=\"field.optionsLabel.empty\" [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-3'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <div class=\"ui-g\">\n <p-radioButton [name]=\"field.name\" [value]=\"true\" [label]=\"field.optionsLabel.true\" [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-1'\" (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\" (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n <p-radioButton [name]=\"field.name\" [value]=\"false\" [label]=\"field.optionsLabel.false\" [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-2'\" (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\" (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n <p-radioButton *ngIf=\"!field.required()\" [name]=\"field.name\" [value]=\"null\" [label]=\"field.optionsLabel.empty\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-3'\" (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\" (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n</ng-template>\n"
|
|
4472
4512
|
})
|
|
4473
4513
|
], BooleanFieldComponent);
|
|
4474
4514
|
return BooleanFieldComponent;
|
|
@@ -4962,6 +5002,23 @@ var BignumberFieldComponent = /** @class */ (function (_super) {
|
|
|
4962
5002
|
return BignumberFieldComponent;
|
|
4963
5003
|
}(BaseFieldComponent));
|
|
4964
5004
|
|
|
5005
|
+
var BooleanSwitchFieldComponent = /** @class */ (function () {
|
|
5006
|
+
function BooleanSwitchFieldComponent() {
|
|
5007
|
+
}
|
|
5008
|
+
__decorate([
|
|
5009
|
+
Input()
|
|
5010
|
+
], BooleanSwitchFieldComponent.prototype, "field", void 0);
|
|
5011
|
+
__decorate([
|
|
5012
|
+
Input()
|
|
5013
|
+
], BooleanSwitchFieldComponent.prototype, "formControl", void 0);
|
|
5014
|
+
BooleanSwitchFieldComponent = __decorate([
|
|
5015
|
+
Component({
|
|
5016
|
+
template: "<div class=\"ui-g\">\n <p-inputSwitch [id]=\"(field.id || field.name)\" [name]=\"field.name\" [formControl]=\"formControl\"\n [pTooltip]=\"field.tooltip\" tooltipPosition=\"top\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n </p-inputSwitch>\n</div>"
|
|
5017
|
+
})
|
|
5018
|
+
], BooleanSwitchFieldComponent);
|
|
5019
|
+
return BooleanSwitchFieldComponent;
|
|
5020
|
+
}());
|
|
5021
|
+
|
|
4965
5022
|
var DynamicForm = /** @class */ (function () {
|
|
4966
5023
|
function DynamicForm(_a) {
|
|
4967
5024
|
var group = _a.group, errorMessages = _a.errorMessages;
|
|
@@ -5020,6 +5077,9 @@ var DynamicField = /** @class */ (function (_super) {
|
|
|
5020
5077
|
case FieldType.String:
|
|
5021
5078
|
return TextFieldComponent;
|
|
5022
5079
|
case FieldType.Boolean:
|
|
5080
|
+
if (this.field.representedBy === "switch") {
|
|
5081
|
+
return BooleanSwitchFieldComponent;
|
|
5082
|
+
}
|
|
5023
5083
|
return BooleanFieldComponent;
|
|
5024
5084
|
case FieldType.Chips:
|
|
5025
5085
|
return ChipsFieldComponent;
|
|
@@ -5338,7 +5398,8 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
5338
5398
|
InfoSignModule,
|
|
5339
5399
|
MaskFormatterModule,
|
|
5340
5400
|
HotkeyModule.forRoot(),
|
|
5341
|
-
MouseEventsModule
|
|
5401
|
+
MouseEventsModule,
|
|
5402
|
+
InputSwitchModule
|
|
5342
5403
|
],
|
|
5343
5404
|
declarations: [
|
|
5344
5405
|
AutocompleteFieldComponent,
|
|
@@ -5360,7 +5421,8 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
5360
5421
|
SectionComponent,
|
|
5361
5422
|
SelectFieldComponent,
|
|
5362
5423
|
TextAreaFieldComponent,
|
|
5363
|
-
TextFieldComponent
|
|
5424
|
+
TextFieldComponent,
|
|
5425
|
+
BooleanSwitchFieldComponent
|
|
5364
5426
|
],
|
|
5365
5427
|
exports: [DynamicFormComponent, LookupComponent],
|
|
5366
5428
|
entryComponents: [
|
|
@@ -5379,7 +5441,8 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
5379
5441
|
SectionComponent,
|
|
5380
5442
|
SelectFieldComponent,
|
|
5381
5443
|
TextAreaFieldComponent,
|
|
5382
|
-
TextFieldComponent
|
|
5444
|
+
TextFieldComponent,
|
|
5445
|
+
BooleanSwitchFieldComponent
|
|
5383
5446
|
],
|
|
5384
5447
|
providers: [HotkeysService]
|
|
5385
5448
|
})
|
|
@@ -9130,5 +9193,5 @@ var CodeEditorModule = /** @class */ (function () {
|
|
|
9130
9193
|
* Generated bundle index. Do not edit.
|
|
9131
9194
|
*/
|
|
9132
9195
|
|
|
9133
|
-
export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as
|
|
9196
|
+
export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as ɵbb, StructureModule as ɵbc, HeaderComponent as ɵbd, FooterComponent as ɵbe, NumberLocaleOptions as ɵbf, ThumbnailService as ɵbg, InfiniteScrollModule as ɵbh, InfiniteScrollDirective as ɵbi, CustomTranslationsModule as ɵbj, CodeEditorComponent as ɵbk, CoreFacade as ɵbl, CodeMirror6Core as ɵbm, LocalizedBignumberImpurePipe as ɵc, EmptyStateGoBackComponent as ɵd, TableColumnsComponent as ɵe, TablePagingComponent as ɵf, InfoSignComponent as ɵg, AutocompleteFieldComponent as ɵh, BooleanFieldComponent as ɵi, CalendarFieldComponent as ɵj, ChipsFieldComponent as ɵk, CurrencyFieldComponent as ɵl, DynamicFieldComponent as ɵm, DynamicFormDirective as ɵn, FieldsetComponent as ɵo, FileUploadComponent$1 as ɵp, LookupFieldComponent as ɵq, NumberFieldComponent as ɵr, BignumberFieldComponent as ɵs, RadioButtonComponent as ɵt, RowComponent as ɵu, SectionComponent as ɵv, SelectFieldComponent as ɵw, TextAreaFieldComponent as ɵx, TextFieldComponent as ɵy, BooleanSwitchFieldComponent as ɵz };
|
|
9134
9197
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|