@cnc-ti/layout-basic 8.3.16 → 8.3.18

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.mjs CHANGED
@@ -12225,7 +12225,7 @@ function CardFooterItem({
12225
12225
  "div",
12226
12226
  {
12227
12227
  className: cn(
12228
- "cnc-molecule-card-item cnc-flex cnc-flex-1 cnc-items-center cnc-justify-center cnc-py-3 cnc-px-8",
12228
+ "cnc-molecule-card-item cnc-flex cnc-flex-1 cnc-items-center cnc-justify-center cnc-py-3",
12229
12229
  className
12230
12230
  ),
12231
12231
  ...rest
@@ -12881,7 +12881,7 @@ function Combobox({
12881
12881
  "aria-expanded": open,
12882
12882
  className: "cnc-w-full cnc-justify-between cnc-truncate ",
12883
12883
  children: [
12884
- value ? options?.find((framework) => framework.value === value)?.label : placeholder,
12884
+ /* @__PURE__ */ jsx46("div", { children: value ? options?.find((framework) => framework.value === value)?.label : placeholder }),
12885
12885
  /* @__PURE__ */ jsx46(ChevronsUpDown, { className: "cnc-ml-2 cnc-h-4 cnc-w-4 cnc-shrink-0 cnc-opacity-50" })
12886
12886
  ]
12887
12887
  }