This commit downgrades yarn from version 4.2.2 to 3.8.2, updating yarn.lock and package.json files. The various checksum changes within the yarn.lock file reflect updated package dependencies. This helps to maintain consistency in the project.
The change updates the sha256 hash of the yarn package manager to sha512 in the package.json file. This alteration ensures the use of the correct hash for the yarn package manager and improves the reliability of the package dependencies.
This commit corrects the spacing for the "cli" script in package.json. It eliminates the extra spaces and aligns with the consistent style used throughout the file, promoting better readability and code structure.
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.
Added two new script shortcuts for React and CLI workspaces to the package.json file. These shortcuts will streamline the build and dev process by reducing the required command length.
This commit adds new build and development scripts to package.json. It features 'react:build', 'react:dev' and 'cli:build' scripts. The 'yarn.lock' file has been significantly updated to include new packages and dependencies for "@aws-sdk/client-cloudfront", "@aws-sdk/client-s3" and few others. This ensures proper and up-to-date packages management for an efficient development environment.
The 'Popover' task has been updated to be marked as complete in the README.md file. The 'Hover' task has been removed. These changes reflect updates on the project's progress.
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.
In this commit, we have added a link to the web documentation in the README file. This helps users to easily navigate to the documentation directly from the project's README.
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.