rromikas

Results 2 comments of rromikas

I had similar issue and solved it. Moving animation is performed by removing source element and changing target element position with "transform: translate". So you need to care about z-index...

I was able to prepopulate values by accessing inputElements from reference: ``` { if (!initialValueSet) { try { Object.values(((el as any)?.inputElements as HTMLInputElement[]) ?? {})?.forEach((input, i) => { input.value =...