@lotte-innovate/ui-component-test 0.1.34 → 0.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist/globals.css +2 -2
- package/dist/lib/Typography/Text/index.js +1 -1
- package/dist/lib/components/AlertDialog/AlertDialogAction.js +5 -5
- package/dist/lib/components/AlertDialog/AlertDialogCancel.js +5 -5
- package/dist/lib/components/AlertDialog/AlertDialogTrigger.js +1 -1
- package/dist/lib/components/Avatar/index.d.ts +1 -0
- package/dist/lib/components/Avatar/index.js +2 -2
- package/dist/lib/components/Badge/index.js +1 -1
- package/dist/lib/components/BarChart/index.js +3 -0
- package/dist/lib/components/BubbleChart/index.d.ts +15 -22
- package/dist/lib/components/BubbleChart/index.js +34 -15
- package/dist/lib/components/Callout/CalloutIcon.d.ts +2 -1
- package/dist/lib/components/Callout/CalloutRoot.js +4 -4
- package/dist/lib/components/Callout/CalloutText.js +1 -1
- package/dist/lib/components/Callout/index.d.ts +1 -1
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.d.ts +2 -1
- package/dist/lib/components/CheckboxGroup/index.d.ts +1 -1
- package/dist/lib/components/LineChart/index.js +3 -1
- package/dist/lib/components/Menubar/MenubarMenu.d.ts +4 -1
- package/dist/lib/components/Menubar/MenubarRoot.js +1 -1
- package/dist/lib/components/Menubar/MenubarTrigger.js +1 -1
- package/dist/lib/components/Menubar/index.d.ts +3 -1
- package/dist/lib/components/NavigationMenu/NavigationMenuContent.js +2 -2
- package/dist/lib/components/NavigationMenu/NavigationMenuIndicator.js +1 -1
- package/dist/lib/components/NavigationMenu/NavigationMenuList.js +1 -1
- package/dist/lib/components/NavigationMenu/NavigationMenuRoot.js +1 -1
- package/dist/lib/components/NavigationMenu/NavigationMenuViewport.js +1 -1
- package/dist/lib/components/Progress/index.d.ts +1 -4
- package/dist/lib/components/Progress/index.js +2 -3
- package/dist/lib/components/RadarChart/index.d.ts +19 -26
- package/dist/lib/components/RadarChart/index.js +37 -15
- package/dist/lib/components/Radio/index.d.ts +0 -1
- package/dist/lib/components/Radio/index.js +3 -1
- package/dist/lib/components/RadioCards/RadioCardsItem.js +1 -1
- package/dist/lib/components/RadioCards/RadioCardsRoot.d.ts +0 -1
- package/dist/lib/components/RadioGroup/RadioGroupRoot.d.ts +0 -1
- package/dist/lib/components/Toggle/ToggleWithText.d.ts +1 -1
- package/dist/lib/components/Toggle/ToggleWithText.js +1 -0
- package/dist/lib/components/ToggleSwitch/index.js +1 -1
- package/dist/lib/components/Tooltip/index.d.ts +0 -1
- package/dist/lib/components/Tooltip/index.js +3 -4
- package/dist/lib/components/index.d.ts +1 -0
- package/dist/lib/components/index.js +1 -0
- package/dist/lib/types.d.ts +12 -0
- package/dist/lib/utils/useDarkMode.d.ts +1 -0
- package/dist/lib/utils/useDarkMode.js +49 -0
- package/dist/tailwind.config.js +2 -5
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
패키지를 설치하기 위해 아래 명령어를 사용합니다.
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npm i @lotte-innovate/
|
|
27
|
+
npm i @lotte-innovate/lui
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
yarn add @lotte-innovate/
|
|
31
|
+
yarn add @lotte-innovate/lui
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## Setup
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
프로젝트 App 진입 파일에 다음 줄을 추가해줍니다.
|
|
39
39
|
|
|
40
40
|
```
|
|
41
|
-
import '@lotte-innovate/
|
|
41
|
+
import '@lotte-innovate/lui/dist/globals.css';
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
## Usage
|
|
@@ -47,7 +47,7 @@ React 프로젝트에서 컴포넌트를 사용하는 방법에 대한 예시입
|
|
|
47
47
|
|
|
48
48
|
```javascript
|
|
49
49
|
import React from 'react';
|
|
50
|
-
import { Button } from '@lotte-innovate/
|
|
50
|
+
import { Button } from '@lotte-innovate/lui';
|
|
51
51
|
|
|
52
52
|
const App = () => {
|
|
53
53
|
return (
|
|
@@ -64,7 +64,7 @@ export default App;
|
|
|
64
64
|
|
|
65
65
|
```javascript
|
|
66
66
|
import React from 'react';
|
|
67
|
-
import { IconButton } from '@lotte-innovate/
|
|
67
|
+
import { IconButton } from '@lotte-innovate/lui';
|
|
68
68
|
import { MagnifyingGlassIcon } from '@radix-ui/react-icons';
|
|
69
69
|
|
|
70
70
|
const App = () => {
|