@wizishop/angular-components 0.0.38 → 0.0.39

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.
@@ -1359,6 +1359,9 @@ $wac-button-tab-background: #EAEDF5!default;
1359
1359
  margin-right: 5px;
1360
1360
  text-align: center;
1361
1361
  }
1362
+ span {
1363
+ white-space: nowrap;
1364
+ }
1362
1365
 
1363
1366
  &:hover {
1364
1367
  background-color: $wac-gray-background;
@@ -1000,7 +1000,7 @@
1000
1000
  DropdownComponent.decorators = [
1001
1001
  { type: i0.Component, args: [{
1002
1002
  selector: 'wac-dropdown',
1003
- template: "<div class=\"wac-dropdown\">\n <div class=\"wac-dropdown__wrapper\">\n <i class=\"wac-dropdown__wrapper__icon far fa-ellipsis-v\"></i>\n <div class=\"wac-dropdown__wrapper__sublevel\">\n <ul class=\"wac-dropdown__wrapper__sublevel__container\">\n <li\n *ngFor=\"let item of items\"\n class=\"wac-dropdown__wrapper__sublevel__container__item\"\n (click)=\"onUserInput(item.index)\"\n >\n <i\n *ngIf=\"hasIcons\"\n [class]=\"item.icon\"\n [style.font-size.px]=\"item.iconFontSize ? item.iconFontSize : '14'\"\n ></i>\n {{ item.label }}\n </li>\n </ul>\n </div>\n </div>\n</div>\n"
1003
+ template: "<div class=\"wac-dropdown\">\n <div class=\"wac-dropdown__wrapper\">\n <i class=\"wac-dropdown__wrapper__icon far fa-ellipsis-v\"></i>\n <div class=\"wac-dropdown__wrapper__sublevel\">\n <ul class=\"wac-dropdown__wrapper__sublevel__container\">\n <li\n *ngFor=\"let item of items\"\n class=\"wac-dropdown__wrapper__sublevel__container__item\"\n (click)=\"onUserInput(item.index)\"\n >\n <i\n *ngIf=\"hasIcons\"\n [class]=\"item.icon\"\n [style.font-size.px]=\"item.iconFontSize ? item.iconFontSize : '14'\"\n ></i>\n <span>{{ item.label }}</span>\n </li>\n </ul>\n </div>\n </div>\n</div>\n"
1004
1004
  },] }
1005
1005
  ];
1006
1006
  DropdownComponent.ctorParameters = function () { return []; };