@sikka/hawa 0.5.9-next → 0.6.0-next
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/index.css +6 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2310,6 +2310,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
2310
2310
|
.hawa-duration-500 {
|
|
2311
2311
|
transition-duration: 500ms;
|
|
2312
2312
|
}
|
|
2313
|
+
.hawa-duration-75 {
|
|
2314
|
+
transition-duration: 75ms;
|
|
2315
|
+
}
|
|
2313
2316
|
.hawa-ease-in-out {
|
|
2314
2317
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2315
2318
|
}
|
|
@@ -2360,6 +2363,9 @@ input[type="number"]::-webkit-inner-spin-button,
|
|
|
2360
2363
|
.hawa-duration-500 {
|
|
2361
2364
|
animation-duration: 500ms;
|
|
2362
2365
|
}
|
|
2366
|
+
.hawa-duration-75 {
|
|
2367
|
+
animation-duration: 75ms;
|
|
2368
|
+
}
|
|
2363
2369
|
.hawa-delay-100 {
|
|
2364
2370
|
animation-delay: 100ms;
|
|
2365
2371
|
}
|
package/dist/index.js
CHANGED
|
@@ -5895,7 +5895,7 @@ var Stats = function(_param) {
|
|
|
5895
5895
|
var React48 = __toESM(require("react"));
|
|
5896
5896
|
var AccordionPrimitive2 = __toESM(require("@radix-ui/react-accordion"));
|
|
5897
5897
|
var Accordion2 = AccordionPrimitive2.Root;
|
|
5898
|
-
var triggerStyles = "hawa-flex hawa-flex-1 hawa-items-center hawa-select-none hawa-cursor-pointer
|
|
5898
|
+
var triggerStyles = "hawa-flex hawa-flex-1 hawa-items-center hawa-duration-75 hawa-select-none hawa-cursor-pointer hawa-rounded hawa-justify-between hawa-p-2 hawa-px-3 hawa-font-medium hawa-transition-all [&[data-state=open]>svg]:hawa--rotate-90";
|
|
5899
5899
|
var AccordionItem2 = React48.forwardRef(function(_param, ref) /* @__PURE__ */ {
|
|
5900
5900
|
var className = _param.className, props = _object_without_properties(_param, [
|
|
5901
5901
|
"className"
|
package/dist/index.mjs
CHANGED
|
@@ -5515,7 +5515,7 @@ var Stats = ({ variant = "default", ...props }) => {
|
|
|
5515
5515
|
import * as React48 from "react";
|
|
5516
5516
|
import * as AccordionPrimitive2 from "@radix-ui/react-accordion";
|
|
5517
5517
|
var Accordion2 = AccordionPrimitive2.Root;
|
|
5518
|
-
var triggerStyles = "hawa-flex hawa-flex-1 hawa-items-center hawa-select-none hawa-cursor-pointer
|
|
5518
|
+
var triggerStyles = "hawa-flex hawa-flex-1 hawa-items-center hawa-duration-75 hawa-select-none hawa-cursor-pointer hawa-rounded hawa-justify-between hawa-p-2 hawa-px-3 hawa-font-medium hawa-transition-all [&[data-state=open]>svg]:hawa--rotate-90";
|
|
5519
5519
|
var AccordionItem2 = React48.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ React48.createElement(AccordionPrimitive2.Item, { ref, className: cn(className), ...props }));
|
|
5520
5520
|
AccordionItem2.displayName = "AccordionItem";
|
|
5521
5521
|
var AccordionTrigger2 = React48.forwardRef(({ className, showArrow, children, ...props }, ref) => /* @__PURE__ */ React48.createElement(AccordionPrimitive2.Header, { className: "flex" }, /* @__PURE__ */ React48.createElement(
|