405 Commits

Author SHA1 Message Date
Shinwoo PARK
643e607eb4 refactor: delete docs & make it dev environment 2024-06-13 19:28:32 +00:00
Shinwoo PARK
fc5c5ba4f5 refactor: moved registry file to the root 2024-06-13 19:27:58 +00:00
8de1a433c1 feat(Tooltip): add "status" prop
The tooltip component now includes a new "status" property. This property determines the color of the tooltip, with options including "normal", "error", "success" and "warning".
2024-06-11 21:00:17 +09:00
5dd74e4b3f feat(react): add Tooltip to App.tsx
This commit includes the addition of the Tooltip component to the App.tsx in the react package. With this feature, application elements now display messages based on their status (success or error) upon interaction, enhancing the user experience. Additionally, a copy-to-clipboard functionality has been implemented.
2024-06-11 20:58:45 +09:00
ffb8504b09 feat(tooltip): enhance Tooltip with AsChild property
This update enhances the Tooltip component in the react/components package by adding the AsChild property. Now, users of the Tooltip component have flexibility to use it as a child of another component. A conditional logic is added to choose either Slot or "div" based on the asChild property. And rest of the properties are extracted into extractedRest for avoiding passing of asChild downstream.
2024-06-11 20:30:53 +09:00
a329eee279 feat(Tooltip): add status variants
Implemented different tooltip variants to handle different status messages. Variants for normal, error, success, and warning have been added. Now, tooltips can show status-specific color coding, improving their usability.
2024-06-11 20:24:43 +09:00
5db9be1eb3 feat(react): update Tooltip properties in docs
Add two new properties, 'controlled' and 'opened', to the Tooltip documentation in the React package. The 'controlled' property blocks the tooltip from being triggered by hover state, while the 'opened' property forces the tooltip to stay open.
2024-06-11 20:15:58 +09:00
90960ff800 feat: add Controlled tooltip example
Added a new example, 'Controlled', for the Tooltip component in the documentation. The 'Controlled' example demonstrates how to use tooltip with controlled states. The change includes the update of examples index and documentation MDX page.
2024-06-11 20:14:05 +09:00
ca90f3355a feat(Tooltip): add controlled and opened states
This update adds 'controlled' and 'opened' states to the Tooltip component in the React library. These states provide more precise control over when the tooltip opens and facilitates integration with other components. The CSS classes for tooltip positioning have been updated to reflect these new states.
2024-06-11 20:13:51 +09:00
46ec2e2c52 refactor(Tooltip): update tooltip transition and delay properties
This commit updates the Tooltip component's transition and delay properties. The transition is now applied on transform, opacity, background color, text color, and border color. Additionally, the delay handling has been modified to use a CSS variable, improving flexibility and maintainability of code.
2024-06-11 19:52:21 +09:00
937670bfea style(react): update Code component styling
Changed the styling of Code component in the 'LoadedCode.tsx' file. Specifically, the scrollbar was removed, and the types for the forwardRef function were restructured for improved code readability.
2024-06-11 19:31:25 +09:00
8e6e691308 feat: add tailwind-scrollbar dependency
Added the 'tailwind-scrollbar' dependency to the project manifest files and imported it into the Tailwind CSS configuration. This allows us to leverage the scrollbar utility features provided by 'tailwind-scrollbar'. This change is reflected in the updated yarn.lock, package.json, and tailwind.config.js files.
2024-06-11 19:31:15 +09:00
300c7fc8c3 docs(Tooltip): add delay option examples
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.
2024-06-11 19:24:08 +09:00
ea987ad590 docs(Tooltip): add delay prop in docs
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.
2024-06-11 19:23:48 +09:00
b28e5d1c8d feat(Tooltip): add delay variants
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.
2024-06-11 19:23:29 +09:00
c27e7bd2c5 feat(react): add configuration documentation
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.
2024-06-11 18:52:02 +09:00
d23360887d docs(react): update installation instructions
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.
2024-06-11 18:17:19 +09:00
36a4cc605d fix(react): correct library path in registry.json
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.
2024-06-11 18:04:56 +09:00
670fa9d1bc refactor(react): update registry.json paths and remove version
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.
2024-06-11 17:58:42 +09:00
6f8d944f47 refactor(react): remove unused libVersion from registry.json
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.
2024-06-11 17:53:17 +09:00
76ec211d81 refactor: update import statements in react components
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
2024-06-11 17:51:26 +09:00
f07d496792 refactor(react): update include path in tsconfig.json
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.
2024-06-11 17:50:12 +09:00
31659c0b6c refactor(react): rename shared@1.0.0.tsx to lib.tsx
The shared@1.0.0.tsx file in the react package has been renamed to lib.tsx for enhanced simplicity and to ensure better project structure.
2024-06-11 17:50:02 +09:00
511b778fd0 refactor(react): change path of pswui-lib in vite and tsconfig
The paths were updated for the alias '@pswui-lib' in both vite.config.ts and tsconfig.json files. The new path now points to 'lib.tsx' from 'lib'.
2024-06-11 17:45:33 +09:00
35603cadaf refactor(react): update installation guide
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.
2024-06-11 17:40:28 +09:00
2deae4af79 refactor(components): update import statements
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".
2024-06-11 16:20:24 +09:00
edfaef2c75 feat: add lib alias in vite config and tsconfig
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.
2024-06-11 15:43:56 +09:00
303d6b31e7 refactor(react): update registry.json with components versions
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.
2024-06-11 13:11:30 +09:00
ec4e811219 fix(react): correct base URL in registry.json
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.
2024-06-11 13:06:33 +09:00
647e5c311d refactor(react): update registry.json structure
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.
2024-06-11 13:02:42 +09:00
946db4efd0 feat(react): update URLs in registry.json
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'.
2024-06-11 12:59:45 +09:00
4421adfe7d refactor(components): make shared version and update import in components 2024-06-11 12:56:55 +09:00
7d2aa1d7f0 feat(react): add 404 redirection and update build script
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.
2024-06-08 09:11:38 +09:00
ebdedd9e04 refactor(react): standardize registry keys to lowercase
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.
2024-06-08 02:44:01 +09:00
d3555fc42d docs(react): update installation instructions
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.
2024-06-07 01:28:27 +09:00
b6d32e980a fix(react): change shared file extension in registry.json
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.
2024-06-06 23:55:27 +09:00
d8825a0c10 feat(react): add shared module URL to registry.json
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.
2024-06-06 22:46:04 +09:00
6fd099dc69 refactor: Moved vercel.json file to root directory
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.
2024-06-06 20:13:23 +09:00
426297796e feat: add components in registry.json
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.
2024-06-06 19:27:18 +09:00
673702947d refactor: adjust types and formatting in shared.tsx
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.
2024-06-06 00:16:22 +09:00
92b64405a4 feat: upgrade typescript version
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.
2024-06-06 00:16:07 +09:00
fdb4d0d70f feat: add Popover docs 2024-06-05 21:31:50 +09:00
ffe49ff90f fix: ensure delta value is absolute in Drawer component
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.
2024-06-05 19:16:42 +09:00
7b17e6df9b fix: rollback unknown to any 2024-06-05 19:08:02 +09:00
8cb43b3c1f fix: add unknown index signature in VariantProps 2024-06-05 18:45:10 +09:00
9c996f564a fix: reformat table 2024-06-04 23:14:50 +09:00
b69f886e9e fix: reformat table 2024-06-04 23:11:32 +09:00
c2a1f583a9 fix: remove unused imports 2024-06-04 23:11:03 +09:00
f99d32025f fix: use const instead of let 2024-06-04 23:01:28 +09:00
f7ce1e8a1f fix: add void to explicitly ignore promise 2024-06-04 22:58:16 +09:00