@sunspirytus/xflow 1.0.52
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/LICENSE +21 -0
- package/README.md +21 -0
- package/dist/index.css +1458 -0
- package/dist/index.umd.js +72 -0
- package/dist/index.umd.js.map +1 -0
- package/es/core/index.d.ts +84 -0
- package/es/core/index.js +92 -0
- package/es/core/index.js.map +1 -0
- package/es/core/style/index.css +108 -0
- package/es/core/style/index.less +4 -0
- package/es/extensions/index.d.ts +28 -0
- package/es/extensions/index.js +29 -0
- package/es/extensions/index.js.map +1 -0
- package/es/extensions/style/index.css +1350 -0
- package/es/extensions/style/index.less +2 -0
- package/es/hook/index.d.ts +1 -0
- package/es/hook/index.js +2 -0
- package/es/hook/index.js.map +1 -0
- package/es/index.d.ts +3 -0
- package/es/index.js +4 -0
- package/es/index.js.map +1 -0
- package/es/style/components.css +1458 -0
- package/es/style/components.less +2 -0
- package/lib/core/index.d.ts +84 -0
- package/lib/core/index.js +150 -0
- package/lib/core/index.js.map +1 -0
- package/lib/core/style/index.css +108 -0
- package/lib/core/style/index.less +4 -0
- package/lib/extensions/index.d.ts +28 -0
- package/lib/extensions/index.js +68 -0
- package/lib/extensions/index.js.map +1 -0
- package/lib/extensions/style/index.css +1350 -0
- package/lib/extensions/style/index.less +2 -0
- package/lib/hook/index.d.ts +1 -0
- package/lib/hook/index.js +7 -0
- package/lib/hook/index.js.map +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +7 -0
- package/lib/index.js.map +1 -0
- package/lib/style/components.css +1458 -0
- package/lib/style/components.less +2 -0
- package/package.json +88 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { HookHub, IHook, IHookHub, IRuntimeHook, IMainHandler, ScheduleOptions, ScheduleTypeEnum, } from '@sunspirytus/xflow-hook';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ScheduleTypeEnum = exports.HookHub = void 0;
|
|
4
|
+
var xflow_hook_1 = require("@sunspirytus/xflow-hook");
|
|
5
|
+
Object.defineProperty(exports, "HookHub", { enumerable: true, get: function () { return xflow_hook_1.HookHub; } });
|
|
6
|
+
Object.defineProperty(exports, "ScheduleTypeEnum", { enumerable: true, get: function () { return xflow_hook_1.ScheduleTypeEnum; } });
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/hook/index.ts"],"names":[],"mappings":";;;AAAA,sDAQgC;AAP9B,qGAAA,OAAO,OAAA;AAMP,8GAAA,gBAAgB,OAAA"}
|
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./core"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./extensions"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./hook"), exports);
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";;;AAAA,iDAAsB;AACtB,uDAA4B;AAC5B,iDAAsB"}
|