@bunnyapp/components 1.8.0-beta.46 → 1.8.0-beta.48

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.
@@ -50,6 +50,8 @@ export declare const QuoteContext_QuoteFragment: import("gql.tada").TadaDocument
50
50
  useQuantityEditableCharges_QuoteFragment: "Quote";
51
51
  } & {
52
52
  useChargeCRUD_QuoteFragment: "Quote";
53
+ } & {
54
+ UpgradeContent_QuoteFragment: "Quote";
53
55
  };
54
56
  }, {}, {
55
57
  fragment: "QuoteContext_QuoteFragment";
@@ -1,7 +1,6 @@
1
1
  import PriceList from '@/types/PriceList';
2
- declare const PlanPickerCheckoutBar: ({ selectedPriceList, handlePortalErrors, onCheckoutSuccess, }: {
2
+ declare const PlanPickerCheckoutBar: ({ selectedPriceList, onClickCheckout, }: {
3
3
  selectedPriceList: PriceList;
4
- handlePortalErrors?: (errors: any) => void;
5
- onCheckoutSuccess: () => void;
4
+ onClickCheckout: () => void;
6
5
  }) => import("react").JSX.Element;
7
6
  export default PlanPickerCheckoutBar;
@@ -1,7 +1,5 @@
1
1
  export declare const PlanPickerCheckoutBar_QuoteFragment: import("gql.tada").TadaDocumentNode<{
2
- [$tada.fragmentRefs]: {
3
- Checkout_QuoteFragment: "Quote";
4
- };
2
+ id: string | null;
5
3
  quoteChanges: {
6
4
  priceList: {
7
5
  id: string;
@@ -12,7 +10,6 @@ export declare const PlanPickerCheckoutBar_QuoteFragment: import("gql.tada").Tad
12
10
  } | null;
13
11
  }[];
14
12
  }[] | null;
15
- id: string | null;
16
13
  }, {}, {
17
14
  fragment: "PlanPickerCheckoutBar_QuoteFragment";
18
15
  on: "Quote";
@@ -0,0 +1,10 @@
1
+ export declare const UpgradeContent_QuoteFragment: import("gql.tada").TadaDocumentNode<{
2
+ id: string | null;
3
+ [$tada.fragmentRefs]: {
4
+ Checkout_QuoteFragment: "Quote";
5
+ };
6
+ }, {}, {
7
+ fragment: "UpgradeContent_QuoteFragment";
8
+ on: "Quote";
9
+ masked: true;
10
+ }>;