@saooti/octopus-sdk 40.1.13 → 40.1.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "40.1.13",
3
+ "version": "40.1.14",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -245,7 +245,8 @@ export default defineComponent({
245
245
  return;
246
246
  }
247
247
  //Exception timepicker in popover
248
- if (e?.target?.classList?.contains("dp__time_display")) {
248
+ var result = Array.from(e?.target?.classList ?? []).findIndex((val) => { return val.startsWith("dp__");});
249
+ if (-1!==result) {
249
250
  return;
250
251
  }
251
252
  if (!e.relatedTarget) {