@schukai/monster 3.115.1 → 3.115.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
 
4
4
 
5
+ ## [3.115.2] - 2025-04-01
6
+
7
+ ### Bug Fixes
8
+
9
+ - rename camera file
10
+
11
+
12
+
5
13
  ## [3.115.1] - 2025-04-01
6
14
 
7
15
  ### Bug Fixes
package/package.json CHANGED
@@ -1 +1 @@
1
- {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@popperjs/core":"^2.11.8","buffer":"^6.0.3"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.115.1"}
1
+ {"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@popperjs/core":"^2.11.8","buffer":"^6.0.3"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.115.2"}
@@ -108,39 +108,6 @@ class CameraCapture extends CustomElement {
108
108
  return this;
109
109
  }
110
110
 
111
- /**
112
- * This method is called when the element is connected to the dom.
113
- *
114
- * @return {void}
115
- */
116
- connectedCallback() {
117
- super.connectedCallback();
118
-
119
- // const document = getDocument();
120
- //
121
- // for (const [, type] of Object.entries(["click", "touch"])) {
122
- // // close on outside ui-events
123
- // document.addEventListener(type, this[closeEventHandler]);
124
- // }
125
- //
126
- // updatePopper.call(this);
127
- // attachResizeObserver.call(this);
128
- }
129
-
130
- /**
131
- * This method is called when the element is disconnected from the dom.
132
- *
133
- * @return {void}
134
- */
135
- disconnectedCallback() {
136
- super.disconnectedCallback();
137
-
138
- // // close on outside ui-events
139
- // for (const [, type] of Object.entries(["click", "touch"])) {
140
- // document.removeEventListener(type, this[closeEventHandler]);
141
- // }
142
- }
143
-
144
111
  /**
145
112
  * To set the options via the HTML Tag, the attribute `data-monster-options` must be used.
146
113
  * @see {@link https://monsterjs.org/en/doc/#configurate-a-monster-control}
@@ -224,6 +191,9 @@ class CameraCapture extends CustomElement {
224
191
  }
225
192
  }
226
193
 
194
+ /**
195
+ * @private
196
+ */
227
197
  function initCameraControl() {
228
198
  const self = this;
229
199
 
@@ -30,7 +30,7 @@ export * from "./components/layout/slider.mjs";
30
30
  export * from "./components/content/fetch-box.mjs";
31
31
  export * from "./components/content/viewer.mjs";
32
32
  export * from "./components/content/copy.mjs";
33
- export * from "./components/content/camera.mjs";
33
+ export * from "./components/content/camera-capture.mjs";
34
34
  export * from "./components/time/timeline/appointment.mjs";
35
35
  export * from "./components/time/timeline/segment.mjs";
36
36
  export * from "./components/time/day.mjs";
@@ -10,7 +10,7 @@
10
10
  <body>
11
11
  <div id="headline" style="display: flex;align-items: center;justify-content: center;flex-direction: column;">
12
12
  <h1 style='margin-bottom: 0.1em;'>Monster 3.115.0</h1>
13
- <div id="lastupdate" style='font-size:0.7em'>last update Di 1. Apr 19:42:27 CEST 2025</div>
13
+ <div id="lastupdate" style='font-size:0.7em'>last update Di 1. Apr 21:19:27 CEST 2025</div>
14
14
  </div>
15
15
  <div id="mocha-errors"
16
16
  style="color: red;font-weight: bold;display: flex;align-items: center;justify-content: center;flex-direction: column;margin:20px;"></div>