@symbo.ls/create 2.11.526 → 2.11.527

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.
@@ -60,7 +60,8 @@ const prepareContext = (app, context = {}) => {
60
60
  return context;
61
61
  };
62
62
  const createDomqlElement = async (app, ctx) => {
63
- if (!(0, import_utils.isObject)(ctx)) ctx = {};
63
+ if (!(0, import_utils.isObject)(ctx))
64
+ ctx = {};
64
65
  if ((0, import_utils.isNode)(app)) {
65
66
  app = {};
66
67
  ctx.parent = app;
@@ -26,14 +26,16 @@ const defaultDefine = {
26
26
  routes: (param) => param,
27
27
  // deps: (param, el) => param || el.parent.deps,
28
28
  $router: (param, el) => {
29
- if (!param) return;
29
+ if (!param)
30
+ return;
30
31
  const obj = { tag: "fragment", ...param };
31
32
  const set = () => {
32
33
  el.set(obj, { preventDefineUpdate: "$router" });
33
34
  };
34
35
  if (el.props && el.props.lazyLoad) {
35
36
  window.requestAnimationFrame(set);
36
- } else set();
37
+ } else
38
+ set();
37
39
  return obj;
38
40
  },
39
41
  $collection: import_atoms.Collection.define.$collection,
@@ -27,7 +27,8 @@ var import_fetch = require("@symbo.ls/fetch");
27
27
  const fetchSync = async (key, options) => {
28
28
  if (key && options.editor) {
29
29
  try {
30
- if (!options.editor.async) await (0, import_fetch.fetchProject)(key, options);
30
+ if (!options.editor.async)
31
+ await (0, import_fetch.fetchProject)(key, options);
31
32
  } catch (e) {
32
33
  console.error(e);
33
34
  }
package/dist/cjs/index.js CHANGED
@@ -26,15 +26,15 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
26
26
  mod
27
27
  ));
28
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var index_exports = {};
30
- __export(index_exports, {
29
+ var src_exports = {};
30
+ __export(src_exports, {
31
31
  create: () => create,
32
32
  createAsync: () => createAsync,
33
33
  createSkeleton: () => createSkeleton,
34
34
  createSync: () => createSync,
35
- default: () => index_default
35
+ default: () => src_default
36
36
  });
37
- module.exports = __toCommonJS(index_exports);
37
+ module.exports = __toCommonJS(src_exports);
38
38
  var import_utils = require("@domql/utils");
39
39
  var utils = __toESM(require("./utilImports"), 1);
40
40
  var import_router = require("./router");
@@ -50,7 +50,8 @@ const create = (App, options = import_options.default, optionsExternalFile) => {
50
50
  const redefinedOptions = { ...import_options.default, ...mergeWithLocalFile(options, optionsExternalFile) };
51
51
  const domqlApp = (0, import_createDomql.createDomqlElement)(App, redefinedOptions);
52
52
  (0, import_router.popStateRouter)(domqlApp, redefinedOptions);
53
- if (redefinedOptions.on && redefinedOptions.on.create) redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
53
+ if (redefinedOptions.on && redefinedOptions.on.create)
54
+ redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
54
55
  return domqlApp;
55
56
  };
56
57
  const createAsync = (App, options = import_options.default, optionsExternalFile) => {
@@ -65,7 +66,8 @@ const createSync = async (App, options = import_options.default, optionsExternal
65
66
  const key = options.key;
66
67
  await (0, import_ferchOnCreate.fetchSync)(key, redefinedOptions);
67
68
  const domqlApp = await (0, import_createDomql.createDomqlElement)(App, redefinedOptions);
68
- if (redefinedOptions.on && redefinedOptions.on.create) await redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
69
+ if (redefinedOptions.on && redefinedOptions.on.create)
70
+ await redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
69
71
  return domqlApp;
70
72
  };
71
73
  const createSkeleton = (App = {}, options = import_options.default, optionsExternalFile) => {
@@ -78,4 +80,4 @@ const createSkeleton = (App = {}, options = import_options.default, optionsExter
78
80
  optionsExternalFile
79
81
  );
80
82
  };
81
- var index_default = create;
83
+ var src_default = create;
@@ -32,7 +32,8 @@ const initEmotion = (key, options = {}) => {
32
32
  const doc = options.parent || options.document || document;
33
33
  const initOptions = options.initOptions || {};
34
34
  const emotion = initOptions.emotion;
35
- if (!initOptions.emotion) initOptions.emotion = import_emotion2.emotion;
35
+ if (!initOptions.emotion)
36
+ initOptions.emotion = import_emotion2.emotion;
36
37
  const registry = options.registry || (0, import_emotion.transformDOMQLEmotion)(initOptions.emotion, options);
37
38
  const designSystem = initOptions.useDefaultConfig || ((_a = options.designSystem) == null ? void 0 : _a.useDefaultConfig) ? (0, import_utils.deepMerge)(options.designSystem, (0, import_utils.deepClone)(import_default_config.DEFAULT_CONFIG)) : options.designSystem || (0, import_utils.deepClone)(import_default_config.DEFAULT_CONFIG);
38
39
  const scratchSystem = (0, import_init.init)(designSystem, {
@@ -47,9 +47,11 @@ var utils = __toESM(require("./utilImports"), 1);
47
47
  var routerUtils = __toESM(require("@domql/router"), 1);
48
48
  const ENV = "development";
49
49
  const prepareWindow = (context) => {
50
- if (typeof window === "undefined") window = globalThis || {};
50
+ if (typeof window === "undefined")
51
+ window = globalThis || {};
51
52
  if (typeof document === "undefined") {
52
- if (!window.document) window.document = globalThis.document || { body: {} };
53
+ if (!window.document)
54
+ window.document = globalThis.document || { body: {} };
53
55
  document = window.document;
54
56
  }
55
57
  context.document = context.document || document;
@@ -106,9 +108,11 @@ const prepareDependencies = ({
106
108
  if (dependency.split("/").length > 2 || !onlyDotsAndNumbers(version)) {
107
109
  url = `https://pkg.symbo.ls/${dependency}${random}`;
108
110
  }
109
- if (dependenciesOnDemand && dependenciesOnDemand[dependency]) continue;
111
+ if (dependenciesOnDemand && dependenciesOnDemand[dependency])
112
+ continue;
110
113
  try {
111
- if (cachedDeps[dependency]) return;
114
+ if (cachedDeps[dependency])
115
+ return;
112
116
  cachedDeps[dependency] = true;
113
117
  utils.loadJavascriptFileEmbedSync(url, document2);
114
118
  } catch (e) {
@@ -122,7 +126,8 @@ const prepareRequire = (packages, ctx) => {
122
126
  const initRequire = (ctx2) => (key) => {
123
127
  const windowOpts2 = ctx2.window || window;
124
128
  const pkg = windowOpts2.packages[key];
125
- if (typeof pkg === "function") return pkg();
129
+ if (typeof pkg === "function")
130
+ return pkg();
126
131
  return pkg;
127
132
  };
128
133
  const initRequireOnDemand = (ctx2) => (key) => {
@@ -164,8 +169,10 @@ const prepareDesignSystem = (key, context) => {
164
169
  };
165
170
  const prepareState = (app, context) => {
166
171
  const state = {};
167
- if (context.state) utils.deepMerge(state, context.state);
168
- if (app && app.state) (0, import_utils.deepMerge)(state, app.state);
172
+ if (context.state)
173
+ utils.deepMerge(state, context.state);
174
+ if (app && app.state)
175
+ (0, import_utils.deepMerge)(state, app.state);
169
176
  return (0, import_utils.deepClone)(state);
170
177
  };
171
178
  const preparePages = (app, context) => {
@@ -32,15 +32,19 @@ const DEFAULT_ROUTING_OPTIONS = {
32
32
  popState: true
33
33
  };
34
34
  const initRouter = (element, context) => {
35
- if (context.router === false) return;
36
- else if (context.router === true) context.router = DEFAULT_ROUTING_OPTIONS;
37
- else (0, import_utils.merge)(context.router || {}, DEFAULT_ROUTING_OPTIONS);
35
+ if (context.router === false)
36
+ return;
37
+ else if (context.router === true)
38
+ context.router = DEFAULT_ROUTING_OPTIONS;
39
+ else
40
+ (0, import_utils.merge)(context.router || {}, DEFAULT_ROUTING_OPTIONS);
38
41
  const routerOptions = context.router;
39
42
  const router = context.utils && context.utils.router ? context.utils.router : import_router.router;
40
43
  const onRouterRenderDefault = (el, s) => {
41
44
  const { pathname, search, hash } = import_utils.window.location;
42
45
  const url = pathname + search + hash;
43
- if (el.routes) router(url, el, {}, { initialRender: true });
46
+ if (el.routes)
47
+ router(url, el, {}, { initialRender: true });
44
48
  };
45
49
  const hasRenderRouter = element.on && !(0, import_utils.isUndefined)(element.on.renderRouter);
46
50
  if (routerOptions && routerOptions.initRouter && !hasRenderRouter) {
@@ -57,10 +61,12 @@ const initRouter = (element, context) => {
57
61
  };
58
62
  let popStateFired;
59
63
  const popStateRouter = (element, context) => {
60
- if (popStateFired) return;
64
+ if (popStateFired)
65
+ return;
61
66
  popStateFired = true;
62
67
  const routerOptions = context.router || DEFAULT_ROUTING_OPTIONS;
63
- if (!routerOptions.popState) return;
68
+ if (!routerOptions.popState)
69
+ return;
64
70
  const router = context.utils && context.utils.router ? context.utils.router : import_router.router;
65
71
  import_utils.window.onpopstate = (e) => {
66
72
  const { pathname, search, hash } = import_utils.window.location;
@@ -31,10 +31,12 @@ const initializeExtend = (app, ctx) => {
31
31
  };
32
32
  const initializeSync = (app, ctx) => {
33
33
  const { editor } = ctx;
34
- if (!editor) return;
34
+ if (!editor)
35
+ return;
35
36
  const liveSync = (0, import_utils.isUndefined)(editor.liveSync) ? (0, import_utils.isDevelopment)() : editor.liveSync;
36
37
  if (liveSync) {
37
- if ((0, import_utils.isArray)(app.extend)) app.extend.push(import_sync.SyncComponent);
38
+ if ((0, import_utils.isArray)(app.extend))
39
+ app.extend.push(import_sync.SyncComponent);
38
40
  else if (app.extend) {
39
41
  app.extend = [app.extend, import_sync.SyncComponent];
40
42
  } else {
@@ -44,10 +46,12 @@ const initializeSync = (app, ctx) => {
44
46
  };
45
47
  const initializeInspect = (app, ctx) => {
46
48
  const { editor } = ctx;
47
- if (!editor) return;
49
+ if (!editor)
50
+ return;
48
51
  const inspect = (0, import_utils.isUndefined)(editor.inspect) ? (0, import_utils.isDevelopment)() : editor.inspect;
49
52
  if (inspect) {
50
- if ((0, import_utils.isArray)(app.extend)) app.extend.push(import_sync.Inspect);
53
+ if ((0, import_utils.isArray)(app.extend))
54
+ app.extend.push(import_sync.Inspect);
51
55
  else if (app.extend) {
52
56
  app.extend = [app.extend, import_sync.Inspect];
53
57
  } else {
@@ -57,10 +61,12 @@ const initializeInspect = (app, ctx) => {
57
61
  };
58
62
  const initializeNotifications = (app, ctx) => {
59
63
  const { editor } = ctx;
60
- if (!editor) return;
64
+ if (!editor)
65
+ return;
61
66
  const verbose = (0, import_utils.isUndefined)(editor.verbose) ? (0, import_utils.isDevelopment)() || ctx.verbose : editor.verbose;
62
67
  if (verbose) {
63
- if ((0, import_utils.isArray)(app.extend)) app.extend.push(import_sync.Notifications);
68
+ if ((0, import_utils.isArray)(app.extend))
69
+ app.extend.push(import_sync.Notifications);
64
70
  else if (app.extend) {
65
71
  app.extend = [app.extend, import_sync.Notifications];
66
72
  } else {
@@ -52,7 +52,8 @@ const prepareContext = (app, context = {}) => {
52
52
  return context;
53
53
  };
54
54
  const createDomqlElement = async (app, ctx) => {
55
- if (!isObject(ctx)) ctx = {};
55
+ if (!isObject(ctx))
56
+ ctx = {};
56
57
  if (isNode(app)) {
57
58
  app = {};
58
59
  ctx.parent = app;
@@ -19,14 +19,16 @@ const defaultDefine = {
19
19
  routes: (param) => param,
20
20
  // deps: (param, el) => param || el.parent.deps,
21
21
  $router: (param, el) => {
22
- if (!param) return;
22
+ if (!param)
23
+ return;
23
24
  const obj = __spreadValues({ tag: "fragment" }, param);
24
25
  const set = () => {
25
26
  el.set(obj, { preventDefineUpdate: "$router" });
26
27
  };
27
28
  if (el.props && el.props.lazyLoad) {
28
29
  window.requestAnimationFrame(set);
29
- } else set();
30
+ } else
31
+ set();
30
32
  return obj;
31
33
  },
32
34
  $collection: Collection.define.$collection,
@@ -3,7 +3,8 @@ import { fetchProject, fetchProjectAsync } from "@symbo.ls/fetch";
3
3
  const fetchSync = async (key, options) => {
4
4
  if (key && options.editor) {
5
5
  try {
6
- if (!options.editor.async) await fetchProject(key, options);
6
+ if (!options.editor.async)
7
+ await fetchProject(key, options);
7
8
  } catch (e) {
8
9
  console.error(e);
9
10
  }
package/dist/esm/index.js CHANGED
@@ -29,7 +29,8 @@ const create = (App, options = DEFAULT_CREATE_OPTIONS, optionsExternalFile) => {
29
29
  const redefinedOptions = __spreadValues(__spreadValues({}, DEFAULT_CREATE_OPTIONS), mergeWithLocalFile(options, optionsExternalFile));
30
30
  const domqlApp = createDomqlElement(App, redefinedOptions);
31
31
  popStateRouter(domqlApp, redefinedOptions);
32
- if (redefinedOptions.on && redefinedOptions.on.create) redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
32
+ if (redefinedOptions.on && redefinedOptions.on.create)
33
+ redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
33
34
  return domqlApp;
34
35
  };
35
36
  const createAsync = (App, options = DEFAULT_CREATE_OPTIONS, optionsExternalFile) => {
@@ -44,7 +45,8 @@ const createSync = async (App, options = DEFAULT_CREATE_OPTIONS, optionsExternal
44
45
  const key = options.key;
45
46
  await fetchSync(key, redefinedOptions);
46
47
  const domqlApp = await createDomqlElement(App, redefinedOptions);
47
- if (redefinedOptions.on && redefinedOptions.on.create) await redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
48
+ if (redefinedOptions.on && redefinedOptions.on.create)
49
+ await redefinedOptions.on.create(domqlApp, domqlApp.state, domqlApp.context, redefinedOptions);
48
50
  return domqlApp;
49
51
  };
50
52
  const createSkeleton = (App = {}, options = DEFAULT_CREATE_OPTIONS, optionsExternalFile) => {
@@ -56,11 +58,11 @@ const createSkeleton = (App = {}, options = DEFAULT_CREATE_OPTIONS, optionsExter
56
58
  optionsExternalFile
57
59
  );
58
60
  };
59
- var index_default = create;
61
+ var src_default = create;
60
62
  export {
61
63
  create,
62
64
  createAsync,
63
65
  createSkeleton,
64
66
  createSync,
65
- index_default as default
67
+ src_default as default
66
68
  };
@@ -25,7 +25,8 @@ const initEmotion = (key, options = {}) => {
25
25
  const doc = options.parent || options.document || document;
26
26
  const initOptions = options.initOptions || {};
27
27
  const emotion = initOptions.emotion;
28
- if (!initOptions.emotion) initOptions.emotion = defaultEmotion;
28
+ if (!initOptions.emotion)
29
+ initOptions.emotion = defaultEmotion;
29
30
  const registry = options.registry || transformDOMQLEmotion(initOptions.emotion, options);
30
31
  const designSystem = initOptions.useDefaultConfig || ((_a = options.designSystem) == null ? void 0 : _a.useDefaultConfig) ? deepMerge(options.designSystem, deepClone(DEFAULT_CONFIG)) : options.designSystem || deepClone(DEFAULT_CONFIG);
31
32
  const scratchSystem = init(designSystem, __spreadValues(__spreadValues({
@@ -30,9 +30,11 @@ import * as utils from "./utilImports";
30
30
  import * as routerUtils from "@domql/router";
31
31
  const ENV = "development";
32
32
  const prepareWindow = (context) => {
33
- if (typeof window === "undefined") window = globalThis || {};
33
+ if (typeof window === "undefined")
34
+ window = globalThis || {};
34
35
  if (typeof document === "undefined") {
35
- if (!window.document) window.document = globalThis.document || { body: {} };
36
+ if (!window.document)
37
+ window.document = globalThis.document || { body: {} };
36
38
  document = window.document;
37
39
  }
38
40
  context.document = context.document || document;
@@ -88,9 +90,11 @@ const prepareDependencies = ({
88
90
  if (dependency.split("/").length > 2 || !onlyDotsAndNumbers(version)) {
89
91
  url = `https://pkg.symbo.ls/${dependency}${random}`;
90
92
  }
91
- if (dependenciesOnDemand && dependenciesOnDemand[dependency]) continue;
93
+ if (dependenciesOnDemand && dependenciesOnDemand[dependency])
94
+ continue;
92
95
  try {
93
- if (cachedDeps[dependency]) return;
96
+ if (cachedDeps[dependency])
97
+ return;
94
98
  cachedDeps[dependency] = true;
95
99
  utils.loadJavascriptFileEmbedSync(url, document2);
96
100
  } catch (e) {
@@ -104,7 +108,8 @@ const prepareRequire = (packages, ctx) => {
104
108
  const initRequire = (ctx2) => (key) => {
105
109
  const windowOpts2 = ctx2.window || window;
106
110
  const pkg = windowOpts2.packages[key];
107
- if (typeof pkg === "function") return pkg();
111
+ if (typeof pkg === "function")
112
+ return pkg();
108
113
  return pkg;
109
114
  };
110
115
  const initRequireOnDemand = (ctx2) => (key) => {
@@ -146,8 +151,10 @@ const prepareDesignSystem = (key, context) => {
146
151
  };
147
152
  const prepareState = (app, context) => {
148
153
  const state = {};
149
- if (context.state) utils.deepMerge(state, context.state);
150
- if (app && app.state) deepMerge(state, app.state);
154
+ if (context.state)
155
+ utils.deepMerge(state, context.state);
156
+ if (app && app.state)
157
+ deepMerge(state, app.state);
151
158
  return deepClone(state);
152
159
  };
153
160
  const preparePages = (app, context) => {
@@ -7,15 +7,19 @@ const DEFAULT_ROUTING_OPTIONS = {
7
7
  popState: true
8
8
  };
9
9
  const initRouter = (element, context) => {
10
- if (context.router === false) return;
11
- else if (context.router === true) context.router = DEFAULT_ROUTING_OPTIONS;
12
- else merge(context.router || {}, DEFAULT_ROUTING_OPTIONS);
10
+ if (context.router === false)
11
+ return;
12
+ else if (context.router === true)
13
+ context.router = DEFAULT_ROUTING_OPTIONS;
14
+ else
15
+ merge(context.router || {}, DEFAULT_ROUTING_OPTIONS);
13
16
  const routerOptions = context.router;
14
17
  const router = context.utils && context.utils.router ? context.utils.router : defaultRouter;
15
18
  const onRouterRenderDefault = (el, s) => {
16
19
  const { pathname, search, hash } = window.location;
17
20
  const url = pathname + search + hash;
18
- if (el.routes) router(url, el, {}, { initialRender: true });
21
+ if (el.routes)
22
+ router(url, el, {}, { initialRender: true });
19
23
  };
20
24
  const hasRenderRouter = element.on && !isUndefined(element.on.renderRouter);
21
25
  if (routerOptions && routerOptions.initRouter && !hasRenderRouter) {
@@ -32,10 +36,12 @@ const initRouter = (element, context) => {
32
36
  };
33
37
  let popStateFired;
34
38
  const popStateRouter = (element, context) => {
35
- if (popStateFired) return;
39
+ if (popStateFired)
40
+ return;
36
41
  popStateFired = true;
37
42
  const routerOptions = context.router || DEFAULT_ROUTING_OPTIONS;
38
- if (!routerOptions.popState) return;
43
+ if (!routerOptions.popState)
44
+ return;
39
45
  const router = context.utils && context.utils.router ? context.utils.router : defaultRouter;
40
46
  window.onpopstate = (e) => {
41
47
  const { pathname, search, hash } = window.location;
@@ -5,10 +5,12 @@ const initializeExtend = (app, ctx) => {
5
5
  };
6
6
  const initializeSync = (app, ctx) => {
7
7
  const { editor } = ctx;
8
- if (!editor) return;
8
+ if (!editor)
9
+ return;
9
10
  const liveSync = isUndefined(editor.liveSync) ? isDevelopment() : editor.liveSync;
10
11
  if (liveSync) {
11
- if (isArray(app.extend)) app.extend.push(SyncComponent);
12
+ if (isArray(app.extend))
13
+ app.extend.push(SyncComponent);
12
14
  else if (app.extend) {
13
15
  app.extend = [app.extend, SyncComponent];
14
16
  } else {
@@ -18,10 +20,12 @@ const initializeSync = (app, ctx) => {
18
20
  };
19
21
  const initializeInspect = (app, ctx) => {
20
22
  const { editor } = ctx;
21
- if (!editor) return;
23
+ if (!editor)
24
+ return;
22
25
  const inspect = isUndefined(editor.inspect) ? isDevelopment() : editor.inspect;
23
26
  if (inspect) {
24
- if (isArray(app.extend)) app.extend.push(Inspect);
27
+ if (isArray(app.extend))
28
+ app.extend.push(Inspect);
25
29
  else if (app.extend) {
26
30
  app.extend = [app.extend, Inspect];
27
31
  } else {
@@ -31,10 +35,12 @@ const initializeInspect = (app, ctx) => {
31
35
  };
32
36
  const initializeNotifications = (app, ctx) => {
33
37
  const { editor } = ctx;
34
- if (!editor) return;
38
+ if (!editor)
39
+ return;
35
40
  const verbose = isUndefined(editor.verbose) ? isDevelopment() || ctx.verbose : editor.verbose;
36
41
  if (verbose) {
37
- if (isArray(app.extend)) app.extend.push(Notifications);
42
+ if (isArray(app.extend))
43
+ app.extend.push(Notifications);
38
44
  else if (app.extend) {
39
45
  app.extend = [app.extend, Notifications];
40
46
  } else {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/create",
3
- "version": "2.11.526",
3
+ "version": "2.11.527",
4
4
  "license": "MIT",
5
- "gitHead": "792ec4f43677c9e2e4acd45bd3850e7e5b3062bb",
5
+ "gitHead": "e2c07300cd296386220c924b8f15b4856cb24ba1",
6
6
  "type": "module",
7
7
  "module": "src/index.js",
8
8
  "main": "src/index.js",
@@ -34,10 +34,10 @@
34
34
  "@domql/report": "^2.5.0",
35
35
  "@domql/router": "^2.5.0",
36
36
  "@symbo.ls/fetch": "^2.11.511",
37
- "@symbo.ls/init": "^2.11.525",
38
- "@symbo.ls/scratch": "^2.11.525",
39
- "@symbo.ls/sync": "^2.11.525",
40
- "@symbo.ls/uikit": "^2.11.525",
37
+ "@symbo.ls/init": "^2.11.527",
38
+ "@symbo.ls/scratch": "^2.11.527",
39
+ "@symbo.ls/sync": "^2.11.527",
40
+ "@symbo.ls/uikit": "^2.11.527",
41
41
  "@symbo.ls/utils": "^2.11.512",
42
42
  "domql": "^2.5.158"
43
43
  },