@schematichq/schematic-components 0.6.0 → 0.6.2
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/schematic-components.cjs.js +2029 -1870
- package/dist/schematic-components.d.ts +20 -14
- package/dist/schematic-components.esm.js +1986 -1834
- package/package.json +2 -1
|
@@ -2139,6 +2139,16 @@ declare interface DesignProps_6 {
|
|
|
2139
2139
|
}
|
|
2140
2140
|
|
|
2141
2141
|
declare interface DesignProps_7 {
|
|
2142
|
+
button: {
|
|
2143
|
+
text: string;
|
|
2144
|
+
style: ComponentStyle;
|
|
2145
|
+
size: ButtonSizeTypes;
|
|
2146
|
+
fullWidth: boolean;
|
|
2147
|
+
alignment: EmbedButtonAlignment;
|
|
2148
|
+
};
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
declare interface DesignProps_8 {
|
|
2142
2152
|
header: {
|
|
2143
2153
|
isVisible: boolean;
|
|
2144
2154
|
fontStyle: FontStyle;
|
|
@@ -2155,16 +2165,6 @@ declare interface DesignProps_7 {
|
|
|
2155
2165
|
};
|
|
2156
2166
|
}
|
|
2157
2167
|
|
|
2158
|
-
declare interface DesignProps_8 {
|
|
2159
|
-
button: {
|
|
2160
|
-
text: string;
|
|
2161
|
-
style: ComponentStyle;
|
|
2162
|
-
size: ButtonSizeTypes;
|
|
2163
|
-
fullWidth: boolean;
|
|
2164
|
-
alignment: EmbedButtonAlignment;
|
|
2165
|
-
};
|
|
2166
|
-
}
|
|
2167
|
-
|
|
2168
2168
|
declare const Element_2: IStyledComponentBase<"web", FastOmit<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
2169
2169
|
$viewport?: {
|
|
2170
2170
|
sm?: TransientCSSProperties;
|
|
@@ -3409,6 +3409,12 @@ portal?: HTMLElement | null;
|
|
|
3409
3409
|
allowEdit?: boolean;
|
|
3410
3410
|
} & RefAttributes<HTMLDivElement | null>>;
|
|
3411
3411
|
|
|
3412
|
+
export declare const PaymentMethodDetails: ({ setPaymentMethodId, }: PaymentMethodDetailsProps) => JSX.Element;
|
|
3413
|
+
|
|
3414
|
+
declare interface PaymentMethodDetailsProps {
|
|
3415
|
+
setPaymentMethodId?: (id: string) => void;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3412
3418
|
export declare type PaymentMethodProps = DesignProps_4;
|
|
3413
3419
|
|
|
3414
3420
|
/**
|
|
@@ -5312,15 +5318,15 @@ export declare interface TypographySettings {
|
|
|
5312
5318
|
color: string;
|
|
5313
5319
|
}
|
|
5314
5320
|
|
|
5315
|
-
export declare const UnsubscribeButton: ForwardRefExoticComponent<ElementProps & RecursivePartial<
|
|
5321
|
+
export declare const UnsubscribeButton: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_7> & HTMLAttributes<HTMLDivElement> & {
|
|
5316
5322
|
portal?: HTMLElement | null;
|
|
5317
5323
|
} & RefAttributes<HTMLDivElement | null>>;
|
|
5318
5324
|
|
|
5319
|
-
export declare type UnsubscribeButtonProps =
|
|
5325
|
+
export declare type UnsubscribeButtonProps = DesignProps_7;
|
|
5320
5326
|
|
|
5321
|
-
export declare const UpcomingBill: ForwardRefExoticComponent<ElementProps & RecursivePartial<
|
|
5327
|
+
export declare const UpcomingBill: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_8> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
|
|
5322
5328
|
|
|
5323
|
-
export declare type UpcomingBillProps =
|
|
5329
|
+
export declare type UpcomingBillProps = DesignProps_8;
|
|
5324
5330
|
|
|
5325
5331
|
/**
|
|
5326
5332
|
* Schematic API
|