@dytsou/intern-corner-scheduler 1.2.2 → 1.2.6
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/LICENSE +1 -1
- package/index.html +12 -14
- package/package.json +6 -2
- package/scripts/create-nojekyll.js +0 -1
- package/src/App.css +238 -238
- package/src/App.jsx +38 -35
- package/src/components/ErrorMessage.jsx +15 -12
- package/src/components/Footer.jsx +24 -11
- package/src/components/Header.jsx +8 -7
- package/src/components/PairInput.jsx +33 -34
- package/src/components/PairStatus.jsx +34 -35
- package/src/components/ResultsDisplay.jsx +17 -21
- package/src/components/RoundSelector.jsx +14 -15
- package/src/components/ScheduleForm.jsx +200 -171
- package/src/components/Statistics.jsx +27 -28
- package/src/components/TableAssignments.jsx +34 -34
- package/src/config.js +17 -16
- package/src/index.css +26 -24
- package/src/main.jsx +6 -7
- package/src/services/api.js +22 -18
- package/vite.config.js +3 -4
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 Round-Table Scheduler by dytsou
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/index.html
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!doctype html>
|
|
2
2
|
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Round-Table Scheduler</title>
|
|
8
|
+
</head>
|
|
3
9
|
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
</head>
|
|
10
|
-
|
|
11
|
-
<body>
|
|
12
|
-
<div id="root"></div>
|
|
13
|
-
<script type="module" src="/src/main.jsx"></script>
|
|
14
|
-
</body>
|
|
15
|
-
|
|
16
|
-
</html>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
<script type="module" src="/src/main.jsx"></script>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dytsou/intern-corner-scheduler",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Round-table Scheduler (CP-SAT) - Python CLI and web interface using OR-Tools CP-SAT to generate round-table seating across rounds with fixed hosts, balanced tables, and pair-wise constraints",
|
|
6
6
|
"author": "dytsou",
|
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
"build": "vite build && node scripts/create-nojekyll.js",
|
|
32
32
|
"preview": "vite preview",
|
|
33
33
|
"lint": "eslint . --ext js,jsx --ignore-pattern 'docs/**' --report-unused-disable-directives --max-warnings 0",
|
|
34
|
+
"format": "prettier --write \"src/**/*.{js,jsx,json,css}\" \"scripts/**/*.js\" \"*.{js,json,html}\"",
|
|
35
|
+
"format:check": "prettier --check \"src/**/*.{js,jsx,json,css}\" \"scripts/**/*.js\" \"*.{js,json,html}\"",
|
|
34
36
|
"publish:npmjs": "npm publish --access public --registry https://registry.npmjs.org"
|
|
35
37
|
},
|
|
36
38
|
"dependencies": {
|
|
@@ -42,13 +44,15 @@
|
|
|
42
44
|
"@types/react-dom": "^19.2.3",
|
|
43
45
|
"@vitejs/plugin-react": "^5.1.1",
|
|
44
46
|
"eslint": "^9.39.1",
|
|
47
|
+
"eslint-config-prettier": "^10.1.8",
|
|
45
48
|
"eslint-plugin-react": "^7.37.5",
|
|
46
49
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
47
50
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
51
|
+
"prettier": "^3.7.4",
|
|
48
52
|
"vite": "^7.2.4"
|
|
49
53
|
},
|
|
50
54
|
"publishConfig": {
|
|
51
55
|
"access": "public",
|
|
52
56
|
"registry": "https://registry.npmjs.org/"
|
|
53
57
|
}
|
|
54
|
-
}
|
|
58
|
+
}
|