Skip to content

Commit 0a60ce3

Browse files
committed
fix: broken rlease!
1 parent 086eccf commit 0a60ce3

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/gesturehandler.common.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,13 @@ export function applyMixins(
251251
});
252252
}
253253

254+
export const exclusiveTouchProperty = new CssProperty<Style, boolean>({
255+
name: 'exclusiveTouch',
256+
cssName: 'exclusive-touch',
257+
defaultValue: false,
258+
valueConverter: booleanConverter,
259+
});
260+
254261
export const ViewInitEvent = 'ViewInitEvent';
255262
export const ViewDisposeEvent = 'ViewDisposeEvent';
256263

@@ -287,12 +294,6 @@ class ViewGestureExtended extends View {
287294
}
288295
}
289296

290-
export const exclusiveTouchProperty = new CssProperty<Style, boolean>({
291-
name: 'exclusiveTouch',
292-
cssName: 'exclusive-touch',
293-
defaultValue: false,
294-
valueConverter: booleanConverter,
295-
});
296297
exclusiveTouchProperty.register(Style);
297298

298299
let installed = false;

0 commit comments

Comments
 (0)