@factorialco/f0-react 1.214.1 → 1.214.2
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/experimental.js +9 -10
- package/package.json +1 -1
package/dist/experimental.js
CHANGED
|
@@ -28949,16 +28949,12 @@ const AV = (t) => "date" in t, OV = {
|
|
|
28949
28949
|
onClick: (h) => {
|
|
28950
28950
|
h.stopPropagation(), c();
|
|
28951
28951
|
},
|
|
28952
|
+
onKeyDown: (h) => {
|
|
28953
|
+
(h.key === "Enter" || h.key === " ") && c();
|
|
28954
|
+
},
|
|
28952
28955
|
role: "button",
|
|
28953
28956
|
"aria-label": l.actions.clear,
|
|
28954
|
-
children: /* @__PURE__ */ f(
|
|
28955
|
-
ve,
|
|
28956
|
-
{
|
|
28957
|
-
icon: Ra,
|
|
28958
|
-
className: "text-f1-icon-secondary transition-colors hover:text-f1-icon",
|
|
28959
|
-
size: "md"
|
|
28960
|
-
}
|
|
28961
|
-
)
|
|
28957
|
+
children: /* @__PURE__ */ f(ve, { icon: Ra, size: "md", color: "secondary" })
|
|
28962
28958
|
}
|
|
28963
28959
|
)
|
|
28964
28960
|
]
|
|
@@ -29015,14 +29011,17 @@ const AV = (t) => "date" in t, OV = {
|
|
|
29015
29011
|
onClick: (h) => {
|
|
29016
29012
|
h.stopPropagation(), c();
|
|
29017
29013
|
},
|
|
29014
|
+
onKeyDown: (h) => {
|
|
29015
|
+
(h.key === "Enter" || h.key === " ") && c();
|
|
29016
|
+
},
|
|
29018
29017
|
role: "button",
|
|
29019
29018
|
"aria-label": l.actions.clear,
|
|
29020
29019
|
children: /* @__PURE__ */ f(
|
|
29021
29020
|
ve,
|
|
29022
29021
|
{
|
|
29023
29022
|
icon: Ra,
|
|
29024
|
-
|
|
29025
|
-
|
|
29023
|
+
size: "md",
|
|
29024
|
+
color: "secondary"
|
|
29026
29025
|
}
|
|
29027
29026
|
)
|
|
29028
29027
|
}
|