@difizen/libro-cofine-editor-contribution 0.3.3 → 1.0.0
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/es/editor-options-registry.js +1 -1
- package/es/index.d.ts +2 -2
- package/es/index.d.ts.map +1 -1
- package/es/index.js +1 -1
- package/es/language-worker-registry.d.ts +2 -2
- package/es/language-worker-registry.d.ts.map +1 -1
- package/es/language-worker-registry.js +1 -1
- package/es/lazy-loader-registry.d.ts +2 -2
- package/es/lazy-loader-registry.d.ts.map +1 -1
- package/es/lazy-loader-registry.js +1 -1
- package/es/options-registry.js +1 -1
- package/package.json +2 -2
- package/src/editor-options-registry.ts +1 -1
- package/src/index.ts +2 -2
- package/src/language-worker-registry.ts +2 -2
- package/src/lazy-loader-registry.ts +2 -2
- package/src/options-registry.ts +1 -1
|
@@ -5,7 +5,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
5
5
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
6
6
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
7
7
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
|
-
import { singleton } from '@difizen/
|
|
8
|
+
import { singleton } from '@difizen/libro-common/app';
|
|
9
9
|
export var EditorOptionsRegistry = (_dec = singleton(), _dec(_class = /*#__PURE__*/function () {
|
|
10
10
|
function EditorOptionsRegistry() {
|
|
11
11
|
_classCallCheck(this, EditorOptionsRegistry);
|
package/es/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Disposable } from '@difizen/
|
|
2
|
-
import { Syringe } from '@difizen/
|
|
1
|
+
import type { Disposable } from '@difizen/libro-common/app';
|
|
2
|
+
import { Syringe } from '@difizen/libro-common/app';
|
|
3
3
|
import type monaco from '@difizen/monaco-editor-core';
|
|
4
4
|
export declare const EditorHandlerContribution: Syringe.DefinedToken;
|
|
5
5
|
export interface EditorHandlerContribution extends Disposable {
|
package/es/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,KAAK,MAAM,MAAM,6BAA6B,CAAC;AAEtD,eAAO,MAAM,yBAAyB,sBAErC,CAAC;AAEF,MAAM,WAAW,yBAA0B,SAAQ,UAAU;IAC3D,YAAY,EAAE,CAAC,UAAU,EAAE,OAAO,MAAM,KAAK,IAAI,CAAC;IAClD,WAAW,EAAE,CACX,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,qBAAqB,GAAG,MAAM,CAAC,MAAM,CAAC,qBAAqB,EACjF,UAAU,EAAE,OAAO,MAAM,KACtB,IAAI,CAAC;IACV,SAAS,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC;CAC1C;AACD,OAAO,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EACL,0BAA0B,EAC1B,sBAAsB,GACvB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,kBAAkB,EAClB,8BAA8B,GAC/B,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC"}
|
package/es/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Syringe } from '@difizen/
|
|
1
|
+
import { Syringe } from '@difizen/libro-common/app';
|
|
2
2
|
export var EditorHandlerContribution = Syringe.defineToken('LanguageWorkerContribution');
|
|
3
3
|
export { EditorOptionsRegistry } from "./editor-options-registry.js";
|
|
4
4
|
export { LanguageWorkerContribution, LanguageWorkerRegistry } from "./language-worker-registry.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Contribution } from '@difizen/
|
|
2
|
-
import { Syringe } from '@difizen/
|
|
1
|
+
import type { Contribution } from '@difizen/libro-common/app';
|
|
2
|
+
import { Syringe } from '@difizen/libro-common/app';
|
|
3
3
|
export declare const LanguageWorkerContribution: Syringe.DefinedToken;
|
|
4
4
|
export interface LanguageWorkerContribution {
|
|
5
5
|
registerLanguageWorkers: (registry: LanguageWorkerRegistry) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"language-worker-registry.d.ts","sourceRoot":"","sources":["../src/language-worker-registry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"language-worker-registry.d.ts","sourceRoot":"","sources":["../src/language-worker-registry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAsB,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAExE,eAAO,MAAM,0BAA0B,sBAEtC,CAAC;AACF,MAAM,WAAW,0BAA0B;IACzC,uBAAuB,EAAE,CAAC,QAAQ,EAAE,sBAAsB,KAAK,IAAI,CAAC;CACrE;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,MAAM,CAAC;CAC/D;AAED,qBACa,sBAAsB;IACjC,SAAS,CAAC,OAAO,EAAE,oBAAoB,EAAE,CAAM;IAC/C,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,YAAY,CAAC,QAAQ,CAAC,0BAA0B,CAAC,CAAC;gBAG7E,QAAQ,EAAE,YAAY,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IAQ7D,cAAc,CAAC,MAAM,EAAE,oBAAoB;IAiB3C,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAW1E,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,oBAAoB,GAAG,SAAS;CAKtE"}
|
|
@@ -14,7 +14,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
14
14
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15
15
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16
16
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
17
|
-
import { contrib, singleton, Syringe } from '@difizen/
|
|
17
|
+
import { contrib, singleton, Syringe } from '@difizen/libro-common/app';
|
|
18
18
|
export var LanguageWorkerContribution = Syringe.defineToken('LanguageWorkerContribution');
|
|
19
19
|
export var LanguageWorkerRegistry = (_dec = singleton(), _dec(_class = /*#__PURE__*/function () {
|
|
20
20
|
function LanguageWorkerRegistry(provider) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
-
import type { Contribution } from '@difizen/
|
|
3
|
-
import { Syringe } from '@difizen/
|
|
2
|
+
import type { Contribution } from '@difizen/libro-common/app';
|
|
3
|
+
import { Syringe } from '@difizen/libro-common/app';
|
|
4
4
|
export declare const LazyLoaderRegistryContribution: Syringe.DefinedToken;
|
|
5
5
|
export interface LazyLoaderRegistryContribution extends Disposable {
|
|
6
6
|
handleLazyLoder: () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lazy-loader-registry.d.ts","sourceRoot":"","sources":["../src/lazy-loader-registry.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"lazy-loader-registry.d.ts","sourceRoot":"","sources":["../src/lazy-loader-registry.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAsB,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAExE,eAAO,MAAM,8BAA8B,sBAE1C,CAAC;AACF,MAAM,WAAW,8BAA+B,SAAQ,UAAU;IAChE,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,qBACa,kBAAkB;IAC7B,QAAQ,EAAE,YAAY,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC;gBAG9D,QAAQ,EAAE,YAAY,CAAC,QAAQ,CAAC,8BAA8B,CAAC;IAIjE,eAAe;CAQhB"}
|
|
@@ -5,7 +5,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
5
5
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
6
6
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
7
7
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
|
-
import { contrib, singleton, Syringe } from '@difizen/
|
|
8
|
+
import { contrib, singleton, Syringe } from '@difizen/libro-common/app';
|
|
9
9
|
export var LazyLoaderRegistryContribution = Syringe.defineToken('LazyLoaderRegistryContribution');
|
|
10
10
|
export var LazyLoaderRegistry = (_dec = singleton(), _dec(_class = /*#__PURE__*/function () {
|
|
11
11
|
function LazyLoaderRegistry(provider) {
|
package/es/options-registry.js
CHANGED
|
@@ -5,7 +5,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
5
5
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
6
6
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
7
7
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
|
-
import { singleton } from '@difizen/
|
|
8
|
+
import { singleton } from '@difizen/libro-common/app';
|
|
9
9
|
export var LanguageOptionsRegistry = (_dec = singleton(), _dec(_class = /*#__PURE__*/function () {
|
|
10
10
|
function LanguageOptionsRegistry() {
|
|
11
11
|
_classCallCheck(this, LanguageOptionsRegistry);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@difizen/libro-cofine-editor-contribution",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"libro",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"src"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@difizen/
|
|
36
|
+
"@difizen/libro-common": "^1.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@difizen/monaco-editor-core": "0.39.4"
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Disposable } from '@difizen/
|
|
2
|
-
import { Syringe } from '@difizen/
|
|
1
|
+
import type { Disposable } from '@difizen/libro-common/app';
|
|
2
|
+
import { Syringe } from '@difizen/libro-common/app';
|
|
3
3
|
import type monaco from '@difizen/monaco-editor-core';
|
|
4
4
|
|
|
5
5
|
export const EditorHandlerContribution = Syringe.defineToken(
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Contribution } from '@difizen/
|
|
2
|
-
import { contrib, singleton, Syringe } from '@difizen/
|
|
1
|
+
import type { Contribution } from '@difizen/libro-common/app';
|
|
2
|
+
import { contrib, singleton, Syringe } from '@difizen/libro-common/app';
|
|
3
3
|
|
|
4
4
|
export const LanguageWorkerContribution = Syringe.defineToken(
|
|
5
5
|
'LanguageWorkerContribution',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Contribution } from '@difizen/
|
|
2
|
-
import { contrib, singleton, Syringe } from '@difizen/
|
|
1
|
+
import type { Contribution } from '@difizen/libro-common/app';
|
|
2
|
+
import { contrib, singleton, Syringe } from '@difizen/libro-common/app';
|
|
3
3
|
|
|
4
4
|
export const LazyLoaderRegistryContribution = Syringe.defineToken(
|
|
5
5
|
'LazyLoaderRegistryContribution',
|
package/src/options-registry.ts
CHANGED