446 Commits

Author SHA1 Message Date
22ab752b75 fix: split component file 2024-06-14 23:59:50 +09:00
2a53a2d3e9 fix: add value to data-toast-root 2024-06-14 23:52:34 +09:00
89950524f4 fix: fix problem with ref element type 2024-06-14 23:51:41 +09:00
395c2f8ed1 fix: use any instead of unknown for AnyPropBeforeResolve
TypeScript throws error in component's resolve usage about index signature.
2024-06-14 23:49:11 +09:00
1f1ca76b6d fix: make @pswui-lib references library index 2024-06-14 23:47:46 +09:00
139d02eb9b feat(react-lib): add index.ts file
This commit creates a new index.ts file in the react/lib package. It exports from 'vcn' and 'Slot' modules, optimizing the package for component and slot usage.
2024-06-14 23:29:06 +09:00
c201df67ce style(react): remove unnecessary linebreaks 2024-06-14 23:27:06 +09:00
27fcddcc1f refactor(react): add lib directory instead of lib.tsx file 2024-06-14 23:26:40 +09:00
0f8c999de7 feat(react): add esModuleInterop in tsconfig.json 2024-06-14 23:26:18 +09:00
47cfd907b9 refactor(react): split library file to vcn and Slot 2024-06-14 23:25:56 +09:00
6263a99b9a fix: remove any in library 2024-06-14 23:17:42 +09:00
c46163f525 fix: solve eslint errors 2024-06-14 23:08:23 +09:00
d72fd9cd91 fix: solve eslint errors 2024-06-14 23:08:06 +09:00
482603c378 fix: use MouseEvent instead of any 2024-06-14 23:05:36 +09:00
ebfcd60594 fix: solve react-hooks/exhaustive-deps warning 2024-06-14 23:04:10 +09:00
e15fe48ec8 fix: use asChild in drawer components 2024-06-14 22:54:32 +09:00
5254a49ebe fix: safely ignore unused variables starting with underscore 2024-06-14 22:54:06 +09:00
aa074d16c1 fix: add everything for eslint fix 2024-06-14 22:47:39 +09:00
bf13cf9e57 fix: add missing dependency from oclif eslint 2024-06-14 21:42:33 +09:00
fc525d737c fix: cache from manual path instead of deprecated command 2024-06-14 21:39:45 +09:00
3edabaddf9 fix: move prepare to each job 2024-06-14 21:32:06 +09:00
1d6e892596 feat: add linting workflow 2024-06-14 21:18:52 +09:00
Shinwoo PARK
05dc15d04e feat: bumped to 0.4.1 cli@0.4.1 2024-06-13 19:55:47 +00:00
Shinwoo PARK
4523e6a419 docs: update cli docs 2024-06-13 19:55:03 +00:00
Shinwoo PARK
47160748b6 docs: add registry flag in every command 2024-06-13 19:51:36 +00:00
Shinwoo PARK
d8d61aceaa feat: add registry override flag 2024-06-13 19:43:24 +00:00
Shinwoo PARK
a966a85f62 fix: change registry url to githubusercontent 2024-06-13 19:37:44 +00:00
Shinwoo PARK
fefe19c534 refactor: remove workflow for deploy docs 2024-06-13 19:34:26 +00:00
Shinwoo PARK
447b2249c8 refactor: remove useless dependencies for old docs 2024-06-13 19:34:05 +00:00
Shinwoo PARK
8eb378b1cc refactor: remove 404.html 2024-06-13 19:29:16 +00:00
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
45082d4587 docs(cli): update README with latest changes
The CLI README has been updated to reflect the removal of the --forceShared flag from the available commands. Additionally, all references to the code have been updated from version 0.3.0 to version 0.4.0 to align with the current version of the application.
cli@0.4.0
2024-06-11 18:11:35 +09:00
b9583a43f6 feat(cli): update version to 0.4.0
The version of the CLI for PSW/UI has been updated from 0.3.0 to 0.4.0.
2024-06-11 18:11:23 +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