ngx-ode-ui 3.12.0-dev.13 → 3.12.0-dev.16

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.
@@ -1622,7 +1622,7 @@
1622
1622
  { type: core.Component, args: [{
1623
1623
  selector: 'ode-list',
1624
1624
  template: "<ode-search-input\n *ngIf=\"isSearchActive\"\n [searchInput]=\"searchInput\"\n [searchSubmit]=\"searchSubmit\"\n [attr.placeholder]=\"searchPlaceholder | translate\"\n (onChange)=\"inputChange.emit($event)\"></ode-search-input>\n<div class=\"toolbar\">\n <ng-content select=\"[toolbar]\"></ng-content>\n</div>\n<div class=\"list-wrapper\"\n infiniteScroll\n [scrollWindow]=\"false\"\n (scrolled)=\"scrolledDown.emit()\"\n [infiniteScrollThrottle]=\"50\">\n <ul>\n <li *ngFor=\"let item of model | filter: filters | filter: inputFilter | store:self:'storedElements' | orderBy: sort | slice: 0:limit\"\n (click)=\"onSelect.emit(item)\"\n [class.selected]=\"isSelected(item)\"\n [class.disabled]=\"isDisabled(item)\"\n [ngClass]=\"ngClass(item)\"\n class=\"lct-list-item\">\n <ng-template [ngTemplateOutlet]=\"templateRef\" [ngTemplateOutletContext]=\"{$implicit: item}\">\n </ng-template>\n </li>\n </ul>\n <ul *ngIf=\"storedElements && storedElements.length === 0\">\n <li class=\"no-results\">{{ noResultsLabel | translate }}</li>\n </ul>\n <ul *ngIf=\"!model\">\n <li class=\"placeholder\">{{ placeholder | translate }}</li>\n </ul>\n</div>\n",
1625
- styles: ["ul{margin:0;padding:0;font-size:.9em}ul li{cursor:pointer;border-top:1px solid #ddd;padding:10px}ul li.no-results{padding:50px;text-align:center;font-style:italic}ul li.no-results:hover{cursor:default!important;background-color:inherit!important}ul li.placeholder{color:#aaa;padding:50px;text-align:center}ul li.placeholder:hover{cursor:default!important;background-color:inherit!important}ul li.disabled{pointer-events:none}.list-wrapper{min-height:30vh}"]
1625
+ styles: ["ul{margin:0;padding:0;font-size:.9em}ul li{cursor:pointer;border-top:1px solid #ddd;padding:10px}ul li.no-results{padding:50px;text-align:center;font-style:italic}ul li.no-results:hover{cursor:default!important;background-color:inherit!important}ul li.placeholder{color:#aaa;padding:2rem;text-align:left}ul li.placeholder:hover{cursor:default!important;background-color:inherit!important}ul li.disabled{pointer-events:none}"]
1626
1626
  }] }
1627
1627
  ];
1628
1628
  /** @nocollapse */
@@ -5437,6 +5437,95 @@
5437
5437
  DropdownComponent.prototype.onDropdown;
5438
5438
  }
5439
5439
 
