@sikka/hawa 0.1.32 → 0.1.34
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/styles.css +9 -0
- package/es/elements/Toaster.d.ts +2 -2
- package/es/index.es.js +2 -2
- package/lib/elements/Toaster.d.ts +2 -2
- package/lib/index.js +2 -2
- package/package.json +1 -1
- package/src/elements/Toast.tsx +32 -28
- package/src/elements/Toaster.tsx +28 -25
- package/src/styles.css +9 -0
- package/tailwind.config.js +8 -40
package/dist/styles.css
CHANGED
|
@@ -2273,6 +2273,9 @@ video {
|
|
|
2273
2273
|
.pb-4 {
|
|
2274
2274
|
padding-bottom: 1rem;
|
|
2275
2275
|
}
|
|
2276
|
+
.pl-0 {
|
|
2277
|
+
padding-left: 0px;
|
|
2278
|
+
}
|
|
2276
2279
|
.pl-10 {
|
|
2277
2280
|
padding-left: 2.5rem;
|
|
2278
2281
|
}
|
|
@@ -2294,6 +2297,9 @@ video {
|
|
|
2294
2297
|
.pl-\[25px\] {
|
|
2295
2298
|
padding-left: 25px;
|
|
2296
2299
|
}
|
|
2300
|
+
.pr-10 {
|
|
2301
|
+
padding-right: 2.5rem;
|
|
2302
|
+
}
|
|
2297
2303
|
.pr-2 {
|
|
2298
2304
|
padding-right: 0.5rem;
|
|
2299
2305
|
}
|
|
@@ -3645,6 +3651,9 @@ body {
|
|
|
3645
3651
|
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
|
|
3646
3652
|
--tw-enter-translate-y: 0.5rem;
|
|
3647
3653
|
}
|
|
3654
|
+
.data-\[state\=closed\]\:slide-out-to-left-full[data-state=closed] {
|
|
3655
|
+
--tw-exit-translate-x: -100%;
|
|
3656
|
+
}
|
|
3648
3657
|
.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed] {
|
|
3649
3658
|
--tw-exit-translate-x: 100%;
|
|
3650
3659
|
}
|
package/es/elements/Toaster.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export declare function Toaster(props: any):
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare function Toaster(props: any): React.JSX.Element;
|