codenotch-react 1.0.55 → 1.0.56
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/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { ICodenotchApi, ICodenotchDialog, ICodenotchEnv } from "./models/Codenotch";
|
|
2
|
+
import { Auml } from "./components/Auml";
|
|
3
|
+
import CodeEditor from "./components/CodeEditor";
|
|
2
4
|
declare const env: ICodenotchEnv;
|
|
3
5
|
/**
|
|
4
6
|
* Setup Codenotch environment from the given object
|
|
@@ -12,5 +14,5 @@ declare function i18n(key: string, ...args: any[]): string;
|
|
|
12
14
|
* @returns {ICodenotchApi} Codenotch API
|
|
13
15
|
*/
|
|
14
16
|
declare function useCodenotch(): ICodenotchApi;
|
|
15
|
-
export { env as CODENOTCH_ENV, i18n, useCodenotch, setupCodenotchEnv, ICodenotchEnv, ICodenotchApi, ICodenotchDialog };
|
|
17
|
+
export { env as CODENOTCH_ENV, i18n, useCodenotch, setupCodenotchEnv, ICodenotchEnv, ICodenotchApi, ICodenotchDialog, Auml, CodeEditor };
|
|
16
18
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAEpF,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,UAAU,MAAM,yBAAyB,CAAC;AAIjD,QAAA,MAAM,GAAG,EAAE,aAAkB,CAAC;AAO9B;;;;GAIG;AACH,iBAAS,iBAAiB,CAAC,GAAG,EAAE,GAAG,GAAG,IAAI,CAgDzC;AAED,iBAAS,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,MAAM,CAoCjD;AAED;;;GAGG;AACH,iBAAS,YAAY,IAAI,aAAa,CAsKrC;AAED,OAAO,EACH,GAAG,IAAI,aAAa,EACpB,IAAI,EACJ,YAAY,EACZ,iBAAiB,EACjB,aAAa,EACb,aAAa,EACb,gBAAgB,EAChB,IAAI,EACJ,UAAU,EACb,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.CODENOTCH_ENV = void 0;
|
|
6
|
+
exports.CodeEditor = exports.Auml = exports.CODENOTCH_ENV = void 0;
|
|
7
7
|
exports.i18n = i18n;
|
|
8
8
|
exports.useCodenotch = useCodenotch;
|
|
9
9
|
exports.setupCodenotchEnv = setupCodenotchEnv;
|
|
@@ -11,6 +11,10 @@ const react_dom_1 = __importDefault(require("react-dom"));
|
|
|
11
11
|
const SignalR_1 = require("./core/SignalR");
|
|
12
12
|
const ProcessUtils_1 = __importDefault(require("./core/ProcessUtils"));
|
|
13
13
|
const uuid_1 = require("uuid");
|
|
14
|
+
const Auml_1 = require("./components/Auml");
|
|
15
|
+
Object.defineProperty(exports, "Auml", { enumerable: true, get: function () { return Auml_1.Auml; } });
|
|
16
|
+
const CodeEditor_1 = __importDefault(require("./components/CodeEditor"));
|
|
17
|
+
exports.CodeEditor = CodeEditor_1.default;
|
|
14
18
|
var signalR = undefined;
|
|
15
19
|
const env = {};
|
|
16
20
|
exports.CODENOTCH_ENV = env;
|