@symbo.ls/create 2.29.5 → 2.29.7
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/dist/cjs/define.js +4 -4
- package/dist/esm/define.js +5 -5
- package/package.json +13 -13
- package/src/define.js +5 -5
package/dist/cjs/define.js
CHANGED
|
@@ -36,8 +36,8 @@ const defaultDefine = {
|
|
|
36
36
|
} else set();
|
|
37
37
|
return obj;
|
|
38
38
|
},
|
|
39
|
-
$collection: import_atoms.
|
|
40
|
-
$setCollection: import_atoms.
|
|
41
|
-
$stateCollection: import_atoms.
|
|
42
|
-
$propsCollection: import_atoms.
|
|
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
|
};
|
package/dist/esm/define.js
CHANGED
|
@@ -14,7 +14,7 @@ var __spreadValues = (a, b) => {
|
|
|
14
14
|
}
|
|
15
15
|
return a;
|
|
16
16
|
};
|
|
17
|
-
import {
|
|
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:
|
|
33
|
-
$setCollection:
|
|
34
|
-
$stateCollection:
|
|
35
|
-
$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.
|
|
3
|
+
"version": "2.29.7",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"gitHead": "
|
|
5
|
+
"gitHead": "c74c4ee77eaebbd1a58ce94b258175f59b7572f4",
|
|
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.
|
|
33
|
-
"@domql/event": "^2.29.
|
|
34
|
-
"@domql/report": "^2.29.
|
|
35
|
-
"@domql/router": "^2.29.
|
|
36
|
-
"@symbo.ls/fetch": "^2.29.
|
|
37
|
-
"@symbo.ls/init": "^2.29.
|
|
38
|
-
"@symbo.ls/scratch": "^2.29.
|
|
39
|
-
"@symbo.ls/sync": "^2.29.
|
|
40
|
-
"@symbo.ls/uikit": "^2.29.
|
|
41
|
-
"@symbo.ls/utils": "^2.29.
|
|
42
|
-
"domql": "^2.29.
|
|
32
|
+
"@domql/emotion": "^2.29.7",
|
|
33
|
+
"@domql/event": "^2.29.7",
|
|
34
|
+
"@domql/report": "^2.29.7",
|
|
35
|
+
"@domql/router": "^2.29.7",
|
|
36
|
+
"@symbo.ls/fetch": "^2.29.7",
|
|
37
|
+
"@symbo.ls/init": "^2.29.7",
|
|
38
|
+
"@symbo.ls/scratch": "^2.29.7",
|
|
39
|
+
"@symbo.ls/sync": "^2.29.7",
|
|
40
|
+
"@symbo.ls/uikit": "^2.29.7",
|
|
41
|
+
"@symbo.ls/utils": "^2.29.7",
|
|
42
|
+
"domql": "^2.29.7"
|
|
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 {
|
|
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:
|
|
26
|
-
$setCollection:
|
|
27
|
-
$stateCollection:
|
|
28
|
-
$propsCollection:
|
|
25
|
+
$collection: Box.define.$collection,
|
|
26
|
+
$setCollection: Box.define.$setCollection,
|
|
27
|
+
$stateCollection: Box.define.$stateCollection,
|
|
28
|
+
$propsCollection: Box.define.$propsCollection
|
|
29
29
|
}
|