@wizishop/angular-components 0.0.173 → 0.0.176

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.
@@ -1243,6 +1243,7 @@
1243
1243
  this.animationText = '';
1244
1244
  this.confirmDelete = false;
1245
1245
  this.confirmDeleteText = '';
1246
+ this.tooltipPosition = 'top-center';
1246
1247
  this.confirmDeletePosition = 'right';
1247
1248
  this.click = new i0.EventEmitter();
1248
1249
  this.isLoadingChange = new i0.EventEmitter();
@@ -1332,7 +1333,7 @@
1332
1333
  ButtonComponent.decorators = [
1333
1334
  { type: i0.Component, args: [{
1334
1335
  selector: 'wac-button',
1335
- template: "<a\n [class]=\"'wac-button ' + extraClasses\"\n (click)=\"confirmDelete && waitForConfirmDelete ? addMaxWidthDelete() : '';onButtonClick($event);\"\n (mouseleave)=\"animation ? resetMaxWidth() : '';\"\n (mouseenter)=\"animation ? addMaxWidth() : '';\"\n wzAutoHide (clickOutside)=\"confirmDelete && !waitForConfirmDelete ? resetMaxWidthDelete() : ''\"\n [ngClass]=\"[\n label === '' ? 'alone' : '',\n coin ? 'has-coin width-auto' : '',\n animationRight ? 'animation-right' : '',\n animation ? 'animationText' : '',\n isLoading ? 'is-loading' : '',\n opacity ? 'opacity' : '',\n disabled ? 'disabled' : '',\n widthAuto ? 'width-auto' : '',\n whiteSpaceNowrap ? 'white-space-no-wrap' : '',\n !waitForConfirmDelete && confirmDelete ? 'step-delete' : '',\n confirmDelete ? 'deletePosition-' + confirmDeletePosition : ''\n ]\"\n [ngStyle]=\"{\n 'text-align': contentHorizontalPosition\n }\"\n>\n <span class=\"wac-button__wrapper\" [style.color]=\"textcolor ? textcolor : ''\">\n <i *ngIf=\"icon !== ''\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext !== ''\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n <span class=\"wac-button__animation\" [style.maxWidth]=\"buttonMaxWidth\" [style.width]=\"buttonWidth + 'px'\">\n <span #calculWidth class=\"wac-button__animation__text\" [innerHTML]=\"animationText\"></span>\n </span>\n <span class=\"wac-button__confirmDelete\" [style.maxWidth]=\"buttonMaxWidthDelete\" [style.width]=\"buttonWidthDelete + 'px'\">\n <span #calculWidthDelete class=\"wac-button__confirmDelete__text\" [innerHTML]=\"confirmDeleteText\"></span>\n </span>\n <span *ngIf=\"coin\" class=\"wac-button__coin\"><i class=\"fa-solid fa-coin-front\"></i><span [innerHTML]=\"coin\"></span></span>\n <span\n class=\"wac-button__loader\"\n [ngClass]=\"extraClasses.includes('is-outlined') ? 'outlined' : ''\"\n *ngIf=\"isLoading\"\n [style.width]=\"currentLoading + '%'\"\n >\n <span *ngIf=\"extraClasses.includes('is-outlined')\">\n <i *ngIf=\"icon !== ''\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext !== ''\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n\n </span>\n</a>\n"
1336
+ template: "<a\n [class]=\"'wac-button ' + extraClasses\"\n (click)=\"confirmDelete && waitForConfirmDelete ? addMaxWidthDelete() : '';onButtonClick($event);\"\n (mouseleave)=\"animation ? resetMaxWidth() : '';\"\n (mouseenter)=\"animation ? addMaxWidth() : '';\"\n wzAutoHide (clickOutside)=\"confirmDelete && !waitForConfirmDelete ? resetMaxWidthDelete() : ''\"\n [ngClass]=\"[\n label === '' ? 'alone' : '',\n coin ? 'has-coin width-auto' : '',\n animationRight ? 'animation-right' : '',\n animation ? 'animationText' : '',\n isLoading ? 'is-loading' : '',\n opacity ? 'opacity' : '',\n disabled ? 'disabled' : '',\n widthAuto ? 'width-auto' : '',\n whiteSpaceNowrap ? 'white-space-no-wrap' : '',\n !waitForConfirmDelete && confirmDelete ? 'step-delete' : '',\n confirmDelete ? 'deletePosition-' + confirmDeletePosition : ''\n ]\"\n [ngStyle]=\"{\n 'text-align': contentHorizontalPosition\n }\"\n>\n <span class=\"wac-button__wrapper\" [style.color]=\"textcolor ? textcolor : ''\">\n <i *ngIf=\"icon\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n <span class=\"wac-button__animation\" [style.maxWidth]=\"buttonMaxWidth\" [style.width]=\"buttonWidth + 'px'\">\n <span #calculWidth class=\"wac-button__animation__text\" [innerHTML]=\"animationText\"></span>\n </span>\n <span class=\"wac-button__confirmDelete\" [style.maxWidth]=\"buttonMaxWidthDelete\" [style.width]=\"buttonWidthDelete + 'px'\">\n <span #calculWidthDelete class=\"wac-button__confirmDelete__text\" [innerHTML]=\"confirmDeleteText\"></span>\n </span>\n <span *ngIf=\"coin\" class=\"wac-button__coin\"><i class=\"fa-solid fa-coin-front\"></i><span [innerHTML]=\"coin\"></span></span>\n <span\n class=\"wac-button__loader\"\n [ngClass]=\"extraClasses.includes('is-outlined') ? 'outlined' : ''\"\n *ngIf=\"isLoading\"\n [style.width]=\"currentLoading + '%'\"\n >\n <span *ngIf=\"extraClasses.includes('is-outlined')\">\n <i *ngIf=\"icon !== ''\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext !== ''\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n </span>\n <span class=\"wac-button__tooltips {{ tooltipPosition }}\" [style.minWidth]=\"tooltipWidth\" *ngIf=\"tooltip\">\n {{ tooltip }}\n </span>\n</a>\n"
1336
1337
  },] }
1337
1338
  ];
