@seniorsistemas/angular-components 16.10.0 → 16.10.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 +169 -31
- 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/base-field-component.d.ts +2 -1
- package/components/dynamic-form/components/fields/slider/slider-field.component.d.ts +18 -0
- package/components/dynamic-form/configurations/dynamic-type.d.ts +2 -1
- package/components/dynamic-form/configurations/field-type.d.ts +2 -1
- package/components/dynamic-form/configurations/fields/slider-field.d.ts +31 -0
- package/components/dynamic-form/configurations/form-field.d.ts +4 -0
- package/components/product-header/product-header.component.d.ts +1 -0
- package/esm2015/components/dynamic-form/components/fields/base-field-component.js +1 -1
- package/esm2015/components/dynamic-form/components/fields/slider/slider-field.component.js +88 -0
- package/esm2015/components/dynamic-form/configurations/dynamic-config.js +4 -1
- package/esm2015/components/dynamic-form/configurations/dynamic-type.js +2 -1
- package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm2015/components/dynamic-form/configurations/fields/slider-field.js +21 -0
- package/esm2015/components/dynamic-form/configurations/form-field.js +4 -1
- package/esm2015/components/dynamic-form/dynamic-form.js +4 -1
- package/esm2015/components/dynamic-form/dynamic-form.module.js +7 -2
- package/esm2015/components/product-header/product-header.component.js +13 -3
- package/esm2015/seniorsistemas-angular-components.js +26 -25
- package/esm5/components/dynamic-form/components/fields/base-field-component.js +1 -1
- package/esm5/components/dynamic-form/components/fields/slider/slider-field.component.js +100 -0
- package/esm5/components/dynamic-form/configurations/dynamic-config.js +4 -1
- package/esm5/components/dynamic-form/configurations/dynamic-type.js +2 -1
- package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
- package/esm5/components/dynamic-form/configurations/fields/slider-field.js +26 -0
- package/esm5/components/dynamic-form/configurations/form-field.js +4 -1
- package/esm5/components/dynamic-form/dynamic-form.js +4 -1
- package/esm5/components/dynamic-form/dynamic-form.module.js +7 -2
- package/esm5/components/product-header/product-header.component.js +13 -3
- package/esm5/seniorsistemas-angular-components.js +26 -25
- package/fesm2015/seniorsistemas-angular-components.js +127 -4
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +142 -4
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +3 -3
- package/seniorsistemas-angular-components.d.ts +25 -24
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -37,6 +37,7 @@ import { MultiSelectModule } from 'primeng/multiselect';
|
|
|
37
37
|
import { InputSwitchModule } from 'primeng/inputswitch';
|
|
38
38
|
import { PanelModule as PanelModule$1 } from 'primeng/panel';
|
|
39
39
|
import { RadioButtonModule } from 'primeng/radiobutton';
|
|
40
|
+
import { SliderModule } from 'primeng/slider';
|
|
40
41
|
import { ProgressBarModule as ProgressBarModule$1 } from 'primeng/progressbar';
|
|
41
42
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
42
43
|
import Cropper from 'cropperjs';
|
|
@@ -1650,6 +1651,7 @@ var FieldType;
|
|
|
1650
1651
|
FieldType["Number"] = "Number";
|
|
1651
1652
|
FieldType["Custom"] = "Custom";
|
|
1652
1653
|
FieldType["Password"] = "Password";
|
|
1654
|
+
FieldType["Slider"] = "Slider";
|
|
1653
1655
|
})(FieldType || (FieldType = {}));
|
|
1654
1656
|
|
|
1655
1657
|
var FieldSize = /** @class */ (function () {
|
|
@@ -2567,6 +2569,29 @@ var PasswordField = /** @class */ (function (_super) {
|
|
|
2567
2569
|
return PasswordField;
|
|
2568
2570
|
}(Field));
|
|
2569
2571
|
|
|
2572
|
+
var SliderField = /** @class */ (function (_super) {
|
|
2573
|
+
__extends(SliderField, _super);
|
|
2574
|
+
function SliderField(config) {
|
|
2575
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
2576
|
+
var _this = _super.call(this, config) || this;
|
|
2577
|
+
_this.maxDefault = 100;
|
|
2578
|
+
_this.onChange = config.onChange;
|
|
2579
|
+
_this.onSlideEnd = config.onSlideEnd;
|
|
2580
|
+
_this.range = (_a = config.range) !== null && _a !== void 0 ? _a : false;
|
|
2581
|
+
_this.min = (_b = config.min) !== null && _b !== void 0 ? _b : 0;
|
|
2582
|
+
_this.max = (_c = config.max) !== null && _c !== void 0 ? _c : _this.maxDefault;
|
|
2583
|
+
_this.orientation = (_d = config.orientation) !== null && _d !== void 0 ? _d : "horizontal";
|
|
2584
|
+
_this.step = (_e = config.step) !== null && _e !== void 0 ? _e : 1;
|
|
2585
|
+
_this.animate = (_f = config.animate) !== null && _f !== void 0 ? _f : false;
|
|
2586
|
+
_this.disabled = (_g = config.disabled) !== null && _g !== void 0 ? _g : false;
|
|
2587
|
+
_this.prefix = config.prefix;
|
|
2588
|
+
_this.suffix = config.suffix;
|
|
2589
|
+
_this.rangeSeparator = (_h = config.rangeSeparator) !== null && _h !== void 0 ? _h : ' - ';
|
|
2590
|
+
return _this;
|
|
2591
|
+
}
|
|
2592
|
+
return SliderField;
|
|
2593
|
+
}(Field));
|
|
2594
|
+
|
|
2570
2595
|
var FormField = /** @class */ (function () {
|
|
2571
2596
|
function FormField(config) {
|
|
2572
2597
|
switch (config.type) {
|
|
@@ -2607,6 +2632,8 @@ var FormField = /** @class */ (function () {
|
|
|
2607
2632
|
return new ChipsField(config);
|
|
2608
2633
|
case FieldType.Blob:
|
|
2609
2634
|
return new BlobField(config);
|
|
2635
|
+
case FieldType.Slider:
|
|
2636
|
+
return new SliderField(config);
|
|
2610
2637
|
case FieldType.Custom:
|
|
2611
2638
|
var CustomFieldClass = config.CustomFieldClass, otherConfigs = __rest(config, ["CustomFieldClass"]);
|
|
2612
2639
|
return new CustomFieldClass(otherConfigs);
|
|
@@ -3189,6 +3216,7 @@ var DynamicType;
|
|
|
3189
3216
|
DynamicType["Time"] = "Time";
|
|
3190
3217
|
DynamicType["Number"] = "Number";
|
|
3191
3218
|
DynamicType["Password"] = "Password";
|
|
3219
|
+
DynamicType["Slider"] = "Slider";
|
|
3192
3220
|
})(DynamicType || (DynamicType = {}));
|
|
3193
3221
|
|
|
3194
3222
|
var Grid = /** @class */ (function () {
|
|
@@ -3274,6 +3302,8 @@ var DynamicConfig = /** @class */ (function () {
|
|
|
3274
3302
|
return new Row(config);
|
|
3275
3303
|
case DynamicType.Section:
|
|
3276
3304
|
return new Section(config);
|
|
3305
|
+
case DynamicType.Slider:
|
|
3306
|
+
return new SliderField(config);
|
|
3277
3307
|
case DynamicType.Text:
|
|
3278
3308
|
return new TextAreaField(config);
|
|
3279
3309
|
}
|
|
@@ -6756,6 +6786,99 @@ var PasswordFieldComponent = /** @class */ (function () {
|
|
|
6756
6786
|
return PasswordFieldComponent;
|
|
6757
6787
|
}());
|
|
6758
6788
|
|
|
6789
|
+
var SliderFieldComponent = /** @class */ (function (_super) {
|
|
6790
|
+
__extends(SliderFieldComponent, _super);
|
|
6791
|
+
function SliderFieldComponent() {
|
|
6792
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
6793
|
+
_this.onChange = new EventEmitter();
|
|
6794
|
+
_this.onSlideEnd = new EventEmitter();
|
|
6795
|
+
_this.ngUnsubscribe = new Subject();
|
|
6796
|
+
return _this;
|
|
6797
|
+
}
|
|
6798
|
+
SliderFieldComponent.prototype.ngOnInit = function () {
|
|
6799
|
+
var _this = this;
|
|
6800
|
+
var _a, _b;
|
|
6801
|
+
this.onChange.pipe(takeUntil(this.ngUnsubscribe))
|
|
6802
|
+
.subscribe(function (event) {
|
|
6803
|
+
if (_this.field.onChange) {
|
|
6804
|
+
_this.field.onChange(event);
|
|
6805
|
+
}
|
|
6806
|
+
});
|
|
6807
|
+
this.onSlideEnd.pipe(takeUntil(this.ngUnsubscribe))
|
|
6808
|
+
.subscribe(function (event) {
|
|
6809
|
+
if (_this.field.onSlideEnd) {
|
|
6810
|
+
_this.field.onSlideEnd(event);
|
|
6811
|
+
}
|
|
6812
|
+
});
|
|
6813
|
+
var values = ((_a = this.field) === null || _a === void 0 ? void 0 : _a.range) ? [this.field.min, this.field.max] : this.field.min;
|
|
6814
|
+
this.formControl.setValue((_b = this.field.defaultValue) !== null && _b !== void 0 ? _b : values);
|
|
6815
|
+
};
|
|
6816
|
+
SliderFieldComponent.prototype.ngOnDestroy = function () {
|
|
6817
|
+
this.ngUnsubscribe.next();
|
|
6818
|
+
this.ngUnsubscribe.complete();
|
|
6819
|
+
};
|
|
6820
|
+
Object.defineProperty(SliderFieldComponent.prototype, "fieldType", {
|
|
6821
|
+
get: function () {
|
|
6822
|
+
return FieldType;
|
|
6823
|
+
},
|
|
6824
|
+
enumerable: true,
|
|
6825
|
+
configurable: true
|
|
6826
|
+
});
|
|
6827
|
+
SliderFieldComponent.prototype.getRangeLabel = function () {
|
|
6828
|
+
var _a, _b, _c, _d;
|
|
6829
|
+
var _e = __read((_a = this.formControl.value) !== null && _a !== void 0 ? _a : [0, 0], 2), value0 = _e[0], value1 = _e[1];
|
|
6830
|
+
var prefix = (_b = this.field.prefix) !== null && _b !== void 0 ? _b : '';
|
|
6831
|
+
var suffix = (_c = this.field.suffix) !== null && _c !== void 0 ? _c : '';
|
|
6832
|
+
var separator = (_d = this.field.rangeSeparator) !== null && _d !== void 0 ? _d : ' - ';
|
|
6833
|
+
if (!value0 || value0 < this.field.min) {
|
|
6834
|
+
value0 = this.field.min;
|
|
6835
|
+
}
|
|
6836
|
+
if (!value1 || value1 > this.field.max) {
|
|
6837
|
+
value1 = this.field.max;
|
|
6838
|
+
}
|
|
6839
|
+
return "" + prefix + value0 + suffix + separator + prefix + value1 + suffix;
|
|
6840
|
+
};
|
|
6841
|
+
SliderFieldComponent.prototype.getNonRangeLabel = function () {
|
|
6842
|
+
var _a, _b, _c;
|
|
6843
|
+
var value = (_a = this.formControl) === null || _a === void 0 ? void 0 : _a.value;
|
|
6844
|
+
var prefix = (_b = this.field.prefix) !== null && _b !== void 0 ? _b : '';
|
|
6845
|
+
var suffix = (_c = this.field.suffix) !== null && _c !== void 0 ? _c : '';
|
|
6846
|
+
if (!value || value < this.field.min) {
|
|
6847
|
+
value = this.field.min;
|
|
6848
|
+
}
|
|
6849
|
+
if (value > this.field.max) {
|
|
6850
|
+
value = this.field.max;
|
|
6851
|
+
}
|
|
6852
|
+
return "" + prefix + value + suffix;
|
|
6853
|
+
};
|
|
6854
|
+
Object.defineProperty(SliderFieldComponent.prototype, "label", {
|
|
6855
|
+
get: function () {
|
|
6856
|
+
return this.field.range ? this.getRangeLabel() : this.getNonRangeLabel();
|
|
6857
|
+
},
|
|
6858
|
+
enumerable: true,
|
|
6859
|
+
configurable: true
|
|
6860
|
+
});
|
|
6861
|
+
__decorate([
|
|
6862
|
+
Input()
|
|
6863
|
+
], SliderFieldComponent.prototype, "field", void 0);
|
|
6864
|
+
__decorate([
|
|
6865
|
+
Input()
|
|
6866
|
+
], SliderFieldComponent.prototype, "formControl", void 0);
|
|
6867
|
+
__decorate([
|
|
6868
|
+
Output()
|
|
6869
|
+
], SliderFieldComponent.prototype, "onChange", void 0);
|
|
6870
|
+
__decorate([
|
|
6871
|
+
Output()
|
|
6872
|
+
], SliderFieldComponent.prototype, "onSlideEnd", void 0);
|
|
6873
|
+
SliderFieldComponent = __decorate([
|
|
6874
|
+
Component({
|
|
6875
|
+
template: "<ng-container>\n <div class=\"slider-group\">\n <div class=\"slider-label\">\n <span>{{label}}</span>\n </div>\n <p-slider \n [id]=\"(field.id || field.name)\"\n [formControl]=\"formControl\"\n [range]=\"field.range\"\n [orientation]=\"field.orientation\"\n [min]=\"field.min\" \n [max]=\"field.max\"\n [step]=\"field.step\"\n [animate]=\"field.animate\" \n (onChange)=\"field.onChange ? field.onChange($event) : null\"\n (onSlideEnd)=\"field.onSlideEnd ? field.onSlideEnd($event) : null\">\n </p-slider>\n </div>\n</ng-container>",
|
|
6876
|
+
styles: [".slider-label{margin-bottom:5px;margin-left:-10px}.slider-group{margin-left:9px;margin-right:11px}"]
|
|
6877
|
+
})
|
|
6878
|
+
], SliderFieldComponent);
|
|
6879
|
+
return SliderFieldComponent;
|
|
6880
|
+
}(BaseFieldComponent));
|
|
6881
|
+
|
|
6759
6882
|
var DynamicForm = /** @class */ (function () {
|
|
6760
6883
|
function DynamicForm(_a) {
|
|
6761
6884
|
var group = _a.group, errorMessages = _a.errorMessages;
|
|
@@ -6841,6 +6964,8 @@ var DynamicField = /** @class */ (function (_super) {
|
|
|
6841
6964
|
return PasswordFieldComponent;
|
|
6842
6965
|
case FieldType.Blob:
|
|
6843
6966
|
return FileUploadComponent$1;
|
|
6967
|
+
case FieldType.Slider:
|
|
6968
|
+
return SliderFieldComponent;
|
|
6844
6969
|
case FieldType.Custom:
|
|
6845
6970
|
return this.field.CustomFieldComponentClass;
|
|
6846
6971
|
default:
|
|
@@ -7455,6 +7580,7 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
7455
7580
|
MouseEventsModule,
|
|
7456
7581
|
InputSwitchModule,
|
|
7457
7582
|
PasswordStrengthModule,
|
|
7583
|
+
SliderModule,
|
|
7458
7584
|
],
|
|
7459
7585
|
declarations: [
|
|
7460
7586
|
AutocompleteFieldComponent,
|
|
@@ -7479,6 +7605,7 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
7479
7605
|
TextFieldComponent,
|
|
7480
7606
|
BooleanSwitchFieldComponent,
|
|
7481
7607
|
PasswordFieldComponent,
|
|
7608
|
+
SliderFieldComponent,
|
|
7482
7609
|
],
|
|
7483
7610
|
exports: [DynamicFormComponent, LookupComponent],
|
|
7484
7611
|
entryComponents: [
|
|
@@ -7499,7 +7626,8 @@ var DynamicFormModule = /** @class */ (function () {
|
|
|
7499
7626
|
TextAreaFieldComponent,
|
|
7500
7627
|
TextFieldComponent,
|
|
7501
7628
|
PasswordFieldComponent,
|
|
7502
|
-
BooleanSwitchFieldComponent
|
|
7629
|
+
BooleanSwitchFieldComponent,
|
|
7630
|
+
SliderFieldComponent,
|
|
7503
7631
|
],
|
|
7504
7632
|
providers: [HotkeysService]
|
|
7505
7633
|
})
|
|
@@ -9005,10 +9133,17 @@ var ProductHeaderComponent = /** @class */ (function () {
|
|
|
9005
9133
|
function ProductHeaderComponent() {
|
|
9006
9134
|
this.id = "s-product-header-" + ProductHeaderComponent_1.nextId++;
|
|
9007
9135
|
this.baseZIndex = 0;
|
|
9136
|
+
this.isHeaderFrame = true;
|
|
9008
9137
|
}
|
|
9009
9138
|
ProductHeaderComponent_1 = ProductHeaderComponent;
|
|
9010
9139
|
ProductHeaderComponent.prototype.ngAfterViewInit = function () {
|
|
9011
9140
|
this.container.nativeElement.style.zIndex = String(this.baseZIndex + ++DomHandler.zindex);
|
|
9141
|
+
if (this.isHeaderFrame) {
|
|
9142
|
+
this.container.nativeElement.style.borderBottom = "1px solid $default-secondary-color";
|
|
9143
|
+
}
|
|
9144
|
+
else {
|
|
9145
|
+
this.container.nativeElement.style.borderTop = "1px solid $default-secondary-color";
|
|
9146
|
+
}
|
|
9012
9147
|
};
|
|
9013
9148
|
var ProductHeaderComponent_1;
|
|
9014
9149
|
ProductHeaderComponent.nextId = 0;
|
|
@@ -9021,14 +9156,17 @@ var ProductHeaderComponent = /** @class */ (function () {
|
|
|
9021
9156
|
__decorate([
|
|
9022
9157
|
Input()
|
|
9023
9158
|
], ProductHeaderComponent.prototype, "baseZIndex", void 0);
|
|
9159
|
+
__decorate([
|
|
9160
|
+
Input()
|
|
9161
|
+
], ProductHeaderComponent.prototype, "isHeaderFrame", void 0);
|
|
9024
9162
|
__decorate([
|
|
9025
9163
|
ViewChild("headerContainer", { static: false })
|
|
9026
9164
|
], ProductHeaderComponent.prototype, "container", void 0);
|
|
9027
9165
|
ProductHeaderComponent = ProductHeaderComponent_1 = __decorate([
|
|
9028
9166
|
Component({
|
|
9029
9167
|
selector: "s-product-header",
|
|
9030
|
-
template: "<div [id]=\"id\" class=\"box\">\n <div
|
|
9031
|
-
styles: [".box{position:relative;width:100%;height:70px}.header{padding-top:15px;padding-bottom:15px;
|
|
9168
|
+
template: "<div [id]=\"id\" class=\"box\">\n <div\n #headerContainer\n class=\"sds-container\"\n [class]=\"isHeaderFrame ? 'header-frame' : 'primary-header'\"\n >\n <h1 [class]=\"isHeaderFrame ? 'title' : 'primary-title'\">{{ header }}</h1>\n <div class=\"content\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n",
|
|
9169
|
+
styles: [".box{position:relative;width:100%;height:70px}.header-frame{padding-top:15px;padding-bottom:15px;width:100%;top:0;left:0;height:70px;background-color:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;position:fixed}.title{color:#999;font-weight:400;font-size:16pt;margin-right:15px;min-width:140px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.content{display:-ms-flexbox;display:flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.primary-header{display:-ms-flexbox;display:flex;width:100%;height:70px;padding:15px 20px;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;border-bottom:1px solid #ddd;background-color:#fff;gap:24px}@media (max-width:768px){.primary-header{width:100%}}.primary-header .primary-title{color:#999;font-weight:400;font-size:16pt;margin-right:15px;min-width:140px;overflow:hidden;text-overflow:ellipsis}"]
|
|
9032
9170
|
})
|
|
9033
9171
|
], ProductHeaderComponent);
|
|
9034
9172
|
return ProductHeaderComponent;
|
|
@@ -12223,5 +12361,5 @@ var fallback = {
|
|
|
12223
12361
|
* Generated bundle index. Do not edit.
|
|
12224
12362
|
*/
|
|
12225
12363
|
|
|
12226
|
-
export { AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, WorkspaceSwitchComponent, WorkspaceSwitchModule, fallback, CountryPhonePickerService as ɵa, LocalizedCurrencyImpurePipe as ɵb, SelectFieldComponent as ɵba, TextAreaFieldComponent as ɵbb, TextFieldComponent as ɵbc, BooleanSwitchFieldComponent as ɵbd, PasswordFieldComponent as ɵbe,
|
|
12364
|
+
export { AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, WorkspaceSwitchComponent, WorkspaceSwitchModule, fallback, CountryPhonePickerService as ɵa, LocalizedCurrencyImpurePipe as ɵb, SelectFieldComponent as ɵba, TextAreaFieldComponent as ɵbb, TextFieldComponent as ɵbc, BooleanSwitchFieldComponent as ɵbd, PasswordFieldComponent as ɵbe, SliderFieldComponent as ɵbf, DecimalField as ɵbh, StructureModule as ɵbi, HeaderComponent as ɵbj, FooterComponent as ɵbk, NumberLocaleOptions as ɵbl, ThumbnailService as ɵbm, BorderButtonModule as ɵbn, BorderButtonComponent as ɵbo, TimelineItemModule as ɵbp, TimelineIconItemComponent as ɵbq, HorizontalTimelineModule as ɵbr, HorizontalTimelineComponent as ɵbs, VerticalTimelineModule as ɵbt, VerticalTimelineComponent as ɵbu, RangeLineComponent as ɵbv, CollapseOptionComponent as ɵbw, CollapsedItemsComponent as ɵbx, VerticalItemsComponent as ɵby, InfiniteScrollModule as ɵbz, LocalizedBignumberPipe as ɵc, InfiniteScrollDirective as ɵca, CustomTranslationsModule as ɵcb, CodeEditorComponent as ɵcc, CoreFacade as ɵcd, CodeMirror6Core as ɵce, LocalizedBignumberImpurePipe as ɵd, TooltipComponent as ɵe, TooltipDirective as ɵf, EmptyStateGoBackComponent as ɵg, FileUploadService as ɵh, InfoSignComponent as ɵi, TableColumnsComponent as ɵj, TablePagingComponent as ɵk, AutocompleteFieldComponent as ɵl, BooleanFieldComponent as ɵm, CalendarFieldComponent as ɵn, ChipsFieldComponent as ɵo, CurrencyFieldComponent as ɵp, DynamicFieldComponent as ɵq, DynamicFormDirective as ɵr, FieldsetComponent as ɵs, FileUploadComponent$1 as ɵt, LookupFieldComponent as ɵu, NumberFieldComponent as ɵv, BignumberFieldComponent as ɵw, RadioButtonComponent as ɵx, RowComponent as ɵy, SectionComponent as ɵz };
|
|
12227
12365
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|