@wizishop/angular-components 0.0.158 → 0.0.162

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 (25) hide show
  1. package/angular-components.scss +232 -2
  2. package/bundles/wizishop-angular-components.umd.js +113 -6
  3. package/bundles/wizishop-angular-components.umd.js.map +1 -1
  4. package/bundles/wizishop-angular-components.umd.min.js +2 -2
  5. package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
  6. package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +40 -0
  7. package/esm2015/lib/components/confirm-delete/confirm-delete.component.js +36 -0
  8. package/esm2015/lib/components/header-page/header-page.component.js +5 -3
  9. package/esm2015/lib/components/hn/h1/h1.component.js +5 -3
  10. package/esm2015/lib/components/mosaic/mosaic.component.js +20 -0
  11. package/esm2015/lib/components/shared-components.module.js +8 -2
  12. package/esm2015/lib/components/text-area/text-area.component.js +3 -2
  13. package/esm2015/public-api.js +4 -1
  14. package/fesm2015/wizishop-angular-components.js +108 -7
  15. package/fesm2015/wizishop-angular-components.js.map +1 -1
  16. package/lib/components/block-with-checkbox/block-with-checkbox.component.d.ts +14 -0
  17. package/lib/components/confirm-delete/confirm-delete.component.d.ts +14 -0
  18. package/lib/components/header-page/header-page.component.d.ts +1 -0
  19. package/lib/components/hn/h1/h1.component.d.ts +1 -0
  20. package/lib/components/mosaic/mosaic.component.d.ts +7 -0
  21. package/package.json +1 -1
  22. package/public-api.d.ts +3 -0
  23. package/wizishop-angular-components-0.0.162.tgz +0 -0
  24. package/wizishop-angular-components.metadata.json +1 -1
  25. package/wizishop-angular-components-0.0.158.tgz +0 -0
@@ -64,6 +64,7 @@ $wac-wizishop-blue-button-darken: #3596b7!default;
64
64
  $wac-wizishop-blue-button-focus: #2f8baa!default;
65
65
  $wac-wizishop-blue-button-disabled: #94cde0!default;
66
66
  $wac-wizishop-blue-button: #52aecd!default;
67
+ $wac-wizishop-blue-button-light: #52AECD1A!default;
67
68
  $wac-wizishop-blue: #4baed0!default;
68
69
  $wac-color-icon-search-multiple-search: #b4bdd0!default;
69
70
  $wac-hover-multiple-search: #edf7fa!default;
@@ -84,6 +85,7 @@ $wac-calendar-box-shadow: #0000001a!default;
84
85
 
85
86
  $wac-tag-default: #f5f8fa!default;
86
87
  $wac-tag-success: #2ecc71!default;
88
+ $wac-tag-success-light: #2ECC711A!default;
87
89
  $wac-tag-waring: #f5b226!default;
88
90
  $wac-tag-gray: #526384!default;
89
91
 
@@ -571,6 +573,120 @@ $wac-subtitle-color: #7A87A1!default;
571
573
  }
572
574
  }
573
575
  }
