Rocky_Mountain_Vending/.pnpm-store/v10/files/49/4ea3a62a59bcb0138e9a00cc5d95f12649d4c8bf050fa1f4731038d9276d63b4d508978bf64180e6599ade839a73b8e9599c40f1f33c5ffb1acc92e37e0fbb
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

27 lines
No EOL
874 B
Text

// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as Helpers from '../helpers/helpers.js';
import * as Types from '../types/types.js';
const animations = [];
const animationsSyntheticEvents = [];
export function reset() {
animations.length = 0;
animationsSyntheticEvents.length = 0;
}
export function handleEvent(event) {
if (Types.Events.isAnimation(event)) {
animations.push(event);
return;
}
}
export async function finalize() {
const syntheticEvents = Helpers.Trace.createMatchedSortedSyntheticEvents(animations);
animationsSyntheticEvents.push(...syntheticEvents);
}
export function data() {
return {
animations: animationsSyntheticEvents,
};
}
//# sourceMappingURL=AnimationHandler.js.map