@ghchinoy/litflow 0.4.0 → 0.4.1

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/CHANGELOG.md CHANGED
@@ -3,18 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## 2025-12-26
6
- - Implement M3-styled Controls component (litflow-qwm)
7
- - Style lit-handle with Material 3 (litflow-rip)
8
- - Style lit-node with Material 3 (litflow-clx)
9
6
  - Example: Static Documentation Display (litflow-l52)
10
7
  - Packaging and Distribution (litflow-b9b)
11
8
  - Implement manual edge connections (litflow-ycn)
12
- - Establish Material 3 Design System (litflow-m7y)
13
9
  - Investigate and fix node jumping on subsequent drags (litflow-v7y)
14
10
  - Example: Custom Nodes with Lit templates (litflow-aop)
15
11
  - Implement Controls and MiniMap components (litflow-04c)
16
12
  - Example: Dynamic Interactivity (Add/Remove) (litflow-4bd)
17
- - Implement SignalWatcher in lit-node and lit-edge (litflow-lu1)
18
13
  - Integrate Lit Signals for state management (litflow-txd)
19
14
  - Refactor store.ts to use @lit-labs/signals (litflow-jdv)
20
15
  - Migrate from npm to pnpm (litflow-ytd)
@@ -33,7 +28,6 @@ All notable changes to this project will be documented in this file.
33
28
  - Implement Edge Markers (Arrowheads) (litflow-c56)
34
29
  - Configurable Node Naming on Drop (litflow-8ku)
35
30
  - Create Drag & Drop Guide (litflow-w6v)
36
- - Implement M3-styled Sidebar for Drag & Drop (litflow-kyi)
37
31
  - Implement project method in LitFlow (litflow-ypx)
38
32
  - Investigate and implement Edge Labels (litflow-1ed)
39
33
  - Tutorial: Building Static Documentation with LitFlow (litflow-vgd)
@@ -54,6 +48,12 @@ All notable changes to this project will be documented in this file.
54
48
  - Example: Inspector Designer with live JSON sync (litflow-0i5)
55
49
 
56
50
  ## 2026-01-03
51
+ - Epic: Tasker Integration Enhancements (litflow-hf4)
52
+ - Feature: Data-First Mapper Component (litflow-hf4.4)
53
+ - Improvement: Define static styles on LitNode (litflow-hf4.7)
54
+ - Docs: "Getting Started" Tutorial (litflow-kev)
55
+ - Example: Subgraph Isolation API (litflow-c5l)
56
+ - Example: Zero-Config Automatic Layout (litflow-8np)
57
57
  - Feature: M3 Standardized Node Slots (litflow-hf4.5)
58
58
  - Feature: Sub-Graph Focus/Isolate API (litflow-hf4.2)
59
59
  - Feature: Built-in Layout Orchestration (litflow-hf4.1)
@@ -1,6 +1,7 @@
1
1
  import { LitElement } from 'lit';
2
2
  declare const LitNode_base: typeof LitElement;
3
3
  export declare class LitNode extends LitNode_base {
4
+ static styles: import("lit").CSSResult;
4
5
  createRenderRoot(): this;
5
6
  label: string;
6
7
  type: string;