@edu-tosel/design 1.0.197 → 1.0.199

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 TableExtension({ children, examName, examHallType, printAll, printOne, downloadExcel, }: TableExtensionProps): import("react/jsx-runtime").JSX.Element;
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 TableExtension({ children, examName, examHallType, printAll, printOne, downloadExcel, }) {
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
  };
@@ -25,7 +25,7 @@ function TicketDesign({ props }, ref) {
25
25
  numberArray.splice(7, 0, null);
26
26
  const container = {
27
27
  sizes: "w-full max-w-[340px] xs:w-[340px] h-[700px] flex flex-col justify-start",
28
- spacings: "p-5 print:m-10",
28
+ spacings: "p-5",
29
29
  boundaries: "border-1 border-gray-medium shadow-main",
30
30
  backgrounds: "bg-white",
31
31
  };
@@ -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 TableExtension: typeof import("./TableExtension").default;
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 TableExtension from "./TableExtension";
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.TableExtension = TableExtension;
9
+ Ticket.TableLayout = TableLayout;
10
10
  export default Ticket;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edu-tosel/design",
3
- "version": "1.0.197",
3
+ "version": "1.0.199",
4
4
  "description": "UI components for International TOSEL Committee",
5
5
  "keywords": [
6
6
  "jsx",
package/version.txt CHANGED
@@ -1 +1 @@
1
- 1.0.197
1
+ 1.0.199