MCPcopy Create free account

hub / github.com/BosNaufal/vue-loading-bar / functions

Functions233 in github.com/BosNaufal/vue-loading-bar

↓ 1 callersFunctioncheckComponent
* Check if an element is a component. If yes, return * a component link function. * * @param {Element} el * @param {Object} options * @return {Fu
build.js:6728
↓ 1 callersFunctioncheckComponentAttr
* Check if an element is a component, if yes return its * component id. * * @param {Element} el * @param {Object} options * @return {Object|undef
build.js:1419
↓ 1 callersFunctioncheckElementDirectives
* Check for element directives (custom elements that should * be resovled as terminal directives). * * @param {Element} el * @param {Object} optio
build.js:6710
↓ 1 callersFunctioncheckTerminalDirectives
* Check an element for terminal directives in fixed order. * If it finds one, return a terminal link function. * * @param {Element} el * @param {O
build.js:6761
↓ 1 callersFunctionclassify
(str)
build.js:198
↓ 1 callersFunctioncompileAndLinkProps
* Compile link props on an instance. * * @param {Vue} vm * @param {Element} el * @param {Object} props * @param {Object} [scope] * @return {Func
build.js:6389
↓ 1 callersFunctioncompileDefaultContent
()
build.js:9182
↓ 1 callersFunctioncompileElement
* Compile an element and return a nodeLinkFn. * * @param {Element} el * @param {Object} options * @return {Function|null}
build.js:6503
↓ 1 callersFunctioncompileGetter
* Rewrite an expression, prefixing all path accessors with * `scope.` and generate getter/setter functions. * * @param {String} exp * @return {Fun
build.js:2778
↓ 1 callersFunctioncompileNodeList
* Compile a node list and return a childLinkFn. * * @param {NodeList} nodeList * @param {Object} options * @return {Function|undefined}
build.js:6664
↓ 1 callersFunctioncompileProps
* Compile props on a root element and return * a props link function. * * @param {Element|DocumentFragment} el * @param {Array} propOptions * @re
build.js:6087
↓ 1 callersFunctioncompileRoot
* Compile the root element of an instance. * * 1. attrs on context container (context scope) * 2. attrs on the component template root node, if *
build.js:6413
↓ 1 callersFunctioncompileTextNode
* Compile a textNode and return a nodeLinkFn. * * @param {TextNode} node * @param {Object} options * @return {Function|null} textNodeLinkFn
build.js:6543
↓ 1 callersFunctioncontains$1
(value, key)
build.js:6059
↓ 1 callersFunctioncreateClass
* A function that returns a sub-class constructor with the * given name. This gives us much nicer output when * logging instances in the console
build.js:8215
↓ 1 callersFunctiondataAPI
(Vue)
build.js:8283
↓ 1 callersFunctiondel
* Delete a property and trigger change if necessary. * * @param {Object} obj * @param {String} key
build.js:43
↓ 1 callersFunctiondomAPI
(Vue)
build.js:8447
↓ 1 callersFunctiondrainQueue
()
build.js:9328
↓ 1 callersFunctioneventsAPI
(Vue)
build.js:8633
↓ 1 callersFunctioneventsMixin
(Vue)
build.js:7364
↓ 1 callersFunctionfindVmFromFrag
* Find a vm from a fragment. * * @param {Fragment} frag * @return {Vue|undefined}
build.js:5120
↓ 1 callersFunctionformat
(id)
build.js:9637
↓ 1 callersFunctionformatSubPath
* Format a subPath, return its plain form if it is * a literal string or number. Otherwise prepend the * dynamic indicator (*). * * @param {String
build.js:2492
↓ 1 callersFunctionformatType
(val)
build.js:1530
↓ 1 callersFunctionformatValue
(val)
build.js:1534
↓ 1 callersFunctiongetBooleanValue
()
build.js:3654
↓ 1 callersFunctiongetDefault
* Get the default value of a prop. * * @param {Vue} vm * @param {Object} options * @return {*}
build.js:6229
↓ 1 callersFunctiongetPathCharType
* Determine the type of a character in a keypath. * * @param {Char} ch * @return {String} type
build.js:2436
↓ 1 callersFunctionglobalAPI
(Vue)
build.js:8132
↓ 1 callersFunctionguardComponents
* Make sure component options get converted to actual * constructors. * * @param {Object} options
build.js:1708
↓ 1 callersFunctionguardProps
* Ensure all props option syntax are normalized into the * Object-based format. * * @param {Object} options
build.js:1734
↓ 1 callersFunctionindexOf$1
* Native Array.indexOf uses strict equal, but in this * case we need to match string/numbers with custom equal. * * @param {Array} arr * @param {*
build.js:3795
↓ 1 callersFunctioninitMixin
(Vue)
build.js:2256
↓ 1 callersFunctioninlineFilters
(exp, single)
build.js:833
↓ 1 callersFunctionisHidden
* Check if an element is hidden - in that case we can just * skip the transition alltogether. * * @param {Element} el * @return {Boolean}
build.js:5587
↓ 1 callersFunctionkeyFilter
(handler, keys)
build.js:3544
↓ 1 callersFunctionlifecycleAPI
(Vue)
build.js:8799
↓ 1 callersFunctionlifecycleMixin
(Vue)
build.js:7816
↓ 1 callersFunctionmakeChildLinkFn
* Make a child link function for a node's childNodes. * * @param {Array<Function>} linkFns * @return {Function} childLinkFn
build.js:6683
↓ 1 callersFunctionmakeNodeLinkFn
* Build a link function for all directives on a single node. * * @param {Array} directives * @return {Function} directivesLinkFn
build.js:6967
↓ 1 callersFunctionmakePropsLinkFn
* Build a function that applies props to a vm. * * @param {Array} props * @return {Function} propsLinkFn
build.js:6173
↓ 1 callersFunctionmakeTextNodeLinkFn
* Build a function that processes a textNode. * * @param {Array<Object>} tokens * @param {DocumentFragment} frag
build.js:6630
↓ 1 callersFunctionmaybeUnescapeQuote
()
build.js:2553
↓ 1 callersFunctionmergeAttrs
* Merge the attributes of two elements, and make sure * the class names are merged properly. * * @param {Element} from * @param {Element} to
build.js:7097
↓ 1 callersFunctionmiscMixin
(Vue)
build.js:8042
↓ 1 callersFunctionnormalize
* Normalize a CSS property name. * - cache result * - auto prefix * - camelCase -> dash-case * * @param {String} prop * @return {String}
build.js:3387
↓ 1 callersFunctionparseModifiers
* Parse modifiers from directive attribute name. * * @param {String} name * @return {Object}
build.js:6948
↓ 1 callersFunctionparsePath
* External parse that check for a cache hit first * * @param {String} path * @return {Array|undefined}
build.js:2603
↓ 1 callersFunctionprefix
* Auto detect the appropriate prefix for a CSS property. * https://gist.github.com/paulirish/523692 * * @param {String} prop * @return {String}
build.js:3404
↓ 1 callersFunctionpreventFilter
(handler)
build.js:3572
↓ 1 callersFunctionprocessTextToken
* Process a single text token. * * @param {Object} token * @param {Object} options * @return {Node}
build.js:6594
↓ 1 callersFunctionpushWatcher
* Push a watcher into the watcher queue. * Jobs with duplicate IDs will be skipped unless it's * pushed when the queue is being flushed. * * @para
build.js:2958
↓ 1 callersFunctionrange
* Create a range array from given number. * * @param {Number} n * @return {Array}
build.js:5138
↓ 1 callersFunctionregisterComponentEvents
* Register v-on events on a child component * * @param {Vue} vm * @param {Element} el
build.js:7388
↓ 1 callersFunctionremoveView
* Remove a component view from a Component's hot list * * @param {Function} Component * @param {Directive} view - view directive instance
build.js:9491
↓ 1 callersFunctionresetBatcherState
* Reset the batcher's state.
build.js:2896
↓ 1 callersFunctions
(o,u)
build.js:1
↓ 1 callersFunctionsetPath
* Set on an object from a path * * @param {Object} obj * @param {String | Array} path * @param {*} val
build.js:2644
↓ 1 callersFunctionstateMixin
(Vue)
build.js:7121
↓ 1 callersFunctionstopFilter
(handler)
build.js:3565
↓ 1 callersFunctionstringToObject
(value)
build.js:6049
↓ 1 callersFunctiontoBoolean
* Convert string boolean literals into real booleans. * * @param {*} value * @return {*|Boolean}
build.js:137
↓ 1 callersFunctiontransclude
* Process an element or a DocumentFragment based on a * instance option object. This allows us to transclude * a template node/fragment before the i
build.js:6991
↓ 1 callersFunctiontranscludeTemplate
* Process the template option. * If the replace option is true this will swap the $el. * * @param {Element} el * @param {Object} options * @retur
build.js:7033
↓ 1 callersFunctiontraverse
* Recrusively traverse an object to evoke all converted * getters, so that every nested property inside the object * is collected as a "deep" depend
build.js:3265
↓ 1 callersFunctionupdateView
* Update a component view instance * * @param {Directive} view * @param {Function} Component
build.js:9615
FunctionCache
(limit)
build.js:460
FunctionDep
* A dep is an observable that can have multiple * directives subscribing to it. * * @constructor
build.js:1932
FunctionDirective
* A directive links a DOM element with a piece of data, * which is the result of evaluating an expression. * It registers a watcher with the express
build.js:7548
FunctionFragment
* Abstraction for a partially-compiled fragment. * Can optionally compile content with a child scope. * * @param {Function} linker * @param {Vue}
build.js:4318
FunctionFragmentFactory
* A factory that can be used to create instances of a * fragment. Caches the compiled linker if possible. * * @param {Vue} vm * @param {Element|St
build.js:4493
FunctionItem
(fun, array)
build.js:9366
FunctionObserver
* Observer class that are attached to each observed * object. Once attached, the observer converts target * object's property keys into getter/sette
build.js:1994
FunctionTransition
* A Transition object that encapsulates the state and logic * of the transition. * * @param {Element} el * @param {String} id * @param {Object} h
build.js:5266
FunctionVue
* The exposed Vue constructor. * * API conventions: * - public API methods/properties are prefixed with `$` * - internal methods/properties are pr
build.js:8878
FunctionWatcher
* A watcher parses an expression, collects dependencies, * and fires callback when the expression value changes. * This is used for both the $watch(
build.js:3000
FunctionanimationEndEvent
()
build.js:2222
FunctionanimationProp
()
build.js:2221
FunctionappendWithTransition
* Append with transition. * * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb]
build.js:992
Functionattach
* Call attach hook for a Vue instance. * * @param {Vue} child
build.js:4452
FunctionbeforeWithCb
* InsertBefore operation that takes a callback. * * @param {Node} el * @param {Node} target * @param {Vue} vm - unused * @param {Functi
build.js:8614
FunctionbeforeWithTransition
* InsertBefore with transition. * * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb]
build.js:1007
FunctioncallAttach
* Iterator to call attached hook * * @param {Vue} child
build.js:7477
FunctioncallDetach
* Iterator to call detached hook * * @param {Vue} child
build.js:7500
FunctionchangeDirection
(direction)
vueku.js:31
FunctionchangeDirection
(direction)
build.js:9838
FunctioncleanUpNextTick
()
build.js:9316
FunctioncomponentLinkFn
(vm, el, host, scope, frag)
build.js:6741
FunctioncopyAugment
* Augment an target Object or Array by defining * hidden properties. * * @param {Object|Array} target * @param {Object} proto
build.js:2096
Functiondata
()
vueku.js:8
Functiondata
()
build.js:9815
FunctiondefaultStrat
(parentVal, childVal)
build.js:1697
FunctiondestroyChild
* Call destroy for all contained instances, * with remove:false and defer:true. * Defer is necessary because we need to * keep the children to call
build.js:4468
Functiondetach
* Call detach hook for a Vue instance. * * @param {Vue} child
build.js:4478
FunctiondirectiveComparator
* Directive priority sort comparator * * @param {Object} a * @param {Object} b
build.js:6331
FunctionfilterBy
* Filter filter for arrays * * @param {String} search * @param {String} [delimiter] * @param {String} ...dataKeys
build.js:8918
Functionflush
* Flush the queue, and do one forced reflow before * triggering transitions.
build.js:5239
FunctionflushBatcherQueue
* Flush both queues and run the watchers.
build.js:2908
Functionfn
(vm, el, host, scope, frag)
build.js:6815
← previousnext →101–200 of 233, ranked by callers