feat(checkReferenceType): add check reference type feature
All checks were successful
CI / container-job (push) Successful in 39s
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:
parent
c350e9c373
commit
0d259b6464
6 changed files with 525 additions and 450 deletions
16
resources/js/types/models.ts
Normal file
16
resources/js/types/models.ts
Normal 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[];
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue