@seniorsistemas/angular-components 17.19.3 → 17.20.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.
Files changed (52) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +149 -58
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/dynamic-form/components/fields/button-field/button-field.component.d.ts +5 -0
  6. package/components/dynamic-form/components/grid/row/row.component.d.ts +2 -5
  7. package/components/dynamic-form/components/structure/section/section.component.d.ts +1 -0
  8. package/components/dynamic-form/configurations/field-type.d.ts +2 -1
  9. package/components/dynamic-form/configurations/fields/button-field.d.ts +33 -0
  10. package/components/dynamic-form/configurations/fields/index.d.ts +1 -0
  11. package/components/dynamic-form/configurations/grid/grid.d.ts +2 -1
  12. package/components/dynamic-form/configurations/structure/section.d.ts +18 -2
  13. package/components/dynamic-form/configurations/structure/structure.d.ts +5 -3
  14. package/components/dynamic-form/dynamic-form.d.ts +6 -5
  15. package/components/dynamic-form/index.d.ts +5 -0
  16. package/esm2015/components/dynamic-form/components/fields/button-field/button-field.component.js +21 -0
  17. package/esm2015/components/dynamic-form/components/grid/row/row.component.js +2 -2
  18. package/esm2015/components/dynamic-form/components/structure/section/section.component.js +24 -5
  19. package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
  20. package/esm2015/components/dynamic-form/configurations/fields/button-field.js +28 -0
  21. package/esm2015/components/dynamic-form/configurations/fields/index.js +2 -1
  22. package/esm2015/components/dynamic-form/configurations/form-field.js +4 -1
  23. package/esm2015/components/dynamic-form/configurations/grid/grid.js +1 -1
  24. package/esm2015/components/dynamic-form/configurations/structure/section.js +23 -1
  25. package/esm2015/components/dynamic-form/configurations/structure/structure.js +2 -1
  26. package/esm2015/components/dynamic-form/dynamic-form.directive.js +1 -1
  27. package/esm2015/components/dynamic-form/dynamic-form.js +4 -1
  28. package/esm2015/components/dynamic-form/dynamic-form.module.js +3 -1
  29. package/esm2015/components/dynamic-form/index.js +6 -1
  30. package/esm2015/seniorsistemas-angular-components.js +41 -40
  31. package/esm5/components/dynamic-form/components/fields/button-field/button-field.component.js +24 -0
  32. package/esm5/components/dynamic-form/components/grid/row/row.component.js +2 -2
  33. package/esm5/components/dynamic-form/components/structure/section/section.component.js +11 -2
  34. package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
  35. package/esm5/components/dynamic-form/configurations/fields/button-field.js +33 -0
  36. package/esm5/components/dynamic-form/configurations/fields/index.js +2 -1
  37. package/esm5/components/dynamic-form/configurations/form-field.js +4 -1
  38. package/esm5/components/dynamic-form/configurations/grid/grid.js +1 -1
  39. package/esm5/components/dynamic-form/configurations/structure/section.js +25 -2
  40. package/esm5/components/dynamic-form/configurations/structure/structure.js +2 -1
  41. package/esm5/components/dynamic-form/dynamic-form.directive.js +1 -1
  42. package/esm5/components/dynamic-form/dynamic-form.js +4 -1
  43. package/esm5/components/dynamic-form/dynamic-form.module.js +3 -1
  44. package/esm5/components/dynamic-form/index.js +6 -1
  45. package/esm5/seniorsistemas-angular-components.js +41 -40
  46. package/fesm2015/seniorsistemas-angular-components.js +107 -17
  47. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  48. package/fesm5/seniorsistemas-angular-components.js +102 -15
  49. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  50. package/package.json +1 -1
  51. package/seniorsistemas-angular-components.d.ts +40 -39
  52. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -6415,6 +6415,7 @@
6415
6415
  FieldType["TextIA"] = "TextIA";
6416
6416
  FieldType["Time"] = "Time";
6417
6417
  FieldType["ProfilePicture"] = "ProfilePicture";
6418
+ FieldType["Button"] = "Button";
6418
6419
  })(exports.FieldType || (exports.FieldType = {}));
6419
6420
 
6420
6421
  var FieldSize = /** @class */ (function () {
@@ -7046,6 +7047,34 @@
7046
7047
  return TextField;
7047
7048
  }(Field));
7048
7049
 
