@symbo.ls/create 2.29.4 → 2.29.6

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.
@@ -36,8 +36,8 @@ const defaultDefine = {
36
36
  } else set();
37
37
  return obj;
38
38
  },
39
- $collection: import_atoms.Collection.define.$collection,
40
- $setCollection: import_atoms.Collection.define.$setCollection,
41
- $stateCollection: import_atoms.Collection.define.$stateCollection,
42
- $propsCollection: import_atoms.Collection.define.$propsCollection
39
+ $collection: import_atoms.Box.define.$collection,
40
+ $setCollection: import_atoms.Box.define.$setCollection,
41
+ $stateCollection: import_atoms.Box.define.$stateCollection,
42
+ $propsCollection: import_atoms.Box.define.$propsCollection
43
43
  };
@@ -14,7 +14,7 @@ var __spreadValues = (a, b) => {
14
14
  }
15
15
  return a;
16
16
  };
17
- import { Collection } from "@symbo.ls/atoms";
17
+ import { Box } from "@symbo.ls/atoms";
18
18
  const defaultDefine = {
19
19
  routes: (param) => param,
20
20
  // deps: (param, el) => param || el.parent.deps,
@@ -29,10 +29,10 @@ const defaultDefine = {
29
29
  } else set();
30
30
  return obj;
31
31
  },
32
- $collection: Collection.define.$collection,
33
- $setCollection: Collection.define.$setCollection,
34
- $stateCollection: Collection.define.$stateCollection,
35
- $propsCollection: Collection.define.$propsCollection
32
+ $collection: Box.define.$collection,
33
+ $setCollection: Box.define.$setCollection,
34
+ $stateCollection: Box.define.$stateCollection,
35
+ $propsCollection: Box.define.$propsCollection
36
36
  };
37
37
  export {
38
38
  defaultDefine
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/create",
3
- "version": "2.29.4",
3
+ "version": "2.29.6",
4
4
  "license": "MIT",
5
- "gitHead": "7e273889b26550829ccbbb5312f674297bced410",
5
+ "gitHead": "8893587e4a90c0f6fa533f81fe4a7d7a6003711a",
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.29.4",
33
- "@domql/event": "^2.29.4",
34
- "@domql/report": "^2.29.4",
35
- "@domql/router": "^2.29.4",
36
- "@symbo.ls/fetch": "^2.29.4",
37
- "@symbo.ls/init": "^2.29.4",
38
- "@symbo.ls/scratch": "^2.29.4",
39
- "@symbo.ls/sync": "^2.29.4",
40
- "@symbo.ls/uikit": "^2.29.4",
41
- "@symbo.ls/utils": "^2.29.4",
42
- "domql": "^2.29.4"
32
+ "@domql/emotion": "^2.29.6",
33
+ "@domql/event": "^2.29.6",
34
+ "@domql/report": "^2.29.6",
35
+ "@domql/router": "^2.29.6",
36
+ "@symbo.ls/fetch": "^2.29.6",
37
+ "@symbo.ls/init": "^2.29.6",
38
+ "@symbo.ls/scratch": "^2.29.6",
39
+ "@symbo.ls/sync": "^2.29.6",
40
+ "@symbo.ls/uikit": "^2.29.6",
41
+ "@symbo.ls/utils": "^2.29.6",
42
+ "domql": "^2.29.6"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@babel/core": "^7.27.1"
package/src/define.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { Collection } from '@symbo.ls/atoms'
3
+ import { Box } from '@symbo.ls/atoms'
4
4
 
5
5
  export const defaultDefine = {
6
6
  routes: param => param,
@@ -22,8 +22,8 @@ export const defaultDefine = {
22
22
  return obj
23
23
  },
24
24
 
25
- $collection: Collection.define.$collection,
26
- $setCollection: Collection.define.$setCollection,
27
- $stateCollection: Collection.define.$stateCollection,
28
- $propsCollection: Collection.define.$propsCollection
25
+ $collection: Box.define.$collection,
26
+ $setCollection: Box.define.$setCollection,
27
+ $stateCollection: Box.define.$stateCollection,
28
+ $propsCollection: Box.define.$propsCollection
29
29
  }