nuxt-booster icon indicating copy to clipboard operation
nuxt-booster copied to clipboard

Beta

Open ThornWalli opened this issue 2 years ago • 0 comments

The following changes are included in Beta:

fix(hydrate): removed redundant render wrapper hydrateWhenVisible should create one.

#691 #689

The creation of an extra render wrapper has been removed. This should be generated by hydrateWhenVisible. Problem occurred when updating a parent element while the child is fetching. Here by an endless initialization of the component was started. Only occurs in the server build when switching pages.

fix(hydrate): add max idle tries for speedkitHydrate

#693

A max. idle duration has been added to speedkitHydrate. For this the option maxIdleDuration was replaced by maxIdleDurations. In the property maxIdleDurations the max. idle duration for the entry (entry) and for speedkitHyrdate hyrdate is set.

fix(vimeo): fix wrong embed url / fix(vimeo): fix missing fetch data

#696 #698

The embed url for iframe has been causing problems with the passed options until now.

This has been solved by using the src from the supplied iframe in the embed api call. Here a hash is used per player configuration for matching.

fix(intersection): fix element-observer inView state

#697

Fix the inView state from the ElementObserver, this could not reach the leave.

fix(v-font): added isCritical check in inserted

#702

fix(directive): fix missing load:font event on vnode

load:font was triggered only on the parent context and not on the target element.

#703

ThornWalli avatar Sep 08 '22 11:09 ThornWalli