@oicl/openbridge-webcomponents-full-bundle 2.0.0-next.66 → 2.0.0-next.68

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 (76) hide show
  1. package/bundle/openbridge-webcomponents.bundle.js +2738 -2408
  2. package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
  3. package/custom-elements.json +347 -30
  4. package/dist/automation/automation-button/automation-button.css.js +9 -9
  5. package/dist/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.d.ts +1 -0
  6. package/dist/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.d.ts.map +1 -1
  7. package/dist/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.js +9 -28
  8. package/dist/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.js.map +1 -1
  9. package/dist/components/accordion-card/accordion-card.css.js +1 -1
  10. package/dist/components/dropdown-button/dropdown-button.d.ts +11 -0
  11. package/dist/components/dropdown-button/dropdown-button.d.ts.map +1 -1
  12. package/dist/components/dropdown-button/dropdown-button.js +24 -2
  13. package/dist/components/dropdown-button/dropdown-button.js.map +1 -1
  14. package/dist/components/keyboard-numeric/keyboard-numeric.d.ts +1 -2
  15. package/dist/components/keyboard-numeric/keyboard-numeric.d.ts.map +1 -1
  16. package/dist/components/keyboard-numeric/keyboard-numeric.js +10 -15
  17. package/dist/components/keyboard-numeric/keyboard-numeric.js.map +1 -1
  18. package/dist/components/number-input-field/number-input-field.d.ts +9 -0
  19. package/dist/components/number-input-field/number-input-field.d.ts.map +1 -1
  20. package/dist/components/number-input-field/number-input-field.js +30 -1
  21. package/dist/components/number-input-field/number-input-field.js.map +1 -1
  22. package/dist/components/number-input-field/number-input-format.d.ts +9 -0
  23. package/dist/components/number-input-field/number-input-format.d.ts.map +1 -1
  24. package/dist/components/number-input-field/number-input-format.js +33 -2
  25. package/dist/components/number-input-field/number-input-format.js.map +1 -1
  26. package/dist/components/stepper-box/stepper-box.css.js +0 -6
  27. package/dist/components/stepper-box/stepper-box.css.js.map +1 -1
  28. package/dist/components/stepper-box/stepper-box.d.ts +3 -13
  29. package/dist/components/stepper-box/stepper-box.d.ts.map +1 -1
  30. package/dist/components/stepper-box/stepper-box.js.map +1 -1
  31. package/dist/components/toggle-button-group/toggle-button-group.d.ts +14 -0
  32. package/dist/components/toggle-button-group/toggle-button-group.d.ts.map +1 -1
  33. package/dist/components/toggle-button-group/toggle-button-group.js +25 -5
  34. package/dist/components/toggle-button-group/toggle-button-group.js.map +1 -1
  35. package/dist/integration-systems/integration-fleet-button/integration-fleet-button.css.js +4 -0
  36. package/dist/integration-systems/integration-fleet-button/integration-fleet-button.css.js.map +1 -1
  37. package/dist/integration-systems/integration-fleet-button/integration-fleet-button.d.ts +1 -0
  38. package/dist/integration-systems/integration-fleet-button/integration-fleet-button.d.ts.map +1 -1
  39. package/dist/integration-systems/integration-fleet-button/integration-fleet-button.js +13 -1
  40. package/dist/integration-systems/integration-fleet-button/integration-fleet-button.js.map +1 -1
  41. package/dist/navigation-instruments/graph-mini/graph-mini.css.js +2 -1
  42. package/dist/navigation-instruments/graph-mini/graph-mini.css.js.map +1 -1
  43. package/dist/navigation-instruments/graph-mini/graph-mini.d.ts.map +1 -1
  44. package/dist/navigation-instruments/graph-mini/graph-mini.js +7 -5
  45. package/dist/navigation-instruments/graph-mini/graph-mini.js.map +1 -1
  46. package/dist/navigation-instruments/indicator-graph/indicator-graph.css.js +66 -0
  47. package/dist/navigation-instruments/indicator-graph/indicator-graph.css.js.map +1 -0
  48. package/dist/navigation-instruments/indicator-graph/indicator-graph.d.ts +54 -0
  49. package/dist/navigation-instruments/indicator-graph/indicator-graph.d.ts.map +1 -0
  50. package/dist/navigation-instruments/indicator-graph/indicator-graph.js +203 -0
  51. package/dist/navigation-instruments/indicator-graph/indicator-graph.js.map +1 -0
  52. package/docs/GettingStarted.mdx +28 -12
  53. package/package.json +1 -1
  54. package/src/automation/automation-button/automation-button.css +9 -9
  55. package/src/automation/valve-analoge-two-way-icon/valve-analog-two-way-icon.ts +9 -28
  56. package/src/components/accordion-card/accordion-card.css +1 -1
  57. package/src/components/dropdown-button/dropdown-button.stories.ts +22 -0
  58. package/src/components/dropdown-button/dropdown-button.ts +33 -4
  59. package/src/components/keyboard-numeric/keyboard-numeric.ts +12 -18
  60. package/src/components/number-input-field/number-input-field.spec.ts +134 -0
  61. package/src/components/number-input-field/number-input-field.ts +47 -0
  62. package/src/components/number-input-field/number-input-format.spec.ts +62 -0
  63. package/src/components/number-input-field/number-input-format.ts +59 -2
  64. package/src/components/stepper-box/stepper-box.css +0 -6
  65. package/src/components/stepper-box/stepper-box.ts +3 -13
  66. package/src/components/toggle-button-group/toggle-button-group.ts +36 -5
  67. package/src/components/toggle-button-group/toggle-button.stories.ts +31 -0
  68. package/src/integration-systems/integration-fleet-button/integration-fleet-button.css +4 -0
  69. package/src/integration-systems/integration-fleet-button/integration-fleet-button.stories.ts +9 -0
  70. package/src/integration-systems/integration-fleet-button/integration-fleet-button.ts +10 -1
  71. package/src/navigation-instruments/graph-mini/graph-mini.css +2 -1
  72. package/src/navigation-instruments/graph-mini/graph-mini.stories.ts +11 -3
  73. package/src/navigation-instruments/graph-mini/graph-mini.ts +7 -5
  74. package/src/navigation-instruments/indicator-graph/indicator-graph.css +55 -0
  75. package/src/navigation-instruments/indicator-graph/indicator-graph.stories.ts +116 -0
  76. package/src/navigation-instruments/indicator-graph/indicator-graph.ts +222 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.