@get-milano/react 2.1.0
    Preparing search index...

    Class MilanoNode

    A resolved node, ready to render: typed property reads, materialized children with stable identity, and the emission surface.

    Index
    • get children(): ReactElement<unknown, string | JSXElementConstructor<any>>[]

      The node's materialized children, ready to place. Each carries its node reference as the React key, so identity survives re-resolution. Always empty for types that do not declare children.

      Returns ReactElement<unknown, string | JSXElementConstructor<any>>[]

    • get reference(): string

      The node's id, or canonical path when no id is declared.

      Returns string

    • get type(): string

      The component type name.

      Returns string

    • Emits a declared event into dispatch; invalid emissions are dropped and reported.

      Parameters

      • event: string
      • payload: MilanoValue | null = null

      Returns void

    • The resolved value of a declared property. Because the gate type-checked everything, reading with the declared type's accessor always succeeds; an absent optional is null.

      Parameters

      • name: string

      Returns MilanoValue

    • Reports a widget interaction to the engine's user-interaction stream, for signals the document does not model as events (focus, visibility, selection). Never touches dispatch or state.

      Parameters

      • kind: MilanoUserInteractionKind
      • value: MilanoValue | null = null

      Returns void