@operato/board 0.3.20 → 0.3.26

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 (52) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/custom-elements.json +947 -947
  3. package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.d.ts +1 -0
  4. package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js +9 -8
  5. package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js.map +1 -1
  6. package/dist/src/modeller/property-sidebar/data-binding/data-binding.d.ts +2 -1
  7. package/dist/src/modeller/property-sidebar/data-binding/data-binding.js +12 -9
  8. package/dist/src/modeller/property-sidebar/data-binding/data-binding.js.map +1 -1
  9. package/dist/src/modeller/property-sidebar/effects/effects.d.ts +2 -0
  10. package/dist/src/modeller/property-sidebar/effects/effects.js +8 -4
  11. package/dist/src/modeller/property-sidebar/effects/effects.js.map +1 -1
  12. package/dist/src/modeller/property-sidebar/effects/property-animation.d.ts +1 -0
  13. package/dist/src/modeller/property-sidebar/effects/property-animation.js +11 -10
  14. package/dist/src/modeller/property-sidebar/effects/property-animation.js.map +1 -1
  15. package/dist/src/modeller/property-sidebar/effects/property-animations.d.ts +1 -0
  16. package/dist/src/modeller/property-sidebar/effects/property-animations.js +5 -2
  17. package/dist/src/modeller/property-sidebar/effects/property-animations.js.map +1 -1
  18. package/dist/src/modeller/property-sidebar/effects/property-event-hover.d.ts +1 -0
  19. package/dist/src/modeller/property-sidebar/effects/property-event-hover.js +6 -5
  20. package/dist/src/modeller/property-sidebar/effects/property-event-hover.js.map +1 -1
  21. package/dist/src/modeller/property-sidebar/effects/property-event-tap.d.ts +1 -0
  22. package/dist/src/modeller/property-sidebar/effects/property-event-tap.js +5 -4
  23. package/dist/src/modeller/property-sidebar/effects/property-event-tap.js.map +1 -1
  24. package/dist/src/modeller/property-sidebar/effects/property-event.d.ts +1 -0
  25. package/dist/src/modeller/property-sidebar/effects/property-event.js +4 -3
  26. package/dist/src/modeller/property-sidebar/effects/property-event.js.map +1 -1
  27. package/dist/src/modeller/property-sidebar/effects/property-shadow.d.ts +1 -0
  28. package/dist/src/modeller/property-sidebar/effects/property-shadow.js +4 -3
  29. package/dist/src/modeller/property-sidebar/effects/property-shadow.js.map +1 -1
  30. package/dist/src/modeller/property-sidebar/shapes/shapes.d.ts +2 -0
  31. package/dist/src/modeller/property-sidebar/shapes/shapes.js +30 -28
  32. package/dist/src/modeller/property-sidebar/shapes/shapes.js.map +1 -1
  33. package/dist/src/modeller/property-sidebar/specifics/specifics.d.ts +1 -1
  34. package/dist/src/modeller/property-sidebar/specifics/specifics.js +3 -3
  35. package/dist/src/modeller/property-sidebar/specifics/specifics.js.map +1 -1
  36. package/dist/src/modeller/property-sidebar/styles/styles.d.ts +2 -1
  37. package/dist/src/modeller/property-sidebar/styles/styles.js +21 -20
  38. package/dist/src/modeller/property-sidebar/styles/styles.js.map +1 -1
  39. package/dist/tsconfig.tsbuildinfo +1 -1
  40. package/package.json +14 -14
  41. package/src/modeller/property-sidebar/data-binding/data-binding-mapper.ts +9 -8
  42. package/src/modeller/property-sidebar/data-binding/data-binding.ts +12 -9
  43. package/src/modeller/property-sidebar/effects/effects.ts +10 -5
  44. package/src/modeller/property-sidebar/effects/property-animation.ts +11 -10
  45. package/src/modeller/property-sidebar/effects/property-animations.ts +7 -3
  46. package/src/modeller/property-sidebar/effects/property-event-hover.ts +6 -5
  47. package/src/modeller/property-sidebar/effects/property-event-tap.ts +5 -4
  48. package/src/modeller/property-sidebar/effects/property-event.ts +6 -4
  49. package/src/modeller/property-sidebar/effects/property-shadow.ts +4 -3
  50. package/src/modeller/property-sidebar/shapes/shapes.ts +30 -28
  51. package/src/modeller/property-sidebar/specifics/specifics.ts +5 -4
  52. package/src/modeller/property-sidebar/styles/styles.ts +21 -20
package/CHANGELOG.md CHANGED
@@ -3,6 +3,57 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [0.3.26](https://github.com/hatiolab/operato/compare/v0.3.25...v0.3.26) (2022-01-31)
7
+
8
+ **Note:** Version bump only for package @operato/board
9
+
10
+
11
+
12
+
13
+
14
+ ### [0.3.25](https://github.com/hatiolab/operato/compare/v0.3.24...v0.3.25) (2022-01-31)
15
+
16
+ **Note:** Version bump only for package @operato/board
17
+
18
+
19
+
20
+
21
+
22
+ ### [0.3.24](https://github.com/hatiolab/operato/compare/v0.3.23...v0.3.24) (2022-01-30)
23
+
24
+
25
+ ### :bug: Bug Fix
26
+
27
+ * shell, help, i18n, layout module ([d5bb29a](https://github.com/hatiolab/operato/commit/d5bb29ad476d4cb182d3210f4c94772ba72e83a5))
28
+
29
+
30
+
31
+ ### [0.3.23](https://github.com/hatiolab/operato/compare/v0.3.22...v0.3.23) (2022-01-30)
32
+
33
+ **Note:** Version bump only for package @operato/board
34
+
35
+
36
+
37
+
38
+
39
+ ### [0.3.22](https://github.com/hatiolab/operato/compare/v0.3.21...v0.3.22) (2022-01-30)
40
+
41
+
42
+ ### :rocket: New Features
43
+
44
+ * started help and layout module ([08f875c](https://github.com/hatiolab/operato/commit/08f875cd30aa914901c249c8c0b462ce4a151c23))
45
+
46
+
47
+
48
+ ### [0.3.21](https://github.com/hatiolab/operato/compare/v0.3.20...v0.3.21) (2022-01-29)
49
+
50
+
51
+ ### :rocket: New Features
52
+
53
+ * i18n module added, shell module started to cover client core part ([a976dad](https://github.com/hatiolab/operato/commit/a976dad6353962e489d8e648af9598b6a51e5ec7))
54
+
55
+
56
+
6
57
  ### [0.3.20](https://github.com/hatiolab/operato/compare/v0.3.19...v0.3.20) (2022-01-28)
7
58
 
8
59