ngx-ode-ui 3.12.0-dev.1 → 3.12.0-dev.10
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 +256 -7
- 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/dropdown/dropdown.component.js +76 -0
- package/esm2015/lib/components/list/list.component.js +13 -2
- package/esm2015/lib/components/list-checkable/list-checkable.component.js +137 -0
- 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 +8 -2
- package/esm2015/ngx-ode-ui.js +3 -2
- package/esm2015/public-api.js +2 -1
- package/esm5/lib/components/dropdown/dropdown.component.js +81 -0
- package/esm5/lib/components/list/list.component.js +13 -2
- package/esm5/lib/components/list-checkable/list-checkable.component.js +148 -0
- 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 +8 -2
- package/esm5/ngx-ode-ui.js +3 -2
- package/esm5/public-api.js +2 -1
- package/fesm2015/ngx-ode-ui.js +242 -6
- package/fesm2015/ngx-ode-ui.js.map +1 -1
- package/fesm5/ngx-ode-ui.js +255 -8
- 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 +3 -0
- package/lib/components/list-checkable/list-checkable.component.d.ts +55 -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
- package/public-api.d.ts +1 -0
|
@@ -1577,6 +1577,8 @@
|
|
|
1577
1577
|
_this.model = [];
|
|
1578
1578
|
_this.searchPlaceholder = 'search';
|
|
1579
1579
|
_this.noResultsLabel = 'list.results.no.items';
|
|
1580
|
+
_this.isSearchActive = true;
|
|
1581
|
+
_this.searchInput = false;
|
|
1580
1582
|
_this.inputChange = new core.EventEmitter();
|
|
1581
1583
|
_this.onSelect = new core.EventEmitter();
|
|
1582
1584
|
_this.listChange = new core.EventEmitter();
|
|
@@ -1619,7 +1621,7 @@
|
|
|
1619
1621
|
ListComponent.decorators = [
|
|
1620
1622
|
{ type: core.Component, args: [{
|
|
1621
1623
|
selector: 'ode-list',
|
|
1622
|
-
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",
|
|
1623
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}"]
|
|
1624
1626
|
}] }
|
|
1625
1627
|
];
|
|
@@ -1635,6 +1637,9 @@
|
|
|
1635
1637
|
limit: [{ type: core.Input }],
|
|
1636
1638
|
searchPlaceholder: [{ type: core.Input }],
|
|
1637
1639
|
noResultsLabel: [{ type: core.Input }],
|
|
1640
|
+
isSearchActive: [{ type: core.Input }],
|
|
1641
|
+
searchInput: [{ type: core.Input }],
|
|
1642
|
+
searchSubmit: [{ type: core.Input }],
|
|
1638
1643
|
inputChange: [{ type: core.Output }],
|
|
1639
1644
|
onSelect: [{ type: core.Output }],
|
|
1640
1645
|
listChange: [{ type: core.Output }],
|
|
@@ -1666,6 +1671,12 @@
|
|
|
1666
1671
|
/** @type {?} */
|
|
1667
1672
|
ListComponent.prototype.noResultsLabel;
|
|
1668
1673
|
/** @type {?} */
|
|
1674
|
+
ListComponent.prototype.isSearchActive;
|
|
1675
|
+
/** @type {?} */
|
|
1676
|
+
ListComponent.prototype.searchInput;
|
|
1677
|
+
/** @type {?} */
|
|
1678
|
+
ListComponent.prototype.searchSubmit;
|
|
1679
|
+
/** @type {?} */
|
|
1669
1680
|
ListComponent.prototype.inputChange;
|
|
1670
1681
|
/** @type {?} */
|
|
1671
1682
|
ListComponent.prototype.onSelect;
|
|
@@ -1683,6 +1694,150 @@
|
|
|
1683
1694
|
ListComponent.prototype.ngClass;
|
|
1684
1695
|
}
|
|
1685
1696
|
|
|
1697
|
+
/**
|
|
1698
|
+
* @fileoverview added by tsickle
|
|
1699
|
+
* Generated from: lib/components/list-checkable/list-checkable.component.ts
|
|
1700
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1701
|
+
*/
|
|
1702
|
+
var ListCheckableComponent = /** @class */ (function (_super) {
|
|
1703
|
+
__extends(ListCheckableComponent, _super);
|
|
1704
|
+
function ListCheckableComponent(injector) {
|
|
1705
|
+
var _this = _super.call(this, injector) || this;
|
|
1706
|
+
_this.model = [];
|
|
1707
|
+
_this.noResultsLabel = 'list.results.no.items';
|
|
1708
|
+
_this.readOnly = false;
|
|
1709
|
+
_this.onCheck = new core.EventEmitter();
|
|
1710
|
+
_this.listChange = new core.EventEmitter();
|
|
1711
|
+
_this.scrolledDown = new core.EventEmitter();
|
|
1712
|
+
_this.areAllChecked = (/**
|
|
1713
|
+
* @return {?}
|
|
1714
|
+
*/
|
|
1715
|
+
function () { return false; });
|
|
1716
|
+
_this.isChecked = (/**
|
|
1717
|
+
* @param {?=} arg
|
|
1718
|
+
* @return {?}
|
|
1719
|
+
*/
|
|
1720
|
+
function (arg) { return false; });
|
|
1721
|
+
_this.isDisabled = (/**
|
|
1722
|
+
* @param {?=} arg
|
|
1723
|
+
* @return {?}
|
|
1724
|
+
*/
|
|
1725
|
+
function (arg) { return false; });
|
|
1726
|
+
_this.ngClass = (/**
|
|
1727
|
+
* @param {?=} arg
|
|
1728
|
+
* @return {?}
|
|
1729
|
+
*/
|
|
1730
|
+
function (arg) { return ({}); });
|
|
1731
|
+
/* Store pipe */
|
|
1732
|
+
_this.self = _this;
|
|
1733
|
+
_this._storedElements = [];
|
|
1734
|
+
return _this;
|
|
1735
|
+
}
|
|
1736
|
+
Object.defineProperty(ListCheckableComponent.prototype, "storedElements", {
|
|
1737
|
+
get: /**
|
|
1738
|
+
* @return {?}
|
|
1739
|
+
*/
|
|
1740
|
+
function () {
|
|
1741
|
+
return this._storedElements;
|
|
1742
|
+
},
|
|
1743
|
+
set: /**
|
|
1744
|
+
* @param {?} list
|
|
1745
|
+
* @return {?}
|
|
1746
|
+
*/
|
|
1747
|
+
function (list) {
|
|
1748
|
+
this._storedElements = list;
|
|
1749
|
+
this.listChange.emit(list);
|
|
1750
|
+
},
|
|
1751
|
+
enumerable: true,
|
|
1752
|
+
configurable: true
|
|
1753
|
+
});
|
|
1754
|
+
/**
|
|
1755
|
+
* @param {?} checkAll
|
|
1756
|
+
* @return {?}
|
|
1757
|
+
*/
|
|
1758
|
+
ListCheckableComponent.prototype.toggleAll = /**
|
|
1759
|
+
* @param {?} checkAll
|
|
1760
|
+
* @return {?}
|
|
1761
|
+
*/
|
|
1762
|
+
function (checkAll) {
|
|
1763
|
+
var _this = this;
|
|
1764
|
+
this.model.forEach((/**
|
|
1765
|
+
* @param {?} item
|
|
1766
|
+
* @return {?}
|
|
1767
|
+
*/
|
|
1768
|
+
function (item) {
|
|
1769
|
+
/** @type {?} */
|
|
1770
|
+
var isChecked = _this.isChecked(item);
|
|
1771
|
+
if (!_this.isDisabled(item)
|
|
1772
|
+
&& ((isChecked && !checkAll) || (!isChecked && checkAll))) {
|
|
1773
|
+
_this.onCheck.emit({ item: item, checked: checkAll });
|
|
1774
|
+
}
|
|
1775
|
+
}));
|
|
1776
|
+
};
|
|
1777
|
+
ListCheckableComponent.decorators = [
|
|
1778
|
+
{ type: core.Component, args: [{
|
|
1779
|
+
selector: 'ode-list-checkable',
|
|
1780
|
+
template: "<div class=\"list-checkable-wrapper\"\n infiniteScroll\n [scrollWindow]=\"false\"\n (scrolled)=\"scrolledDown.emit()\"\n [infiniteScrollThrottle]=\"50\">\n\n <ul *ngIf=\"storedElements && storedElements.length === 0\">\n <li class=\"no-results\"><span>{{ noResultsLabel | translate }}</span></li>\n </ul>\n \n <ul>\n <li class=\"select-all\" \n [class.checked]=\"areAllChecked()\"\n *ngIf=\"!readOnly\">\n <label>\n <span>{{(areAllChecked() ? 'ux.multiselect.deselect-all' : 'ux.multiselect.select-all') | translate}}</span>\n <input type=\"checkbox\" [checked]=\"areAllChecked()\" (change)=\"toggleAll($event.target.checked)\" />\n </label>\n </li>\n\n <li class=\"lct-list-checkable-item\" \n [class.checked]=\"isChecked(item)\"\n [class.disabled]=\"isDisabled(item)\"\n [ngClass]=\"ngClass(item)\"\n *ngFor=\"let item of model | filter: filters | store:self:'storedElements' | orderBy: sort | slice: 0:limit\">\n <label>\n <span>\n <ng-template [ngTemplateOutlet]=\"templateRef\" [ngTemplateOutletContext]=\"{$implicit: item}\"></ng-template> \n </span>\n <input *ngIf=\"!readOnly\" type=\"checkbox\" \n [disabled]=\"isDisabled(item)\"\n [checked]=\"isChecked(item)\"\n (change)=\"onCheck.emit({item:item, checked:$event.target.checked})\"/>\n </label>\n </li>\n </ul>\n\n</div>\n",
|
|
1781
|
+
styles: ["ul{margin:0;padding:0;font-size:.9em}ul li{border-top:1px solid #ddd;width:-webkit-fill-available;width:-moz-available;display:flex}ul li:not(.checked){color:#939393}ul li.disabled{pointer-events:none}ul li.select-all{background-color:#ff83520a;color:#5b6472}ul li.select-all span{text-align:right}ul li label{cursor:pointer;width:100%;display:flex}ul li label:hover{background-color:#eaedf2}ul li label span{padding:7px 15px;width:100%}ul li label input[type=checkbox]{margin-right:15px;-ms-grid-row-align:center;align-self:center}"]
|
|
1782
|
+
}] }
|
|
1783
|
+
];
|
|
1784
|
+
/** @nocollapse */
|
|
1785
|
+
ListCheckableComponent.ctorParameters = function () { return [
|
|
1786
|
+
{ type: core.Injector }
|
|
1787
|
+
]; };
|
|
1788
|
+
ListCheckableComponent.propDecorators = {
|
|
1789
|
+
model: [{ type: core.Input }],
|
|
1790
|
+
filters: [{ type: core.Input }],
|
|
1791
|
+
sort: [{ type: core.Input }],
|
|
1792
|
+
limit: [{ type: core.Input }],
|
|
1793
|
+
noResultsLabel: [{ type: core.Input }],
|
|
1794
|
+
readOnly: [{ type: core.Input }],
|
|
1795
|
+
onCheck: [{ type: core.Output }],
|
|
1796
|
+
listChange: [{ type: core.Output }],
|
|
1797
|
+
scrolledDown: [{ type: core.Output }],
|
|
1798
|
+
templateRef: [{ type: core.ContentChild, args: [core.TemplateRef, { static: false },] }],
|
|
1799
|
+
areAllChecked: [{ type: core.Input }],
|
|
1800
|
+
isChecked: [{ type: core.Input }],
|
|
1801
|
+
isDisabled: [{ type: core.Input }],
|
|
1802
|
+
ngClass: [{ type: core.Input }]
|
|
1803
|
+
};
|
|
1804
|
+
return ListCheckableComponent;
|
|
1805
|
+
}(ngxOdeCore.OdeComponent));
|
|
1806
|
+
if (false) {
|
|
1807
|
+
/** @type {?} */
|
|
1808
|
+
ListCheckableComponent.prototype.model;
|
|
1809
|
+
/** @type {?} */
|
|
1810
|
+
ListCheckableComponent.prototype.filters;
|
|
1811
|
+
/** @type {?} */
|
|
1812
|
+
ListCheckableComponent.prototype.sort;
|
|
1813
|
+
/** @type {?} */
|
|
1814
|
+
ListCheckableComponent.prototype.limit;
|
|
1815
|
+
/** @type {?} */
|
|
1816
|
+
ListCheckableComponent.prototype.noResultsLabel;
|
|
1817
|
+
/** @type {?} */
|
|
1818
|
+
ListCheckableComponent.prototype.readOnly;
|
|
1819
|
+
/** @type {?} */
|
|
1820
|
+
ListCheckableComponent.prototype.onCheck;
|
|
1821
|
+
/** @type {?} */
|
|
1822
|
+
ListCheckableComponent.prototype.listChange;
|
|
1823
|
+
/** @type {?} */
|
|
1824
|
+
ListCheckableComponent.prototype.scrolledDown;
|
|
1825
|
+
/** @type {?} */
|
|
1826
|
+
ListCheckableComponent.prototype.templateRef;
|
|
1827
|
+
/** @type {?} */
|
|
1828
|
+
ListCheckableComponent.prototype.areAllChecked;
|
|
1829
|
+
/** @type {?} */
|
|
1830
|
+
ListCheckableComponent.prototype.isChecked;
|
|
1831
|
+
/** @type {?} */
|
|
1832
|
+
ListCheckableComponent.prototype.isDisabled;
|
|
1833
|
+
/** @type {?} */
|
|
1834
|
+
ListCheckableComponent.prototype.ngClass;
|
|
1835
|
+
/** @type {?} */
|
|
1836
|
+
ListCheckableComponent.prototype.self;
|
|
1837
|
+
/** @type {?} */
|
|
1838
|
+
ListCheckableComponent.prototype._storedElements;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1686
1841
|
/**
|
|
1687
1842
|
* @fileoverview added by tsickle
|
|
1688
1843
|
* Generated from: lib/components/message-box/message-box.component.ts
|
|
@@ -2494,7 +2649,7 @@
|
|
|
2494
2649
|
MultiComboComponent.decorators = [
|
|
2495
2650
|
{ type: core.Component, args: [{
|
|
2496
2651
|
selector: 'ode-multi-combo',
|
|
2497
|
-
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",
|
|
2498
2653
|
host: {
|
|
2499
2654
|
'(document:click)': 'onClick($event)',
|
|
2500
2655
|
},
|
|
@@ -2985,6 +3140,9 @@
|
|
|
2985
3140
|
var _this = _super.call(this, injector) || this;
|
|
2986
3141
|
_this._elRef = _elRef;
|
|
2987
3142
|
_this._renderer = _renderer;
|
|
3143
|
+
/* Inputs / Outputs / View */
|
|
3144
|
+
_this.isSearchActive = false;
|
|
3145
|
+
_this.searchInput = false;
|
|
2988
3146
|
_this._delay = 200;
|
|
2989
3147
|
_this.onChange = new core.EventEmitter();
|
|
2990
3148
|
/* Internal logic */
|
|
@@ -2998,9 +3156,7 @@
|
|
|
2998
3156
|
function () {
|
|
2999
3157
|
return this._delay;
|
|
3000
3158
|
},
|
|
3001
|
-
|
|
3002
|
-
set: /* Inputs / Outputs / View */
|
|
3003
|
-
/**
|
|
3159
|
+
set: /**
|
|
3004
3160
|
* @param {?} d
|
|
3005
3161
|
* @return {?}
|
|
3006
3162
|
*/
|
|
@@ -3090,7 +3246,8 @@
|
|
|
3090
3246
|
SearchInputComponent.decorators = [
|
|
3091
3247
|
{ type: core.Component, args: [{
|
|
3092
3248
|
selector: 'ode-search-input',
|
|
3093
|
-
template: "<input type=\"search\" #searchBox (input)=\"search(searchBox.value)\"
|
|
3249
|
+
template: "<form\n class=\"search-container\"\n (ngSubmit)=\"searchInput && 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\" *ngIf=\"searchInput\">\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-icon{padding-left:0}:host .search-button{margin:0;background:#ff8352;color:#fff}"]
|
|
3094
3251
|
}] }
|
|
3095
3252
|
];
|
|
3096
3253
|
/** @nocollapse */
|
|
@@ -3100,6 +3257,9 @@
|
|
|
3100
3257
|
{ type: core.Renderer2 }
|
|
3101
3258
|
]; };
|
|
3102
3259
|
SearchInputComponent.propDecorators = {
|
|
3260
|
+
isSearchActive: [{ type: core.Input }],
|
|
3261
|
+
searchInput: [{ type: core.Input }],
|
|
3262
|
+
searchSubmit: [{ type: core.Input }],
|
|
3103
3263
|
delay: [{ type: core.Input }],
|
|
3104
3264
|
onChange: [{ type: core.Output }],
|
|
3105
3265
|
searchBox: [{ type: core.ViewChild, args: ['searchBox', { static: false },] }]
|
|
@@ -3107,6 +3267,12 @@
|
|
|
3107
3267
|
return SearchInputComponent;
|
|
3108
3268
|
}(ngxOdeCore.OdeComponent));
|
|
3109
3269
|
if (false) {
|
|
3270
|
+
/** @type {?} */
|
|
3271
|
+
SearchInputComponent.prototype.isSearchActive;
|
|
3272
|
+
/** @type {?} */
|
|
3273
|
+
SearchInputComponent.prototype.searchInput;
|
|
3274
|
+
/** @type {?} */
|
|
3275
|
+
SearchInputComponent.prototype.searchSubmit;
|
|
3110
3276
|
/**
|
|
3111
3277
|
* @type {?}
|
|
3112
3278
|
* @private
|
|
@@ -5191,6 +5357,83 @@
|
|
|
5191
5357
|
return el.triggerEventHandler('click', null);
|
|
5192
5358
|
}
|
|
5193
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
|
+
|
|
5194
5437
|
/**
|
|
5195
5438
|
* @fileoverview added by tsickle
|
|
5196
5439
|
* Generated from: lib/ngx-ode-ui.module.ts
|
|
@@ -5239,6 +5482,7 @@
|
|
|
5239
5482
|
LightBoxComponent,
|
|
5240
5483
|
LightboxConfirmComponent,
|
|
5241
5484
|
ListComponent,
|
|
5485
|
+
ListCheckableComponent,
|
|
5242
5486
|
MonoSelectComponent,
|
|
5243
5487
|
MultiSelectComponent,
|
|
5244
5488
|
MultiComboComponent,
|
|
@@ -5273,7 +5517,8 @@
|
|
|
5273
5517
|
LocalizedDatePipe,
|
|
5274
5518
|
BytesPipe,
|
|
5275
5519
|
KeysPipe,
|
|
5276
|
-
LengthPipe
|
|
5520
|
+
LengthPipe,
|
|
5521
|
+
DropdownComponent
|
|
5277
5522
|
],
|
|
5278
5523
|
imports: [
|
|
5279
5524
|
common.CommonModule,
|
|
@@ -5290,6 +5535,7 @@
|
|
|
5290
5535
|
LightBoxComponent,
|
|
5291
5536
|
LightboxConfirmComponent,
|
|
5292
5537
|
ListComponent,
|
|
5538
|
+
ListCheckableComponent,
|
|
5293
5539
|
MonoSelectComponent,
|
|
5294
5540
|
MultiSelectComponent,
|
|
5295
5541
|
MultiComboComponent,
|
|
@@ -5309,6 +5555,7 @@
|
|
|
5309
5555
|
SpinnerCubeComponent,
|
|
5310
5556
|
PagerComponent,
|
|
5311
5557
|
EllipsisComponent,
|
|
5558
|
+
DropdownComponent,
|
|
5312
5559
|
// directives
|
|
5313
5560
|
AnchorDirective,
|
|
5314
5561
|
DynamicTemplateDirective,
|
|
@@ -5355,6 +5602,7 @@
|
|
|
5355
5602
|
exports.LightBoxComponent = LightBoxComponent;
|
|
5356
5603
|
exports.LightboxConfirmComponent = LightboxConfirmComponent;
|
|
5357
5604
|
exports.LimitPipe = LimitPipe;
|
|
5605
|
+
exports.ListCheckableComponent = ListCheckableComponent;
|
|
5358
5606
|
exports.ListComponent = ListComponent;
|
|
5359
5607
|
exports.LocalizedDatePipe = LocalizedDatePipe;
|
|
5360
5608
|
exports.MessageBoxComponent = MessageBoxComponent;
|
|
@@ -5389,6 +5637,7 @@
|
|
|
5389
5637
|
exports.standardise = standardise;
|
|
5390
5638
|
exports.toDecimal = toDecimal;
|
|
5391
5639
|
exports.trim = trim;
|
|
5640
|
+
exports.ɵa = DropdownComponent;
|
|
5392
5641
|
|
|
5393
5642
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5394
5643
|
|