@symbo.ls/create 2.11.239 → 2.11.243
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/bundle/index.js +441 -351
- package/dist/cjs/define.js +1 -0
- package/dist/cjs/utilImports.js +2 -2
- package/package.json +2 -2
- package/src/define.js +1 -0
- package/src/utilImports.js +1 -1
package/dist/cjs/define.js
CHANGED
|
@@ -38,6 +38,7 @@ const defaultDefine = {
|
|
|
38
38
|
set();
|
|
39
39
|
return obj;
|
|
40
40
|
},
|
|
41
|
+
$collection: import_uikit.Collection.define.$collection,
|
|
41
42
|
$setCollection: import_uikit.Collection.define.$setCollection,
|
|
42
43
|
$setStateCollection: import_uikit.Collection.define.$setStateCollection,
|
|
43
44
|
$setPropsCollection: import_uikit.Collection.define.$setPropsCollection
|
package/dist/cjs/utilImports.js
CHANGED
|
@@ -20,10 +20,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
var utilImports_exports = {};
|
|
21
21
|
__export(utilImports_exports, {
|
|
22
22
|
init: () => import_init.init,
|
|
23
|
+
reInit: () => import_init.reInit,
|
|
23
24
|
scratchSystem: () => import_scratch.scratchSystem,
|
|
24
25
|
scratchUtils: () => import_scratch.scratchUtils,
|
|
25
|
-
set: () => import_scratch.set
|
|
26
|
-
updateReset: () => import_init.updateReset
|
|
26
|
+
set: () => import_scratch.set
|
|
27
27
|
});
|
|
28
28
|
module.exports = __toCommonJS(utilImports_exports);
|
|
29
29
|
var import_scratch = require("@symbo.ls/scratch");
|
package/package.json
CHANGED
package/src/define.js
CHANGED
|
@@ -22,6 +22,7 @@ export const defaultDefine = {
|
|
|
22
22
|
return obj
|
|
23
23
|
},
|
|
24
24
|
|
|
25
|
+
$collection: Collection.define.$collection,
|
|
25
26
|
$setCollection: Collection.define.$setCollection,
|
|
26
27
|
$setStateCollection: Collection.define.$setStateCollection,
|
|
27
28
|
$setPropsCollection: Collection.define.$setPropsCollection
|
package/src/utilImports.js
CHANGED
|
@@ -5,6 +5,6 @@ import { scratchUtils, scratchSystem, set } from '@symbo.ls/scratch'
|
|
|
5
5
|
export { scratchUtils, scratchSystem, set }
|
|
6
6
|
export * from '@domql/utils'
|
|
7
7
|
export * from '@symbo.ls/utils'
|
|
8
|
-
export { init,
|
|
8
|
+
export { init, reInit } from '@symbo.ls/init'
|
|
9
9
|
export * from '@domql/report'
|
|
10
10
|
export * from '@domql/router'
|