mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
Now that the legacy v1 frontend (commit 064bdf53) is gone, the v2 directory is the only frontend and the v2 suffix is just noise. Renames resources/scripts-v2 to resources/scripts via git mv (so git records the move as renames, preserving blame and log --follow), then bulk-rewrites the 152 files that imported via @v2/... to use @/scripts/... instead. The existing @ alias (resources/) covers the new path with no extra config needed.
Drops the now-unused @v2 alias from vite.config.js and points the laravel-vite-plugin entry at resources/scripts/main.ts. Updates the only blade reference (resources/views/app.blade.php) to match. The package.json test script (eslint ./resources/scripts) automatically targets the right place after the rename without any edit.
Verified: npm run build exits clean and the Vite warning lines now reference resources/scripts/plugins/i18n.ts, confirming every import resolved through the new path. git log --follow on any moved file walks back through its scripts-v2 history.
61 lines
3.7 KiB
TypeScript
61 lines
3.7 KiB
TypeScript
export { default as BaseBadge } from './BaseBadge.vue'
|
|
export { default as BaseButton } from './BaseButton.vue'
|
|
export { default as BaseCard } from './BaseCard.vue'
|
|
export { default as BaseCheckbox } from './BaseCheckbox.vue'
|
|
export { default as BaseCustomerAddressDisplay } from './BaseCustomerAddressDisplay.vue'
|
|
export { default as BaseCustomerSelectInput } from './BaseCustomerSelectInput.vue'
|
|
export { default as BaseCustomerSelectPopup } from './BaseCustomerSelectPopup.vue'
|
|
export { default as BaseCustomInput } from './BaseCustomInput.vue'
|
|
export { default as BaseDatePicker } from './BaseDatePicker.vue'
|
|
export { default as BaseDescriptionList } from './BaseDescriptionList.vue'
|
|
export { default as BaseDescriptionListItem } from './BaseDescriptionListItem.vue'
|
|
export { default as BaseDialog } from './BaseDialog.vue'
|
|
export { default as BaseDivider } from './BaseDivider.vue'
|
|
export { default as BaseDropdown } from './BaseDropdown.vue'
|
|
export { default as BaseDropdownItem } from './BaseDropdownItem.vue'
|
|
export { default as BaseErrorAlert } from './BaseErrorAlert.vue'
|
|
export { default as BaseEstimateStatusLabel } from './BaseEstimateStatusLabel.vue'
|
|
export { default as BaseFileUploader } from './BaseFileUploader.vue'
|
|
export { default as BaseFormatMoney } from './BaseFormatMoney.vue'
|
|
export { default as BaseGlobalLoader } from './BaseGlobalLoader.vue'
|
|
export { default as BaseHeading } from './BaseHeading.vue'
|
|
export { default as BaseIcon } from './BaseIcon.vue'
|
|
export { default as BaseInfoAlert } from './BaseInfoAlert.vue'
|
|
export { default as BaseInput } from './BaseInput.vue'
|
|
export { default as BaseInvoiceStatusLabel } from './BaseInvoiceStatusLabel.vue'
|
|
export { default as BaseItemSelect } from './BaseItemSelect.vue'
|
|
export { default as BaseLabel } from './BaseLabel.vue'
|
|
export { default as BaseList } from './BaseList.vue'
|
|
export { default as BaseListItem } from './BaseListItem.vue'
|
|
export { default as BaseMoney } from './BaseMoney.vue'
|
|
export { default as BaseModal } from './BaseModal.vue'
|
|
export { default as BaseMultiselect } from './BaseMultiselect.vue'
|
|
export { default as BasePdfPreview } from './BasePdfPreview.vue'
|
|
export { default as BaseRadio } from './BaseRadio.vue'
|
|
export { default as BaseRating } from './BaseRating.vue'
|
|
export { default as BaseRecurringInvoiceStatusLabel } from './BaseRecurringInvoiceStatusLabel.vue'
|
|
export { default as BaseScrollPane } from './BaseScrollPane.vue'
|
|
export { default as BaseSelectAction } from './BaseSelectAction.vue'
|
|
export { default as BaseSelectInput } from './BaseSelectInput.vue'
|
|
export { default as BaseSettingCard } from './BaseSettingCard.vue'
|
|
export { default as BaseSpinner } from './BaseSpinner.vue'
|
|
export { default as BaseSwitch } from './BaseSwitch.vue'
|
|
export { default as BaseTab } from './BaseTab.vue'
|
|
export { default as BaseTabGroup } from './BaseTabGroup.vue'
|
|
export { default as BaseText } from './BaseText.vue'
|
|
export { default as BaseTextarea } from './BaseTextarea.vue'
|
|
export { default as BaseTimePicker } from './BaseTimePicker.vue'
|
|
export { default as BaseWizardNavigation } from './BaseWizardNavigation.vue'
|
|
export { default as BaseWizardStep } from './BaseWizardStep.vue'
|
|
|
|
// Status badge components
|
|
export { default as InvoiceStatusBadge } from './InvoiceStatusBadge.vue'
|
|
export { default as EstimateStatusBadge } from './EstimateStatusBadge.vue'
|
|
export { default as PaidStatusBadge } from './PaidStatusBadge.vue'
|
|
export { default as RecurringInvoiceStatusBadge } from './RecurringInvoiceStatusBadge.vue'
|
|
export { default as NewBadge } from './NewBadge.vue'
|
|
|
|
// Shared page components
|
|
export { default as InvoiceInformationCard } from './InvoiceInformationCard.vue'
|
|
export { default as InvoicePublicPage } from './InvoicePublicPage.vue'
|