bbj-screen-widget 2.4.48 → 2.4.49
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/bbj-screen-widget.metadata.json +1 -1
- package/bundles/bbj-screen-widget.umd.js +11 -0
- package/bundles/bbj-screen-widget.umd.js.map +1 -1
- package/bundles/bbj-screen-widget.umd.min.js +1 -1
- package/bundles/bbj-screen-widget.umd.min.js.map +1 -1
- package/esm2015/lib/select/select.component.js +14 -3
- package/fesm2015/bbj-screen-widget.js +13 -2
- package/fesm2015/bbj-screen-widget.js.map +1 -1
- package/lib/select/select.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2209,6 +2209,10 @@
|
|
|
2209
2209
|
this.optionChange.emit(selectedOption);
|
|
2210
2210
|
}
|
|
2211
2211
|
};
|
|
2212
|
+
SelectComponent.prototype.select = function (value) {
|
|
2213
|
+
this.selectedValue = value;
|
|
2214
|
+
this.selectChange(value);
|
|
2215
|
+
};
|
|
2212
2216
|
return SelectComponent;
|
|
2213
2217
|
}());
|
|
2214
2218
|
exports.ɵx.decorators = [
|
|
@@ -2398,6 +2402,13 @@
|
|
|
2398
2402
|
bbjWidgetBase.DataOutput('原始数据'),
|
|
2399
2403
|
__metadata("design:type", Object)
|
|
2400
2404
|
], exports.ɵx.prototype, "optionChange", void 0);
|
|
2405
|
+
__decorate([
|
|
2406
|
+
bbjWidgetBase.Method('选中'),
|
|
2407
|
+
__param(0, bbjWidgetBase.Param('值')),
|
|
2408
|
+
__metadata("design:type", Function),
|
|
2409
|
+
__metadata("design:paramtypes", [Object]),
|
|
2410
|
+
__metadata("design:returntype", void 0)
|
|
2411
|
+
], exports.ɵx.prototype, "select", null);
|
|
2401
2412
|
exports.ɵx = __decorate([
|
|
2402
2413
|
bbjWidgetBase.Widget('下拉框', {
|
|
2403
2414
|
group: 'component',
|