shared-ritm 1.2.23 → 1.2.24

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": "shared-ritm",
3
- "version": "1.2.23",
3
+ "version": "1.2.24",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -5,13 +5,10 @@
5
5
  </div>
6
6
 
7
7
  <slot name="drawer" />
8
-
9
8
  <slot name="header" :style="marginLeft" />
10
9
 
11
10
  <q-page-container :class="{ container: container }" @wheel="mouseMove">
12
- <div :style="marginLeft">
13
- <slot name="content" />
14
- </div>
11
+ <slot name="content" :style="marginLeft" />
15
12
  </q-page-container>
16
13
 
17
14
  <slot name="footer" />
package/src/main.ts CHANGED
@@ -16,3 +16,13 @@ app.use(Quasar, quasarUserOptions)
16
16
 
17
17
  app.use(router)
18
18
  app.mount('#app')
19
+
20
+ const observerErrRe = /^ResizeObserver loop completed/
21
+
22
+ const originalConsoleError = console.error
23
+ console.error = (...args) => {
24
+ if (typeof args[0] === 'string' && observerErrRe.test(args[0])) {
25
+ return
26
+ }
27
+ originalConsoleError(...args)
28
+ }