Skip to content

Commit dbd87cf

Browse files
author
신용준
committed
feat: add 'use client';
1 parent 6d7fee8 commit dbd87cf

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shinyongjun/react-dialog",
3-
"version": "1.0.1",
3+
"version": "1.0.3",
44
"main": "./dist/cjs/index.js",
55
"module": "./dist/esm/index.js",
66
"source": "./src/index.tsx",

package/src/assets/ReactDialog.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@
3434
column-gap: 10px;
3535
}
3636

37-
.react-dialog__button-wrapper button:focus {
38-
outline: 2px dashed #000;
39-
outline-offset: 2px;
40-
}
41-
4237
.react-dialog__button-ok {
4338
display: flex;
4439
justify-content: center;

package/src/components/DialogProvider.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use client';
2+
13
import * as React from 'react';
24
import { ReactNode } from 'react';
35
import ConfirmDialog from './dialog/ConfirmDialog';

0 commit comments

Comments
 (0)