@provoly/dashboard 1.4.12 → 1.4.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.
Files changed (38) hide show
  1. package/esm2022/lib/core/model/result-set.interface.mjs +1 -1
  2. package/esm2022/lib/core/model/search-mono-class.model.mjs +1 -1
  3. package/esm2022/lib/core/store/relation-types/relation-types.actions.mjs +2 -1
  4. package/esm2022/lib/core/store/relation-types/relation-types.effects.mjs +2 -1
  5. package/esm2022/lib/core/store/relation-types/relation-types.service.mjs +5 -1
  6. package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
  7. package/esm2022/lib/core/store/search/search.effects.mjs +3 -3
  8. package/esm2022/lib/core/store/search/search.service.mjs +17 -7
  9. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +2 -1
  10. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +2 -1
  11. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +20 -1
  12. package/esm2022/search/search-mono-class/store/search-mono-class.service.mjs +4 -4
  13. package/esm2022/toolbox/shared/presentation-form/presentation-form.component.mjs +7 -3
  14. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +3 -3
  15. package/fesm2022/provoly-dashboard-search.mjs +3 -3
  16. package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
  17. package/fesm2022/provoly-dashboard-toolbox.mjs +6 -2
  18. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  19. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +2 -2
  20. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  21. package/fesm2022/provoly-dashboard.mjs +45 -8
  22. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  23. package/lib/core/model/result-set.interface.d.ts +6 -0
  24. package/lib/core/model/search-mono-class.model.d.ts +9 -2
  25. package/lib/core/store/relation-types/relation-types.actions.d.ts +9 -0
  26. package/lib/core/store/relation-types/relation-types.effects.d.ts +5 -0
  27. package/lib/core/store/relation-types/relation-types.service.d.ts +1 -0
  28. package/lib/core/store/search/search.actions.d.ts +4 -0
  29. package/lib/core/store/search/search.effects.d.ts +1 -0
  30. package/lib/core/store/search/search.service.d.ts +2 -2
  31. package/lib/dashboard/store/dashboard.actions.d.ts +5 -0
  32. package/lib/dashboard/store/dashboard.effects.d.ts +3 -0
  33. package/package.json +1 -1
  34. package/search/search-fulltext/store/search-fulltext.effects.d.ts +1 -0
  35. package/search/search-mono-class/store/search-mono-class.effects.d.ts +1 -0
  36. package/search/search-mono-class/store/search-mono-class.service.d.ts +1 -1
  37. package/search/search-multi-class/store/search-multi-class.effects.d.ts +1 -0
  38. package/toolbox/shared/presentation-form/presentation-form.component.d.ts +1 -0
@@ -2280,9 +2280,9 @@ class SearchMonoClassService {
2280
2280
  id,
2281
2281
  parentId: parentId ?? null,
2282
2282
  type: 'ATTRIBUTE',
2283
- attribute: cond.attribute,
2284
- operator: cond.operator,
2285
- value: cond.value,
2283
+ attribute: cond?.attribute,
2284
+ operator: cond?.operator,
2285
+ value: cond?.value,
2286
2286
  pattern: this.getPatternForField(field),
2287
2287
  isDate: field.type === FieldType.INSTANT
2288
2288
  }