@nurix/ui-component-library 1.1.7-stage.143 → 1.1.7-stage.145
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.js +3 -8
- package/dist/index.mjs +3 -8
- package/dist/styles.css +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10206,13 +10206,7 @@ var TagBadge = React21.forwardRef(
|
|
|
10206
10206
|
} : void 0
|
|
10207
10207
|
}
|
|
10208
10208
|
),
|
|
10209
|
-
isSelected && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
10210
|
-
import_lucide_react5.Check,
|
|
10211
|
-
{
|
|
10212
|
-
className: "size-3 shrink-0 text-fg-black ml-auto",
|
|
10213
|
-
strokeWidth: 1
|
|
10214
|
-
}
|
|
10215
|
-
)
|
|
10209
|
+
isSelected && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_lucide_react5.Check, { className: "size-4 shrink-0 text-border-token-brand ml-auto" })
|
|
10216
10210
|
]
|
|
10217
10211
|
},
|
|
10218
10212
|
option.value
|
|
@@ -12742,10 +12736,11 @@ function Pagination({
|
|
|
12742
12736
|
value: String(rowsPerPage),
|
|
12743
12737
|
onValueChange: handleRowsPerPageSelect,
|
|
12744
12738
|
children: [
|
|
12745
|
-
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(SelectTrigger, { size: "small", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(SelectValue, {}) }),
|
|
12739
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(SelectTrigger, { size: "small", className: "min-w-[72px]", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(SelectValue, {}) }),
|
|
12746
12740
|
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
12747
12741
|
SelectContent,
|
|
12748
12742
|
{
|
|
12743
|
+
className: "min-w-[72px]",
|
|
12749
12744
|
items: ROWS_PER_PAGE_OPTIONS.map((n) => ({
|
|
12750
12745
|
value: String(n),
|
|
12751
12746
|
label: String(n)
|
package/dist/index.mjs
CHANGED
|
@@ -10085,13 +10085,7 @@ var TagBadge = React21.forwardRef(
|
|
|
10085
10085
|
} : void 0
|
|
10086
10086
|
}
|
|
10087
10087
|
),
|
|
10088
|
-
isSelected && /* @__PURE__ */ jsx19(
|
|
10089
|
-
Check2,
|
|
10090
|
-
{
|
|
10091
|
-
className: "size-3 shrink-0 text-fg-black ml-auto",
|
|
10092
|
-
strokeWidth: 1
|
|
10093
|
-
}
|
|
10094
|
-
)
|
|
10088
|
+
isSelected && /* @__PURE__ */ jsx19(Check2, { className: "size-4 shrink-0 text-border-token-brand ml-auto" })
|
|
10095
10089
|
]
|
|
10096
10090
|
},
|
|
10097
10091
|
option.value
|
|
@@ -12629,10 +12623,11 @@ function Pagination({
|
|
|
12629
12623
|
value: String(rowsPerPage),
|
|
12630
12624
|
onValueChange: handleRowsPerPageSelect,
|
|
12631
12625
|
children: [
|
|
12632
|
-
/* @__PURE__ */ jsx33(SelectTrigger, { size: "small", children: /* @__PURE__ */ jsx33(SelectValue, {}) }),
|
|
12626
|
+
/* @__PURE__ */ jsx33(SelectTrigger, { size: "small", className: "min-w-[72px]", children: /* @__PURE__ */ jsx33(SelectValue, {}) }),
|
|
12633
12627
|
/* @__PURE__ */ jsx33(
|
|
12634
12628
|
SelectContent,
|
|
12635
12629
|
{
|
|
12630
|
+
className: "min-w-[72px]",
|
|
12636
12631
|
items: ROWS_PER_PAGE_OPTIONS.map((n) => ({
|
|
12637
12632
|
value: String(n),
|
|
12638
12633
|
label: String(n)
|
package/dist/styles.css
CHANGED