@theroutingcompany/components 0.0.18-alpha.7 → 0.0.18-alpha.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theroutingcompany/components",
3
- "version": "0.0.18-alpha.7",
3
+ "version": "0.0.18-alpha.9",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -15,9 +15,6 @@ export declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps
15
15
  export declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
16
16
  export declare const AlertDialogAction: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>>;
17
17
  export declare const AlertDialogCancel: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>>;
18
- /** Dialog Cancel Button positioned in top right with × */
19
- export declare const DialogCancelButton: ({ children, ...buttonProps }: {
20
- [x: string]: any;
21
- children?: string | undefined;
22
- }) => JSX.Element;
18
+ /** AlertDialog Cancel Button positioned in top right with × */
19
+ export declare const AlertDialogCancelButton: ({ children, ...buttonProps }: AlertDialogPrimitive.AlertDialogCancelProps) => JSX.Element;
23
20
  export {};
@@ -20,10 +20,7 @@ export declare const DialogDescription: import("styled-components").StyledCompon
20
20
  export declare const DialogFooter: import("styled-components").StyledComponent<"footer", any, {}, never>;
21
21
  export declare const dialogCloseButtonStyles: import("styled-components").FlattenSimpleInterpolation;
22
22
  /** Dialog Close Button positioned in top right with × */
23
- export declare const DialogCloseButton: ({ children, ...buttonProps }: {
24
- [x: string]: any;
25
- children?: string | undefined;
26
- }) => JSX.Element;
23
+ export declare const DialogCloseButton: ({ children, ...buttonProps }: DialogPrimitive.DialogCloseProps) => JSX.Element;
27
24
  export declare const Dialog: import("react").FC<DialogPrimitive.DialogProps>;
28
25
  export declare const DialogTrigger: import("react").ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
29
26
  export declare const DialogClose: import("react").ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & import("react").RefAttributes<HTMLButtonElement>>;