Documentation ¶
Overview ¶
Package vugu provides core functionality including vugu->go codegen and in-browser DOM syncing running in WebAssembly. See http://www.vugu.org/
Since Vugu projects can have both client-side (running in WebAssembly) as well as server-side functionality many of the items in this package are available in both environments. Some however are either only available or only generally useful in one environment.
Common functionality includes the ComponentType interface, and ComponentInst struct corresponding to an instantiated componnet. VGNode and related structs are used to represent a virtual Document Object Model. It is based on golang.org/x/net/html but with additional fields needed for Vugu. Data hashing is performed by ComputeHash() and can be customized by implementing the DataHasher interface.
Client-side code uses JSEnv to maintain a render loop and regenerate virtual DOM and efficiently synchronize it with the browser as needed. DOMEvent is a wrapper around events from the browser and EventEnv is used to synchronize data access when writing event handler code that spawns goroutines. Where appropriate, server-side stubs are available so components can be compiled for both client (WebAssembly) and server (server-side rendering and testing).
Server-side code can use ParserGo and ParserGoPkg to parse .vugu files and code generate a corresponding .go file. StaticHTMLEnv can be used to generate static HTML, similar to the output of JSEnv but can be run on the server. Supported features are approximately the same minus event handling, unapplicable to static output.
Index ¶
- Constants
- func MakeCompKeyID(t time.Time, data uint32) uint64
- func MakeCompKeyIDNowRand() uint64
- func MakeCompKeyIDTimeHash(t time.Time, b []byte) uint64
- type AttrMap
- type BeforeBuilder
- type BuildEnv
- type BuildIn
- type BuildOut
- type BuildResults
- type Builder
- type ChangeCounter
- type CompKey
- type ComputeCtx
- type DOMEvent
- type DOMEventHandlerSpec
- type DestroyCtx
- type EventEnv
- type EventEnvImpl
- type HTML
- type HTMLer
- type InitCtx
- type JSValueFunc
- type JSValueHandler
- type ModChecker
- type ModTracker
- type RenderedCtx
- type VGAttribute
- type VGAttributeLister
- type VGAttributeListerFunc
- type VGNode
- func (n *VGNode) AddAttrInterface(key string, val interface{})
- func (n *VGNode) AddAttrList(lister VGAttributeLister)
- func (n *VGNode) AppendChild(c *VGNode)
- func (n *VGNode) InsertBefore(newChild, oldChild *VGNode)
- func (n *VGNode) IsComponent() bool
- func (n *VGNode) IsTemplate() bool
- func (n *VGNode) RemoveChild(c *VGNode)
- func (n *VGNode) SetInnerHTML(val interface{})
- func (n *VGNode) Walk(f func(*VGNode) error) error
- type VGNodeType
- type VGProperty
Constants ¶
const ( ErrorNode = VGNodeType(0) TextNode = VGNodeType(1) DocumentNode = VGNodeType(2) ElementNode = VGNodeType(3) CommentNode = VGNodeType(4) DoctypeNode = VGNodeType(5) )
Available VGNodeTypes.
Variables ¶
This section is empty.
Functions ¶
func MakeCompKeyID ¶ added in v0.2.0
MakeCompKeyID forms a value for CompKey.ID from the given time the uint32 you provide for the lower 32 bits.
func MakeCompKeyIDNowRand ¶ added in v0.2.0
func MakeCompKeyIDNowRand() uint64
MakeCompKeyIDNowRand generates a value for CompKey.ID based on the current unix timestamp in seconds for the top 32 bits and the bottom 32 bits populated from a random source
Types ¶
type AttrMap ¶ added in v0.3.0
type AttrMap map[string]interface{}
AttrMap implements VGAttributeLister as a map[string]interface{}
func (AttrMap) AttributeList ¶ added in v0.3.0
func (m AttrMap) AttributeList() (ret []VGAttribute)
AttributeList returns an attribute list corresponding to this map using the rules from VGNode.AddAttrInterface.
type BeforeBuilder ¶ added in v0.2.0
type BeforeBuilder interface {
BeforeBuild()
}
BeforeBuilder is deprecated. It is replaced by the Compute lifecycle callback.
type BuildEnv ¶ added in v0.2.0
type BuildEnv struct {
// contains filtered or unexported fields
}
BuildEnv is the environment used when building virtual DOM.
func NewBuildEnv ¶ added in v0.2.0
NewBuildEnv returns a newly initialized BuildEnv. The eventEnv is used to implement lifecycle callbacks on components, it's a vararg for now in order to avoid breaking earlier code but it should be provided in all new code written.
func (*BuildEnv) CachedComponent ¶ added in v0.2.0
CachedComponent will return the component that corresponds to a given CompKey. The CompKey must contain a unique ID for the instance in question, and an optional IterKey if applicable in the caller. A nil value will be returned if nothing is found. During a single build pass only one component will be returned for a specified key (it is removed from the pool), in order to protect against broken callers that accidentally forget to set IterKey properly and ask for the same component over and over, in whiich case the first call will return a value and subsequent calls will return nil.
func (*BuildEnv) RunBuild ¶ added in v0.2.0
func (e *BuildEnv) RunBuild(builder Builder) *BuildResults
RunBuild performs a bulid on a component, managing the lifecycles of nested components and related concerned. In the map that is output, m[builder] will give the BuildOut for the component in question. Child components can likewise be indexed using the component (which should be a struct pointer) as the key. Callers should not modify the return value as it is reused by subsequent calls.
func (*BuildEnv) SetWireFunc ¶ added in v0.2.0
SetWireFunc assigns the function to be called by WireComponent. If not set then WireComponent will have no effect.
func (*BuildEnv) UseComponent ¶ added in v0.2.0
UseComponent indicates the component which was actually used for a specified CompKey during this build pass and stores it for later use. In the next build pass, components which have be provided UseComponent() will be available via CachedComponent().
func (*BuildEnv) WireComponent ¶ added in v0.2.0
WireComponent calls the wire function on this component. This is called during component creation and use and provides an opportunity to inject things into this component.
type BuildIn ¶ added in v0.2.0
type BuildIn struct { // the overall build environment BuildEnv *BuildEnv // a stack of position hashes, the last one can be used by a component to get a unique hash for overall position PositionHashList []uint64 }
BuildIn is the input to a Build call.
func (*BuildIn) CurrentPositionHash ¶ added in v0.2.3
CurrentPositionHash returns the hash value that can be used by a component to mix into it's own hash values to achieve uniqueness based on overall position in the output tree. Basically you should XOR this with whatever unique reference ID within the component itself used during Build. The purpose is to ensure that we use the same ID for the same component in the same position within the overall tree but a different one for the same component in a different position.
type BuildOut ¶ added in v0.2.0
type BuildOut struct { // output element(s) - usually just one that is parent to the rest but slots can have multiple Out []*VGNode // components that need to be built next - corresponding to each VGNode in Out with a Component value set, // we make the Builder populate this so BuildEnv doesn't have to traverse Out to gather up each node with a component // FIXME: should this be called ChildComponents, NextComponents? something to make it clear that these are pointers to more work to // do rather than something already done Components []Builder // optional CSS style or link tag(s) CSS []*VGNode // optional JS script tag(s) JS []*VGNode }
BuildOut is the output from a Build call. It includes Out as the DOM elements produced, plus slices for CSS and JS elements.
type BuildResults ¶ added in v0.2.0
type BuildResults struct { Out *BuildOut // contains filtered or unexported fields }
BuildResults contains the BuildOut values for full tree of components built.
func (*BuildResults) ResultFor ¶ added in v0.2.0
func (r *BuildResults) ResultFor(component interface{}) *BuildOut
ResultFor is alias for indexing into AllOut.
type Builder ¶ added in v0.2.0
type Builder interface { // Build is called to construct a tree of VGNodes corresponding to the DOM of this component. // Note that Build does not return an error because there is nothing the caller can do about // it except for stop rendering. This way we force errors during Build to either be handled // internally or to explicitly result in a panic. Build(in *BuildIn) (out *BuildOut) }
Builder is the interface that components implement.
func NewBuilderFunc ¶ added in v0.3.0
NewBuilderFunc returns a Builder from a function that is called for Build.
type ChangeCounter ¶ added in v0.2.0
type ChangeCounter int
ChangeCounter is a number that can be incremented to indicate modification. The ModCheck method is implemented using this number. A ChangeCounter can be used directly or embedded in a struct, with its methods calling Changed on each mutating operation, in order to track its modification.
func (*ChangeCounter) Changed ¶ added in v0.2.0
func (c *ChangeCounter) Changed()
Changed increments the counter to indicate a modification.
func (*ChangeCounter) ModCheck ¶ added in v0.2.0
func (c *ChangeCounter) ModCheck(mt *ModTracker, oldData interface{}) (isModified bool, newData interface{})
ModCheck implements the ModChecker interface.
type CompKey ¶ added in v0.2.0
type CompKey struct { ID uint64 // unique ID for this instance of a component, randomly generated and embeded into source code IterKey interface{} // optional iteration key to distinguish the same component reference in source code but different loop iterations }
CompKey is the key used to identify and look up a component instance.
func MakeCompKey ¶ added in v0.2.0
MakeCompKey creates a CompKey from the id and iteration key you provide. The purpose is to hide the implementation of CompKey as it can vary.
type ComputeCtx ¶ added in v0.3.3
type ComputeCtx interface {
EventEnv() EventEnv
}
ComputeCtx is the context passed to a Compute callback.
type DOMEvent ¶
type DOMEvent interface { // Prop returns a value from the EventSummary using the keys you specify. // The keys is a list of map keys to be looked up. For example: // e.Prop("target", "name") will return the same value as e.EventSummary()["target"]["name"], // except that Prop helps with some edge cases and if a value is missing // of the wrong type, nil will be returned, instead of panicing. Prop(keys ...string) interface{} // PropString is like Prop but returns it's value as a string. // No type conversion is done, if the requested value is not // already a string then an empty string will be returned. PropString(keys ...string) string // PropFloat64 is like Prop but returns it's value as a float64. // No type conversion is done, if the requested value is not // already a float64 then float64(0) will be returned. PropFloat64(keys ...string) float64 // PropBool is like Prop but returns it's value as a bool. // No type conversion is done, if the requested value is not // already a bool then false will be returned. PropBool(keys ...string) bool // EventSummary returns a map with simple properties (primitive types) from the event. // Accessing values returns by EventSummary incurs no additional performance or memory // penalty, whereas calls to JSEvent, JSEventTarget, etc. require a call into the browser // JS engine and the attendant resource usage. So if you can get the information you // need from the EventSummary, that's better. EventSummary() map[string]interface{} // JSEvent returns a js.Value in wasm that corresponds to the event object. // Non-wasm implementation returns nil. JSEvent() js.Value // JSEventTarget returns the value of the "target" property of the event, the element // that the event was originally fired/registered on. JSEventTarget() js.Value // JSEventCurrentTarget returns the value of the "currentTarget" property of the event, the element // that is currently processing the event. JSEventCurrentTarget() js.Value // EventEnv returns the EventEnv for the current environment and allows locking and unlocking around modifications. // See EventEnv struct. EventEnv() EventEnv // PreventDefault calls preventDefault() on the underlying DOM event. // May only be used within event handler in same goroutine. PreventDefault() // StopPropagation calls stopPropagation() on the underlying DOM event. // May only be used within event handler in same goroutine. StopPropagation() }
DOMEvent is an event originated in the browser. It wraps the JS event that comes in. It is meant to be used in WebAssembly but some methods exist here so code can compile server-side as well (although DOMEvents should not ever be generated server-side).
func NewDOMEvent ¶ added in v0.2.0
NewDOMEvent returns a new initialized DOMEvent.
type DOMEventHandlerSpec ¶ added in v0.2.0
type DOMEventHandlerSpec struct { EventType string // "click", "mouseover", etc. Func func(DOMEvent) Capture bool Passive bool }
DOMEventHandlerSpec describes an event that gets registered with addEventListener.
type DestroyCtx ¶ added in v0.3.3
type DestroyCtx interface {
EventEnv() EventEnv
}
DestroyCtx is the context passed to a Destroy callback.
type EventEnv ¶
type EventEnv interface { Lock() // acquire write lock UnlockOnly() // release write lock UnlockRender() // release write lock and request re-render RLock() // acquire read lock RUnlock() // release read lock }
EventEnv provides locking mechanism to for rendering environment to events so data access and rendering can be synchronized and avoid race conditions.
type EventEnvImpl ¶ added in v0.2.0
type EventEnvImpl struct {
// contains filtered or unexported fields
}
EventEnvImpl implements EventEnv
func NewEventEnvImpl ¶ added in v0.2.0
func NewEventEnvImpl(rwmu *sync.RWMutex, requestRenderCH chan bool) *EventEnvImpl
NewEventEnvImpl creates and returns a new EventEnvImpl.
func (*EventEnvImpl) Lock ¶ added in v0.2.0
func (ee *EventEnvImpl) Lock()
Lock will acquire write lock
func (*EventEnvImpl) RLock ¶ added in v0.2.0
func (ee *EventEnvImpl) RLock()
RLock will acquire a read lock
func (*EventEnvImpl) RUnlock ¶ added in v0.2.0
func (ee *EventEnvImpl) RUnlock()
RUnlock will release the read lock
func (*EventEnvImpl) UnlockOnly ¶ added in v0.2.0
func (ee *EventEnvImpl) UnlockOnly()
UnlockOnly will release the write lock
func (*EventEnvImpl) UnlockRender ¶ added in v0.2.0
func (ee *EventEnvImpl) UnlockRender()
UnlockRender will release write lock and request re-render
type HTML ¶ added in v0.3.0
type HTML string
HTML implements the HTMLer interface on a string with no transform, just returns the string as-is for raw HTML.
type HTMLer ¶ added in v0.3.0
type HTMLer interface {
HTML() string // return raw html (with any needed escaping already done)
}
HTMLer describes something that can return HTML.
type InitCtx ¶ added in v0.3.3
type InitCtx interface {
EventEnv() EventEnv
}
InitCtx is the context passed to an Init callback.
type JSValueFunc ¶ added in v0.3.0
JSValueFunc implements JSValueHandler as a function.
func (JSValueFunc) JSValueHandle ¶ added in v0.3.0
func (f JSValueFunc) JSValueHandle(v js.Value)
JSValueHandle implements the JSValueHandler interface.
type JSValueHandler ¶ added in v0.3.0
JSValueHandler does something with a js.Value
type ModChecker ¶ added in v0.2.0
type ModChecker interface {
ModCheck(mt *ModTracker, oldData interface{}) (isModified bool, newData interface{})
}
ModChecker interface is implemented by types that want to implement their own modification tracking. The ModCheck method is passed a ModTracker (for use in checking child values for modification if needed), and the prior data value stored corresponding to this value (will be nil on the first call). ModCheck should return true if this instance is modified, as well as a new data value to be stored. It is up to the specific implementation to decide what type to use for oldData and newData and how to compare them. In some cases it may be appropriate to return the value itself or a summarized version of it. But for types that use lots of memory and would otherwise take too much time to traverse, a counter or other value can be used to indicate that some changed is occured, with the rest of the application using mutator methods to increment this value upon change.
type ModTracker ¶ added in v0.2.0
type ModTracker struct {
// contains filtered or unexported fields
}
ModTracker tracks modifications and maintains the appropriate state for this.
func NewModTracker ¶ added in v0.2.0
func NewModTracker() *ModTracker
NewModTracker creates an empty ModTracker, calls TrackNext on it, and returns it.
func (*ModTracker) ModCheckAll ¶ added in v0.2.0
func (mt *ModTracker) ModCheckAll(values ...interface{}) (ret bool)
ModCheckAll performs a modification check on the values provided. For values implementing the ModChecker interface, the ModCheck method will be called. All values passed should be pointers to the types described below. Single-value primitive types are supported. Structs are supported and and are traversed by calling ModCheckAll on each with the tag `vugu:"modcheck"`. Arrays and slices of supported types are supported, their length is compared as well as a pointer to each member. As a special case []byte is treated like a string. Maps are not supported at this time. Other weird and wonderful things like channels and funcs are not supported. Passing an unsupported type will result in a panic.
func (*ModTracker) TrackNext ¶ added in v0.2.0
func (mt *ModTracker) TrackNext()
TrackNext moves the "current" information to the "old" position - starting a new round of change tracking. Calls to ModCheckAll after calling TrackNext will compare current values to the values from before the call to TrackNext. It is generally called once at the start of each build and render cycle. This method must be called at least once before doing modification checks.
type RenderedCtx ¶ added in v0.3.3
type RenderedCtx interface { EventEnv() EventEnv // in case you need to request re-render First() bool // true the first time this component is rendered }
RenderedCtx is the context passed to the Rendered callback.
type VGAttribute ¶
type VGAttribute struct {
Namespace, Key, Val string
}
VGAttribute is the attribute on an HTML tag.
type VGAttributeLister ¶ added in v0.2.2
type VGAttributeLister interface {
AttributeList() []VGAttribute
}
VGAttributeLister implements the required functionality, required by the `:=` attribute setter. Types may implement this interface, to
type VGAttributeListerFunc ¶ added in v0.2.2
type VGAttributeListerFunc func() []VGAttribute
The VGAttributeListerFunc type is an adapter to allow the use of functions as VGAttributeLister
func (VGAttributeListerFunc) AttributeList ¶ added in v0.2.2
func (f VGAttributeListerFunc) AttributeList() []VGAttribute
AttributeList calls the underlying function
type VGNode ¶
type VGNode struct {
Parent, FirstChild, LastChild, PrevSibling, NextSibling *VGNode
Type VGNodeType
// DataAtom VGAtom // this needed to come out, we're not using it and without well-defined behavior it just becomes confusing and problematic
Data string
Namespace string
Attr []VGAttribute
// JS properties to e set during render
Prop []VGProperty
InnerHTML *string // indicates that children should be ignored and this raw HTML is the children of this tag; nil means not set, empty string means explicitly set to empty string
DOMEventHandlerSpecList []DOMEventHandlerSpec // describes invocations when DOM events happen
// indicates this node's output should be delegated to the specified component
Component interface{}
// if not-nil, called when element is created (but before examining child nodes)
JSCreateHandler JSValueHandler
// if not-nil, called after children have been visited
JSPopulateHandler JSValueHandler
}
VGNode represents a node from our virtual DOM with the dynamic parts wired up into functions.
For the static parts, an instance of VGNode corresponds directly to the DOM representation of an HTML node. The pointers to other VGNode instances (Parent, FirstChild, etc.) are used to manage the tree. Type, Data, Namespace and Attr have the usual meanings for nodes.
The Component field, if not-nil indicates that rendering should be delegated to the specified component, all other fields are ignored.
Another special case is when Type is ElementNode and Data is an empty string (and Component is nil) then this node is a "template" (i.e. <vg-template>) and its children will be "flattened" into the DOM in position of this element and attributes, events, etc. ignored.
Prop contains JavaScript property values to be assigned during render. InnerHTML provides alternate HTML content instead of children. DOMEventHandlerSpecList specifies DOM handlers to register. And the JS...Handler fields are used to register callbacks to obtain information at JS render-time.
TODO: This and its related parts should probably move into a sub-package (vgnode?) and the "VG" prefixes removed.
func (*VGNode) AddAttrInterface ¶ added in v0.2.2
AddAttrInterface sets an attribute based on the given interface. The followings types are supported - string - value is used as attr value as it is - int,float,... - the value is converted to string with strconv and used as attr value - bool - treat the attribute as a flag. If false, the attribute will be ignored, if true outputs the attribute without a value - fmt.Stringer - if the value implements fmt.Stringer, the returned string of StringVar() is used - ptr - If the ptr is nil, the attribute will be ignored. Else, the rules above apply any other type is handled via fmt.Sprintf()
func (*VGNode) AddAttrList ¶ added in v0.2.2
func (n *VGNode) AddAttrList(lister VGAttributeLister)
AddAttrList takes a VGAttributeLister and sets the returned attributes to the node
func (*VGNode) AppendChild ¶
AppendChild adds a node c as a child of n.
It will panic if c already has a parent or siblings.
func (*VGNode) InsertBefore ¶
InsertBefore inserts newChild as a child of n, immediately before oldChild in the sequence of n's children. oldChild may be nil, in which case newChild is appended to the end of n's children.
It will panic if newChild already has a parent or siblings.
func (*VGNode) IsComponent ¶ added in v0.3.0
IsComponent returns true if this is a component (Component != nil). Components have rendering delegated to them instead of processing this node.
func (*VGNode) IsTemplate ¶ added in v0.3.0
IsTemplate returns true if this is a template (Type is ElementNode and Data is an empty string and not a Component). Templates have their children flattened into the output DOM instead of being processed directly.
func (*VGNode) RemoveChild ¶
RemoveChild removes a node c that is a child of n. Afterwards, c will have no parent and no siblings.
It will panic if c's parent is not n.
func (*VGNode) SetInnerHTML ¶ added in v0.3.0
func (n *VGNode) SetInnerHTML(val interface{})
SetInnerHTML assigns the InnerHTML field with useful logic based on the type of input. Values of string type are escaped using html.EscapeString(). Values in the int or float type families or bool are converted to a string using the strconv package (no escaping is required). Nil values set InnerHTML to nil. Non-nil pointers are followed and the same rules applied. Values implementing HTMLer will have their HTML() method called and the result put into InnerHTML without escaping. Values implementing fmt.Stringer have thier String() method called and the escaped result used as in string above.
All other values have undefined behavior but are currently handled by setting InnerHTML to the result of: `html.EscapeString(fmt.Sprintf("%v", val))`
func (*VGNode) Walk ¶
Walk will walk the tree under a VGNode using the specified callback function. If the function provided returns a non-nil error then walking will be stopped and this error will be returned. Only FirstChild and NextSibling are used while walking and so with well-formed documents should not loop. (But loops created manually by modifying FirstChild or NextSibling pointers could cause this function to recurse indefinitely.) Note that f may modify nodes as it visits them with predictable results as long as it does not modify elements higher on the tree (up, toward the parent); it is safe to modify self and children.
type VGNodeType ¶
type VGNodeType uint32
VGNodeType is one of the valid node types (error, text, document, element, comment, doctype). Note that only text, element and comment are currently used.
type VGProperty ¶ added in v0.2.0
VGProperty is a JS property to be set on a DOM element.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
cmd
|
|
vugugen
vugugen is a command line tool to convert .vugu files into Go source code.
|
vugugen is a command line tool to convert .vugu files into Go source code. |
Package devutil has tooling to make Vugu development simpler.
|
Package devutil has tooling to make Vugu development simpler. |
Package distutil has some useful functions for building your Vugu application's distribution
|
Package distutil has some useful functions for building your Vugu application's distribution |
Package domrender has the rendering engine that takes virtual DOM from components and synchronizes it with the browser's DOM.
|
Package domrender has the rendering engine that takes virtual DOM from components and synchronizes it with the browser's DOM. |
examples
|
|
compound-component
Module
|
|
dom-events
Module
|
|
embed-and-translate
Module
|
|
fetch-and-display
Module
|
|
simple
Module
|
|
vg-for
Module
|
|
vg-if
Module
|
|
full-test-data
|
|
test1
Module
|
|
test2
Module
|
|
test3
Module
|
|
internal
|
|
htmlx
Package htmlx is a fork of https://github.com/golang/net/html.
|
Package htmlx is a fork of https://github.com/golang/net/html. |
htmlx/atom
Package atom provides integer codes (also known as atoms) for a fixed set of frequently occurring HTML strings: tag names and attribute keys such as "p" and "id".
|
Package atom provides integer codes (also known as atoms) for a fixed set of frequently occurring HTML strings: tag names and attribute keys such as "p" and "id". |
htmlx/charset
Package charset provides common text encodings for HTML documents.
|
Package charset provides common text encodings for HTML documents. |
Package js is a drop-in replacement for syscall/js that provides identical behavior in a WebAssembly environment, and useful non-functional behavior outside of WebAssembly.
|
Package js is a drop-in replacement for syscall/js that provides identical behavior in a WebAssembly environment, and useful non-functional behavior outside of WebAssembly. |
magefiles
module
|
|
Package simplehttp provides an http.Handler that makes it easy to serve Vugu applications.
|
Package simplehttp provides an http.Handler that makes it easy to serve Vugu applications. |
Package staticrender contains the static renderer which converts virtual DOM output to HTML via io.Writer.
|
Package staticrender contains the static renderer which converts virtual DOM output to HTML via io.Writer. |
Package vgform has Vugu components that wrap HTML form controls for convenience.
|
Package vgform has Vugu components that wrap HTML form controls for convenience. |
Package vugufmt provides gofmt-like functionality for vugu files.
|
Package vugufmt provides gofmt-like functionality for vugu files. |
wasm-test-suite
|
|
test-001-simple
Module
|
|
test-002-click
Module
|
|
test-003-prop
Module
|
|
test-004-component
Module
|
|
test-005-issue-80
Module
|
|
test-006-issue-81
Module
|
|
test-007-issue-85
Module
|
|
test-008-for-i
Module
|
|
test-008-for-keyvalue
Module
|
|
test-008-for-kv
Module
|
|
test-009-trim-unused
Module
|
|
test-010-listener-readd
Module
|
|
test-011-wire
Module
|
|
test-012-router
Module
|
|
test-013-issue-117
Module
|
|
test-014-attrintf
Module
|
|
test-015-attribute-lister
Module
|
|
test-016-svg
Module
|
|
test-017-nesting
Module
|
|
test-018-comp-events
Module
|
|
test-019-js-create-populate
Module
|
|
test-020-vgform
Module
|
|
test-021-slots
Module
|
|
test-022-event-listener
Module
|
|
test-023-lifecycle-callbacks
Module
|
|
test-024-event-buffer-size
Module
|