ps-toolkit-ui 0.0.43 → 0.0.44
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 +7 -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/classes/table.class.js +8 -5
- package/fesm2015/ps-toolkit-ui.js +7 -4
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -7238,10 +7238,13 @@
|
|
|
7238
7238
|
});
|
|
7239
7239
|
};
|
|
7240
7240
|
}
|
|
7241
|
-
else if (option.Type === exports.PermissionTypeEnum.OptionIcon
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
|
|
7241
|
+
else if (option.Type === exports.PermissionTypeEnum.OptionIcon) {
|
|
7242
|
+
console.log(option.OnClick);
|
|
7243
|
+
if (option.OnClick) {
|
|
7244
|
+
opt.onClick = function (btn) {
|
|
7245
|
+
option.OnClick(btn);
|
|
7246
|
+
};
|
|
7247
|
+
}
|
|
7245
7248
|
}
|
|
7246
7249
|
this_1.options.push(opt);
|
|
7247
7250
|
};
|