components_Container._internal_
perfect-graph / Modules / components/Container / <internal>
Namespace: <internal>#
Table of contents#
Type aliases#
- ContainerPropsWithRef
- InteractionEventTypes
- InteractionMouseEvents
- InteractionPixiEvents
- InteractionPointerEvents
- InteractionTouchEvents
- PIXIBasicProps
- PIXIDisplayObjectProps
- PropsWithRef
Type aliases#
ContainerPropsWithRef#
Ƭ ContainerPropsWithRef: PropsWithRef<PIXI.Container, ContainerProps>
Defined in#
components/Container/index.tsx:30
InteractionEventTypes#
Ƭ InteractionEventTypes: InteractionPointerEvents | InteractionTouchEvents | InteractionMouseEvents | InteractionPixiEvents
Defined in#
InteractionMouseEvents#
Ƭ InteractionMouseEvents: "rightdown" | "mousedown" | "rightup" | "mouseup" | "rightclick" | "click" | "rightupoutside" | "mouseupoutside" | "mousemove" | "mouseover" | "mouseout"
Defined in#
InteractionPixiEvents#
Ƭ InteractionPixiEvents: "added" | "removed"
Defined in#
InteractionPointerEvents#
Ƭ InteractionPointerEvents: "pointerdown" | "pointercancel" | "pointerup" | "pointertap" | "pointerupoutside" | "pointermove" | "pointerover" | "pointerout"
Defined in#
InteractionTouchEvents#
Ƭ InteractionTouchEvents: "touchstart" | "touchcancel" | "touchend" | "touchendoutside" | "touchmove" | "tap"
Defined in#
PIXIBasicProps#
Ƭ PIXIBasicProps: { buttonMode?: boolean ; interactive?: boolean } & { [k in InteractionEventTypes]?: Function }
Defined in#
PIXIDisplayObjectProps#
Ƭ PIXIDisplayObjectProps: Object
Type declaration#
| Name | Type | Description |
|---|---|---|
buttonMode? | boolean | To make object clickable |
interactive? | boolean | To make object interactive |
Defined in#
PropsWithRef#
Ƭ PropsWithRef<C, P>: Omit<P, "ref"> & { ref?: React.Ref<C> }
Type parameters#
| Name |
|---|
C |
P |