@bpmnkit/operate 0.0.8 → 0.0.10

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.
@@ -3,7 +3,7 @@ interface Config {
3
3
  proxyUrl: string;
4
4
  profile: string | null;
5
5
  mock: boolean;
6
- theme: "light" | "dark";
6
+ theme: "light" | "dark" | "neon";
7
7
  }
8
8
  export declare function createTaskDetailView(taskKey: string, store: TasksStore, cfg: Config, onBack: () => void): {
9
9
  el: HTMLElement;
@@ -92,7 +92,11 @@ export function createTaskDetailView(taskKey, store, cfg, onBack) {
92
92
  const formContainer = document.createElement("div");
93
93
  formContainer.className = "op-task-form-container";
94
94
  formWrap.appendChild(formContainer);
95
- editor = new FormEditor({ container: formContainer, theme: cfg.theme, readonly: true });
95
+ editor = new FormEditor({
96
+ container: formContainer,
97
+ theme: cfg.theme === "neon" ? "dark" : cfg.theme,
98
+ readonly: true,
99
+ });
96
100
  editor.loadSchema(schema).catch(() => { });
97
101
  }
98
102
  function showNoForm() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmnkit/operate",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Monitoring and operations frontend for Camunda 8 clusters — real-time SSE, zero dependencies",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -18,11 +18,11 @@
18
18
  "dist/**/*.d.ts"
19
19
  ],
20
20
  "dependencies": {
21
- "@bpmnkit/api": "0.0.11",
22
- "@bpmnkit/canvas": "0.0.11",
23
- "@bpmnkit/core": "0.0.11",
24
- "@bpmnkit/plugins": "0.0.11",
25
- "@bpmnkit/ui": "0.0.7"
21
+ "@bpmnkit/api": "0.0.12",
22
+ "@bpmnkit/canvas": "0.0.13",
23
+ "@bpmnkit/core": "0.0.13",
24
+ "@bpmnkit/plugins": "0.0.13",
25
+ "@bpmnkit/ui": "0.0.8"
26
26
  },
27
27
  "keywords": [
28
28
  "bpmn",