[PR #132] [MERGED] Fix issues & migration to Sveltekit2 #162

Closed
opened 2026-03-23 20:32:18 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RADar-AZDelta/Keun/pull/132
Author: @BostoenToby
Created: 1/5/2024
Status: Merged
Merged: 1/5/2024
Merged by: @BostoenToby

Base: stgHead: dev


📝 Commits (10+)

  • bae8c40 Closes #120, use linter & change vocabulary to vocabularyId
  • 79c5b22 Close #122, Prevent APPROVED rows to turn to SEMI-APPROVED
  • 31fc662 Close #123, update url for README
  • 10b4250 use other manual & use newest version of datatable
  • f41fafb migrate to sveltekit2 & update version of datatable/athena-search packages
  • fddf8bf Close #124, fix issue that default vocab was not showed in input row
  • b28dc4d Close #125, The suffix "_usagi" won't be added if the file name already ends with that suffix
  • 376b81a Close #128, multiple actions possible in pop-up
  • d8257f2 Close #126, button to show/hide multiple columns in the pop-up
  • e853c88 Close #129, Comments column is now editable directly from the table

📊 Changes

31 files changed (+910 additions, -1950 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 package.json (+10 -14)
📝 pnpm-lock.yaml (+432 -1385)
public/index.html (+0 -37)
📝 src/hooks.server.ts (+1 -1)
📝 src/lib/components/Types.d.ts (+13 -2)
src/lib/components/extra/Manual.svelte (+0 -85)
📝 src/lib/components/mapping/AthenaSearch.svelte (+86 -47)
📝 src/lib/components/mapping/SearchHead.svelte (+49 -18)
src/lib/components/mapping/ShowColumnsDialog.svelte (+45 -0)
📝 src/lib/components/mapping/UsagiRow.svelte (+8 -3)
📝 src/lib/components/mapping/views/InputRow.svelte (+9 -1)
📝 src/lib/data/columnsUsagi.json (+1 -1)
src/lib/firebase.ts (+0 -224)
📝 src/lib/implementations/dataTypesImpl/AthenaDataTypeImpl.ts (+6 -6)
📝 src/lib/implementations/databaseImpl/LocalImpl.ts (+2 -1)
📝 src/lib/implementations/databaseImpl/SQLite.ts (+3 -2)
📝 src/lib/implementations/implementation.ts (+2 -2)
📝 src/lib/implementations/saveImplementations/FirebaseSaveImpl.ts (+2 -2)
📝 src/lib/mappingUtils.ts (+1 -2)

...and 11 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RADar-AZDelta/Keun/pull/132 **Author:** [@BostoenToby](https://github.com/BostoenToby) **Created:** 1/5/2024 **Status:** ✅ Merged **Merged:** 1/5/2024 **Merged by:** [@BostoenToby](https://github.com/BostoenToby) **Base:** `stg` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`bae8c40`](https://github.com/RADar-AZDelta/Keun/commit/bae8c40c37dfd68b93c80abe00b73d2bf051dd0a) Closes #120, use linter & change vocabulary to vocabularyId - [`79c5b22`](https://github.com/RADar-AZDelta/Keun/commit/79c5b2229d4a5dd073dc5b4839379ba20b1d0e48) Close #122, Prevent APPROVED rows to turn to SEMI-APPROVED - [`31fc662`](https://github.com/RADar-AZDelta/Keun/commit/31fc66248cf0633e956a5cd23787158e5c6fc705) Close #123, update url for README - [`10b4250`](https://github.com/RADar-AZDelta/Keun/commit/10b42504c96ae359d13524a6128f5a3734d6a68f) use other manual & use newest version of datatable - [`f41fafb`](https://github.com/RADar-AZDelta/Keun/commit/f41fafbc8bcb3d3070a4968b2ab9850cb4efc8e5) migrate to sveltekit2 & update version of datatable/athena-search packages - [`fddf8bf`](https://github.com/RADar-AZDelta/Keun/commit/fddf8bfa64ed3a43dcea0cb476ff41b10e9acbc6) Close #124, fix issue that default vocab was not showed in input row - [`b28dc4d`](https://github.com/RADar-AZDelta/Keun/commit/b28dc4d1f5611e0f2f0368d9e084fa3a2768621e) Close #125, The suffix "_usagi" won't be added if the file name already ends with that suffix - [`376b81a`](https://github.com/RADar-AZDelta/Keun/commit/376b81a302b43194ac6704137dfe05b9f3783dc7) Close #128, multiple actions possible in pop-up - [`d8257f2`](https://github.com/RADar-AZDelta/Keun/commit/d8257f21bd7032869235ea5f9737202e143e3430) Close #126, button to show/hide multiple columns in the pop-up - [`e853c88`](https://github.com/RADar-AZDelta/Keun/commit/e853c8861feb9c12bab1ddcb0068e4b4194836cd) Close #129, Comments column is now editable directly from the table ### 📊 Changes **31 files changed** (+910 additions, -1950 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `package.json` (+10 -14) 📝 `pnpm-lock.yaml` (+432 -1385) ➖ `public/index.html` (+0 -37) 📝 `src/hooks.server.ts` (+1 -1) 📝 `src/lib/components/Types.d.ts` (+13 -2) ➖ `src/lib/components/extra/Manual.svelte` (+0 -85) 📝 `src/lib/components/mapping/AthenaSearch.svelte` (+86 -47) 📝 `src/lib/components/mapping/SearchHead.svelte` (+49 -18) ➕ `src/lib/components/mapping/ShowColumnsDialog.svelte` (+45 -0) 📝 `src/lib/components/mapping/UsagiRow.svelte` (+8 -3) 📝 `src/lib/components/mapping/views/InputRow.svelte` (+9 -1) 📝 `src/lib/data/columnsUsagi.json` (+1 -1) ➖ `src/lib/firebase.ts` (+0 -224) 📝 `src/lib/implementations/dataTypesImpl/AthenaDataTypeImpl.ts` (+6 -6) 📝 `src/lib/implementations/databaseImpl/LocalImpl.ts` (+2 -1) 📝 `src/lib/implementations/databaseImpl/SQLite.ts` (+3 -2) 📝 `src/lib/implementations/implementation.ts` (+2 -2) 📝 `src/lib/implementations/saveImplementations/FirebaseSaveImpl.ts` (+2 -2) 📝 `src/lib/mappingUtils.ts` (+1 -2) _...and 11 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 20:32:18 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
RADar-AZDelta/archived-Keun#162
No description provided.