576
+ .block-with-checkbox {
577
+ width: 100%;
578
+ display: flex;
579
+ align-items: center;
580
+ background-color: $wac-white;
581
+ box-shadow: 0px 2px 6px #0000000D;
582
+ border-radius: 3px;
583
+ margin: 0 0 15px;
584
+ padding: 30px;
585
+ @include media('<tablet') {
586
+ padding: 20px;
587
+ flex-direction: column;
588
+ align-items: center;
589
+ justify-content: flex-start;
590
+ }
591
+ &__left {
592
+ width: 30px;
593
+ margin: 0 20px 0 0;
594
+ display: flex;
595
+ align-items: center;
596
+ }
597
+ &__center {
598
+ width: 100%;
599
+ }
600
+ &__right {
601
+ display: flex;
602
+ align-items: center;
603
+ width: auto;
604
+ div {
605
+ margin: 0 0 0 20px;
606
+ }
607
+ }
608
+ }
609
+
610
+ .wac-radio-block {
611
+ height: 30px;
612
+ input {
613
+ outline: 0 !important;
614
+ display: none;
615
+ & + label {
616
+ padding-left: 30px;
617
+ padding-right: 5px;
618
+ position: relative;
619
+ cursor: pointer;
620
+ &:before {
621
+ content: '';
622
+ display: block;
623
+ position: absolute;
624
+ width: 22px;
625
+ height: 22px;
626
+ border: 1px solid $wac-border-form;
627
+ border-radius: 23px;
628
+ top: 3px;
629
+ }
630
+ &:after {
631
+ content: "";
632
+ display: block;
633
+ position: absolute;
634
+ width: 16px;
635
+ height: 16px;
636
+ border-radius: 23px;
637
+ background: $wac-input-active-color;
638
+ top: 6px;
639
+ left: 2.5px;
640
+ opacity: 0;
641
+ }
642
+ &:before,
643
+ &:after {
644
+ outline: 0 !important;
645
+ }
646
+ &:hover,
647
+ &:focus {
648
+ &:before {
649
+ border-color: $wac-input-active-color !important;
650
+ }
651
+ }
652
+ }
653
+ &:hover {
654
+ & + label {
655
+ color: $wac-input-radio-color-active-label;
656
+ &:before {
657
+ border-color: $wac-input-active-color !important;
658
+ }
659
+ }
660
+ &:not([disabled]) {
661
+ & + label {
662
+ &:before {
663
+ border-color: $wac-input-active-color !important;
664
+ }
665
+ }
666
+ }
667
+ }
668
+ &:checked + label {
669
+ color: $wac-input-radio-color-active-label;
670
+ &:before {
671
+ border-color: $wac-input-active-color!important;
672
+ }
673
+ &:after {
674
+ opacity: 1;
675
+ }
676
+ }
677
+ }
678
+
679
+
680
+ .wac-radio__row {
681
+ min-width: 100%;
682
+ margin: 0 0 7px;
683
+ }
684
+
685
+ label {
686
+ padding-left: 7px;
687
+ margin-right: 0;
688
+ }
689
+ }
574
690
  .wac-breadcrumbs {
575
691
  width: 100%;
576
692
  display: flex;
@@ -719,6 +835,42 @@ $wac-subtitle-color: #7A87A1!default;
719
835
  white-space: nowrap;
720
836
  }
721
837
 
