framepexls-ui-lib 0.1.16 → 0.1.17
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/AppTopbar.js +1 -1
- package/dist/AppTopbar.mjs +1 -1
- package/dist/Dialog.js +1 -1
- package/dist/Dialog.mjs +1 -1
- package/package.json +1 -1
package/dist/AppTopbar.js
CHANGED
|
@@ -40,7 +40,7 @@ function AppTopbar({ title, subtitle, secondary, primary, actions }) {
|
|
|
40
40
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("h1", { className: "text-lg font-semibold tracking-tight", children: title }),
|
|
41
41
|
subtitle && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("p", { className: "text-xs text-slate-500", children: subtitle })
|
|
42
42
|
] }) }),
|
|
43
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "flex items-center gap-2", children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "flex items-center gap-2 z-10", children: [
|
|
44
44
|
Array.isArray(actions) && actions.map((a, idx) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
45
45
|
import_Button.default,
|
|
46
46
|
{
|
package/dist/AppTopbar.mjs
CHANGED
|
@@ -7,7 +7,7 @@ function AppTopbar({ title, subtitle, secondary, primary, actions }) {
|
|
|
7
7
|
/* @__PURE__ */ jsx("h1", { className: "text-lg font-semibold tracking-tight", children: title }),
|
|
8
8
|
subtitle && /* @__PURE__ */ jsx("p", { className: "text-xs text-slate-500", children: subtitle })
|
|
9
9
|
] }) }),
|
|
10
|
-
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
10
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 z-10", children: [
|
|
11
11
|
Array.isArray(actions) && actions.map((a, idx) => /* @__PURE__ */ jsx(
|
|
12
12
|
Button,
|
|
13
13
|
{
|
package/dist/Dialog.js
CHANGED
|
@@ -246,7 +246,7 @@ function DialogField({
|
|
|
246
246
|
children,
|
|
247
247
|
className
|
|
248
248
|
}) {
|
|
249
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("label", { className: cx("grid gap-1 text-sm content-start", className), children: [
|
|
249
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("label", { className: cx("grid gap-1 text-sm content-start justify-start", className), children: [
|
|
250
250
|
label && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("span", { className: "font-medium", children: [
|
|
251
251
|
label,
|
|
252
252
|
" ",
|
package/dist/Dialog.mjs
CHANGED
|
@@ -206,7 +206,7 @@ function DialogField({
|
|
|
206
206
|
children,
|
|
207
207
|
className
|
|
208
208
|
}) {
|
|
209
|
-
return /* @__PURE__ */ jsxs("label", { className: cx("grid gap-1 text-sm content-start", className), children: [
|
|
209
|
+
return /* @__PURE__ */ jsxs("label", { className: cx("grid gap-1 text-sm content-start justify-start", className), children: [
|
|
210
210
|
label && /* @__PURE__ */ jsxs("span", { className: "font-medium", children: [
|
|
211
211
|
label,
|
|
212
212
|
" ",
|