- Implemented `invoice-top-fields.svelte` for editing main invoice details including operation type, invoice type, and compliance fields. - Created `observations-tab-form.svelte` to manage invoice observations and compliance data. - Developed `others-tab-form.svelte` for additional logistics and compliance information related to the invoice. - Introduced reusable UI components for checkboxes and radio groups in `checkbox.svelte`, `radio-group.svelte`, and their respective item components. - Enhanced form handling with TypeScript for better type safety and maintainability.
11 lines
164 B
TypeScript
11 lines
164 B
TypeScript
import Root from "./radio-group.svelte";
|
|
import Item from "./radio-group-item.svelte";
|
|
|
|
export {
|
|
Root,
|
|
Item,
|
|
//
|
|
Root as RadioGroup,
|
|
Item as RadioGroupItem,
|
|
};
|