@yamada-ui/alert 0.5.7 → 0.5.9
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/dist/alert.js +3 -3
- package/dist/alert.mjs +1 -1
- package/dist/{chunk-3X7FYNVJ.mjs → chunk-GP36R564.mjs} +3 -3
- package/dist/index.js +3 -3
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
package/dist/alert.js
CHANGED
|
@@ -103,7 +103,7 @@ var AlertIcon = ({
|
|
|
103
103
|
import_core.ui.span,
|
|
104
104
|
{
|
|
105
105
|
display: "inherit",
|
|
106
|
-
className: (0, import_utils.cx)("ui-
|
|
106
|
+
className: (0, import_utils.cx)("ui-alert__icon", className),
|
|
107
107
|
__css: css,
|
|
108
108
|
...rest,
|
|
109
109
|
children: children || /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
@@ -126,7 +126,7 @@ var AlertTitle = (0, import_core.forwardRef)(
|
|
|
126
126
|
import_core.ui.p,
|
|
127
127
|
{
|
|
128
128
|
ref,
|
|
129
|
-
className: (0, import_utils.cx)("ui-
|
|
129
|
+
className: (0, import_utils.cx)("ui-alert__title", className),
|
|
130
130
|
__css: css,
|
|
131
131
|
...rest
|
|
132
132
|
}
|
|
@@ -143,7 +143,7 @@ var AlertDescription = (0, import_core.forwardRef)(
|
|
|
143
143
|
import_core.ui.span,
|
|
144
144
|
{
|
|
145
145
|
ref,
|
|
146
|
-
className: (0, import_utils.cx)("ui-
|
|
146
|
+
className: (0, import_utils.cx)("ui-alert__desc", className),
|
|
147
147
|
__css: css,
|
|
148
148
|
...rest
|
|
149
149
|
}
|
package/dist/alert.mjs
CHANGED
|
@@ -81,7 +81,7 @@ var AlertIcon = ({
|
|
|
81
81
|
ui.span,
|
|
82
82
|
{
|
|
83
83
|
display: "inherit",
|
|
84
|
-
className: cx("ui-
|
|
84
|
+
className: cx("ui-alert__icon", className),
|
|
85
85
|
__css: css,
|
|
86
86
|
...rest,
|
|
87
87
|
children: children || /* @__PURE__ */ jsx(
|
|
@@ -104,7 +104,7 @@ var AlertTitle = forwardRef(
|
|
|
104
104
|
ui.p,
|
|
105
105
|
{
|
|
106
106
|
ref,
|
|
107
|
-
className: cx("ui-
|
|
107
|
+
className: cx("ui-alert__title", className),
|
|
108
108
|
__css: css,
|
|
109
109
|
...rest
|
|
110
110
|
}
|
|
@@ -121,7 +121,7 @@ var AlertDescription = forwardRef(
|
|
|
121
121
|
ui.span,
|
|
122
122
|
{
|
|
123
123
|
ref,
|
|
124
|
-
className: cx("ui-
|
|
124
|
+
className: cx("ui-alert__desc", className),
|
|
125
125
|
__css: css,
|
|
126
126
|
...rest
|
|
127
127
|
}
|
package/dist/index.js
CHANGED
|
@@ -103,7 +103,7 @@ var AlertIcon = ({
|
|
|
103
103
|
import_core.ui.span,
|
|
104
104
|
{
|
|
105
105
|
display: "inherit",
|
|
106
|
-
className: (0, import_utils.cx)("ui-
|
|
106
|
+
className: (0, import_utils.cx)("ui-alert__icon", className),
|
|
107
107
|
__css: css,
|
|
108
108
|
...rest,
|
|
109
109
|
children: children || /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
@@ -126,7 +126,7 @@ var AlertTitle = (0, import_core.forwardRef)(
|
|
|
126
126
|
import_core.ui.p,
|
|
127
127
|
{
|
|
128
128
|
ref,
|
|
129
|
-
className: (0, import_utils.cx)("ui-
|
|
129
|
+
className: (0, import_utils.cx)("ui-alert__title", className),
|
|
130
130
|
__css: css,
|
|
131
131
|
...rest
|
|
132
132
|
}
|
|
@@ -143,7 +143,7 @@ var AlertDescription = (0, import_core.forwardRef)(
|
|
|
143
143
|
import_core.ui.span,
|
|
144
144
|
{
|
|
145
145
|
ref,
|
|
146
|
-
className: (0, import_utils.cx)("ui-
|
|
146
|
+
className: (0, import_utils.cx)("ui-alert__desc", className),
|
|
147
147
|
__css: css,
|
|
148
148
|
...rest
|
|
149
149
|
}
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/alert",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"description": "Yamada UI alert component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@yamada-ui/core": "0.12.
|
|
39
|
-
"@yamada-ui/utils": "0.3.
|
|
40
|
-
"@yamada-ui/icon": "0.3.
|
|
41
|
-
"@yamada-ui/loading": "0.5.
|
|
38
|
+
"@yamada-ui/core": "0.12.4",
|
|
39
|
+
"@yamada-ui/utils": "0.3.2",
|
|
40
|
+
"@yamada-ui/icon": "0.3.14",
|
|
41
|
+
"@yamada-ui/loading": "0.5.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"react": "^18.0.0",
|