Merge branch 'main' into feat/list-view-sticky-headers

This commit is contained in:
Nathan Walker
2025-10-29 10:31:10 -07:00
committed by GitHub
4 changed files with 27 additions and 3 deletions

View File

@@ -1,3 +1,16 @@
export type { Pair, Transformation, TransformationType, TransformationValue, TransformFunctionsInfo, Point3D, AnimationPromise, Cancelable } from './animation-types';
export { Animation, _resolveAnimationCurve } from './animation';
export { KeyframeAnimation, KeyframeAnimationInfo, KeyframeDeclaration, KeyframeInfo } from './keyframe-animation';
import type { AnimationDefinition, AnimationPromise } from './animation-types';
/**
* Defines a animation set.
*/
export class Animation {
constructor(animationDefinitions: Array<AnimationDefinition>, playSequentially?: boolean);
public play: (resetOnFinish?: boolean) => AnimationPromise;
public cancel: () => void;
public isPlaying: boolean;
public _resolveAnimationCurve(curve: any): any;
}
export function _resolveAnimationCurve(curve: any): any;

View File

@@ -10,7 +10,7 @@ export class Button extends TextBase {
/**
* String value used when hooking to tap event.
*
* @nsEvent {EventData} string;
* @nsEvent {EventData} tap
*/
public static tapEvent: string;

View File

@@ -18,7 +18,7 @@ export class Slider extends View {
/**
* String value used when hooking to accessibilityDecrement event.
*
* @nsEvent {accessibilityDecrementEvent} accessibilityDecrement
* @nsEvent {AccessibilityDecrementEventData} accessibilityDecrement
*/
static readonly accessibilityDecrementEvent = 'accessibilityDecrement';