Three new delay options have been added for the Tooltip component: NoDelay, EarlyDelay, and LateDelay. These options have also been incorporated into the component's documentation for better understanding.
The documentation for the Tooltip component in the react package has been updated to include a new 'delay' prop. This prop controls the time between hover start and the appearance of the tooltip.
This change introduces new delay variants to Tooltip component. This feature allows adjusting the delay before the tooltip appears, ranging from no delay, early appearance, normal delay to a late appearance, enhancing usability according to different use-cases. The default delay is set to normal.
A new configuration documentation file has been added to the react package. This document includes information about the library file, CLI, and the configuration structure. It also contains code examples for enhancing user understanding.
The commit changes the package installation instructions in the React documentation. It suggests installing the package as a devDependency implying the package is primarily used in development.
The path for the 'lib' key in registry.json was updated to point to the correct lib.tsx file. This change ensures that all relative imports function as expected.
The registry.json file in the React package has been refactored. The paths have been updated for cleaner and simpler referencing. Additionally, the versioning from the 'lib' section, which was previously hard-coded, has been removed to allow for more flexibility and ease of updates in the future.
The `libVersion` keys across all components listed in the registry.json file have been removed, as they were not used in the codebase. This change simplifies the registry file and prevents potential confusion caused by unused data.
Updated the import statements in multiple react components to use the new `@pswui-lib` package instead of the deprecated `@pswui-lib/shared@1.0.0`. This makes the code cleaner and easier
The path to the "lib.tsx" file in the include array in the TypeScript configuration file for the React package, tsconfig.json, has been adjusted for improved clarity and accuracy.
Update the installation guide in React docs, transforming it into a tabbed interface separating CLI and Manual Installation methods for better readability and ease of understanding.
Updated the import statements in multiple component files to use the updated package name for shared resources. This change was necessary for import consistency and to ensure proper functioning of the components as per the new package name "@pswui-lib/shared@1.0.0".
The commit includes a new alias @pswui-lib in both the `vite.config.ts` and `tsconfig.json` files. This change facilitates a more straightforward and concise import of files located in the 'lib' directory.
The registry.json file has been updated to not only contain the name of the React components but also their respective versions. This detail is provided with each component as a new "libVersion" property.
The base URL property in registry.json was corrected to point to the right path in the 'pswui/ui' repository. This resolves the incorrect path issue that could prevent fetching of the correct resources from the repository.
The structure of registry.json within the React package has been reorganized. Paths for base, components, and lib have been adjusted and a new field "paths" has been introduced. Additionally, the lib entry has been changed to an array.
The URLs for base and shared components in registry.json have been updated to reflect the new repository location. Additionally, a new URL for the library version 1.0.0 has been added under 'lib'.
Added a 404.html file that contains a redirection script in the 'react' package. Also updated the build script in package.json to copy the 404.html into the dist folder when building.
This commit modifies the keys in the registry.json file within the React package to follow a consistent, all-lowercase convention. This standardization can aid in maintaining code consistency.
Installation documentation is updated to reflect the new changes. The CLI has been introduced to automatically install components and shared core utility. The procedure of manual installation and configuration is also detailed. The new CLI can list, add, and configure components providing an easier setup process.
This commit updates the extension of the 'shared' file from .ts to .tsx in the registry.json file. The update ensures that the 'shared' file correctly points to a TypeScript JSX file within the React package.
A new attribute "shared" has been added to the 'registry.json' file in the React package. This attribute contains the URL to the shared TypeScript module for components.
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.
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.