1338
1339
  ButtonComponent.ctorParameters = function () { return []; };
@@ -1355,6 +1356,9 @@
1355
1356
  confirmDelete: [{ type: i0.Input }],
1356
1357
  confirmDeleteText: [{ type: i0.Input }],
1357
1358
  coin: [{ type: i0.Input }],
1359
+ tooltip: [{ type: i0.Input }],
1360
+ tooltipWidth: [{ type: i0.Input }],
1361
+ tooltipPosition: [{ type: i0.Input }],
1358
1362
  confirmDeletePosition: [{ type: i0.Input }],
1359
1363
  click: [{ type: i0.Output }],
1360
1364
  isLoading: [{ type: i0.Input }],
@@ -4251,39 +4255,51 @@
4251
4255
 
4252
4256
  var CardPriceComponent = /** @class */ (function () {
4253
4257
  function CardPriceComponent() {
4258
+ this.selected = false;
4254
4259
  this.disabled = false;
4255
4260
  this.btnTextcolor = '#ffffff';
4256
4261
  this.extraClasses = 'is-success';
4262
+ this.extraClassesSelected = 'is-success is-outlined';
4257
4263
  this.hideButton = false;
4258
4264
  this.click = new i0.EventEmitter();
4265
+ this.removePackage = new i0.EventEmitter();
4259
4266
  }
4260
4267
  CardPriceComponent.prototype.ngOnInit = function () {
4261
4268
  };
4262
4269
  CardPriceComponent.prototype.triggerClick = function () {
4263
4270
  this.click.emit(true);
4264
4271
  };
4272
+ CardPriceComponent.prototype.removePackageTrigger = function () {
4273
+ this.removePackage.emit(true);
4274
+ };
4265
4275
  return CardPriceComponent;
4266
4276
  }());
