@edu-tosel/design 1.0.197 → 1.0.198
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.
|
@@ -9,5 +9,5 @@ interface TableExtensionProps {
|
|
|
9
9
|
printOne: OnClick;
|
|
10
10
|
downloadExcel: OnClick;
|
|
11
11
|
}
|
|
12
|
-
export default function
|
|
12
|
+
export default function TableLayout({ children, examName, examHallType, printAll, printOne, downloadExcel, }: TableExtensionProps): import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -6,7 +6,7 @@ const examHallTypeString = {
|
|
|
6
6
|
academy: "학원",
|
|
7
7
|
home: "가정",
|
|
8
8
|
};
|
|
9
|
-
export default function
|
|
9
|
+
export default function TableLayout({ children, examName, examHallType, printAll, printOne, downloadExcel, }) {
|
|
10
10
|
const container = {
|
|
11
11
|
displays: "flex flex-col gap-y-3",
|
|
12
12
|
};
|
|
@@ -5,6 +5,6 @@ declare function Ticket(props: {
|
|
|
5
5
|
}): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
declare namespace Ticket {
|
|
7
7
|
var Extension: typeof TicketExtension;
|
|
8
|
-
var
|
|
8
|
+
var TableLayout: typeof import("./TableLayout").default;
|
|
9
9
|
}
|
|
10
10
|
export default Ticket;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import TicketDesign from "./Ticket.design";
|
|
3
3
|
import TicketExtension from "./Extension";
|
|
4
|
-
import
|
|
4
|
+
import TableLayout from "./TableLayout";
|
|
5
5
|
function Ticket(props) {
|
|
6
6
|
return _jsx(TicketDesign, { ...props });
|
|
7
7
|
}
|
|
8
8
|
Ticket.Extension = TicketExtension;
|
|
9
|
-
Ticket.
|
|
9
|
+
Ticket.TableLayout = TableLayout;
|
|
10
10
|
export default Ticket;
|
package/package.json
CHANGED
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.198
|