@jamsrui/alert 0.0.7 → 0.0.8
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-config.d.mts +2 -1
- package/package.json +5 -5
package/dist/alert-config.d.mts
CHANGED
|
@@ -12,8 +12,9 @@ import 'tailwind-variants';
|
|
|
12
12
|
import '@jamsrui/text';
|
|
13
13
|
|
|
14
14
|
declare const useAlertConfig: () => AlertConfig.Props;
|
|
15
|
-
declare const AlertConfig: (props: AlertConfig.Props & {
|
|
15
|
+
declare const AlertConfig: (props: Omit<Partial<AlertConfig.Props>, "children"> & {
|
|
16
16
|
merge?: boolean;
|
|
17
|
+
children: React.ReactNode;
|
|
17
18
|
}) => react_jsx_runtime.JSX.Element;
|
|
18
19
|
declare namespace AlertConfig {
|
|
19
20
|
interface Props extends Alert.Props {
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jamsrui/alert",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"react": ">=19"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@jamsrui/icons": "^0.0.7",
|
|
9
8
|
"@jamsrui/core": "^0.0.7",
|
|
10
|
-
"@jamsrui/
|
|
11
|
-
"@jamsrui/
|
|
12
|
-
"@jamsrui/
|
|
9
|
+
"@jamsrui/icons": "^0.0.7",
|
|
10
|
+
"@jamsrui/text": "^0.0.8",
|
|
11
|
+
"@jamsrui/utils": "^0.0.8",
|
|
12
|
+
"@jamsrui/hooks": "^0.0.8"
|
|
13
13
|
},
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|