@@ -145,7 +145,7 @@ export interface GetPixelValueOpts {
145
145
anchorRect ?: Rect ;
146
146
anchorSide ?: AnchorSide ;
147
147
anchorSize ?: AnchorSize ;
148
- fallback : string ;
148
+ fallback ? : string | null ;
149
149
}
150
150
151
151
export const getPixelValue = async ( {
@@ -154,7 +154,7 @@ export const getPixelValue = async ({
154
154
anchorRect,
155
155
anchorSide,
156
156
anchorSize,
157
- fallback,
157
+ fallback = null ,
158
158
} : GetPixelValueOpts ) => {
159
159
if ( ! ( ( anchorSize || anchorSide !== undefined ) && targetEl && anchorRect ) ) {
160
160
return fallback ;
@@ -287,6 +287,18 @@ export const getPixelValue = async ({
287
287
return fallback ;
288
288
} ;
289
289
290
+ const isPositionAreaDeclaration = (
291
+ value : AnchorFunction | PositionAreaDeclaration ,
292
+ ) : value is PositionAreaDeclaration => {
293
+ return 'positionArea' in value ;
294
+ } ;
295
+
296
+ const isAnchorFunction = (
297
+ value : AnchorFunction | PositionAreaDeclaration ,
298
+ ) : value is AnchorFunction => {
299
+ return 'uuid' in value ;
300
+ } ;
301
+
290
302
async function applyAnchorPositions (
291
303
declarations : AnchorFunctionDeclaration ,
292
304
useAnimationFrame = false ,
@@ -301,7 +313,7 @@ async function applyAnchorPositions(
301
313
const anchor = anchorValue . anchorEl ;
302
314
const target = anchorValue . targetEl ;
303
315
if ( anchor && target ) {
304
- if ( 'positionArea' in anchorValue && property === 'position-area' ) {
316
+ if ( isPositionAreaDeclaration ( anchorValue ) ) {
305
317
const wrapper = anchorValue . wrapperEl ! ;
306
318
const getPositionAreaPixelValue = async (
307
319
inset : InsetValue ,
@@ -314,8 +326,6 @@ async function applyAnchorPositions(
314
326
targetProperty : targetProperty ,
315
327
anchorRect : anchorRect ,
316
328
anchorSide : inset ,
317
- anchorSize : anchorValue . anchorSize ,
318
- fallback : anchorValue . fallbackValue ,
319
329
} ) ;
320
330
} ;
321
331
@@ -408,7 +418,7 @@ async function applyAnchorPositions(
408
418
{ animationFrame : useAnimationFrame } ,
409
419
) ;
410
420
}
411
- } else {
421
+ } else if ( isAnchorFunction ( anchorValue ) ) {
412
422
// Use fallback value
413
423
const resolved = await getPixelValue ( {
414
424
targetProperty : property ,
0 commit comments