Rocky_Mountain_Vending/.pnpm-store/v10/files/d1/32472ee8acc83c86c4b2c75b17dd8e06a49a79bc69a6b5b952d9e687782f8ee71587d9cace0293c426a52a18b9264ee13c09be6ad6bf88ec25c32748753960
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

215 lines
5.3 KiB
Text

import {StripeElementBase} from './base';
import {StripeError} from '../stripe';
export type StripeShippingAddressElement = StripeElementBase & {
/**
* The change event is triggered when the `Element`'s value changes.
*/
on(
eventType: 'change',
handler: (event: StripeShippingAddressElementChangeEvent) => any
): StripeShippingAddressElement;
once(
eventType: 'change',
handler: (event: StripeShippingAddressElementChangeEvent) => any
): StripeShippingAddressElement;
off(
eventType: 'change',
handler?: (event: StripeShippingAddressElementChangeEvent) => any
): StripeShippingAddressElement;
/**
* Triggered when the element is fully rendered and can accept `element.focus` calls.
*/
on(
eventType: 'ready',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
once(
eventType: 'ready',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
off(
eventType: 'ready',
handler?: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
/**
* Triggered when the element gains focus.
*/
on(
eventType: 'focus',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
once(
eventType: 'focus',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
off(
eventType: 'focus',
handler?: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
/**
* Triggered when the element loses focus.
*/
on(
eventType: 'blur',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
once(
eventType: 'blur',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
off(
eventType: 'blur',
handler?: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
/**
* Triggered when the escape key is pressed within the element.
*/
on(
eventType: 'escape',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
once(
eventType: 'escape',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
off(
eventType: 'escape',
handler?: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
/**
* Triggered when the element fails to load.
*/
on(
eventType: 'loaderror',
handler: (event: {
elementType: 'shippingAddress';
error: StripeError;
}) => any
): StripeShippingAddressElement;
once(
eventType: 'loaderror',
handler: (event: {
elementType: 'shippingAddress';
error: StripeError;
}) => any
): StripeShippingAddressElement;
off(
eventType: 'loaderror',
handler?: (event: {
elementType: 'shippingAddress';
error: StripeError;
}) => any
): StripeShippingAddressElement;
/**
* Triggered when the loader UI is mounted to the DOM and ready to be displayed.
*/
on(
eventType: 'loaderstart',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
once(
eventType: 'loaderstart',
handler: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
off(
eventType: 'loaderstart',
handler?: (event: {elementType: 'shippingAddress'}) => any
): StripeShippingAddressElement;
/**
* Updates the options the `ShippingAddressElement` was initialized with.
* Updates are merged into the existing configuration.
*/
update(
options: Partial<StripeShippingAddressElementOptions>
): StripeShippingAddressElement;
};
export interface StripeShippingAddressElementOptions {
/**
* Control which countries are displayed in the shippingAddress Element.
*/
allowedCountries?: string[] | null;
/**
* Whether or not ShippingAddressElement accepts PO boxes
*/
blockPoBox?: boolean;
/**
* Default value for ShippingAddressElement fields
*/
defaultValues?: {
name?: string | null;
address?: {
line1?: string | null;
line2?: string | null;
city?: string | null;
state?: string | null;
postal_code?: string | null;
country: string;
};
phone?: string | null;
};
/**
* Control which additional fields to display in the shippingAddress Element.
*/
fields?: {
phone?: 'always' | 'never' | 'auto';
};
/**
* Specify validation rules for the above additional fields.
*/
validation?: {
phone?: {
required: 'always' | 'never' | 'auto';
};
};
}
export interface StripeShippingAddressElementChangeEvent {
/**
* The type of element that emitted this event.
*/
elementType: 'shippingAddress';
/**
* Whether or not the shippingAddress Element is currently empty.
*/
empty: boolean;
/**
* Whether or not the shippingAddress Element is complete.
*/
complete: boolean;
/**
* Whether or not the shipping address is new.
*/
isNewAddress: boolean;
/**
* An object containing the current address.
*/
value: {
name: string;
address: {
line1: string;
line2: string | null;
city: string;
state: string;
postal_code: string;
country: string;
};
phone?: string;
};
}