838
+ &.is-green.opacity {
839
+ background-color: $wac-tag-success-light;
840
+ border-color: $wac-tag-success-light;
841
+ transition: .3s;
842
+ i {
843
+ color: $wac-tag-success;
844
+ }
845
+ &:hover, &:focus {
846
+ background-color: $wac-tag-success;
847
+ i {
848
+ color: $wac-white;
849
+ }
850
+ }
851
+ }
852
+
853
+ &.static-width {
854
+ width: 40px;
855
+ min-width: 40px;
856
+ max-width: 40px;
857
+ }
858
+
859
+ &.is-blue.opacity {
860
+ background-color: $wac-wizishop-blue-button-light;
861
+ border-color: $wac-wizishop-blue-button-light;
862
+ transition: .3s;
863
+ i {
864
+ color: $wac-wizishop-blue-button;
865
+ }
866
+ &:hover, &:focus {
867
+ background-color: $wac-wizishop-blue-button;
868
+ i {
869
+ color: $wac-white;
870
+ }
871
+ }
872
+ }
873
+
722
874
  &.animationText {
723
875
  width: rem(40);
724
876
  height: rem(40);
@@ -769,6 +921,8 @@ $wac-subtitle-color: #7A87A1!default;
769
921
  padding: 4px 6px;
770
922
  background-color: #F8EDD2;
771
923
  float: right;
924
+ z-index: 2;
925
+ position: relative;
772
926
  i {
773
927
  font-size: rem(18);
774
928
  color: #FDCD52;
@@ -2144,7 +2298,8 @@ $wac-subtitle-color: #7A87A1!default;
2144
2298
  }
2145
2299
 
2146
2300
  > strong {
2147
- font-size: rem(30);
2301
+ font-size: rem(40);
2302
+ line-height: rem(47);
2148
2303
  text-align: center;
2149
2304
  display: block;
2150
2305
  width: 100%;
@@ -2155,7 +2310,7 @@ $wac-subtitle-color: #7A87A1!default;
2155
2310
  > p {
2156
2311
  font-size: rem(20);
2157
2312
  text-transform: uppercase;
2158
- margin: 0 0 30px;
2313
+ margin: 0 0 20px;
2159
2314
  text-align: center;
2160
2315
  display: block;
2161
2316
  width: 100%;
@@ -2373,6 +2528,61 @@ $wac-subtitle-color: #7A87A1!default;
2373
2528
  }
2374
2529
 
2375
2530
  }
2531
+ .wac-confirm-delete {
2532
+ position: absolute;
2533
+ right: 0;
2534
+ top: 0;
2535
+ height: 100%;
2536
+ z-index: 999;
2537
+ width: auto;
2538
+ display: flex;
2539
+ flex-wrap: nowrap;
2540
+ align-items: stretch;
2541
+ background-color: $wac-white;
2542
+ opacity: 0;
2543
+ visibility: hidden;
2544
+ transform: translateX(100%);
2545
+ transition: 0s visibility .35s, opacity .3s ease 0s, transform .3s ease 0s;
2546
+ &.is-open {
2547
+ opacity: 1;
2548
+ visibility: visible;
2549
+ transform: translateX(0);
2550
+ transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
2551
+ }
2552
+ > div {
2553
+ width: auto;
2554
+ display: flex;
2555
+ align-items: center;
2556
+ &:first-child {
2557
+ position: relative;
2558
+ margin: 0 20px 0 0;
2559
+ padding: 0 0 0 30px;
2560
+ &:before {
2561
+ content: '';
2562
+ display: block;
2563
+ position: absolute;
2564
+ top: 0;
2565
+ left: 10px;
2566
+ width: 1px;
2567
+ height: 100%;
2568
+ background-color: $wac-border-form;
2569
+ }
2570
+ span {
2571
+ font-size: rem(16);
2572
+ line-height: 1.4;
2573
+ color: $wac-second-color;
2574
+ }
2575
+ }
2576
+ &:last-child {
2577
+ > div {
2578
+ width: auto;
2579
+ &:first-child {
2580
+ margin: 0 10px 0 0;
2581
+ }
2582
+ }
2583
+ }
2584
+ }
2585
+ }
2376
2586
  .wac-delete {
2377
2587
  width: 40px;
2378
2588
  height: 40px;
@@ -2900,6 +3110,9 @@ $wac-subtitle-color: #7A87A1!default;
2900
3110
  align-items: flex-start;
2901
3111
  margin: 0;
2902
3112
  }
3113
+ &.center {
3114
+ justify-content: center;
3115
+ }
2903
3116
  &__left {
2904
3117
  width: auto;
2905
3118
  display: flex;
@@ -2910,6 +3123,11 @@ $wac-subtitle-color: #7A87A1!default;
2910
3123
  width: 100%;
2911
3124
  margin: 0 0 30px;
2912
3125
  }
3126
+ &.fullsize {
3127
+ width: 100%;
3128
+ margin: 0;
3129
+ justify-content: center;
3130
+ }
2913
3131
  a {
2914
3132
  display: flex;
2915
3133
  min-width: 40px;
@@ -3197,6 +3415,15 @@ a.wac-link {
3197
3415
  }
3198
3416
  }
3199
3417
  }
