@seniorsistemas/angular-components 14.14.4 → 14.16.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 +182 -23
- 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/components/timeline/index.d.ts +2 -0
- package/components/timeline/timeline.component.d.ts +18 -0
- package/components/timeline/timeline.module.d.ts +2 -0
- 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/components/timeline/index.js +3 -0
- package/esm2015/components/timeline/timeline.component.js +79 -0
- package/esm2015/components/timeline/timeline.module.js +16 -0
- package/esm2015/public-api.js +2 -1
- package/esm2015/seniorsistemas-angular-components.js +14 -13
- 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/components/timeline/index.js +3 -0
- package/esm5/components/timeline/timeline.component.js +85 -0
- package/esm5/components/timeline/timeline.module.js +19 -0
- package/esm5/public-api.js +2 -1
- package/esm5/seniorsistemas-angular-components.js +14 -13
- package/fesm2015/seniorsistemas-angular-components.js +149 -8
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +165 -8
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- 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");
|
|
@@ -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: "<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>"
|
|
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
|
})
|
|
@@ -7167,6 +7230,100 @@ var StepsModule = /** @class */ (function () {
|
|
|
7167
7230
|
return StepsModule;
|
|
7168
7231
|
}());
|
|
7169
7232
|
|
|
7233
|
+
var TimelineComponent = /** @class */ (function () {
|
|
7234
|
+
function TimelineComponent() {
|
|
7235
|
+
this.id = "s-timeline-" + TimelineComponent_1.nextId++;
|
|
7236
|
+
this.activeIndex = 0;
|
|
7237
|
+
}
|
|
7238
|
+
TimelineComponent_1 = TimelineComponent;
|
|
7239
|
+
TimelineComponent.prototype.barAnimation = function (index, activeIndex) {
|
|
7240
|
+
var visited = index < activeIndex;
|
|
7241
|
+
var activated = index === activeIndex;
|
|
7242
|
+
return visited || activated;
|
|
7243
|
+
};
|
|
7244
|
+
TimelineComponent.prototype.afterBarAnimation = function (index, activeIndex) {
|
|
7245
|
+
var visited = index < activeIndex;
|
|
7246
|
+
var activated = index === activeIndex - 1;
|
|
7247
|
+
return visited || activated;
|
|
7248
|
+
};
|
|
7249
|
+
Object.defineProperty(TimelineComponent.prototype, "visibledStep", {
|
|
7250
|
+
get: function () {
|
|
7251
|
+
return this.steps.filter(function (step) { return !step.hidden; });
|
|
7252
|
+
},
|
|
7253
|
+
enumerable: true,
|
|
7254
|
+
configurable: true
|
|
7255
|
+
});
|
|
7256
|
+
var TimelineComponent_1;
|
|
7257
|
+
TimelineComponent.nextId = 0;
|
|
7258
|
+
__decorate([
|
|
7259
|
+
Input()
|
|
7260
|
+
], TimelineComponent.prototype, "id", void 0);
|
|
7261
|
+
__decorate([
|
|
7262
|
+
Input()
|
|
7263
|
+
], TimelineComponent.prototype, "steps", void 0);
|
|
7264
|
+
__decorate([
|
|
7265
|
+
Input()
|
|
7266
|
+
], TimelineComponent.prototype, "activeIndex", void 0);
|
|
7267
|
+
TimelineComponent = TimelineComponent_1 = __decorate([
|
|
7268
|
+
Component({
|
|
7269
|
+
selector: "s-timeline",
|
|
7270
|
+
template: "<div [id]=\"id\" class=\"s-timeline-container\">\n <ng-container *ngFor=\"let step of visibledStep; let i = index; let isFirst = first; let isLast = last\">\n <div *ngIf=\"!isFirst\" class=\"s-timeline-progress-bar\"\n [@activeDesative]=\"barAnimation(i, activeIndex) ? 'active': 'desactive'\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\"></div>\n <div [id]=\"id + '-step-' + (step.id || i)\" class=\"s-timeline-step-header\" role=\"tab\"\n tabindex=\"0\" [attr.aria-label]=\"step.ariaLabel || null\" [attr.aria-controls]=\"step.ariaControls\"\n [attr.aria-labelledby]=\"!step.ariaLabel ? 'step-label-' + i : null\" [attr.aria-posinset]=\"i + 1\"\n [attr.aria-setsize]=\"visibledStep.length\" [attr.aria-selected]=\"activeIndex == i\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\">\n <div *ngIf=\"!isFirst\"\n [@beforeActiveDesative]=\"barAnimation(i, activeIndex) ? 'active': 'desactive'\"\n class=\"s-timeline-progress-bar-before\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\"></div>\n <div *ngIf=\"!isLast\"\n [@afterActiveDesative]=\"afterBarAnimation(i, activeIndex) ? 'active': 'desactive'\"\n class=\"s-timeline-progress-bar-after\" [ngClass]=\"{\n 's-timeline-step-completed': ((i + 1) < activeIndex),\n 's-timeline-step-active': (i === (activeIndex - 1))\n }\"></div>\n <div class=\"s-timeline-index\">\n <div class=\"s-timeline-index-content\">\n <span class=\"fas\" [ngClass]=\"step.stepIcon\" aria-hidden=\"true\" [attr.aria-label]=\"i + 1\"></span>\n </div>\n </div>\n <div [id]=\"'step-label-' + i\" class=\"s-timeline-label\">\n <span>{{step.label}}</span>\n </div>\n <div [id]=\"'step-help-label-' + i\" class=\"s-timeline-help-label\">\n <span>{{step.helpLabel}}</span>\n </div>\n </div>\n </ng-container>\n</div>\n",
|
|
7271
|
+
host: {
|
|
7272
|
+
"aria-orientation": "horizontal",
|
|
7273
|
+
role: "tablist",
|
|
7274
|
+
"tab-index": "0",
|
|
7275
|
+
},
|
|
7276
|
+
animations: [
|
|
7277
|
+
trigger("beforeActiveDesative", [
|
|
7278
|
+
state("active", style$7({
|
|
7279
|
+
"background-position": "left bottom",
|
|
7280
|
+
})),
|
|
7281
|
+
state("desactive", style$7({
|
|
7282
|
+
"background-position": "right bottom",
|
|
7283
|
+
})),
|
|
7284
|
+
transition("active => desactive", [animate("50ms 100ms linear")]),
|
|
7285
|
+
transition("desactive => active", [animate("50ms 250ms linear")]),
|
|
7286
|
+
]),
|
|
7287
|
+
trigger("activeDesative", [
|
|
7288
|
+
state("active", style$7({
|
|
7289
|
+
"background-position": "left bottom",
|
|
7290
|
+
})),
|
|
7291
|
+
state("desactive", style$7({
|
|
7292
|
+
"background-position": "right bottom",
|
|
7293
|
+
})),
|
|
7294
|
+
transition("active => desactive", [animate("100ms 150ms linear")]),
|
|
7295
|
+
transition("desactive => active", [animate("100ms 150ms linear")]),
|
|
7296
|
+
]),
|
|
7297
|
+
trigger("afterActiveDesative", [
|
|
7298
|
+
state("active", style$7({
|
|
7299
|
+
"background-position": "left bottom",
|
|
7300
|
+
})),
|
|
7301
|
+
state("desactive", style$7({
|
|
7302
|
+
"background-position": "right bottom",
|
|
7303
|
+
})),
|
|
7304
|
+
transition("active => desactive", [animate("50ms 250ms linear")]),
|
|
7305
|
+
transition("desactive => active", [animate("50ms 100ms linear")]),
|
|
7306
|
+
]),
|
|
7307
|
+
],
|
|
7308
|
+
styles: ["@keyframes scale-up-center{0%{transform:scale(.5)}100%{transform:scale(1)}}.s-timeline-container{display:-ms-flexbox;display:flex;white-space:nowrap;-ms-flex-align:start;align-items:flex-start;overflow:hidden;padding:15px 10px}.s-timeline-step-header{box-sizing:border-box;-ms-flex-direction:column;flex-direction:column;height:auto;position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:72px;max-height:98px;min-width:60px;width:100%}.s-timeline-step-header .s-timeline-help-label,.s-timeline-step-header .s-timeline-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:break-all;color:#999;font-size:14px;font-weight:400;padding-top:5px}.s-timeline-step-header .s-timeline-progress-bar-before{margin:0;position:absolute;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:calc(50% - 20px);background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%;left:-10px}.s-timeline-step-header .s-timeline-progress-bar-before.s-timeline-step-active,.s-timeline-step-header .s-timeline-progress-bar-before.s-timeline-step-completed{background-position:left bottom}.s-timeline-step-header .s-timeline-progress-bar-after{margin:0;position:absolute;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:calc(50% - 20px);background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%;right:-10px}.s-timeline-step-header .s-timeline-progress-bar-after.s-timeline-step-active,.s-timeline-step-header .s-timeline-progress-bar-after.s-timeline-step-completed{background-position:left bottom}.s-timeline-progress-bar{margin:0;position:relative;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:100%;background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%}.s-timeline-index{background-color:#697882;border:3px solid #697882;border-radius:50%;color:#fff;display:inline-block;font-weight:700;position:relative;transition:background-color .2s ease-out;height:46px;width:46px;-ms-flex:none;flex:none}.s-timeline-index .s-timeline-index-content{line-height:18px;font-size:18px;padding-top:8.5px;text-align:center;position:relative}.s-timeline-step-active .s-timeline-index,.s-timeline-step-completed .s-timeline-index{border-color:#0c9348;animation:.1s ease-out alternate scale-up-center;background-color:#0c9348}.s-timeline-step-active.s-timeline-progress-bar,.s-timeline-step-completed.s-timeline-progress-bar{background-position:left bottom}.s-timeline-step-active .s-timeline-label,.s-timeline-step-completed .s-timeline-label{color:#333;font-weight:700}@media (max-width:767px){.s-timeline-help-label,.s-timeline-label{display:none}}"]
|
|
7309
|
+
})
|
|
7310
|
+
], TimelineComponent);
|
|
7311
|
+
return TimelineComponent;
|
|
7312
|
+
}());
|
|
7313
|
+
|
|
7314
|
+
var TimelineModule = /** @class */ (function () {
|
|
7315
|
+
function TimelineModule() {
|
|
7316
|
+
}
|
|
7317
|
+
TimelineModule = __decorate([
|
|
7318
|
+
NgModule({
|
|
7319
|
+
imports: [CommonModule, TooltipModule],
|
|
7320
|
+
declarations: [TimelineComponent],
|
|
7321
|
+
exports: [TimelineComponent],
|
|
7322
|
+
})
|
|
7323
|
+
], TimelineModule);
|
|
7324
|
+
return TimelineModule;
|
|
7325
|
+
}());
|
|
7326
|
+
|
|
7170
7327
|
var TileComponent = /** @class */ (function () {
|
|
7171
7328
|
function TileComponent() {
|
|
7172
7329
|
this.id = "s-tile-" + TileComponent_1.nextId++;
|
|
@@ -9036,5 +9193,5 @@ var CodeEditorModule = /** @class */ (function () {
|
|
|
9036
9193
|
* Generated bundle index. Do not edit.
|
|
9037
9194
|
*/
|
|
9038
9195
|
|
|
9039
|
-
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, 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 };
|
|
9040
9197
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|