@knotx/core 0.0.1 → 0.0.3
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/data.cjs +16 -0
- package/dist/data.d.cts +2 -0
- package/dist/data.d.mts +2 -0
- package/dist/data.d.ts +2 -0
- package/dist/data.mjs +1 -0
- package/dist/index.cjs +11 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +13 -7
package/dist/data.cjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const data = require('@knotx/data');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.prototype.hasOwnProperty.call(data, '__proto__') &&
|
|
8
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
9
|
+
Object.defineProperty(exports, '__proto__', {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
value: data['__proto__']
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
Object.keys(data).forEach(function (k) {
|
|
15
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = data[k];
|
|
16
|
+
});
|
package/dist/data.d.cts
ADDED
package/dist/data.d.mts
ADDED
package/dist/data.d.ts
ADDED
package/dist/data.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@knotx/data';
|
package/dist/index.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const core = require('@knotx/core');
|
|
4
|
-
const data = require('@knotx/data');
|
|
5
4
|
const lodashEs = require('lodash-es');
|
|
6
5
|
const rxjs = require('rxjs');
|
|
7
6
|
const utils = require('@knotx/utils');
|
|
7
|
+
const data = require('@knotx/data');
|
|
8
8
|
|
|
9
9
|
var __defProp$4 = Object.defineProperty;
|
|
10
10
|
var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -416,3 +416,13 @@ Object.prototype.hasOwnProperty.call(utils, '__proto__') &&
|
|
|
416
416
|
Object.keys(utils).forEach(function (k) {
|
|
417
417
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = utils[k];
|
|
418
418
|
});
|
|
419
|
+
Object.prototype.hasOwnProperty.call(data, '__proto__') &&
|
|
420
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
421
|
+
Object.defineProperty(exports, '__proto__', {
|
|
422
|
+
enumerable: true,
|
|
423
|
+
value: data['__proto__']
|
|
424
|
+
});
|
|
425
|
+
|
|
426
|
+
Object.keys(data).forEach(function (k) {
|
|
427
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = data[k];
|
|
428
|
+
});
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { DataOperationPipe, DataOperation, DataManager } from '@knotx/data';
|
|
2
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { DataOperationPipe, DataOperation, DataManager } from '@knotx/data';
|
|
3
|
+
export * from '@knotx/data';
|
|
3
4
|
import { Container as Container$1, PluginDefinition as PluginDefinition$1, NodeData as NodeData$1, EdgeData as EdgeData$1, IEngineRuntime as IEngineRuntime$1, RenderType as RenderType$1, LayerComponent as LayerComponent$1, IPlugin as IPlugin$1, Layer as Layer$1, NodeRenderType as NodeRenderType$1, EdgeRenderType as EdgeRenderType$1, PluginData as PluginData$1, InteractionPriority as InteractionPriority$1 } from '@knotx/core';
|
|
4
5
|
export * from '@knotx/utils';
|
|
5
6
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { DataOperationPipe, DataOperation, DataManager } from '@knotx/data';
|
|
2
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { DataOperationPipe, DataOperation, DataManager } from '@knotx/data';
|
|
3
|
+
export * from '@knotx/data';
|
|
3
4
|
import { Container as Container$1, PluginDefinition as PluginDefinition$1, NodeData as NodeData$1, EdgeData as EdgeData$1, IEngineRuntime as IEngineRuntime$1, RenderType as RenderType$1, LayerComponent as LayerComponent$1, IPlugin as IPlugin$1, Layer as Layer$1, NodeRenderType as NodeRenderType$1, EdgeRenderType as EdgeRenderType$1, PluginData as PluginData$1, InteractionPriority as InteractionPriority$1 } from '@knotx/core';
|
|
4
5
|
export * from '@knotx/utils';
|
|
5
6
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { DataOperationPipe, DataOperation, DataManager } from '@knotx/data';
|
|
2
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { DataOperationPipe, DataOperation, DataManager } from '@knotx/data';
|
|
3
|
+
export * from '@knotx/data';
|
|
3
4
|
import { Container as Container$1, PluginDefinition as PluginDefinition$1, NodeData as NodeData$1, EdgeData as EdgeData$1, IEngineRuntime as IEngineRuntime$1, RenderType as RenderType$1, LayerComponent as LayerComponent$1, IPlugin as IPlugin$1, Layer as Layer$1, NodeRenderType as NodeRenderType$1, EdgeRenderType as EdgeRenderType$1, PluginData as PluginData$1, InteractionPriority as InteractionPriority$1 } from '@knotx/core';
|
|
4
5
|
export * from '@knotx/utils';
|
|
5
6
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Layer as Layer$1, BasePlugin as BasePlugin$1 } from '@knotx/core';
|
|
2
|
-
import { DataManager } from '@knotx/data';
|
|
3
2
|
import { set, get } from 'lodash-es';
|
|
4
3
|
import { BehaviorSubject, identity } from 'rxjs';
|
|
5
4
|
import { getSymbol } from '@knotx/utils';
|
|
6
5
|
export * from '@knotx/utils';
|
|
6
|
+
import { DataManager } from '@knotx/data';
|
|
7
|
+
export * from '@knotx/data';
|
|
7
8
|
|
|
8
9
|
var __defProp$4 = Object.defineProperty;
|
|
9
10
|
var __defNormalProp$4 = (obj, key, value) => key in obj ? __defProp$4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knotx/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"description": "Core for Knotx",
|
|
6
6
|
"author": "boenfu",
|
|
7
7
|
"license": "MIT",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"directory": "packages/core"
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": {
|
|
15
|
-
"access": "public"
|
|
15
|
+
"access": "public",
|
|
16
|
+
"registry": "https://registry.npmjs.org/"
|
|
16
17
|
},
|
|
17
18
|
"sideEffects": false,
|
|
18
19
|
"exports": {
|
|
@@ -25,6 +26,11 @@
|
|
|
25
26
|
"types": "./dist/utils.d.ts",
|
|
26
27
|
"import": "./dist/utils.mjs",
|
|
27
28
|
"require": "./dist/utils.cjs"
|
|
29
|
+
},
|
|
30
|
+
"./data": {
|
|
31
|
+
"types": "./dist/data.d.ts",
|
|
32
|
+
"import": "./dist/data.mjs",
|
|
33
|
+
"require": "./dist/data.cjs"
|
|
28
34
|
}
|
|
29
35
|
},
|
|
30
36
|
"main": "./dist/index.cjs",
|
|
@@ -36,14 +42,14 @@
|
|
|
36
42
|
"dependencies": {
|
|
37
43
|
"lodash-es": "^4.17.21",
|
|
38
44
|
"rxjs": "^7.8.1",
|
|
39
|
-
"@knotx/
|
|
40
|
-
"@knotx/
|
|
45
|
+
"@knotx/utils": "0.0.3",
|
|
46
|
+
"@knotx/data": "0.0.3"
|
|
41
47
|
},
|
|
42
48
|
"devDependencies": {
|
|
43
49
|
"@types/lodash-es": "^4.17.12",
|
|
44
|
-
"@knotx/
|
|
45
|
-
"@knotx/typescript-config": "0.0.
|
|
46
|
-
"@knotx/
|
|
50
|
+
"@knotx/build-config": "0.0.3",
|
|
51
|
+
"@knotx/typescript-config": "0.0.3",
|
|
52
|
+
"@knotx/eslint-config": "0.0.3"
|
|
47
53
|
},
|
|
48
54
|
"scripts": {
|
|
49
55
|
"build": "unbuild --failOnWarn=false",
|