This commit introduces configuration and path management functionality in the CLI by adding the helper functions to load and validate configuration. It also provides the logic to retrieve available components from a given registry. Additionally, it exposes these functionalities in public API.
We have moved the vercel.json file to the root directory to standardize the project structure and improve the efficiency of referencing the file in our code.
A new file called registry.json has been created in the public react package. This file maps each component to its specific TypeScript file, acting as a repository for components like Button, Checkbox, Dialog, Input and others.
This commit deletes all template commands and related tests from the CLI package. The template command implementation and its associated tests have been fully removed to make way for new feature implementation.
Improved the format and type handling in the react/shared.tsx file. This includes adjustments to how variants are handled and formatted, enhancing type consistency and declarations. Also, ordinary parameters are given trailing commas as per the enhanced coding standards.
The typescript version was upgraded from 5.3.2 to 5.4.5 in the react package.json and yarn.lock files. This update will introduce any new features and fixes from the latest typescript version.
The fix ensures that the calculation of the 'movement' value in the Drawer component doesn't result in a negative number. The division by 'dragState.delta' is now divided by the absolute value to prevent faulty calculations.