ngx-ode-ui 3.12.0-dev.13 → 3.12.0-dev.14
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.
- package/bundles/ngx-ode-ui.umd.js +93 -1
- package/bundles/ngx-ode-ui.umd.js.map +1 -1
- package/bundles/ngx-ode-ui.umd.min.js +1 -1
- package/bundles/ngx-ode-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/search-toolbar/search-toolbar.component.js +84 -0
- package/esm2015/lib/ngx-ode-ui.module.js +5 -2
- package/esm2015/ngx-ode-ui.js +2 -1
- package/esm5/lib/components/search-toolbar/search-toolbar.component.js +93 -0
- package/esm5/lib/ngx-ode-ui.module.js +5 -2
- package/esm5/ngx-ode-ui.js +2 -1
- package/fesm2015/ngx-ode-ui.js +86 -2
- package/fesm2015/ngx-ode-ui.js.map +1 -1
- package/fesm5/ngx-ode-ui.js +93 -2
- package/fesm5/ngx-ode-ui.js.map +1 -1
- package/lib/components/search-toolbar/search-toolbar.component.d.ts +34 -0
- package/ngx-ode-ui.d.ts +1 -0
- package/ngx-ode-ui.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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:.9em}"]
|
|
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
|
|