@luminocity/lemonate-gateway 8.2.31 → 8.2.32

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 CHANGED
@@ -790,9 +790,13 @@ declare class Block extends Snapshotable {
790
790
  outputs: any[];
791
791
  posX: number;
792
792
  posY: number;
793
+ private _fieldsByName;
794
+ private _firstLinkField?;
793
795
  constructor(id?: string | Snapshot | undefined, parent?: Block | undefined, type?: string | undefined, name?: string | undefined, displayName?: string | undefined, item?: PreparedItem | undefined);
794
796
  getId(): string;
795
797
  setSubNodeId(id: string | undefined): void;
798
+ getFirstLinkField(): Field | null;
799
+ findField(name: string): Field | null | undefined;
796
800
  getPositionInParent(): number;
797
801
  refreshFieldDependencies(): void;
798
802
  resetFieldValues(withChildren?: boolean): void;
@@ -808,7 +812,6 @@ declare class Block extends Snapshotable {
808
812
  setExpanded(value: boolean): void;
809
813
  getRoot(): Block;
810
814
  forEachField(func: (field: Field) => void): void;
811
- findField(name: string): Field | null;
812
815
  findBlock(id: string): Block | null;
813
816
  removeBlock(block: Block): void;
814
817
  addBlock(block: Block, position: number): void;