@getcatalystiq/agent-plane-ui 0.1.2 → 0.1.3
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.cjs +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -228,7 +228,8 @@ function Select({ className = "", ...props }) {
|
|
|
228
228
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
229
229
|
"select",
|
|
230
230
|
{
|
|
231
|
-
className: `flex h-9 w-full
|
|
231
|
+
className: `flex h-9 w-full rounded-md border border-input bg-transparent pl-3 pr-8 py-1 text-sm shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 ${className}`,
|
|
232
|
+
style: { appearance: "none", WebkitAppearance: "none" },
|
|
232
233
|
...props
|
|
233
234
|
}
|
|
234
235
|
),
|
package/dist/index.js
CHANGED
|
@@ -202,7 +202,8 @@ function Select({ className = "", ...props }) {
|
|
|
202
202
|
/* @__PURE__ */ jsx(
|
|
203
203
|
"select",
|
|
204
204
|
{
|
|
205
|
-
className: `flex h-9 w-full
|
|
205
|
+
className: `flex h-9 w-full rounded-md border border-input bg-transparent pl-3 pr-8 py-1 text-sm shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 ${className}`,
|
|
206
|
+
style: { appearance: "none", WebkitAppearance: "none" },
|
|
206
207
|
...props
|
|
207
208
|
}
|
|
208
209
|
),
|