@dxos/plugin-settings 0.8.4-main.7996785055 → 0.8.4-main.9be5663bfe
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/lib/browser/index.mjs +28 -18
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/types/index.mjs +9 -0
- package/dist/lib/browser/types/index.mjs.map +7 -0
- package/dist/lib/node-esm/index.mjs +29 -18
- package/dist/lib/node-esm/index.mjs.map +4 -4
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/lib/node-esm/types/index.mjs +11 -0
- package/dist/lib/node-esm/types/index.mjs.map +7 -0
- package/dist/types/src/SettingsPlugin.d.ts.map +1 -1
- package/dist/types/src/actions.d.ts +2 -2
- package/dist/types/src/actions.d.ts.map +1 -1
- package/dist/types/src/capabilities/app-graph-builder.d.ts.map +1 -0
- package/dist/types/src/capabilities/index.d.ts +4 -2
- package/dist/types/src/capabilities/index.d.ts.map +1 -1
- package/dist/types/src/capabilities/operation-handler.d.ts.map +1 -0
- package/dist/types/src/translations.d.ts +3 -3
- package/dist/types/src/translations.d.ts.map +1 -1
- package/dist/types/src/types/index.d.ts +3 -0
- package/dist/types/src/types/index.d.ts.map +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +23 -7
- package/src/SettingsPlugin.ts +3 -2
- package/src/actions.ts +3 -5
- package/src/capabilities/{app-graph-builder/app-graph-builder.ts → app-graph-builder.ts} +23 -20
- package/src/capabilities/index.ts +8 -2
- package/src/capabilities/{operation-handler/operation-handler.ts → operation-handler.ts} +1 -1
- package/src/translations.ts +3 -3
- package/src/types/index.ts +8 -0
- package/dist/lib/browser/app-graph-builder-JD5QCT54.mjs +0 -97
- package/dist/lib/browser/app-graph-builder-JD5QCT54.mjs.map +0 -7
- package/dist/lib/browser/chunk-WV7AYROT.mjs +0 -36
- package/dist/lib/browser/chunk-WV7AYROT.mjs.map +0 -7
- package/dist/lib/browser/open-MZAFK2IZ.mjs +0 -28
- package/dist/lib/browser/open-MZAFK2IZ.mjs.map +0 -7
- package/dist/lib/browser/open-plugin-registry-UGLESZTR.mjs +0 -26
- package/dist/lib/browser/open-plugin-registry-UGLESZTR.mjs.map +0 -7
- package/dist/lib/browser/operation-handler-FCI3F5DK.mjs +0 -16
- package/dist/lib/browser/operation-handler-FCI3F5DK.mjs.map +0 -7
- package/dist/lib/node-esm/app-graph-builder-VM5CLJ4H.mjs +0 -98
- package/dist/lib/node-esm/app-graph-builder-VM5CLJ4H.mjs.map +0 -7
- package/dist/lib/node-esm/chunk-D7CHCV5B.mjs +0 -38
- package/dist/lib/node-esm/chunk-D7CHCV5B.mjs.map +0 -7
- package/dist/lib/node-esm/open-QOPG73Y7.mjs +0 -29
- package/dist/lib/node-esm/open-QOPG73Y7.mjs.map +0 -7
- package/dist/lib/node-esm/open-plugin-registry-MD3Z3M2A.mjs +0 -27
- package/dist/lib/node-esm/open-plugin-registry-MD3Z3M2A.mjs.map +0 -7
- package/dist/lib/node-esm/operation-handler-AYVEPQZN.mjs +0 -18
- package/dist/lib/node-esm/operation-handler-AYVEPQZN.mjs.map +0 -7
- package/dist/types/src/capabilities/app-graph-builder/app-graph-builder.d.ts.map +0 -1
- package/dist/types/src/capabilities/app-graph-builder/index.d.ts +0 -3
- package/dist/types/src/capabilities/app-graph-builder/index.d.ts.map +0 -1
- package/dist/types/src/capabilities/operation-handler/index.d.ts +0 -4
- package/dist/types/src/capabilities/operation-handler/index.d.ts.map +0 -1
- package/dist/types/src/capabilities/operation-handler/operation-handler.d.ts.map +0 -1
- package/src/capabilities/app-graph-builder/index.ts +0 -7
- package/src/capabilities/operation-handler/index.ts +0 -11
- /package/dist/types/src/capabilities/{app-graph-builder/app-graph-builder.d.ts → app-graph-builder.d.ts} +0 -0
- /package/dist/types/src/capabilities/{operation-handler/operation-handler.d.ts → operation-handler.d.ts} +0 -0
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
-
|
|
3
|
-
// src/meta.ts
|
|
4
|
-
var meta = {
|
|
5
|
-
id: "org.dxos.plugin.settings",
|
|
6
|
-
name: "Settings"
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
// src/actions.ts
|
|
10
|
-
import * as Schema from "effect/Schema";
|
|
11
|
-
import { pinnedWorkspaceId } from "@dxos/app-toolkit";
|
|
12
|
-
var SETTINGS_ID = pinnedWorkspaceId("dxos:settings");
|
|
13
|
-
var SETTINGS_KEY = "settings";
|
|
14
|
-
(function(SettingsAction2) {
|
|
15
|
-
class Open extends Schema.TaggedClass()(`${meta.id}.open`, {
|
|
16
|
-
input: Schema.Struct({
|
|
17
|
-
plugin: Schema.optional(Schema.String)
|
|
18
|
-
}),
|
|
19
|
-
output: Schema.Void
|
|
20
|
-
}) {
|
|
21
|
-
}
|
|
22
|
-
SettingsAction2.Open = Open;
|
|
23
|
-
class OpenPluginRegistry extends Schema.TaggedClass()(`${meta.id}.open-plugin-registry`, {
|
|
24
|
-
input: Schema.Void,
|
|
25
|
-
output: Schema.Void
|
|
26
|
-
}) {
|
|
27
|
-
}
|
|
28
|
-
SettingsAction2.OpenPluginRegistry = OpenPluginRegistry;
|
|
29
|
-
})(SettingsAction || (SettingsAction = {}));
|
|
30
|
-
var SettingsAction;
|
|
31
|
-
|
|
32
|
-
export {
|
|
33
|
-
meta,
|
|
34
|
-
SETTINGS_ID,
|
|
35
|
-
SETTINGS_KEY,
|
|
36
|
-
SettingsAction
|
|
37
|
-
};
|
|
38
|
-
//# sourceMappingURL=chunk-D7CHCV5B.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/meta.ts", "../../../src/actions.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport { type Plugin } from '@dxos/app-framework';\n\nexport const meta: Plugin.Meta = {\n id: 'org.dxos.plugin.settings',\n name: 'Settings',\n};\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport * as Schema from 'effect/Schema';\n\nimport { pinnedWorkspaceId } from '@dxos/app-toolkit';\n\nimport { meta } from './meta';\n\nexport const SETTINGS_ID = pinnedWorkspaceId('dxos:settings');\nexport const SETTINGS_KEY = 'settings';\n\nexport namespace SettingsAction {\n export class Open extends Schema.TaggedClass<Open>()(`${meta.id}.open`, {\n input: Schema.Struct({\n plugin: Schema.optional(Schema.String),\n }),\n output: Schema.Void,\n }) {}\n\n export class OpenPluginRegistry extends Schema.TaggedClass<OpenPluginRegistry>()(`${meta.id}.open-plugin-registry`, {\n input: Schema.Void,\n output: Schema.Void,\n }) {}\n}\n"],
|
|
5
|
-
"mappings": ";;;AAMO,IAAMA,OAAoB;EAC/BC,IAAI;EACJC,MAAM;AACR;;;ACLA,YAAYC,YAAY;AAExB,SAASC,yBAAyB;AAI3B,IAAMC,cAAcC,kBAAkB,eAAA;AACtC,IAAMC,eAAe;UAEXC,iBAAAA;EACR,MAAMC,aAAoBC,mBAAW,EAAS,GAAGC,KAAKC,EAAE,SAAS;IACtEC,OAAcC,cAAO;MACnBC,QAAeC,gBAAgBC,aAAM;IACvC,CAAA;IACAC,QAAeC;EACjB,CAAA,EAAA;EAAI;kBALSV,OAAAA;EAON,MAAMW,2BAAkCV,mBAAW,EAAuB,GAAGC,KAAKC,EAAE,yBAAyB;IAClHC,OAAcM;IACdD,QAAeC;EACjB,CAAA,EAAA;EAAI;kBAHSC,qBAAAA;AAIf,GAZiBZ,mBAAAA,iBAAAA,CAAAA,EAAAA;;",
|
|
6
|
-
"names": ["meta", "id", "name", "Schema", "pinnedWorkspaceId", "SETTINGS_ID", "pinnedWorkspaceId", "SETTINGS_KEY", "SettingsAction", "Open", "TaggedClass", "meta", "id", "input", "Struct", "plugin", "optional", "String", "output", "Void", "OpenPluginRegistry"]
|
|
7
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
-
import {
|
|
3
|
-
SETTINGS_ID,
|
|
4
|
-
SETTINGS_KEY
|
|
5
|
-
} from "./chunk-D7CHCV5B.mjs";
|
|
6
|
-
|
|
7
|
-
// src/operations/open.ts
|
|
8
|
-
import * as Effect from "effect/Effect";
|
|
9
|
-
import { Capabilities, Capability } from "@dxos/app-framework";
|
|
10
|
-
import { LayoutOperation, SettingsOperation, getSpacePath } from "@dxos/app-toolkit";
|
|
11
|
-
import { Operation } from "@dxos/operation";
|
|
12
|
-
var handler = SettingsOperation.Open.pipe(Operation.withHandler((input) => Effect.gen(function* () {
|
|
13
|
-
const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);
|
|
14
|
-
yield* invoke(LayoutOperation.SwitchWorkspace, {
|
|
15
|
-
subject: getSpacePath(SETTINGS_ID)
|
|
16
|
-
});
|
|
17
|
-
if (input.plugin) {
|
|
18
|
-
yield* Effect.fork(invoke(LayoutOperation.Open, {
|
|
19
|
-
subject: [
|
|
20
|
-
`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:${input.plugin.replaceAll("/", ":")}`
|
|
21
|
-
]
|
|
22
|
-
}));
|
|
23
|
-
}
|
|
24
|
-
})));
|
|
25
|
-
var open_default = handler;
|
|
26
|
-
export {
|
|
27
|
-
open_default as default
|
|
28
|
-
};
|
|
29
|
-
//# sourceMappingURL=open-QOPG73Y7.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/operations/open.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\n\nimport { Capabilities, Capability } from '@dxos/app-framework';\nimport { LayoutOperation, SettingsOperation, getSpacePath } from '@dxos/app-toolkit';\nimport { Operation } from '@dxos/operation';\n\nimport { SETTINGS_ID, SETTINGS_KEY } from '../actions';\n\nconst handler: Operation.WithHandler<typeof SettingsOperation.Open> = SettingsOperation.Open.pipe(\n Operation.withHandler((input) =>\n Effect.gen(function* () {\n const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);\n yield* invoke(LayoutOperation.SwitchWorkspace, { subject: getSpacePath(SETTINGS_ID) });\n if (input.plugin) {\n yield* Effect.fork(\n invoke(LayoutOperation.Open, {\n subject: [`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:${input.plugin.replaceAll('/', ':')}`],\n }),\n );\n }\n }),\n ),\n);\n\nexport default handler;\n"],
|
|
5
|
-
"mappings": ";;;;;;;AAIA,YAAYA,YAAY;AAExB,SAASC,cAAcC,kBAAkB;AACzC,SAASC,iBAAiBC,mBAAmBC,oBAAoB;AACjE,SAASC,iBAAiB;AAI1B,IAAMC,UAAgEC,kBAAkBC,KAAKC,KAC3FC,UAAUC,YAAY,CAACC,UACdC,WAAI,aAAA;AACT,QAAM,EAAEC,OAAM,IAAK,OAAOC,WAAWC,IAAIC,aAAaC,gBAAgB;AACtE,SAAOJ,OAAOK,gBAAgBC,iBAAiB;IAAEC,SAASC,aAAaC,WAAAA;EAAa,CAAA;AACpF,MAAIX,MAAMY,QAAQ;AAChB,WAAcC,YACZX,OAAOK,gBAAgBX,MAAM;MAC3Ba,SAAS;QAAC,GAAGC,aAAaC,WAAAA,CAAAA,IAAgBG,YAAAA,IAAgBd,MAAMY,OAAOG,WAAW,KAAK,GAAA,CAAA;;IACzF,CAAA,CAAA;EAEJ;AACF,CAAA,CAAA,CAAA;AAIJ,IAAA,eAAerB;",
|
|
6
|
-
"names": ["Effect", "Capabilities", "Capability", "LayoutOperation", "SettingsOperation", "getSpacePath", "Operation", "handler", "SettingsOperation", "Open", "pipe", "Operation", "withHandler", "input", "gen", "invoke", "Capability", "get", "Capabilities", "OperationInvoker", "LayoutOperation", "SwitchWorkspace", "subject", "getSpacePath", "SETTINGS_ID", "plugin", "fork", "SETTINGS_KEY", "replaceAll"]
|
|
7
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
-
import {
|
|
3
|
-
SETTINGS_ID,
|
|
4
|
-
SETTINGS_KEY
|
|
5
|
-
} from "./chunk-D7CHCV5B.mjs";
|
|
6
|
-
|
|
7
|
-
// src/operations/open-plugin-registry.ts
|
|
8
|
-
import * as Effect from "effect/Effect";
|
|
9
|
-
import { Capabilities, Capability } from "@dxos/app-framework";
|
|
10
|
-
import { LayoutOperation, SettingsOperation, getSpacePath } from "@dxos/app-toolkit";
|
|
11
|
-
import { Operation } from "@dxos/operation";
|
|
12
|
-
var handler = SettingsOperation.OpenPluginRegistry.pipe(Operation.withHandler(() => Effect.gen(function* () {
|
|
13
|
-
const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);
|
|
14
|
-
yield* invoke(LayoutOperation.SwitchWorkspace, {
|
|
15
|
-
subject: getSpacePath(SETTINGS_ID)
|
|
16
|
-
});
|
|
17
|
-
yield* Effect.fork(invoke(LayoutOperation.Open, {
|
|
18
|
-
subject: [
|
|
19
|
-
`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:plugins`
|
|
20
|
-
]
|
|
21
|
-
}));
|
|
22
|
-
})));
|
|
23
|
-
var open_plugin_registry_default = handler;
|
|
24
|
-
export {
|
|
25
|
-
open_plugin_registry_default as default
|
|
26
|
-
};
|
|
27
|
-
//# sourceMappingURL=open-plugin-registry-MD3Z3M2A.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/operations/open-plugin-registry.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\n\nimport { Capabilities, Capability } from '@dxos/app-framework';\nimport { LayoutOperation, SettingsOperation, getSpacePath } from '@dxos/app-toolkit';\nimport { Operation } from '@dxos/operation';\n\nimport { SETTINGS_ID, SETTINGS_KEY } from '../actions';\n\nconst handler: Operation.WithHandler<typeof SettingsOperation.OpenPluginRegistry> =\n SettingsOperation.OpenPluginRegistry.pipe(\n Operation.withHandler(() =>\n Effect.gen(function* () {\n const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);\n yield* invoke(LayoutOperation.SwitchWorkspace, { subject: getSpacePath(SETTINGS_ID) });\n yield* Effect.fork(\n invoke(LayoutOperation.Open, {\n subject: [`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:plugins`],\n }),\n );\n }),\n ),\n );\n\nexport default handler;\n"],
|
|
5
|
-
"mappings": ";;;;;;;AAIA,YAAYA,YAAY;AAExB,SAASC,cAAcC,kBAAkB;AACzC,SAASC,iBAAiBC,mBAAmBC,oBAAoB;AACjE,SAASC,iBAAiB;AAI1B,IAAMC,UACJC,kBAAkBC,mBAAmBC,KACnCC,UAAUC,YAAY,MACbC,WAAI,aAAA;AACT,QAAM,EAAEC,OAAM,IAAK,OAAOC,WAAWC,IAAIC,aAAaC,gBAAgB;AACtE,SAAOJ,OAAOK,gBAAgBC,iBAAiB;IAAEC,SAASC,aAAaC,WAAAA;EAAa,CAAA;AACpF,SAAcC,YACZV,OAAOK,gBAAgBM,MAAM;IAC3BJ,SAAS;MAAC,GAAGC,aAAaC,WAAAA,CAAAA,IAAgBG,YAAAA;;EAC5C,CAAA,CAAA;AAEJ,CAAA,CAAA,CAAA;AAIN,IAAA,+BAAenB;",
|
|
6
|
-
"names": ["Effect", "Capabilities", "Capability", "LayoutOperation", "SettingsOperation", "getSpacePath", "Operation", "handler", "SettingsOperation", "OpenPluginRegistry", "pipe", "Operation", "withHandler", "gen", "invoke", "Capability", "get", "Capabilities", "OperationInvoker", "LayoutOperation", "SwitchWorkspace", "subject", "getSpacePath", "SETTINGS_ID", "fork", "Open", "SETTINGS_KEY"]
|
|
7
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
-
|
|
3
|
-
// src/capabilities/operation-handler/operation-handler.ts
|
|
4
|
-
import * as Effect from "effect/Effect";
|
|
5
|
-
import { Capabilities, Capability } from "@dxos/app-framework";
|
|
6
|
-
|
|
7
|
-
// src/operations/index.ts
|
|
8
|
-
import { OperationHandlerSet } from "@dxos/operation";
|
|
9
|
-
var SettingsOperationHandlerSet = OperationHandlerSet.lazy(() => import("./open-QOPG73Y7.mjs"), () => import("./open-plugin-registry-MD3Z3M2A.mjs"));
|
|
10
|
-
|
|
11
|
-
// src/capabilities/operation-handler/operation-handler.ts
|
|
12
|
-
var operation_handler_default = Capability.makeModule(Effect.fnUntraced(function* () {
|
|
13
|
-
return Capability.contributes(Capabilities.OperationHandler, SettingsOperationHandlerSet);
|
|
14
|
-
}));
|
|
15
|
-
export {
|
|
16
|
-
operation_handler_default as default
|
|
17
|
-
};
|
|
18
|
-
//# sourceMappingURL=operation-handler-AYVEPQZN.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/capabilities/operation-handler/operation-handler.ts", "../../../src/operations/index.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\n\nimport { Capabilities, Capability } from '@dxos/app-framework';\nimport type { OperationHandlerSet } from '@dxos/operation';\n\nimport { SettingsOperationHandlerSet } from '../../operations';\n\nexport default Capability.makeModule<OperationHandlerSet.OperationHandlerSet>(\n Effect.fnUntraced(function* () {\n return Capability.contributes(Capabilities.OperationHandler, SettingsOperationHandlerSet);\n }),\n);\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { OperationHandlerSet } from '@dxos/operation';\n\nexport const SettingsOperationHandlerSet = OperationHandlerSet.lazy(\n () => import('./open'),\n () => import('./open-plugin-registry'),\n);\n"],
|
|
5
|
-
"mappings": ";;;AAIA,YAAYA,YAAY;AAExB,SAASC,cAAcC,kBAAkB;;;ACFzC,SAASC,2BAA2B;AAE7B,IAAMC,8BAA8BC,oBAAoBC,KAC7D,MAAM,OAAO,qBAAA,GACb,MAAM,OAAO,qCAAA,CAAA;;;ADGf,IAAA,4BAAeC,WAAWC,WACjBC,kBAAW,aAAA;AAChB,SAAOF,WAAWG,YAAYC,aAAaC,kBAAkBC,2BAAAA;AAC/D,CAAA,CAAA;",
|
|
6
|
-
"names": ["Effect", "Capabilities", "Capability", "OperationHandlerSet", "SettingsOperationHandlerSet", "OperationHandlerSet", "lazy", "Capability", "makeModule", "fnUntraced", "contributes", "Capabilities", "OperationHandler", "SettingsOperationHandlerSet"]
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"app-graph-builder.d.ts","sourceRoot":"","sources":["../../../../../src/capabilities/app-graph-builder/app-graph-builder.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAAgB,UAAU,EAA0B,MAAM,qBAAqB,CAAC;AACvF,OAAO,EAAE,YAAY,EAAe,MAAM,iBAAiB,CAAC;;AAQ5D,wBAgFE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/capabilities/app-graph-builder/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,eAAO,MAAM,uBAAuB,qIAAkF,CAAC"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Capability } from '@dxos/app-framework';
|
|
2
|
-
import { OperationHandlerSet } from '@dxos/operation';
|
|
3
|
-
export declare const OperationHandler: Capability.LazyCapability<OperationHandlerSet.OperationHandlerSet, Capability.ModuleReturn, Error>;
|
|
4
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/capabilities/operation-handler/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAEtD,eAAO,MAAM,gBAAgB,oGAG5B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"operation-handler.d.ts","sourceRoot":"","sources":["../../../../../src/capabilities/operation-handler/operation-handler.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAAgB,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;;AAI3D,wBAIE"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Copyright 2025 DXOS.org
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
import { Capability } from '@dxos/app-framework';
|
|
6
|
-
import { OperationHandlerSet } from '@dxos/operation';
|
|
7
|
-
|
|
8
|
-
export const OperationHandler = Capability.lazy<OperationHandlerSet.OperationHandlerSet>(
|
|
9
|
-
'OperationHandler',
|
|
10
|
-
() => import('./operation-handler'),
|
|
11
|
-
);
|
|
File without changes
|
|
File without changes
|