@schematichq/schematic-components 1.1.4 → 1.2.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.
@@ -1901,6 +1901,7 @@ export declare type CheckoutState = {
1901
1901
  planId?: string | null;
1902
1902
  addOnId?: string | null;
1903
1903
  usage?: boolean;
1904
+ credits?: boolean;
1904
1905
  };
1905
1906
 
1906
1907
  /**
@@ -5161,6 +5162,8 @@ declare interface PaymentMethodResponseData {
5161
5162
  updatedAt: Date;
5162
5163
  }
5163
5164
 
5165
+ declare type Plan = CompanyPlanDetailResponseData | PlanViewPublicResponseData;
5166
+
5164
5167
  /**
5165
5168
  * Schematic API
5166
5169
  * Schematic API
@@ -7015,7 +7018,7 @@ declare interface RuleDetailResponseData_2 {
7015
7018
 
7016
7019
  export declare const SchematicEmbed: ({ id, accessToken }: EmbedProps) => JSX.Element;
7017
7020
 
7018
- export declare type SelectedPlan = (PlanViewPublicResponseData | CompanyPlanDetailResponseData) & {
7021
+ declare type SelectedPlan = Plan & {
7019
7022
  isSelected: boolean;
7020
7023
  };
7021
7024
 
@@ -7177,7 +7180,7 @@ declare type TransientCSSProperties = {
7177
7180
  [Property in keyof React.CSSProperties as `$${string & Property}`]: React.CSSProperties[Property];
7178
7181
  };
7179
7182
 
7180
- export declare const TransitionBox: IStyledComponentBase<"web", FastOmit<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7183
+ export declare const TransitionBox: IStyledComponentBase<"web", Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7181
7184
  $viewport?: {
7182
7185
  sm?: TransientCSSProperties;
7183
7186
  md?: TransientCSSProperties;
@@ -7186,7 +7189,11 @@ xl?: TransientCSSProperties;
7186
7189
  "2xl"?: TransientCSSProperties;
7187
7190
  [key: string]: TransientCSSProperties | undefined;
7188
7191
  };
7189
- }, never>> & string;
7192
+ }, TransitionBoxProps>> & string;
7193
+
7194
+ declare interface TransitionBoxProps {
7195
+ $isExpanded?: boolean;
7196
+ }
7190
7197
 
7191
7198
  export declare interface TypographySettings {
7192
7199
  fontFamily: string;