forked from geolba/tethys.backend
feat(checkReferenceType): add check reference type feature
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
|
@ -102,7 +102,19 @@ module.exports = {
|
|||
{ values: theme('asideScrollbars') },
|
||||
);
|
||||
}),
|
||||
plugin(function({ addUtilities }) {
|
||||
const newUtilities = {
|
||||
'.drag-none': {
|
||||
'-webkit-user-drag': 'none',
|
||||
'-khtml-user-drag': 'none',
|
||||
'-moz-user-drag': 'none',
|
||||
'-o-user-drag': 'none',
|
||||
'user-drag': 'none',
|
||||
},
|
||||
}
|
||||
addUtilities(newUtilities)
|
||||
}),
|
||||
// As of Tailwind CSS v3.3, the `@tailwindcss/line-clamp` plugin is now included by default
|
||||
// require('@tailwindcss/line-clamp'),
|
||||
],
|
||||
};
|
||||
};
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue