ps-toolkit-ui 1.13.6 → 1.13.8
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/ps-toolkit-ui.umd.js +11 -4
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/base.component.js +7 -4
- package/esm2015/lib/components/form/table/form.table.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +9 -3
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/components/base.component.d.ts +1 -0
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -6104,6 +6104,9 @@
|
|
|
6104
6104
|
};
|
|
6105
6105
|
FormTableComponent.prototype.changeRows = function (e) {
|
|
6106
6106
|
this.inp.error = null;
|
|
6107
|
+
if (this.inp.onChange) {
|
|
6108
|
+
this.inp.onChange(e);
|
|
6109
|
+
}
|
|
6107
6110
|
};
|
|
6108
6111
|
return FormTableComponent;
|
|
6109
6112
|
}());
|
|
@@ -8412,15 +8415,19 @@
|
|
|
8412
8415
|
this.app = app;
|
|
8413
8416
|
this.c = c;
|
|
8414
8417
|
this.a = a;
|
|
8415
|
-
this.
|
|
8416
|
-
if (v === void 0) { v = null; }
|
|
8417
|
-
return app.getL("" + c + (a ? "." + a : ''), key, v);
|
|
8418
|
-
};
|
|
8418
|
+
this.setL();
|
|
8419
8419
|
this.permissions = this.getPermission(this.c, this.a);
|
|
8420
8420
|
if (this.permissions) {
|
|
8421
8421
|
this.permissions.Area = app.area;
|
|
8422
8422
|
}
|
|
8423
8423
|
}
|
|
8424
|
+
BaseComponent.prototype.setL = function () {
|
|
8425
|
+
var _this = this;
|
|
8426
|
+
this.l = function (key, v) {
|
|
8427
|
+
if (v === void 0) { v = null; }
|
|
8428
|
+
return _this.app.getL("" + _this.c + (_this.a ? "." + _this.a : ''), key, v);
|
|
8429
|
+
};
|
|
8430
|
+
};
|
|
8424
8431
|
BaseComponent.prototype.getPermission = function (c, a) {
|
|
8425
8432
|
var _this = this;
|
|
8426
8433
|
if (a === void 0) { a = null; }
|