4267
4277
  CardPriceComponent.decorators = [
4268
4278
  { type: i0.Component, args: [{
4269
4279
  selector: 'wac-card-price',
4270
- template: "<div class=\"wac-card-price\">\n <strong>{{amount}}</strong>\n <p>{{title}}</p>\n <div class=\"price\">\n <span class=\"amount\">{{price}} <span>{{currency}}</span></span><span class=\"month\">{{priceWording}}</span>\n </div>\n <div class=\"subtitle\">{{subtitle}}</div>\n <div class=\"cta\">\n <wac-button [label]=\"btnLabel\" [extraClasses]=\"extraClasses\" (click)=\"triggerClick()\" [disabled]=\"disabled\" [textcolor]=\"btnTextcolor\" *ngIf=\"!hideButton\"></wac-button>\n </div>\n</div>\n"
4280
+ template: "<div class=\"wac-card-price\" [ngClass]=\"{'selected': selected}\">\n <strong>{{amount}}</strong>\n <p>{{title}}</p>\n <div class=\"price\">\n <span class=\"amount\">{{price}} <span>{{currency}}</span></span><span class=\"month\">{{priceWording}}</span>\n </div>\n <div class=\"subtitle\">{{subtitle}}</div>\n <div class=\"cta\" *ngIf=\"!selected\">\n <wac-button [label]=\"btnLabel\" [extraClasses]=\"extraClasses\" (click)=\"triggerClick()\" [disabled]=\"disabled\" [whiteSpaceNowrap]=\"true\" [textcolor]=\"btnTextcolor\" *ngIf=\"!hideButton\"></wac-button>\n </div>\n <div class=\"cta\" *ngIf=\"selected\">\n <wac-button [icon]=\"'fa-solid fa-check'\" [label]=\"btnLabelSelected\" [extraClasses]=\"extraClassesSelected\" [whiteSpaceNowrap]=\"true\" *ngIf=\"!hideButton\"></wac-button>\n </div>\n <div class=\"package-subtitle\" *ngIf=\"packageSubtitle\">{{packageSubtitle}}</div>\n <div class=\"link-bottom\">\n <wac-link (click)=\"removePackageTrigger()\">{{linkPackageLabel}}</wac-link>\n </div>\n</div>\n"
4271
4281
  },] }
4272
4282
  ];
4273
4283
  CardPriceComponent.ctorParameters = function () { return []; };
4274
4284
  CardPriceComponent.propDecorators = {
4275
4285
  amount: [{ type: i0.Input }],
4276
4286
  title: [{ type: i0.Input }],
4287
+ selected: [{ type: i0.Input }],
4288
+ btnLabelSelected: [{ type: i0.Input }],
4277
4289
  price: [{ type: i0.Input }],
4278
4290
  currency: [{ type: i0.Input }],
4279
4291
  priceWording: [{ type: i0.Input }],
4280
4292
  subtitle: [{ type: i0.Input }],
4281
4293
  btnLabel: [{ type: i0.Input }],
4294
+ packageSubtitle: [{ type: i0.Input }],
4295
+ linkPackageLabel: [{ type: i0.Input }],
4282
4296
  disabled: [{ type: i0.Input }],
4283
4297
  btnTextcolor: [{ type: i0.Input }],
4284
4298
  extraClasses: [{ type: i0.Input }],
4299
+ extraClassesSelected: [{ type: i0.Input }],
4285
4300
  hideButton: [{ type: i0.Input }],
4286
- click: [{ type: i0.Output }]
4301
+ click: [{ type: i0.Output }],
4302
+ removePackage: [{ type: i0.Output }]
4287
4303
  };
4288
4304
 
