ng-tailwind 2.26.347 → 2.26.348
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/ng-tailwind.umd.js +2 -1
- package/bundles/ng-tailwind.umd.js.map +1 -1
- package/components/ngt-select/ngt-select.component.d.ts +1 -0
- package/esm2015/components/ngt-select/ngt-select.component.js +3 -2
- package/fesm2015/ng-tailwind.js +2 -1
- package/fesm2015/ng-tailwind.js.map +1 -1
- package/ng-tailwind.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3426,7 +3426,7 @@
|
|
|
3426
3426
|
return (items === null || items === void 0 ? void 0 : items.length) && typeof items[0].value['getAttribute'] === 'function';
|
|
3427
3427
|
};
|
|
3428
3428
|
NgtSelectComponent.prototype.canLoadItems = function () {
|
|
3429
|
-
return !this.isDisabled && this.wasClicked;
|
|
3429
|
+
return this.autoLoad || (!this.isDisabled && this.wasClicked);
|
|
3430
3430
|
};
|
|
3431
3431
|
NgtSelectComponent.prototype.destroySubscriptions = function () {
|
|
3432
3432
|
this.subscriptions.forEach(function (subscription) { return subscription.unsubscribe(); });
|
|
@@ -3480,6 +3480,7 @@
|
|
|
3480
3480
|
labelForId: [{ type: core.Input }],
|
|
3481
3481
|
dropdownPanelMinHeight: [{ type: core.Input }],
|
|
3482
3482
|
name: [{ type: core.Input }],
|
|
3483
|
+
autoLoad: [{ type: core.Input }],
|
|
3483
3484
|
allowCreate: [{ type: core.Input }],
|
|
3484
3485
|
allowOriginalItemsUnselect: [{ type: core.Input }],
|
|
3485
3486
|
isDisabled: [{ type: core.Input }],
|