@symbo.ls/create 2.32.8 → 2.32.10

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.
@@ -92,7 +92,6 @@ const createDomqlElement = async (app, ctx) => {
92
92
  ctx
93
93
  );
94
94
  (0, import_syncExtend.initializeSync)(app, ctx);
95
- (0, import_syncExtend.initializeInspect)(app, ctx);
96
95
  (0, import_syncExtend.initializeNotifications)(app, ctx);
97
96
  const parentNode = ctx.parent || ctx.document.body;
98
97
  const domqlCreate = import_domql.default.default && import_domql.default.default.create || import_domql.default.create;
@@ -22,7 +22,6 @@ import { defaultDefine } from "./define.js";
22
22
  import { initRouter } from "./router.js";
23
23
  import {
24
24
  initializeExtend,
25
- initializeInspect,
26
25
  initializeNotifications,
27
26
  initializeSync
28
27
  } from "./syncExtend.js";
@@ -88,7 +87,6 @@ const createDomqlElement = async (app, ctx) => {
88
87
  ctx
89
88
  );
90
89
  initializeSync(app, ctx);
91
- initializeInspect(app, ctx);
92
90
  initializeNotifications(app, ctx);
93
91
  const parentNode = ctx.parent || ctx.document.body;
94
92
  const domqlCreate = DOM.default && DOM.default.create || DOM.create;
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/create",
3
- "version": "2.32.8",
3
+ "version": "2.32.10",
4
4
  "license": "MIT",
5
- "gitHead": "f7531cb41b391a1357d31a03fbdd33ad93e0a29d",
5
+ "gitHead": "1831b80e746a251d9175eeba662389e6cbb996d7",
6
6
  "type": "module",
7
7
  "module": "src/index.js",
8
8
  "main": "src/index.js",
@@ -29,17 +29,17 @@
29
29
  "prepublish": "npm run build; npm run copy:package:cjs"
30
30
  },
31
31
  "dependencies": {
32
- "@domql/emotion": "^2.32.8",
33
- "@domql/event": "^2.32.8",
34
- "@domql/report": "^2.32.8",
35
- "@domql/router": "^2.32.8",
36
- "@symbo.ls/fetch": "^2.32.8",
37
- "@symbo.ls/init": "^2.32.8",
38
- "@symbo.ls/scratch": "^2.32.8",
39
- "@symbo.ls/sync": "^2.32.8",
40
- "@symbo.ls/uikit": "^2.32.8",
41
- "@symbo.ls/utils": "^2.32.8",
42
- "domql": "^2.32.8"
32
+ "@domql/emotion": "^2.32.10",
33
+ "@domql/event": "^2.32.10",
34
+ "@domql/report": "^2.32.10",
35
+ "@domql/router": "^2.32.10",
36
+ "@symbo.ls/fetch": "^2.32.10",
37
+ "@symbo.ls/init": "^2.32.10",
38
+ "@symbo.ls/scratch": "^2.32.10",
39
+ "@symbo.ls/sync": "^2.32.10",
40
+ "@symbo.ls/uikit": "^2.32.10",
41
+ "@symbo.ls/utils": "^2.32.10",
42
+ "domql": "^2.32.10"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@babel/core": "^7.27.1"
@@ -9,7 +9,7 @@ import { defaultDefine } from './define.js'
9
9
  import { initRouter } from './router.js'
10
10
  import {
11
11
  initializeExtend,
12
- initializeInspect,
12
+ // initializeInspect,
13
13
  initializeNotifications,
14
14
  initializeSync
15
15
  } from './syncExtend.js'
@@ -84,7 +84,7 @@ export const createDomqlElement = async (app, ctx) => {
84
84
  )
85
85
 
86
86
  initializeSync(app, ctx)
87
- initializeInspect(app, ctx)
87
+ // initializeInspect(app, ctx)
88
88
  initializeNotifications(app, ctx)
89
89
 
90
90
  const parentNode = ctx.parent || ctx.document.body