feat(checkReferenceType): add check reference type feature
All checks were successful
CI / container-job (push) Successful in 39s

Update npm packages and related dependencies
Adapt tailwind.config.js with new utilities and configuration adjustments
Implement categorizeUpdate() method in Submitter/DatasetController.ts for synchronizing dataset collections
Apply style updates in Category.vue for improved drag-and-drop experience and visual cues
Add new route in start/routes.ts for dataset categorization flow
This commit is contained in:
Kaimbacher 2025-03-17 17:26:29 +01:00
parent c350e9c373
commit 0d259b6464
6 changed files with 525 additions and 450 deletions

View file

@ -0,0 +1,16 @@
/* --------------------------------------------------------------------------
Types and Interfaces
-------------------------------------------------------------------------- */
export interface Collection {
id: number;
name: string;
number: string;
parent_id?: number | null;
inUse?: boolean;
}
export interface CollectionRole {
id: number;
name: string;
collections?: Collection[];
}