Open DevNatan opened 11 months ago
Create a interface Configurable containing ViewConfig getConfig() that is implemented by IFViewFrame, RootView, IFContext and Component.
interface Configurable
ViewConfig getConfig()
onSetup
onOpen
onInit
defaultConfig
This allows components to use component-specific configurations like interactionDelay, cancelOnClick and external features modifiers
interactionDelay
cancelOnClick
Create a
interface Configurable
containingViewConfig getConfig()
that is implemented by IFViewFrame, RootView, IFContext and Component.onSetup
(called once when component is ready to be rendered) and inherits from IFContext;onOpen
(called once before context render) and inherits from RootView;onInit
(called once during view initialization) and inherits from IFViewFrame;defaultConfig
.This allows components to use component-specific configurations like
interactionDelay
,cancelOnClick
and external features modifiers