3418
+ .wac-mosaic {
3419
+ &__loader {
3420
+ min-height: 400px;
3421
+ width: 100%;
3422
+ display: flex;
3423
+ justify-content: center;
3424
+ align-items: center;
3425
+ }
3426
+ }
3200
3427
  .wac-multiple-search {
3201
3428
  width: 100%;
3202
3429
  min-height: 50px;
@@ -5512,6 +5739,9 @@ h1.wac-h1 {
5512
5739
  display: flex;
5513
5740
  align-items: center;
5514
5741
  }
5742
+ &.center {
5743
+ text-align: center;
5744
+ }
5515
5745
 
5516
5746
  small {
5517
5747
  font-size: rem(18);
@@ -2045,13 +2045,15 @@
2045
2045
  maxlength: [{ type: i0.Input }],
2046
2046
  max: [{ type: i0.Input }],
2047
2047
  dynamicSize: [{ type: i0.Input }],
2048
- progressBar: [{ type: i0.Input }]
2048
+ progressBar: [{ type: i0.Input }],
2049
+ disabled: [{ type: i0.Input }]
2049
2050
  };
2050
2051
 
2051
2052
  var H1Component = /** @class */ (function () {
2052
2053
  function H1Component() {
2053
2054
  this.annotation = '';
2054
2055
  this.withImg = false;
2056
+ this.center = false;
2055
2057
  }
2056
2058
  H1Component.prototype.ngOnInit = function () { };
2057
2059
  return H1Component;
@@ -2059,13 +2061,14 @@
2059
2061
  H1Component.decorators = [
2060
2062
  { type: i0.Component, args: [{
2061
2063
  selector: 'wac-h1',
2062
- template: "<h1 class=\"wac-h1\" [ngClass]=\"{'with-img': withImg}\"><ng-content></ng-content><small *ngIf=\"annotation !== ''\">{{ annotation }}</small></h1>\n"
2064
+ template: "<h1 class=\"wac-h1\" [ngClass]=\"{'with-img': withImg, 'center': center}\"><ng-content></ng-content><small *ngIf=\"annotation !== ''\">{{ annotation }}</small></h1>\n"
2063
2065
  },] }
2064
2066
  ];
2065
2067
  H1Component.ctorParameters = function () { return []; };
2066
2068
  H1Component.propDecorators = {
2067
2069
  annotation: [{ type: i0.Input }],
2068
- withImg: [{ type: i0.Input }]
2070
+ withImg: [{ type: i0.Input }],
2071
+ center: [{ type: i0.Input }]
2069
2072
  };
2070
2073
 
2071
2074
  var H2Component = /** @class */ (function () {
@@ -2103,6 +2106,7 @@
2103
2106
  var HeaderPageComponent = /** @class */ (function () {
2104
2107
  function HeaderPageComponent() {
2105
2108
  this.withImg = false;
2109
+ this.center = false;
2106
2110
  }
2107
2111
  HeaderPageComponent.prototype.ngOnInit = function () { };
2108
2112
  return HeaderPageComponent;
@@ -2110,14 +2114,15 @@
2110
2114
  HeaderPageComponent.decorators = [
2111
2115
  { type: i0.Component, args: [{
2112
2116
  selector: 'wac-header-page',
2113
- template: "<div class=\"wac-header-page\">\n <div class=\"wac-header-page__maxWidth\">\n <div class=\"wac-header-page__maxWidth__top\">\n <div class=\"wac-header-page__maxWidth__top__left\">\n <!-- TODO Hard to use when only want a button and not a router link -->\n <a *ngIf=\"linkBack\" [routerLink]=\"linkBack\"><i class=\"fas fa-chevron-left\"></i></a>\n <wac-h1 [withImg]=\"withImg\">{{ title }}<ng-content select=\"[role=header]\"></ng-content></wac-h1>\n </div>\n <div class=\"wac-header-page__maxWidth__top__right\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n</div>\n"
2117
+ template: "<div class=\"wac-header-page\">\n <div class=\"wac-header-page__maxWidth\">\n <div class=\"wac-header-page__maxWidth__top\" [ngClass]=\"{'center':center}\">\n <div class=\"wac-header-page__maxWidth__top__left\" [ngClass]=\"{'fullsize':center}\">\n <!-- TODO Hard to use when only want a button and not a router link -->\n <a *ngIf=\"linkBack\" [routerLink]=\"linkBack\"><i class=\"fas fa-chevron-left\"></i></a>\n <wac-h1 [center]=\"center\" [withImg]=\"withImg\">{{ title }}<ng-content select=\"[role=header]\"></ng-content></wac-h1>\n </div>\n <div class=\"wac-header-page__maxWidth__top__right\" *ngIf=\"!center\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n</div>\n"
2114
2118
  },] }
2115
2119
  ];
2116
2120
  HeaderPageComponent.ctorParameters = function () { return []; };
2117
2121
  HeaderPageComponent.propDecorators = {
2118
2122
  title: [{ type: i0.Input }],
2119
2123
  linkBack: [{ type: i0.Input }],
2120
- withImg: [{ type: i0.Input }]
2124
+ withImg: [{ type: i0.Input }],
2125
+ center: [{ type: i0.Input }]
2121
2126
  };
2122
2127
 
2123
2128
  var InputComponent = /** @class */ (function () {
@@ -4295,6 +4300,102 @@
4295
4300
  max: [{ type: i0.Input }]
4296
4301
  };
4297
4302
 
4303
+ var BlockWithCheckboxComponent = /** @class */ (function () {
4304
+ function BlockWithCheckboxComponent() {
4305
+ this.selected = false;
4306
+ this.iconCopy = 'fa-solid fa-copy';
4307
+ this.iconWorld = 'fa-thin fa-globe';
4308
+ this.copyAction = new i0.EventEmitter();
4309
+ this.worldAction = new i0.EventEmitter();
4310
+ this.checkboxAction = new i0.EventEmitter();
4311
+ }
4312
+ BlockWithCheckboxComponent.prototype.ngOnInit = function () {
4313
+ };
4314
+ BlockWithCheckboxComponent.prototype.eventSelected = function (event) {
4315
+ this.selected = !this.selected;
4316
+ console.log(this.selected);
4317
+ this.checkboxAction.emit(this.selected);
4318
+ };
4319
+ BlockWithCheckboxComponent.prototype.eventCopy = function () {
4320
+ this.copyAction.emit(true);
4321
+ };
4322
+ BlockWithCheckboxComponent.prototype.eventWorld = function () {
4323
+ this.worldAction.emit(true);
4324
+ };
4325
+ return BlockWithCheckboxComponent;
4326
+ }());
4327
+ BlockWithCheckboxComponent.decorators = [
4328
+ { type: i0.Component, args: [{
4329
+ selector: 'wac-block-with-checkbox',
4330
+ template: "<div class=\"block-with-checkbox\">\n <div class=\"block-with-checkbox__left\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input type=\"checkbox\" [value]=\"selected\" (click)=\"eventSelected($event)\" id=\"radioBlock\">\n <label for=\"radioBlock\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\">\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"
4331
+ },] }
4332
+ ];
4333
+ BlockWithCheckboxComponent.ctorParameters = function () { return []; };
4334
+ BlockWithCheckboxComponent.propDecorators = {
4335
+ selected: [{ type: i0.Input }],
4336
+ iconCopy: [{ type: i0.Input }],
4337
+ iconWorld: [{ type: i0.Input }],
4338
+ copyAction: [{ type: i0.Output }],
4339
+ worldAction: [{ type: i0.Output }],
4340
+ checkboxAction: [{ type: i0.Output }]
4341
+ };
4342
+
4343
+ var ConfirmDeleteComponent = /** @class */ (function () {
4344
+ function ConfirmDeleteComponent() {
4345
+ this.open = false;
4346
+ this.confirm = new i0.EventEmitter();
4347
+ this.backgroundColor = '#fff';
4348
+ this.borderRadius = '0px';
4349
+ }
4350
+ ConfirmDeleteComponent.prototype.ngOnInit = function () {
4351
+ };
4352
+ ConfirmDeleteComponent.prototype.eventCancel = function (event) {
4353
+ this.confirm.emit(false);
4354
+ this.open = false;
4355
+ };
4356
+ ConfirmDeleteComponent.prototype.eventConfirm = function (event) {
4357
+ this.confirm.emit(true);
4358
+ this.open = false;
4359
+ };
4360
+ return ConfirmDeleteComponent;
4361
+ }());
4362
+ ConfirmDeleteComponent.decorators = [
4363
+ { type: i0.Component, args: [{
4364
+ selector: 'wac-confirm-delete',
4365
+ template: "<div class=\"wac-confirm-delete\" [ngClass]=\"{'is-open': open}\" [style.backgroundColor]=\"backgroundColor\" [style.borderRadius]=\"borderRadius\">\n <div>\n <span [innerHTML]=\"label\"></span>\n </div>\n <div>\n <div><wac-button [label]=\"labelCancel\" [extraClasses]=\"'is-outlined is-grey'\" (click)=\"eventCancel($event)\"></wac-button></div>\n <div><wac-button [label]=\"labelConfirm\" [extraClasses]=\"'is-danger'\" (click)=\"eventConfirm($event)\"></wac-button></div>\n </div>\n</div>\n"
4366
+ },] }
4367
+ ];
4368
+ ConfirmDeleteComponent.ctorParameters = function () { return []; };
4369
+ ConfirmDeleteComponent.propDecorators = {
4370
+ open: [{ type: i0.Input }],
4371
+ label: [{ type: i0.Input }],
4372
+ labelCancel: [{ type: i0.Input }],
4373
+ labelConfirm: [{ type: i0.Input }],
4374
+ confirm: [{ type: i0.Output }],
4375
+ backgroundColor: [{ type: i0.Input }],
4376
+ borderRadius: [{ type: i0.Input }]
4377
+ };
4378
+
4379
+ var MosaicComponent = /** @class */ (function () {
4380
+ function MosaicComponent() {
4381
+ this.isLoading = true;
4382
+ }
4383
+ MosaicComponent.prototype.ngOnInit = function () {
4384
+ };
4385
+ return MosaicComponent;
4386
+ }());
4387
+ MosaicComponent.decorators = [
4388
+ { type: i0.Component, args: [{
4389
+ selector: 'wac-mosaic',
4390
+ template: "<div class=\"wac-mosaic__loader\" *ngIf=\"isLoading\">\n <wac-loader></wac-loader>\n</div>\n<div class=\"wac-mosaic\" *ngIf=\"!isLoading\">\n <div class=\"wac-mosaic__wrapper\">\n <div class=\"wac-mosaic__wrapper__column\"></div>\n <div class=\"wac-mosaic__wrapper__column\" *ngIf=\"items\"></div>\n <div class=\"wac-mosaic__wrapper__column\"></div>\n </div>\n</div>\n",
4391
+ styles: [".wac-mosaic__loader{min-height:400px;width:100%;display:flex;justify-content:center;align-items:center}"]
4392
+ },] }
4393
+ ];
4394
+ MosaicComponent.ctorParameters = function () { return []; };
4395
+ MosaicComponent.propDecorators = {
4396
+ items: [{ type: i0.Input }]
4397
+ };
4398
+
4298
4399
  var components = [
4299
4400
  TagComponent,
4300
4401
  TabComponent,
@@ -4340,7 +4441,10 @@
4340
4441
  WrapperSidebarComponent,
4341
4442
  BreadcrumbsComponent,
4342
4443
  CardPriceComponent,
4343
- TokenCheckComponent
4444
+ TokenCheckComponent,
4445
+ BlockWithCheckboxComponent,
4446
+ ConfirmDeleteComponent,
4447
+ MosaicComponent
4344
4448
  ];
4345
4449
  var exportsFromModule = [
4346
4450
  PaginationComponent,
@@ -4442,12 +4546,14 @@
4442
4546
  exports.AutoHideDirective = AutoHideDirective;
4443
4547
  exports.BackComponent = BackComponent;
4444
4548
  exports.BlockComponent = BlockComponent;
4549
+ exports.BlockWithCheckboxComponent = BlockWithCheckboxComponent;
4445
4550
  exports.BreadcrumbsComponent = BreadcrumbsComponent;
4446
4551
  exports.ButtonComponent = ButtonComponent;
4447
4552
  exports.CalendarComponent = CalendarComponent;
4448
4553
  exports.CardPriceComponent = CardPriceComponent;
4449
4554
  exports.CheckBoxRow = CheckBoxRow;
4450
4555
  exports.CheckboxComponent = CheckboxComponent;
4556
+ exports.ConfirmDeleteComponent = ConfirmDeleteComponent;
4451
4557
  exports.DebounceKeyupDirective = DebounceKeyupDirective;
4452
4558
  exports.DeleteComponent = DeleteComponent;
4453
4559
  exports.DropdownComponent = DropdownComponent;
@@ -4472,6 +4578,7 @@
4472
4578
  exports.LinkComponent = LinkComponent;
4473
4579
  exports.LoaderComponent = LoaderComponent;
4474
4580
  exports.LogoComponent = LogoComponent;
4581
+ exports.MosaicComponent = MosaicComponent;
4475
4582
  exports.MultipleSearchComponent = MultipleSearchComponent;
4476
4583
  exports.MultipleSearchPlusComponent = MultipleSearchPlusComponent;
4477
4584
  exports.PaginationComponent = PaginationComponent;