@wix/app-extensions 1.0.121 → 1.0.122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8439,7 +8439,7 @@ interface Animation {
|
|
|
8439
8439
|
/**
|
|
8440
8440
|
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
8441
8441
|
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
8442
|
-
*
|
|
8442
|
+
* kind that also needs an `effect` field would contend for this JSON name.
|
|
8443
8443
|
*/
|
|
8444
8444
|
effect?: PointerEffect;
|
|
8445
8445
|
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
@@ -10453,6 +10453,13 @@ interface ShapeData {
|
|
|
10453
10453
|
styles?: ShapeDataStyles;
|
|
10454
10454
|
/** Node animation. */
|
|
10455
10455
|
animation?: Animation;
|
|
10456
|
+
/** Link details for shapes that are links. */
|
|
10457
|
+
link?: V1Link;
|
|
10458
|
+
/**
|
|
10459
|
+
* Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
|
|
10460
|
+
* @maxLength 1000
|
|
10461
|
+
*/
|
|
10462
|
+
altText?: string | null;
|
|
10456
10463
|
}
|
|
10457
10464
|
/** @internal */
|
|
10458
10465
|
interface ShapeDataStyles {
|