Merge remote-tracking branch 'origin/main' into 7.0-sync-09-16-22

This commit is contained in:
Liam DeBeasi
2022-09-16 15:20:33 -04:00
373 changed files with 10808 additions and 5586 deletions

View File

@ -7,7 +7,7 @@ import {
AnimationLifecycle,
createAnimation,
} from '@ionic/core/components';
import React from 'react';
import React, { PropsWithChildren } from 'react';
interface PartialPropertyValue {
property: string;
@ -59,7 +59,7 @@ export interface CreateAnimationProps {
progressEnd?: { playTo: 0 | 1 | undefined; step: number; dur?: number };
}
export class CreateAnimation extends React.PureComponent<CreateAnimationProps> {
export class CreateAnimation extends React.PureComponent<PropsWithChildren<CreateAnimationProps>> {
nodes: Map<number, HTMLElement> = new Map();
animation: Animation;