Home Reference Source

References

components

summary
public

C App

public

// TODO: Integrate this concept into Control, using wrapComponent // as the property.

public

Provides focus-management functionality for controls that can function as a container for other controls.

public

Defines the base class for controls, which are components with visual representation.

public

C Form

Form is a ContainerControl which will select the first control upon activation.

public

The Sequence control is a Control which presents its individual child controls sequentially.

public

C Tab

public

C TabBar

public

tests/renderers

summary
public

F renderJSDOM(component: *, window: *): *

public

F renderState(component: *, window: *): *

public

V cleanupInk: *

public

V renderInk: *

utils

summary
public

F isClassOrComponent(refClass: *, inst: *): *

Returns a boolean which indicates if the provided anyInst matches any of the following conditions (given class A extends React.Component {...} and class B extends class A {...}):

public

F isClassOrComponentFactory(refClass: *): *

Returns a function in the format (anyInst) => boolean which returns a boolean which indicates if the provided anyInst matches any of the following conditions (given class A extends React.Component {...} and class B extends class A {...}), where A refers to the type provided in refClass:

public

F isDerivedClass(refClass: *, derivedClassB: *): *

Returns a boolean which indicates if the provided derivedClassB matches the following true when the following two conditions are met: refClass is a type and derivedClassB is a type extended from refClass.

public

F isDerivedComponent(refBaseClass: *, componentA: *): *

Returns a boolean which indicates that the provided derivedComponentB component is a React Component as created by React.createElement() instantiated using the refBaseClass base type and is true only when the following conditions are met:

public

F isExactClass(refClass: *, classA: *): *

Returns a boolean which indicates that the provided classA matches the provided refClass and is true only when the following conditions are met:

public

F isExactComponent(refClass: *, componentA: *): *

Returns a boolean which indicates that the provided componentA component is a React Component as created by React.createElement() instantiated using the refClass type and is true only when the following conditions are met:

public

F isInstanceOf(refClass: *, classA: *): *

Returns a boolean which indicates that the provided inst matches is an instance of the provided refClass class and is true only when the following conditions are met:

Directories