5440
+ /**
5441
+ * @fileoverview added by tsickle
5442
+ * Generated from: lib/components/search-toolbar/search-toolbar.component.ts
5443
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5444
+ */
5445
+ /**
5446
+ * Search Toolbar component.
5447
+ * Used within List component, Search Toolbar will display following information:
5448
+ * - Label of the search filter section (example: 'Search by')
5449
+ * - List of search type filters (example: 'Name', 'Email' , ...)
5450
+ * - Number of items returned by the search
5451
+ *
5452
+ * ```
5453
+ * <ode-search-toolbar
5454
+ * [label]="'user.searchType.label'"
5455
+ * [searchTypes]="searchTypes"
5456
+ * [nbItem]="nbUser || 0"
5457
+ * [nbItemLabel]="'list.results.users'"
5458
+ * (selectSearchType)="handleSelectSearchType($event)"
5459
+ * >
5460
+ * </ode-search-toolbar>
5461
+ * ```
5462
+ */
5463
+ var SearchToolbarComponent = /** @class */ (function (_super) {
5464
+ __extends(SearchToolbarComponent, _super);
5465
+ function SearchToolbarComponent(injector) {
5466
+ var _this = _super.call(this, injector) || this;
5467
+ _this.nbItem = 0;
5468
+ _this.selectSearchType = new core.EventEmitter();
5469
+ return _this;
5470
+ }
5471
+ /**
5472
+ * @return {?}
5473
+ */
5474
+ SearchToolbarComponent.prototype.ngOnInit = /**
5475
+ * @return {?}
5476
+ */
5477
+ function () {
5478
+ if (this.searchTypes && this.searchTypes.length > 0) {
5479
+ this.selectedSearchTypeValue = this.searchTypes[0].value;
5480
+ }
5481
+ };
5482
+ /**
5483
+ * @param {?} searchTypeValue
5484
+ * @return {?}
5485
+ */
5486
+ SearchToolbarComponent.prototype.handleSearchTypeClick = /**
5487
+ * @param {?} searchTypeValue
5488
+ * @return {?}
5489
+ */
5490
+ function (searchTypeValue) {
5491
+ this.selectedSearchTypeValue = searchTypeValue;
5492
+ this.selectSearchType.emit(searchTypeValue);
5493
+ };
5494
+ SearchToolbarComponent.decorators = [
5495
+ { type: core.Component, args: [{
5496
+ selector: 'ode-search-toolbar',
5497
+ template: "<div class=\"search-toolbar\">\n <div class=\"search-toolbar-label\">\n <s5l>{{ label }}</s5l>\n <button\n *ngFor=\"let searchType of searchTypes\"\n class=\"button has-left-margin-5\"\n [ngClass]=\"{\n 'is-selected': searchType.value === selectedSearchTypeValue\n }\"\n (click)=\"handleSearchTypeClick(searchType.value)\"\n >\n <s5l>{{ searchType.label }}</s5l>\n </button>\n </div>\n <div>\n <strong class=\"badge\">{{ nbItem }} <s5l>{{ nbItemLabel }}</s5l></strong>\n </div>\n</div>\n",
5498
+ styles: [".search-toolbar{display:flex;align-items:center;justify-content:space-between;padding:15px}.search-toolbar .search-toolbar-label{font-size:.85rem}.search-toolbar .search-toolbar-label .button{padding:4px 12px;border-radius:20px;font-size:12px;border-width:2px;border-color:#ff8d2e}"]
5499
+ }] }
5500
+ ];
5501
+ /** @nocollapse */
5502
+ SearchToolbarComponent.ctorParameters = function () { return [
5503
+ { type: core.Injector }
5504
+ ]; };
5505
+ SearchToolbarComponent.propDecorators = {
5506
+ label: [{ type: core.Input }],
5507
+ searchTypes: [{ type: core.Input }],
5508
+ nbItem: [{ type: core.Input }],
5509
+ nbItemLabel: [{ type: core.Input }],
5510
+ selectSearchType: [{ type: core.Output }]
5511
+ };
5512
+ return SearchToolbarComponent;
5513
+ }(ngxOdeCore.OdeComponent));
5514
+ if (false) {
5515
+ /** @type {?} */
5516
+ SearchToolbarComponent.prototype.label;
5517
+ /** @type {?} */
5518
+ SearchToolbarComponent.prototype.searchTypes;
5519
+ /** @type {?} */
5520
+ SearchToolbarComponent.prototype.nbItem;
5521
+ /** @type {?} */
5522
+ SearchToolbarComponent.prototype.nbItemLabel;
5523
+ /** @type {?} */
5524
+ SearchToolbarComponent.prototype.selectSearchType;
5525
+ /** @type {?} */
5526
+ SearchToolbarComponent.prototype.selectedSearchTypeValue;
5527
+ }
5528
+
5440
5529
  /**
5441
5530
  * @fileoverview added by tsickle
5442
5531
  * Generated from: lib/ngx-ode-ui.module.ts
@@ -5521,7 +5610,8 @@
5521
5610
  BytesPipe,
5522
5611
  KeysPipe,
5523
5612
  LengthPipe,
5524
- DropdownComponent
5613
+ DropdownComponent,
5614
+ SearchToolbarComponent
5525
5615
  ],
5526
5616
  imports: [
5527
5617
  common.CommonModule,
@@ -5559,6 +5649,7 @@
5559
5649
  PagerComponent,
5560
5650
  EllipsisComponent,
5561
5651
  DropdownComponent,
5652
+ SearchToolbarComponent,
5562
5653
  // directives
5563
5654
  AnchorDirective,
5564
5655
  DynamicTemplateDirective,
@@ -5641,6 +5732,7 @@
5641
5732
  exports.toDecimal = toDecimal;
5642
5733
  exports.trim = trim;
5643
5734
  exports.ɵa = DropdownComponent;
5735
+ exports.ɵb = SearchToolbarComponent;
5644
5736
 
5645
5737
  Object.defineProperty(exports, '__esModule', { value: true });
5646
5738