@fanfare-io/fanfare-sdk-react 0.10.0 → 0.12.0
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.
- package/dist/clock-context.d.ts +23 -0
- package/dist/components/checkout/checkout-processing-panel.d.ts +10 -0
- package/dist/components/checkout/index.d.ts +4 -0
- package/dist/components/checkout/payment-collection-panel.d.ts +18 -0
- package/dist/components/checkout/receipt-panel.d.ts +10 -0
- package/dist/components/checkout/reservation-checkout-panel.d.ts +18 -0
- package/dist/components/checkout/stripe-card-field.d.ts +29 -0
- package/dist/components/checkout/stripe-client.d.ts +71 -0
- package/dist/components/checkout/use-payment-challenge.d.ts +32 -0
- package/dist/components/checkout/use-payment-method-selection.d.ts +8 -0
- package/dist/components/module/index.d.ts +1 -1
- package/dist/components/module/outcome-reason.d.ts +10 -1
- package/dist/components/widgets/experience-widget.d.ts +78 -2
- package/dist/components/widgets/internal/upcoming-module.d.ts +1 -1
- package/dist/components/widgets/internal/waitlist-view.d.ts +1 -0
- package/dist/hooks/use-auth.d.ts +1 -0
- package/dist/hooks/use-beacon-tracker.d.ts +21 -0
- package/dist/hooks/use-fanfare-dom-bridge.d.ts +57 -0
- package/dist/hooks/use-gate-open.d.ts +3 -0
- package/dist/hooks/use-sdk-event.d.ts +20 -0
- package/dist/index-Ce5dVdo3.js +6053 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +59 -5051
- package/dist/lib/currency.d.ts +10 -0
- package/dist/provider.d.ts +25 -1
- package/dist/stripe-card-field-D1b4Y7LK.js +170 -0
- package/dist/styles/base.css +1 -1
- package/package.json +19 -15
- package/dist/components/widgets/draw/draw-actions.d.ts +0 -40
- package/dist/components/widgets/draw/index.d.ts +0 -6
- package/dist/components/widgets/queue/index.d.ts +0 -6
- package/dist/components/widgets/queue/queue-actions.d.ts +0 -36
- package/dist/components/widgets/timed-release/index.d.ts +0 -6
- package/dist/components/widgets/timed-release/timed-release-actions.d.ts +0 -38
package/dist/index.d.ts
CHANGED
|
@@ -8,10 +8,13 @@
|
|
|
8
8
|
export { FanfareProvider } from './provider';
|
|
9
9
|
export type { FanfareProviderProps } from './provider';
|
|
10
10
|
export { useFanfareAuth } from './hooks/use-auth';
|
|
11
|
+
export { useBeaconTracker } from './hooks/use-beacon-tracker';
|
|
11
12
|
export { useExperienceJourney } from './hooks/use-experience-journey';
|
|
12
13
|
export { useFanfare } from './hooks/use-fanfare';
|
|
14
|
+
export { useFanfareDomBridge } from './hooks/use-fanfare-dom-bridge';
|
|
13
15
|
export { useJourneySnapshot } from './hooks/use-journey-snapshot';
|
|
14
16
|
export { useNanostore } from './hooks/use-nanostore';
|
|
17
|
+
export { useSdkEvent } from './hooks/use-sdk-event';
|
|
15
18
|
export { ExperienceJourneyController } from './components/journey/experience-journey-controller';
|
|
16
19
|
export { ExperienceJourneySkeleton } from './components/journey/experience-journey-skeleton';
|
|
17
20
|
export { FanfareContext } from './context';
|
|
@@ -44,7 +47,8 @@ export { GrantedPanel } from './components/compositions/granted-panel';
|
|
|
44
47
|
export type { GrantedPanelProps } from './components/compositions/granted-panel';
|
|
45
48
|
export { OutcomePanel } from './components/compositions/outcome-panel';
|
|
46
49
|
export type { OutcomePanelProps } from './components/compositions/outcome-panel';
|
|
47
|
-
export { ExperienceWidget, type AccessCodeSlotProps, type AuthSlotProps, type ChallengeSlotProps, type EndedSlotProps, type EnterableSlotProps, type ErrorSlotProps, type ExperienceRenderProps, type ExperienceWidgetProps, type ExperienceWidgetSlots, type ExpiredSlotProps, type GrantedSlotProps, type LoadingSlotProps, type ParticipatingSlotProps, type SlotProps, type StartSlotProps, type UpcomingSlotProps, type WaitlistSlotProps, } from './components/widgets/experience-widget';
|
|
50
|
+
export { ExperienceWidget, type AccessCodeSlotProps, type AuthSlotProps, type ChallengeSlotProps, type CheckoutProcessingSlotProps, type EndedSlotProps, type EnterableSlotProps, type ErrorSlotProps, type ExperienceRenderProps, type ExperienceWidgetProps, type ExperienceWidgetSlots, type ExpiredSlotProps, type GrantedSlotProps, type LoadingSlotProps, type ParticipatingSlotProps, type PaymentCollectionSlotProps, type ReceiptSlotProps, type ReservationCheckoutSlotProps, type SlotProps, type StartSlotProps, type UpcomingSlotProps, type WaitlistSlotProps, } from './components/widgets/experience-widget';
|
|
51
|
+
export { CheckoutProcessingPanel, PaymentCollectionPanel, ReceiptPanel, ReservationCheckoutPanel, } from './components/checkout';
|
|
48
52
|
export { LoadingView, StartView, UpcomingModule, WaitlistView } from './components/widgets/internal';
|
|
49
53
|
export type { LoadingViewProps, StartViewProps, UpcomingModuleProps, WaitlistViewProps, } from './components/widgets/internal';
|
|
50
54
|
export { AuctionModule, DrawModule, QueueModule, TimedReleaseModule } from './components/widgets/internal';
|