@schematichq/schematic-components 2.8.0 → 2.8.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 +2280 -2922
- package/dist/schematic-components.d.ts +6 -6
- package/dist/schematic-components.esm.js +1738 -2380
- package/package.json +19 -13
|
@@ -57,12 +57,6 @@ declare type BillingCreditBundleType = (typeof BillingCreditBundleType)[keyof ty
|
|
|
57
57
|
* @interface BillingCreditBundleView
|
|
58
58
|
*/
|
|
59
59
|
declare interface BillingCreditBundleView {
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof BillingCreditBundleView
|
|
64
|
-
*/
|
|
65
|
-
billingInvoiceId?: string | null;
|
|
66
60
|
/**
|
|
67
61
|
*
|
|
68
62
|
* @type {BillingCreditBundleType}
|
|
@@ -5259,6 +5253,12 @@ declare interface DesignProps_9 {
|
|
|
5259
5253
|
|
|
5260
5254
|
export declare const Dialog: ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLDialogElement | null>>;
|
|
5261
5255
|
|
|
5256
|
+
export declare const DialogClose: ({ onClose, ...rest }: DialogCloseProps) => JSX.Element;
|
|
5257
|
+
|
|
5258
|
+
declare interface DialogCloseProps extends BoxProps {
|
|
5259
|
+
onClose?: () => void;
|
|
5260
|
+
}
|
|
5261
|
+
|
|
5262
5262
|
export declare const DialogContent: ForwardRefExoticComponent<DialogContentProps & RefAttributes<HTMLDivElement | null>>;
|
|
5263
5263
|
|
|
5264
5264
|
declare interface DialogContentProps {
|