lyrics-transcriber 0.34.1__py3-none-any.whl → 0.34.3__py3-none-any.whl

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.
Files changed (37) hide show
  1. lyrics_transcriber/frontend/.gitignore +23 -0
  2. lyrics_transcriber/frontend/README.md +50 -0
  3. lyrics_transcriber/frontend/dist/assets/index-DqFgiUni.js +245 -0
  4. lyrics_transcriber/frontend/dist/index.html +13 -0
  5. lyrics_transcriber/frontend/dist/vite.svg +1 -0
  6. lyrics_transcriber/frontend/eslint.config.js +28 -0
  7. lyrics_transcriber/frontend/index.html +13 -0
  8. lyrics_transcriber/frontend/package-lock.json +4260 -0
  9. lyrics_transcriber/frontend/package.json +37 -0
  10. lyrics_transcriber/frontend/public/vite.svg +1 -0
  11. lyrics_transcriber/frontend/src/App.tsx +192 -0
  12. lyrics_transcriber/frontend/src/api.ts +59 -0
  13. lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx +155 -0
  14. lyrics_transcriber/frontend/src/components/DebugPanel.tsx +311 -0
  15. lyrics_transcriber/frontend/src/components/DetailsModal.tsx +297 -0
  16. lyrics_transcriber/frontend/src/components/FileUpload.tsx +77 -0
  17. lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +450 -0
  18. lyrics_transcriber/frontend/src/components/ReferenceView.tsx +287 -0
  19. lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +157 -0
  20. lyrics_transcriber/frontend/src/components/constants.ts +19 -0
  21. lyrics_transcriber/frontend/src/components/styles.ts +13 -0
  22. lyrics_transcriber/frontend/src/main.tsx +6 -0
  23. lyrics_transcriber/frontend/src/types.ts +158 -0
  24. lyrics_transcriber/frontend/src/vite-env.d.ts +1 -0
  25. lyrics_transcriber/frontend/tsconfig.app.json +26 -0
  26. lyrics_transcriber/frontend/tsconfig.json +25 -0
  27. lyrics_transcriber/frontend/tsconfig.node.json +23 -0
  28. lyrics_transcriber/frontend/tsconfig.tsbuildinfo +1 -0
  29. lyrics_transcriber/frontend/vite.config.d.ts +2 -0
  30. lyrics_transcriber/frontend/vite.config.js +6 -0
  31. lyrics_transcriber/frontend/vite.config.ts +7 -0
  32. lyrics_transcriber/review/server.py +16 -27
  33. {lyrics_transcriber-0.34.1.dist-info → lyrics_transcriber-0.34.3.dist-info}/METADATA +1 -1
  34. {lyrics_transcriber-0.34.1.dist-info → lyrics_transcriber-0.34.3.dist-info}/RECORD +37 -6
  35. {lyrics_transcriber-0.34.1.dist-info → lyrics_transcriber-0.34.3.dist-info}/LICENSE +0 -0
  36. {lyrics_transcriber-0.34.1.dist-info → lyrics_transcriber-0.34.3.dist-info}/WHEEL +0 -0
  37. {lyrics_transcriber-0.34.1.dist-info → lyrics_transcriber-0.34.3.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,23 @@
1
+ # Logs
2
+ logs
3
+ *.log
4
+ npm-debug.log*
5
+ yarn-debug.log*
6
+ yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+
10
+ node_modules
11
+ dist-ssr
12
+ *.local
13
+
14
+ # Editor directories and files
15
+ .vscode/*
16
+ !.vscode/extensions.json
17
+ .idea
18
+ .DS_Store
19
+ *.suo
20
+ *.ntvs*
21
+ *.njsproj
22
+ *.sln
23
+ *.sw?
@@ -0,0 +1,50 @@
1
+ # React + TypeScript + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
+
10
+ ## Expanding the ESLint configuration
11
+
12
+ If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
13
+
14
+ - Configure the top-level `parserOptions` property like this:
15
+
16
+ ```js
17
+ export default tseslint.config({
18
+ languageOptions: {
19
+ // other options...
20
+ parserOptions: {
21
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
22
+ tsconfigRootDir: import.meta.dirname,
23
+ },
24
+ },
25
+ })
26
+ ```
27
+
28
+ - Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
29
+ - Optionally add `...tseslint.configs.stylisticTypeChecked`
30
+ - Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
31
+
32
+ ```js
33
+ // eslint.config.js
34
+ import react from 'eslint-plugin-react'
35
+
36
+ export default tseslint.config({
37
+ // Set the react version
38
+ settings: { react: { version: '18.3' } },
39
+ plugins: {
40
+ // Add the react plugin
41
+ react,
42
+ },
43
+ rules: {
44
+ // other rules...
45
+ // Enable its recommended rules
46
+ ...react.configs.recommended.rules,
47
+ ...react.configs['jsx-runtime'].rules,
48
+ },
49
+ })
50
+ ```