We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d7fee8 commit dbd87cfCopy full SHA for dbd87cf
package/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@shinyongjun/react-dialog",
3
- "version": "1.0.1",
+ "version": "1.0.3",
4
"main": "./dist/cjs/index.js",
5
"module": "./dist/esm/index.js",
6
"source": "./src/index.tsx",
package/src/assets/ReactDialog.css
@@ -34,11 +34,6 @@
34
column-gap: 10px;
35
}
36
37
-.react-dialog__button-wrapper button:focus {
38
- outline: 2px dashed #000;
39
- outline-offset: 2px;
40
-}
41
-
42
.react-dialog__button-ok {
43
display: flex;
44
justify-content: center;
package/src/components/DialogProvider.tsx
@@ -1,3 +1,5 @@
+'use client';
+
import * as React from 'react';
import { ReactNode } from 'react';
import ConfirmDialog from './dialog/ConfirmDialog';
0 commit comments