Skip to content

Commit

Permalink
dist
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerZeroMaster committed Nov 26, 2024
1 parent d676522 commit 082e777
Show file tree
Hide file tree
Showing 12 changed files with 91 additions and 87 deletions.
10 changes: 5 additions & 5 deletions dist/components/Modal.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/// <reference types="react" />
import * as RAC from "react-aria-components";
export declare const ModalCard: import("styled-components").StyledComponent<(props: RAC.DialogProps & import("react").RefAttributes<HTMLElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null, any, {}, never>;
import React from "react";
export declare const ModalCard: import("styled-components").StyledComponent<(props: RAC.DialogProps & React.RefAttributes<HTMLElement>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null, any, {}, never>;
export declare const ModalBodyHeading: import("styled-components").StyledComponent<"h3", any, {}, never>;
export declare const ModalBody: import("styled-components").StyledComponent<"div", any, {}, never>;
export declare const Mask: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & import("react").RefAttributes<HTMLDivElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null, any, {}, never>;
export declare const ModalWrapper: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & import("react").RefAttributes<HTMLDivElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null, any, {}, never>;
export declare const Mask: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & React.RefAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
export declare const ModalWrapper: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & React.RefAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
export declare const ModalFooter: import("styled-components").StyledComponent<"div", any, {}, never>;
export interface ModalPropTypes {
onModalClose: () => void;
Expand All @@ -13,4 +13,4 @@ export interface ModalPropTypes {
show?: boolean;
variant?: 'default' | 'error';
}
export declare const Modal: ({ className, heading, onModalClose, children, show, variant }: React.PropsWithChildren<ModalPropTypes>) => import("react/jsx-runtime").JSX.Element | null;
export declare const Modal: ({ className, heading, onModalClose, children, show, variant, ...props }: React.PropsWithChildren<ModalPropTypes> & RAC.ModalOverlayProps) => import("react/jsx-runtime").JSX.Element | null;
1 change: 1 addition & 0 deletions dist/components/Modal.stories.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export declare const Default: () => import("react/jsx-runtime").JSX.Element;
export declare const Error: () => import("react/jsx-runtime").JSX.Element;
export declare const Test: () => import("react/jsx-runtime").JSX.Element;
10 changes: 6 additions & 4 deletions dist/components/Overlay.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import * as RAC from "react-aria-components";
import React from "react";
export declare const OverlayMask: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & React.RefAttributes<HTMLDivElement>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null, any, {}, never>;
export declare const OverlayMask: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & React.RefAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
export declare const OverlayCloseButton: import("styled-components").StyledComponent<({ variant, ...props }: any) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
export declare const OverlayWrapper: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & React.RefAttributes<HTMLDivElement>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null, any, {}, never>;
export declare const OverlayWrapper: import("styled-components").StyledComponent<(props: RAC.ModalOverlayProps & React.RefAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element, any, {}, never>;
export declare const OverlayBody: import("styled-components").StyledComponent<(props: RAC.DialogProps & React.RefAttributes<HTMLElement>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null, any, {}, never>;
export declare const Overlay: ({ className, onClose, children, show }: React.PropsWithChildren<{
export declare const Overlay: ({ className, onClose, children, show, ...props }: {
onClose: () => void;
className?: string | undefined;
show?: boolean | undefined;
}>) => import("react/jsx-runtime").JSX.Element | null;
} & {
children?: React.ReactNode;
} & RAC.ModalOverlayProps) => import("react/jsx-runtime").JSX.Element | null;
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

141 changes: 71 additions & 70 deletions dist/index.modern.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.modern.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.module.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.module.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openstax/ui-components",
"version": "1.10.9-dev",
"version": "1.10.9-dev1",
"license": "MIT",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 082e777

Please sign in to comment.