ngx-ode-ui 3.12.0-dev.4 → 3.12.0-dev.9
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 +106 -8
- package/bundles/ngx-ode-ui.umd.js.map +1 -1
- package/bundles/ngx-ode-ui.umd.min.js +2 -2
- package/bundles/ngx-ode-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/dropdown/dropdown.component.js +76 -0
- package/esm2015/lib/components/list/list.component.js +10 -3
- package/esm2015/lib/components/multi-combo/multi-combo.component.js +2 -2
- package/esm2015/lib/components/search-input/search-input.component.js +15 -3
- package/esm2015/lib/ngx-ode-ui.module.js +5 -2
- package/esm2015/ngx-ode-ui.js +2 -1
- package/esm5/lib/components/dropdown/dropdown.component.js +81 -0
- package/esm5/lib/components/list/list.component.js +10 -3
- package/esm5/lib/components/multi-combo/multi-combo.component.js +2 -2
- package/esm5/lib/components/search-input/search-input.component.js +16 -5
- package/esm5/lib/ngx-ode-ui.module.js +5 -2
- package/esm5/ngx-ode-ui.js +2 -1
- package/fesm2015/ngx-ode-ui.js +102 -7
- package/fesm2015/ngx-ode-ui.js.map +1 -1
- package/fesm5/ngx-ode-ui.js +106 -9
- package/fesm5/ngx-ode-ui.js.map +1 -1
- package/lib/components/dropdown/dropdown.component.d.ts +36 -0
- package/lib/components/list/list.component.d.ts +2 -0
- package/lib/components/search-input/search-input.component.d.ts +3 -0
- package/ngx-ode-ui.d.ts +1 -0
- package/ngx-ode-ui.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1577,7 +1577,8 @@
|
|
|
1577
1577
|
_this.model = [];
|
|
1578
1578
|
_this.searchPlaceholder = 'search';
|
|
1579
1579
|
_this.noResultsLabel = 'list.results.no.items';
|
|
1580
|
-
_this.
|
|
1580
|
+
_this.isSearchActive = true;
|
|
1581
|
+
_this.searchInput = false;
|
|
1581
1582
|
_this.inputChange = new core.EventEmitter();
|
|
1582
1583
|
_this.onSelect = new core.EventEmitter();
|
|
1583
1584
|
_this.listChange = new core.EventEmitter();
|
|
@@ -1620,7 +1621,7 @@
|
|
|
1620
1621
|
ListComponent.decorators = [
|
|
1621
1622
|
{ type: core.Component, args: [{
|
|
1622
1623
|
selector: 'ode-list',
|
|
1623
|
-
template: "<ode-search-input
|
|
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</div>\n",
|
|
1624
1625
|
styles: ["ul{margin:0;padding:0;font-size:.9em}ul li{cursor:pointer;border-top:1px solid #ddd;padding:10px}ul li.disabled{pointer-events:none}"]
|
|
1625
1626
|
}] }
|
|
1626
1627
|
];
|
|
@@ -1636,7 +1637,9 @@
|
|
|
1636
1637
|
limit: [{ type: core.Input }],
|
|
1637
1638
|
searchPlaceholder: [{ type: core.Input }],
|
|
1638
1639
|
noResultsLabel: [{ type: core.Input }],
|
|
1640
|
+
isSearchActive: [{ type: core.Input }],
|
|
1639
1641
|
searchInput: [{ type: core.Input }],
|
|
1642
|
+
searchSubmit: [{ type: core.Input }],
|
|
1640
1643
|
inputChange: [{ type: core.Output }],
|
|
1641
1644
|
onSelect: [{ type: core.Output }],
|
|
1642
1645
|
listChange: [{ type: core.Output }],
|
|
@@ -1668,8 +1671,12 @@
|
|
|
1668
1671
|
/** @type {?} */
|
|
1669
1672
|
ListComponent.prototype.noResultsLabel;
|
|
1670
1673
|
/** @type {?} */
|
|
1674
|
+
ListComponent.prototype.isSearchActive;
|
|
1675
|
+
/** @type {?} */
|
|
1671
1676
|
ListComponent.prototype.searchInput;
|
|
1672
1677
|
/** @type {?} */
|
|
1678
|
+
ListComponent.prototype.searchSubmit;
|
|
1679
|
+
/** @type {?} */
|
|
1673
1680
|
ListComponent.prototype.inputChange;
|
|
1674
1681
|
/** @type {?} */
|
|
1675
1682
|
ListComponent.prototype.onSelect;
|
|
@@ -2642,7 +2649,7 @@
|
|
|
2642
2649
|
MultiComboComponent.decorators = [
|
|
2643
2650
|
{ type: core.Component, args: [{
|
|
2644
2651
|
selector: 'ode-multi-combo',
|
|
2645
|
-
template: "<button (click)=\"toggleVisibility()\"\n [ngClass]=\"{ opened: show }\"\n [disabled]=\"disabled\">\n {{ title }}\n</button>\n<div [ngClass]=\"{ hidden: !show }\">\n <div class=\"options\">\n <button class=\"select-all\" (click)=\"selectAll()\" *ngIf=\"!maxSelected\"\n [title]=\"labels('select.all')\">{{ labels('select.all') }}</button>\n <button class=\"deselect-all\" (click)=\"deselectAll()\"\n [title]=\"labels('deselect.all')\">{{ labels('deselect.all') }}</button>\n </div>\n <div *ngIf=\"filter\" class=\"filter\">\n <ode-search-input (onChange)=\"search.input = $event\" [attr.placeholder]=\"labels('search')\"></ode-search-input>\n </div>\n <ul>\n <li *ngFor=\"let item of _comboModel | filter: getFilter() | orderBy: orderBy | store: self:'filteredComboModel'\"\n (click)=\"toggleItem(item)\"\n [ngClass]=\"{ selected: isSelected(item) }\"\n [attr.disabled]=\"isDisabled()\">\n {{ displayItem(item) | translate }}\n </li>\n </ul>\n</div>\n",
|
|
2652
|
+
template: "<button (click)=\"toggleVisibility()\"\n [ngClass]=\"{ opened: show }\"\n [disabled]=\"disabled\"\n type=\"button\">\n {{ title }}\n</button>\n<div [ngClass]=\"{ hidden: !show }\">\n <div class=\"options\">\n <button class=\"select-all\" (click)=\"selectAll()\" *ngIf=\"!maxSelected\"\n [title]=\"labels('select.all')\" type=\"button\">{{ labels('select.all') }}</button>\n <button class=\"deselect-all\" (click)=\"deselectAll()\"\n [title]=\"labels('deselect.all')\" type=\"button\">{{ labels('deselect.all') }}</button>\n </div>\n <div *ngIf=\"filter\" class=\"filter\">\n <ode-search-input (onChange)=\"search.input = $event\" [attr.placeholder]=\"labels('search')\"></ode-search-input>\n </div>\n <ul>\n <li *ngFor=\"let item of _comboModel | filter: getFilter() | orderBy: orderBy | store: self:'filteredComboModel'\"\n (click)=\"toggleItem(item)\"\n [ngClass]=\"{ selected: isSelected(item) }\"\n [attr.disabled]=\"isDisabled()\">\n {{ displayItem(item) | translate }}\n </li>\n </ul>\n</div>\n",
|
|
2646
2653
|
host: {
|
|
2647
2654
|
'(document:click)': 'onClick($event)',
|
|
2648
2655
|
},
|
|
@@ -3133,6 +3140,9 @@
|
|
|
3133
3140
|
var _this = _super.call(this, injector) || this;
|
|
3134
3141
|
_this._elRef = _elRef;
|
|
3135
3142
|
_this._renderer = _renderer;
|
|
3143
|
+
/* Inputs / Outputs / View */
|
|
3144
|
+
_this.isSearchActive = false;
|
|
3145
|
+
_this.searchInput = false;
|
|
3136
3146
|
_this._delay = 200;
|
|
3137
3147
|
_this.onChange = new core.EventEmitter();
|
|
3138
3148
|
/* Internal logic */
|
|
@@ -3146,9 +3156,7 @@
|
|
|
3146
3156
|
function () {
|
|
3147
3157
|
return this._delay;
|
|
3148
3158
|
},
|
|
3149
|
-
|
|
3150
|
-
set: /* Inputs / Outputs / View */
|
|
3151
|
-
/**
|
|
3159
|
+
set: /**
|
|
3152
3160
|
* @param {?} d
|
|
3153
3161
|
* @return {?}
|
|
3154
3162
|
*/
|
|
@@ -3238,7 +3246,8 @@
|
|
|
3238
3246
|
SearchInputComponent.decorators = [
|
|
3239
3247
|
{ type: core.Component, args: [{
|
|
3240
3248
|
selector: 'ode-search-input',
|
|
3241
|
-
template: "<input type=\"search\" #searchBox (input)=\"search(searchBox.value)\"
|
|
3249
|
+
template: "<form\n *ngIf=\"searchInput\"\n class=\"search-container\"\n (ngSubmit)=\"searchSubmit()\">\n <input\n #searchBox\n class=\"search-input\"\n name=\"searchTerm\"\n type=\"search\"\n (input)=\"search(searchBox.value)\" />\n <button class=\"search-button\">\n <i class=\"fa fa-search is-size-4 search-icon\"></i>\n </button>\n</form>\n\n<input *ngIf=\"!searchInput\" type=\"search\" #searchBox (input)=\"search(searchBox.value)\"/>",
|
|
3250
|
+
styles: [":host .search-container{margin:0;display:flex}:host .search-input{border:1px solid rgba(0,0,0,.1)}:host .search-icon{padding-left:0}:host .search-button{margin:0;background:#ff8352;color:#fff}"]
|
|
3242
3251
|
}] }
|
|
3243
3252
|
];
|
|
3244
3253
|
/** @nocollapse */
|
|
@@ -3248,6 +3257,9 @@
|
|
|
3248
3257
|
{ type: core.Renderer2 }
|
|
3249
3258
|
]; };
|
|
3250
3259
|
SearchInputComponent.propDecorators = {
|
|
3260
|
+
isSearchActive: [{ type: core.Input }],
|
|
3261
|
+
searchInput: [{ type: core.Input }],
|
|
3262
|
+
searchSubmit: [{ type: core.Input }],
|
|
3251
3263
|
delay: [{ type: core.Input }],
|
|
3252
3264
|
onChange: [{ type: core.Output }],
|
|
3253
3265
|
searchBox: [{ type: core.ViewChild, args: ['searchBox', { static: false },] }]
|
|
@@ -3255,6 +3267,12 @@
|
|
|
3255
3267
|
return SearchInputComponent;
|
|
3256
3268
|
}(ngxOdeCore.OdeComponent));
|
|
3257
3269
|
if (false) {
|
|
3270
|
+
/** @type {?} */
|
|
3271
|
+
SearchInputComponent.prototype.isSearchActive;
|
|
3272
|
+
/** @type {?} */
|
|
3273
|
+
SearchInputComponent.prototype.searchInput;
|
|
3274
|
+
/** @type {?} */
|
|
3275
|
+
SearchInputComponent.prototype.searchSubmit;
|
|
3258
3276
|
/**
|
|
3259
3277
|
* @type {?}
|
|
3260
3278
|
* @private
|
|
@@ -5339,6 +5357,83 @@
|
|
|
5339
5357
|
return el.triggerEventHandler('click', null);
|
|
5340
5358
|
}
|
|
5341
5359
|
|
|
5360
|
+
/**
|
|
5361
|
+
* @fileoverview added by tsickle
|
|
5362
|
+
* Generated from: lib/components/dropdown/dropdown.component.ts
|
|
5363
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5364
|
+
*/
|
|
5365
|
+
/**
|
|
5366
|
+
* DropdownComponent is an alternative to the MonoSelectComponent.
|
|
5367
|
+
* Accept everything inside <ng-content> but should work with <ode-list> component
|
|
5368
|
+
*
|
|
5369
|
+
* Simple Dropdown Component without search:
|
|
5370
|
+
* [isSearchActive] can be set to false to disable search input in <ode-list>
|
|
5371
|
+
* ```
|
|
5372
|
+
* <ode-dropdown
|
|
5373
|
+
* [name]="option_name"
|
|
5374
|
+
* [isDropdownOpened]="a_boolean"
|
|
5375
|
+
* (onDropdown)="toggle_func"
|
|
5376
|
+
* >
|
|
5377
|
+
* <ode-list
|
|
5378
|
+
* [model]="model"
|
|
5379
|
+
* [filters]="filters"
|
|
5380
|
+
* (onSelect)="func_to_select_elem($event)"
|
|
5381
|
+
* (inputChange)="a_string_for_input_value = $event"
|
|
5382
|
+
* noResultsLabel="text_to_display"
|
|
5383
|
+
* searchPlaceholder="default_placeholder_text"
|
|
5384
|
+
* >
|
|
5385
|
+
* <ng-template let-item>
|
|
5386
|
+
* <div>{{ item.name }}</div>
|
|
5387
|
+
* </ng-template>
|
|
5388
|
+
* </ode-list>
|
|
5389
|
+
* </ode-dropdown>
|
|
5390
|
+
* `̀``
|
|
5391
|
+
*/
|
|
5392
|
+
var DropdownComponent = /** @class */ (function (_super) {
|
|
5393
|
+
__extends(DropdownComponent, _super);
|
|
5394
|
+
function DropdownComponent(injector) {
|
|
5395
|
+
var _this = _super.call(this, injector) || this;
|
|
5396
|
+
_this.name = '';
|
|
5397
|
+
_this.isDropdownOpened = false;
|
|
5398
|
+
_this.onDropdown = new core.EventEmitter();
|
|
5399
|
+
return _this;
|
|
5400
|
+
}
|
|
5401
|
+
/**
|
|
5402
|
+
* @return {?}
|
|
5403
|
+
*/
|
|
5404
|
+
DropdownComponent.prototype.ngOnInit = /**
|
|
5405
|
+
* @return {?}
|
|
5406
|
+
*/
|
|
5407
|
+
function () {
|
|
5408
|
+
_super.prototype.ngOnInit.call(this);
|
|
5409
|
+
};
|
|
5410
|
+
DropdownComponent.decorators = [
|
|
5411
|
+
{ type: core.Component, args: [{
|
|
5412
|
+
selector: 'ode-dropdown',
|
|
5413
|
+
template: "<div class=\"dropdown\" [ngClass]=\"isDropdownOpened ? 'open' : ''\">\n <button (click)=\"onDropdown.emit()\" class=\"dropdown-trigger\">\n <span class=\"cell-ellipsis\">{{ name }}</span> <i class=\"fonticon arrow-select\"></i>\n </button>\n <div class=\"dropdown-list\">\n <ng-content></ng-content>\n </div>\n</div>\n",
|
|
5414
|
+
styles: [".dropdown{position:relative;width:230px;box-sizing:border-box}.dropdown *{box-sizing:border-box}.dropdown-trigger{cursor:pointer;display:inline-flex;align-items:center;justify-content:space-between;padding:12px 16px;font-size:14px;color:#4a4a4a;text-transform:uppercase;text-align:left;width:100%;border-radius:8px;border:1px solid #7a7a7a;background-color:#fff}.dropdown-trigger>span{display:inline-block;max-width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.dropdown-trigger i.arrow-select{display:inline-block;float:none!important;padding-left:0;transform:rotate(180deg);transform-origin:center center}.dropdown-trigger:hover{color:#4a4a4a;border-color:#7a7a7a;background-color:#fff}.dropdown-trigger:hover i.arrow-select{color:#4a4a4a!important}.dropdown-list{display:none;position:absolute;overflow:hidden;z-index:2;top:100%;left:0;right:0;width:316px;box-shadow:0 4px 12px 0 rgba(0,0,0,.15);border-radius:8px;background-color:#fff}.dropdown::ng-deep ode-list li{justify-content:flex-start}.dropdown::ng-deep ode-list input[type=search]{padding:12px 16px}.dropdown.open .dropdown-list{display:block}.dropdown.open i.arrow-select{transform:rotate(0)}"]
|
|
5415
|
+
}] }
|
|
5416
|
+
];
|
|
5417
|
+
/** @nocollapse */
|
|
5418
|
+
DropdownComponent.ctorParameters = function () { return [
|
|
5419
|
+
{ type: core.Injector }
|
|
5420
|
+
]; };
|
|
5421
|
+
DropdownComponent.propDecorators = {
|
|
5422
|
+
name: [{ type: core.Input }],
|
|
5423
|
+
isDropdownOpened: [{ type: core.Input }],
|
|
5424
|
+
onDropdown: [{ type: core.Output }]
|
|
5425
|
+
};
|
|
5426
|
+
return DropdownComponent;
|
|
5427
|
+
}(ngxOdeCore.OdeComponent));
|
|
5428
|
+
if (false) {
|
|
5429
|
+
/** @type {?} */
|
|
5430
|
+
DropdownComponent.prototype.name;
|
|
5431
|
+
/** @type {?} */
|
|
5432
|
+
DropdownComponent.prototype.isDropdownOpened;
|
|
5433
|
+
/** @type {?} */
|
|
5434
|
+
DropdownComponent.prototype.onDropdown;
|
|
5435
|
+
}
|
|
5436
|
+
|
|
5342
5437
|
/**
|
|
5343
5438
|
* @fileoverview added by tsickle
|
|
5344
5439
|
* Generated from: lib/ngx-ode-ui.module.ts
|
|
@@ -5422,7 +5517,8 @@
|
|
|
5422
5517
|
LocalizedDatePipe,
|
|
5423
5518
|
BytesPipe,
|
|
5424
5519
|
KeysPipe,
|
|
5425
|
-
LengthPipe
|
|
5520
|
+
LengthPipe,
|
|
5521
|
+
DropdownComponent
|
|
5426
5522
|
],
|
|
5427
5523
|
imports: [
|
|
5428
5524
|
common.CommonModule,
|
|
@@ -5459,6 +5555,7 @@
|
|
|
5459
5555
|
SpinnerCubeComponent,
|
|
5460
5556
|
PagerComponent,
|
|
5461
5557
|
EllipsisComponent,
|
|
5558
|
+
DropdownComponent,
|
|
5462
5559
|
// directives
|
|
5463
5560
|
AnchorDirective,
|
|
5464
5561
|
DynamicTemplateDirective,
|
|
@@ -5540,6 +5637,7 @@
|
|
|
5540
5637
|
exports.standardise = standardise;
|
|
5541
5638
|
exports.toDecimal = toDecimal;
|
|
5542
5639
|
exports.trim = trim;
|
|
5640
|
+
exports.ɵa = DropdownComponent;
|
|
5543
5641
|
|
|
5544
5642
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5545
5643
|
|