7050
+ var ButtonField = /** @class */ (function (_super) {
7051
+ __extends(ButtonField, _super);
7052
+ function ButtonField(config) {
7053
+ var _this = _super.call(this, config) || this;
7054
+ _this.tooltipPosition = "top";
7055
+ _this.priority = config.priority || exports.ButtonPriority.Primary;
7056
+ _this.iconClass = config.iconClass || "";
7057
+ _this.disabled = config.disabled || false;
7058
+ _this.auxiliary = config.auxiliary || false;
7059
+ _this.caret = config.caret || false;
7060
+ _this.id = config.id || "s-button-" + ButtonComponent.nextId++;
7061
+ _this.onClick = config.onClick || (function () { });
7062
+ _this.fullWidth = config.fullWidth || false;
7063
+ _this.iconColor = config.iconColor;
7064
+ _this.badge = config.badge;
7065
+ _this.animation = config.animation;
7066
+ _this.slide = config.slide;
7067
+ _this.menuOptions = config.menuOptions;
7068
+ _this.model = config.model;
7069
+ _this.baseZIndex = config.baseZIndex;
7070
+ _this.styleClass = config.styleClass;
7071
+ _this.rightIconClass = config.rightIconClass;
7072
+ _this.tooltipPosition = config.tooltipPosition;
7073
+ return _this;
7074
+ }
7075
+ return ButtonField;
7076
+ }(Field));
7077
+
7049
7078
  var EditorField = /** @class */ (function (_super) {
7050
7079
  __extends(EditorField, _super);
7051
7080
  function EditorField(config) {
@@ -7135,6 +7164,8 @@
7135
7164
  return new ProfilePictureField(config);
7136
7165
  case exports.FieldType.Editor:
7137
7166
  return new EditorField(config);
7167
+ case exports.FieldType.Button:
7168
+ return new ButtonField(config);
7138
7169
  case exports.FieldType.Custom:
7139
7170
  var CustomFieldClass = config.CustomFieldClass, otherConfigs = __rest(config, ["CustomFieldClass"]);
7140
7171
  return new CustomFieldClass(otherConfigs);
@@ -7767,6 +7798,7 @@
7767
7798
 
7768
7799
  var Structure = /** @class */ (function () {
7769
7800
  function Structure(config) {
7801
+ this.isFlex = false;
7770
7802
  Object.assign(this, __assign({}, config));
7771
7803
  }
7772
7804
  return Structure;
@@ -7785,7 +7817,29 @@
7785
7817
  var Section = /** @class */ (function (_super) {
7786
7818
  __extends(Section, _super);
7787
7819
  function Section(config) {
7788
- return _super.call(this, config) || this;
7820
+ var _this = _super.call(this, config) || this;
7821
+ /**
7822
+ * Define if the structure is a flex container.
7823
+ */
7824
+ _this.isFlex = false;
7825
+ /**
7826
+ * Define the justify-content property.
7827
+ */
7828
+ _this.justifyContent = 'flex-start';
7829
+ /**
7830
+ * Define the align-items property.
7831
+ */
7832
+ _this.alignItems = 'flex-start';
7833
+ _this.visible = function () { return true; };
7834
+ _this.isFlex = config.isFlex || false;
7835
+ _this.justifyContent = config.justifyContent || 'flex-start';
7836
+ _this.alignItems = config.alignItems || 'flex-start';
7837
+ if (config.visible) {
7838
+ _this.visible = config.visible;
7839
+ }
7840
+ _this.size = new FieldSize(config.size || {});
7841
+ _this.gridClass = Object.keys(_this.size).map(function (key) { return "ui-" + key + "-" + _this.size[key]; });
7842
+ return _this;
7789
7843
  }
7790
7844
  return Section;
7791
7845
  }(Structure));
@@ -7842,6 +7896,17 @@
7842
7896
  return DynamicConfig;
7843
7897
  }());
7844
7898
 
7899
+
7900
+ (function (GridType) {
7901
+ GridType["Row"] = "Row";
7902
+ })(exports.GridType || (exports.GridType = {}));
7903
+
7904
+
7905
+ (function (StructureType) {
7906
+ StructureType["Fieldset"] = "Fieldset";
7907
+ StructureType["Section"] = "Section";
7908
+ })(exports.StructureType || (exports.StructureType = {}));
7909
+
7845
7910
  var DynamicFormComponent = /** @class */ (function () {
7846
7911
  function DynamicFormComponent() {
7847
7912
  this.errorMessages = {};
@@ -11278,6 +11343,13 @@
11278
11343
  var SectionComponent = /** @class */ (function () {
11279
11344
  function SectionComponent() {
11280
11345
  }
11346
+ Object.defineProperty(SectionComponent.prototype, "flexContainer", {
11347
+ get: function () {
11348
+ return this.config.isFlex;
11349
+ },
11350
+ enumerable: true,
11351
+ configurable: true
11352
+ });
11281
11353
  __decorate([
11282
11354
  core.Input()
11283
11355
  ], SectionComponent.prototype, "id", void 0);
@@ -11292,7 +11364,9 @@
11292
11364
  ], SectionComponent.prototype, "errorMessages", void 0);
11293
11365
  SectionComponent = __decorate([
11294
11366
  core.Component({
11295
- template: "\n <h3 *ngIf=\"config?.header\" class=\"sds-section-title\">{{config.header}}</h3>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n "
11367
+ selector: 's-section',
11368
+ template: "\n <h3 *ngIf=\"config?.header\" class=\"sds-section-title\">{{config.header}}</h3>\n <section [class.flex-container]=\"flexContainer\" [style.justify-content]=\"config.justifyContent\" [style.align-items]=\"config.alignItems\">\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </section>\n ",
11369
+ styles: ["\n .flex-container {\n display: flex\n }\n\n :host {\n height: 100%\n }\n\n section {\n height: 100%;\n }\n "]
11296
11370
  })
11297
11371
  ], SectionComponent);
11298
11372
  return SectionComponent;
@@ -11302,7 +11376,6 @@
11302
11376
  function RowComponent() {
11303
11377
  this.FieldType = exports.FieldType;
11304
11378
  }
11305
- RowComponent.prototype.ngOnInit = function () { };
11306
11379
  RowComponent.prototype.getErrorMessages = function (errorMessages) {
11307
11380
  if (errorMessages)
11308
11381
  return this.isFunction(errorMessages) ? errorMessages() : errorMessages;
@@ -11325,6 +11398,7 @@
11325
11398
  ], RowComponent.prototype, "errorMessages", void 0);
11326
11399
  RowComponent = __decorate([
11327
11400
  core.Component({
11401
+ selector: 's-row',
11328
11402
  template: "\n <div class=\"ui-fluid\" [formGroup]=\"group\">\n <div class=\"ui-g\">\n <ng-container *ngFor=\"let field of config.fields\">\n <div [ngClass]=\"field.gridClass\" *ngIf=\"field.visible()\">\n <ng-container *ngIf=\"field.type === FieldType.Custom && field.label\" >\n <label *sInfoSign=\"field.infoSign; displayTime: field.displayTimeInfoSign; useFocusedInputRef: field.useInfoSignFocusedInputRef\" [for]=\"field.name\" [ngClass]=\"{ required: field.required() }\" >\n {{ field.label }}\n </label>\n </ng-container>\n\n <ng-container *sDynamicForm=\"{ id: id, config: field, group: group}\"></ng-container>\n\n <s-control-errors [form]=\"group\" [control]=\"group.controls[field.name]\"\n [errorMessages]=\"getErrorMessages(field.errorMessages)\"></s-control-errors>\n\n <ng-container *ngIf=\"field.footer\">\n <ng-container *ngIf=\"field.footer.help\">\n <span *ngIf=\"field.footer.help.visible({ abstractControl: group.controls[field.name], formField: field })\" style=\"color: #888B99\">{{ field.footer.help.text }}</span>\n </ng-container>\n\n <ng-container *ngIf=\"field.footer.link\">\n <div\n *ngIf=\"field.footer.link.visible({ abstractControl: group.controls[field.name], formField: field })\"\n class=\"ui-g\"\n style=\"margin-left: -17px\"\n >\n <s-button\n [label]=\"field.footer.link.label\"\n priority=\"link\"\n (onClick)=\"field.footer.link.onClick({ abstractControl: group.controls[field.name], formField: field })\"\n [auxiliary]=\"true\"\n ></s-button>\n </div>\n </ng-container>\n </ng-container>\n\n <ng-template *ngIf=\"field?.bottomTemplate\" [ngTemplateOutlet]=\"field.bottomTemplate\"></ng-template>\n </div>\n </ng-container>\n </div>\n "
11329
11403
  })
11330
11404
  ], RowComponent);
@@ -11365,17 +11439,6 @@
11365
11439
  return DynamicFieldComponent;
11366
11440
  }());
11367
11441
 
11368
- var GridType;
11369
- (function (GridType) {
11370
- GridType["Row"] = "Row";
11371
- })(GridType || (GridType = {}));
11372
-
11373
- var StructureType;
11374
- (function (StructureType) {
11375
- StructureType["Fieldset"] = "Fieldset";
11376
- StructureType["Section"] = "Section";
11377
- })(StructureType || (StructureType = {}));
11378
-
11379
11442
  var BignumberFieldComponent = /** @class */ (function (_super) {
11380
11443
  __extends(BignumberFieldComponent, _super);
11381
11444
  function BignumberFieldComponent(localeService, changeDetectorRef) {
@@ -11861,6 +11924,27 @@
11861
11924
  return ProfilePictureFieldComponent;
11862
11925
  }());
11863
11926
 
11927
+ var ButtonFieldComponent = /** @class */ (function () {
11928
+ function ButtonFieldComponent() {
11929
+ }
11930
+ ButtonFieldComponent.prototype.clickedButton = function ($event) {
11931
+ if (this.field.onClick) {
11932
+ this.field.onClick($event);
11933
+ }
11934
+ };
11935
+ __decorate([
11936
+ core.Input()
11937
+ ], ButtonFieldComponent.prototype, "field", void 0);
11938
+ ButtonFieldComponent = __decorate([
11939
+ core.Component({
11940
+ selector: 's-button-field',
11941
+ template: "<section [class.full-width]=\"field.fullWidth\" [class.fit-content]=\"!field.fullWidth\">\n <s-button\n [label]=\"field.label\"\n [priority]=\"field.priority\"\n [iconClass]=\"field.iconClass\"\n [disabled]=\"field.disabled\"\n [auxiliary]=\"field.auxiliary\"\n [caret]=\"field.caret\"\n [id]=\"field.id\"\n [tooltip]=\"field.tooltip\"\n (onClick)=\"clickedButton($event)\"\n [iconColor]=\"field.iconColor\"\n [badge]=\"field.badge\"\n [animation]=\"field.animation\"\n [slide]=\"field.slide\"\n [menuOptions]=\"field.menuOptions\"\n [model]=\"field.model\"\n [baseZIndex]=\"field.baseZIndex\"\n [styleClass]=\"field.styleClass\"\n [rightIconClass]=\"field.rightIconClass\"\n [tooltipPosition]=\"field.tooltipPosition\"\n [type]=\"field.buttonType\"\n [size]=\"field.buttonSize\">\n </s-button>\n</section>\n",
11942
+ styles: ["section{height:100%;display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:flex-end}section.full-width{width:100%}section.fit-content{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}"]
11943
+ })
11944
+ ], ButtonFieldComponent);
11945
+ return ButtonFieldComponent;
11946
+ }());
11947
+
11864
11948
  var DynamicForm = /** @class */ (function () {
11865
11949
  function DynamicForm(_a) {
11866
11950
  var group = _a.group, errorMessages = _a.errorMessages;
@@ -11968,6 +12052,8 @@
11968
12052
  return ProfilePictureFieldComponent;
11969
12053
  case exports.FieldType.Editor:
11970
12054
  return EditorFieldComponent;
12055
+ case exports.FieldType.Button:
12056
+ return ButtonFieldComponent;
11971
12057
  case exports.FieldType.Custom:
11972
12058
  return this.field.CustomFieldComponentClass;
11973
12059
  default:
@@ -12000,9 +12086,9 @@
12000
12086
  };
12001
12087
  DynamicStructure.prototype.getComponent = function () {
12002
12088
  switch (this.config.type) {
12003
- case StructureType.Fieldset:
12089
+ case exports.StructureType.Fieldset:
12004
12090
  return FieldsetComponent;
12005
- case StructureType.Section:
12091
+ case exports.StructureType.Section:
12006
12092
  return SectionComponent;
12007
12093
  default:
12008
12094
  throw new Error("Trying to use an unsupported type (" + this.config.type + ").");
@@ -12032,7 +12118,7 @@
12032
12118
  };
12033
12119
  DynamicGrid.prototype.getComponent = function () {
12034
12120
  switch (this.config.type) {
12035
- case GridType.Row:
12121
+ case exports.GridType.Row:
12036
12122
  return RowComponent;
12037
12123
  default:
12038
12124
  throw new Error("Trying to use an unsupported type (" + this.config.type + ").");
@@ -12101,10 +12187,10 @@
12101
12187
  return exports.FieldType[this.config.type];
12102
12188
  };
12103
12189
  DynamicFormDirective.prototype.isStructure = function () {
12104
- return StructureType[this.config.type];
12190
+ return exports.StructureType[this.config.type];
12105
12191
  };
12106
12192
  DynamicFormDirective.prototype.isGrid = function () {
12107
- return GridType[this.config.type];
12193
+ return exports.GridType[this.config.type];
12108
12194
  };
12109
12195
  DynamicFormDirective.ctorParameters = function () { return [
12110
12196
  { type: core.ComponentFactoryResolver },
@@ -13139,6 +13225,7 @@
13139
13225
  SliderFieldComponent,
13140
13226
  TextAreaFieldComponent,
13141
13227
  TextAreaIAFieldComponent,
13228
+ ButtonFieldComponent
13142
13229
  ],
13143
13230
  exports: [DynamicFormComponent, LookupComponent],
13144
13231
  entryComponents: [
@@ -21770,6 +21857,7 @@
21770
21857
  exports.BreadcrumbModule = BreadcrumbModule;
21771
21858
  exports.Breakpoints = Breakpoints;
21772
21859
  exports.ButtonComponent = ButtonComponent;
21860
+ exports.ButtonField = ButtonField;
21773
21861
  exports.ButtonModule = ButtonModule;
21774
21862
  exports.CalendarField = CalendarField;
21775
21863
  exports.CalendarLocaleOptions = CalendarLocaleOptions;
@@ -21820,6 +21908,7 @@
21820
21908
  exports.GlobalSearchComponent = GlobalSearchComponent;
21821
21909
  exports.GlobalSearchDropdownItemComponent = GlobalSearchDropdownItemComponent;
21822
21910
  exports.GlobalSearchModule = GlobalSearchModule;
21911
+ exports.Grid = Grid;
21823
21912
  exports.HostProjectConfigsInjectionToken = HostProjectConfigsInjectionToken;
21824
21913
  exports.IAInsightComponent = IAInsightComponent;
21825
21914
  exports.IAInsightModule = IAInsightModule;
@@ -21893,6 +21982,7 @@
21893
21982
  exports.RatingScaleComponent = RatingScaleComponent;
21894
21983
  exports.RatingScaleModule = RatingScaleModule;
21895
21984
  exports.RationButtonOption = RationButtonOption;
21985
+ exports.Row = Row;
21896
21986
  exports.RowTogllerDirective = RowTogllerDirective;
21897
21987
  exports.SVGFactoryDirective = SVGFactoryDirective;
21898
21988
  exports.SVGFactoryModule = SVGFactoryModule;
@@ -21999,47 +22089,48 @@
21999
22089
  exports.ɵco = TextAreaFieldComponent;
22000
22090
  exports.ɵcp = TextAreaIAFieldComponent;
22001
22091
  exports.ɵcq = IAssistService;
22002
- exports.ɵcs = DecimalField;
22003
- exports.ɵct = SideTableComponent;
22004
- exports.ɵcu = InfiniteScrollModule;
22005
- exports.ɵcv = InfiniteScrollDirective;
22006
- exports.ɵcw = IAInsightSidebarComponent;
22007
- exports.ɵcx = IAInsightCardComponent;
22008
- exports.ɵcy = IAInsightCardLoaderComponent;
22009
- exports.ɵcz = InlineEditItemComponent;
22092
+ exports.ɵcr = ButtonFieldComponent;
22093
+ exports.ɵct = DecimalField;
22094
+ exports.ɵcu = SideTableComponent;
22095
+ exports.ɵcv = InfiniteScrollModule;
22096
+ exports.ɵcw = InfiniteScrollDirective;
22097
+ exports.ɵcx = IAInsightSidebarComponent;
22098
+ exports.ɵcy = IAInsightCardComponent;
22099
+ exports.ɵcz = IAInsightCardLoaderComponent;
22010
22100
  exports.ɵd = TieredMenuService;
22011
- exports.ɵda = InlineEditCalendarComponent;
22012
- exports.ɵdb = InlineEditLookupComponent;
22013
- exports.ɵdc = InlineEditNumberComponent;
22014
- exports.ɵdd = InlineEditTextComponent;
22015
- exports.ɵde = InlineEditTextAreaComponent;
22016
- exports.ɵdf = InlineEditTextAreaIAComponent;
22017
- exports.ɵdg = KanbanEventService;
22018
- exports.ɵdh = KanbanItemComponent;
22019
- exports.ɵdi = KanbanColumnComponent;
22020
- exports.ɵdj = KanbanItemDraggingComponent;
22021
- exports.ɵdk = NumberLocaleOptions;
22022
- exports.ɵdl = BorderButtonModule;
22023
- exports.ɵdm = BorderButtonComponent;
22024
- exports.ɵdn = ProgressBarDeterminateComponent;
22025
- exports.ɵdo = ProgressBarIndeterminateComponent;
22026
- exports.ɵdp = SelectButtonItemComponent;
22027
- exports.ɵdq = SlidePanelService;
22028
- exports.ɵdr = ThumbnailItemComponent;
22029
- exports.ɵds = ThumbnailItemVideoComponent;
22030
- exports.ɵdt = ThumbnailItemImageComponent;
22031
- exports.ɵdu = TimelineItemModule;
22032
- exports.ɵdv = TimelineIconItemComponent;
22033
- exports.ɵdw = HorizontalTimelineModule;
22034
- exports.ɵdx = HorizontalTimelineComponent;
22035
- exports.ɵdy = VerticalTimelineModule;
22036
- exports.ɵdz = VerticalTimelineComponent;
22101
+ exports.ɵda = InlineEditItemComponent;
22102
+ exports.ɵdb = InlineEditCalendarComponent;
22103
+ exports.ɵdc = InlineEditLookupComponent;
22104
+ exports.ɵdd = InlineEditNumberComponent;
22105
+ exports.ɵde = InlineEditTextComponent;
22106
+ exports.ɵdf = InlineEditTextAreaComponent;
22107
+ exports.ɵdg = InlineEditTextAreaIAComponent;
22108
+ exports.ɵdh = KanbanEventService;
22109
+ exports.ɵdi = KanbanItemComponent;
22110
+ exports.ɵdj = KanbanColumnComponent;
22111
+ exports.ɵdk = KanbanItemDraggingComponent;
22112
+ exports.ɵdl = NumberLocaleOptions;
22113
+ exports.ɵdm = BorderButtonModule;
22114
+ exports.ɵdn = BorderButtonComponent;
22115
+ exports.ɵdo = ProgressBarDeterminateComponent;
22116
+ exports.ɵdp = ProgressBarIndeterminateComponent;
22117
+ exports.ɵdq = SelectButtonItemComponent;
22118
+ exports.ɵdr = SlidePanelService;
22119
+ exports.ɵds = ThumbnailItemComponent;
22120
+ exports.ɵdt = ThumbnailItemVideoComponent;
22121
+ exports.ɵdu = ThumbnailItemImageComponent;
22122
+ exports.ɵdv = TimelineItemModule;
22123
+ exports.ɵdw = TimelineIconItemComponent;
22124
+ exports.ɵdx = HorizontalTimelineModule;
22125
+ exports.ɵdy = HorizontalTimelineComponent;
22126
+ exports.ɵdz = VerticalTimelineModule;
22037
22127
  exports.ɵe = TieredMenuGlobalService;
22038
- exports.ɵea = RangeLineComponent;
22039
- exports.ɵeb = CollapseOptionComponent;
22040
- exports.ɵec = CollapsedItemsComponent;
22041
- exports.ɵed = VerticalItemsComponent;
22042
- exports.ɵee = ChipItemComponent;
22128
+ exports.ɵea = VerticalTimelineComponent;
22129
+ exports.ɵeb = RangeLineComponent;
22130
+ exports.ɵec = CollapseOptionComponent;
22131
+ exports.ɵed = CollapsedItemsComponent;
22132
+ exports.ɵee = VerticalItemsComponent;
22133
+ exports.ɵef = ChipItemComponent;
22043
22134
  exports.ɵf = TieredMenuComponent;
22044
22135
  exports.ɵg = TieredMenuNestedComponent;
22045
22136
  exports.ɵh = TieredMenuItemComponent;