You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,3 +36,13 @@
36
36
- Use Vite for fast development and building
37
37
- Use vue-i18n in composition API for any string literals. Place new translation entries in src/locales/en/main.json.
38
38
- Avoid using `@ts-expect-error` to work around type issues. We needed to employ it to migrate to TypeScript, but it should not be viewed as an accepted practice or standard.
39
+
- DO NOT use deprecated PrimeVue components. Use these replacements instead:
40
+
*`Dropdown` → Use `Select` (import from 'primevue/select')
41
+
*`OverlayPanel` → Use `Popover` (import from 'primevue/popover')
42
+
*`Calendar` → Use `DatePicker` (import from 'primevue/datepicker')
43
+
*`InputSwitch` → Use `ToggleSwitch` (import from 'primevue/toggleswitch')
44
+
*`Sidebar` → Use `Drawer` (import from 'primevue/drawer')
45
+
*`Chips` → Use `AutoComplete` with multiple enabled and typeahead disabled
0 commit comments