4289
4305
  var TokenCheckComponent = /** @class */ (function () {
@@ -4310,8 +4326,9 @@
4310
4326
  var BlockWithCheckboxComponent = /** @class */ (function () {
4311
4327
  function BlockWithCheckboxComponent() {
4312
4328
  this.selected = false;
4313
- this.iconCopy = 'fa-solid fa-copy';
4314
- this.iconWorld = 'fa-thin fa-globe';
4329
+ this.disabled = false;
4330
+ this.iconCopy = 'fa-solid fa-paste';
4331
+ this.iconWorld = 'fa-light fa-globe';
4315
4332
  this.copyAction = new i0.EventEmitter();
4316
4333
  this.worldAction = new i0.EventEmitter();
4317
4334
  this.checkboxAction = new i0.EventEmitter();
@@ -4323,10 +4340,11 @@
4323
4340
  this.randomLabelName = 'radioBlock' + Math.random() * (900 - 700) + 700;
4324
4341
  };
4325
4342
  BlockWithCheckboxComponent.prototype.eventSelected = function (event) {
4326
- console.log(event);
4327
- this.selected = event.target.checked;
4328
- this.checkboxAction.emit(this.selected);
4329
- this.isFirst = false;
4343
+ if (!this.disabled) {
4344
+ this.selected = event.target.checked;
4345
+ this.checkboxAction.emit(this.selected);
4346
+ this.isFirst = false;
4347
+ }
4330
4348
  };
4331
4349
  BlockWithCheckboxComponent.prototype.eventCopy = function () {
4332
4350
  this.copyAction.emit(true);
@@ -4344,12 +4362,13 @@
4344
4362
  BlockWithCheckboxComponent.decorators = [
4345
4363
  { type: i0.Component, args: [{
4346
4364
  selector: 'wac-block-with-checkbox',
4347
- template: "<div class=\"block-with-checkbox\" [ngClass]=\"{'selected': inputRadioA.checked, 'firstWacRadioBLock': isFirst}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n <div class=\"block-with-checkbox__right\">\n <div><wac-button extraClasses=\"is-blue opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconCopy\" (click)=\"eventCopy()\"></wac-button></div>\n <div><wac-button extraClasses=\"is-green opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconWorld\" (click)=\"eventWorld()\"></wac-button></div>\n </div>\n</div>\n"
4365
+ template: "<div class=\"block-with-checkbox\" [ngClass]=\"{'selected': inputRadioA.checked || selected, 'firstWacRadioBLock': isFirst, 'disabled': disabled}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [checked]=\"selected\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n <div class=\"block-with-checkbox__right\">\n <div><wac-button extraClasses=\"is-blue opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconCopy\" (click)=\"eventCopy()\"></wac-button></div>\n <div><wac-button extraClasses=\"is-green opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconWorld\" (click)=\"eventWorld()\"></wac-button></div>\n </div>\n</div>\n"
4348
4366
  },] }
4349
4367
  ];
4350
4368
  BlockWithCheckboxComponent.ctorParameters = function () { return []; };
4351
4369
  BlockWithCheckboxComponent.propDecorators = {
4352
4370
  selected: [{ type: i0.Input }],
4371
+ disabled: [{ type: i0.Input }],
4353
4372
  iconCopy: [{ type: i0.Input }],
4354
4373
  iconWorld: [{ type: i0.Input }],
4355
4374
  copyAction: [{ type: i0.Output }],
@@ -4398,36 +4417,49 @@
4398
4417
 
4399
4418
  var MosaicComponent = /** @class */ (function () {
4400
4419
  function MosaicComponent() {
4401
- this._imagesList = [];
4420
+ this.imagesList = [];
4402
4421
  this.isLoading = false;
4403
4422
  this.numberOfColumn = 3;
4404
4423
  this.importImageSrc = new i0.EventEmitter();
4424
+ this.loadMoreImages = new i0.EventEmitter();
4405
4425
  }
4406
- Object.defineProperty(MosaicComponent.prototype, "imagesList", {
4407
- get: function () {
4408
- return this._imagesList;
4409
- },
4410
- set: function (imagesList) {
4411
- this._imagesList = imagesList;
4412
- this.generateColumns();
4413
- },
4414
- enumerable: false,
4415
- configurable: true
4416
- });
4417
- MosaicComponent.prototype.generateColumns = function () {
4418
- this.columns = this.sliceIntoChunks();
4426
+ MosaicComponent.prototype.ngOnChanges = function (changes) {
4427
+ console.log('changes', changes);
4428
+ var isNumberOfColumnChange = changes.numberOfColumn && (changes.numberOfColumn.currentValue !== changes.numberOfColumn.previousValue);
4429
+ if (changes.imagesList) {
4430
+ this.generateColumns(changes.imagesList.previousValue, changes.imagesList.currentValue, isNumberOfColumnChange);
4431
+ return;
4432
+ }
4433
+ if (isNumberOfColumnChange) {
4434
+ this.generateColumns(null, this.imagesList, isNumberOfColumnChange);
4435
+ }
4436
+ };
4437
+ MosaicComponent.prototype.generateColumns = function (previousList, currentList, isNumberOfColumnChange) {
4438
+ var isNewListSmaller = (currentList && previousList) && (currentList.length < previousList.length);
4439
+ var resetColumns = isNumberOfColumnChange || isNewListSmaller;
4440
+ var isPreviousListExisting = previousList === null || previousList === void 0 ? void 0 : previousList.length;
4441
+ var newImagesToDisplay = !isPreviousListExisting || resetColumns ? currentList : currentList.slice(previousList.length);
4442
+ var columns = this.separateImagesIntoColumns(newImagesToDisplay);
4443
+ if (isPreviousListExisting && !resetColumns) {
4444
+ var existingColumns = this.columns;
4445
+ columns = this.concatColumns(existingColumns, columns);
4446
+ }
4447
+ this.columns = columns;
4419
4448
  };
4420
- MosaicComponent.prototype.sliceIntoChunks = function () {
4449
+ MosaicComponent.prototype.separateImagesIntoColumns = function (newImagesToDisplay) {
4421
4450
  var columns = [];
4422
- var numberOfImagePerColumn = this.imagesList.length / this.numberOfColumn;
4423
- for (var i = 0; i < this.imagesList.length; i += numberOfImagePerColumn) {
4424
- var chunk = this.imagesList.slice(i, i + numberOfImagePerColumn);
4451
+ var numberOfImagePerColumn = Math.floor(newImagesToDisplay.length / this.numberOfColumn);
4452
+ for (var i = 0; i < newImagesToDisplay.length; i += numberOfImagePerColumn) {
4453
+ var chunk = newImagesToDisplay.slice(i, i + numberOfImagePerColumn);
4425
4454
  columns.push(chunk);
4426
4455
  }
4427
4456
  return columns;
4428
4457
  };
4458
+ MosaicComponent.prototype.concatColumns = function (oldColumns, newColumns) {
4459
+ return oldColumns.map(function (oldColumn, columnIndex) { return __spread(oldColumn, newColumns[columnIndex]); });
4460
+ };
4429
4461
  MosaicComponent.prototype.onBottomReached = function () {
4430
- console.log('end bottom !');
4462
+ this.loadMoreImages.emit();
4431
4463
  };
4432
4464
  MosaicComponent.prototype.onImportImage = function (src) {
4433
4465
  this.importImageSrc.emit(src);
@@ -4437,8 +4469,9 @@
4437
4469
  MosaicComponent.decorators = [
4438
4470
  { type: i0.Component, args: [{
4439
4471
  selector: 'wac-mosaic',
4440
- template: "<div class=\"wac-mosaic\" *ngIf=\"!isLoading; else loading\">\n <ng-scrollbar (reachedBottom)=\"onBottomReached()\" reachedOffset=\"200\" class=\"wac-mosaic__wrapper__scrollbar\">\n <div class=\"wac-mosaic__wrapper\">\n <div class=\"wac-mosaic__wrapper__column\" *ngFor=\"let column of columns\">\n <div class=\"wac-mosaic__wrapper__column__image\" *ngFor=\"let image of column; let i = index;\">\n <img [src]=\"image.src\" [alt]=\"image.alt\"/>\n <div class=\"hover\">\n <ng-container\n [ngTemplateOutlet]=\"importButtonTemplate || defaultImportButton\"\n [ngTemplateOutletContext]=\"{ $implicit: image }\"\n >\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n </ng-scrollbar>\n</div>\n\n<ng-template #defaultImportButton let-image>\n <wac-button [icon]=\"'fa-solid fa-image'\" [label]=\"'wac.MosaicComponent.import' | translate\" [extraClasses]=\"'is-success'\" (click)=\"onImportImage(image.src)\"></wac-button>\n</ng-template>\n\n<ng-template #loading>\n <div class=\"wac-mosaic__loader\" *ngIf=\"isLoading\">\n <wac-loader></wac-loader>\n </div>\n</ng-template>\n",
4441
- encapsulation: i0.ViewEncapsulation.None
4472
+ template: "<div class=\"wac-mosaic\">\n <ng-scrollbar (reachedBottom)=\"onBottomReached()\" reachedOffset=\"200\" class=\"wac-mosaic__wrapper__scrollbar\">\n <div class=\"wac-mosaic__wrapper\">\n <div class=\"wac-mosaic__wrapper__column\" *ngFor=\"let column of columns\">\n <div class=\"wac-mosaic__wrapper__column__image\" *ngFor=\"let image of column; let i = index;\">\n <img [src]=\"image.src\" [alt]=\"image.alt\"/>\n <div class=\"hover\">\n <ng-container\n [ngTemplateOutlet]=\"hoverImageTemplate || defaultImportButton\"\n [ngTemplateOutletContext]=\"{ $implicit: image }\"\n >\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n </ng-scrollbar>\n</div>\n\n<div class=\"wac-mosaic__loader\" *ngIf=\"isLoading\">\n <wac-loader></wac-loader>\n</div>\n\n<ng-template #defaultImportButton let-image>\n <wac-button [icon]=\"'fa-solid fa-image'\" [label]=\"'wac.MosaicComponent.import' | translate\" [extraClasses]=\"'is-success'\" (click)=\"onImportImage(image.src)\"></wac-button>\n</ng-template>\n",
4473
+ encapsulation: i0.ViewEncapsulation.None,
4474
+ changeDetection: i0.ChangeDetectionStrategy.OnPush
4442
4475
  },] }
4443
4476
  ];
4444
4477
  MosaicComponent.ctorParameters = function () { return []; };
@@ -4446,10 +4479,26 @@
4446
4479
  imagesList: [{ type: i0.Input }],
4447
4480
  isLoading: [{ type: i0.Input }],
4448
4481
  numberOfColumn: [{ type: i0.Input }],
4449
- importButtonTemplate: [{ type: i0.Input }],
4450
- importImageSrc: [{ type: i0.Output }]
4482
+ hoverImageTemplate: [{ type: i0.Input }],
4483
+ importImageSrc: [{ type: i0.Output }],
4484
+ loadMoreImages: [{ type: i0.Output }]
4451
4485
  };
4452
4486
 
4487
+ var ContentWithButtonsComponent = /** @class */ (function () {
4488
+ function ContentWithButtonsComponent() {
4489
+ }
4490
+ ContentWithButtonsComponent.prototype.ngOnInit = function () {
4491
+ };
4492
+ return ContentWithButtonsComponent;
4493
+ }());
4494
+ ContentWithButtonsComponent.decorators = [
4495
+ { type: i0.Component, args: [{
4496
+ selector: 'wac-content-with-buttons',
4497
+ template: "<p>content-with-buttons works!</p>\n"
4498
+ },] }
4499
+ ];
4500
+ ContentWithButtonsComponent.ctorParameters = function () { return []; };
4501
+
4453
4502
  var components = [
4454
4503
  TagComponent,
4455
4504
  TabComponent,
@@ -4498,7 +4547,8 @@
4498
4547
  TokenCheckComponent,
4499
4548
  BlockWithCheckboxComponent,
4500
4549
  ConfirmDeleteComponent,
4501
- MosaicComponent
4550
+ MosaicComponent,
4551
+ ContentWithButtonsComponent
4502
4552
  ];
4503
4553
  var exportsFromModule = [
4504
4554
  PaginationComponent,
@@ -4610,6 +4660,7 @@
4610
4660
  exports.CheckBoxRow = CheckBoxRow;
4611
4661
  exports.CheckboxComponent = CheckboxComponent;
4612
4662
  exports.ConfirmDeleteComponent = ConfirmDeleteComponent;
4663
+ exports.ContentWithButtonsComponent = ContentWithButtonsComponent;
4613
4664
  exports.DebounceKeyupDirective = DebounceKeyupDirective;
4614
4665
  exports.DeleteComponent = DeleteComponent;
4615
4666
  exports.DropdownComponent = DropdownComponent;