@teja-app/ui 0.0.6 → 0.0.7
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/components/Combobox/Combobox.d.ts.map +1 -1
- package/dist/components/MultiSelect/MultiSelect.d.ts.map +1 -1
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7329,6 +7329,7 @@ function Select({
|
|
|
7329
7329
|
children: /* @__PURE__ */ jsx(
|
|
7330
7330
|
Bt,
|
|
7331
7331
|
{
|
|
7332
|
+
portal: true,
|
|
7332
7333
|
className: cn(
|
|
7333
7334
|
"absolute z-dropdown max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-sm shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none dark:bg-primary-800 dark:ring-primary-700",
|
|
7334
7335
|
placement === "top" ? "bottom-full mb-1" : "top-full mt-1"
|
|
@@ -8288,6 +8289,7 @@ function Combobox({
|
|
|
8288
8289
|
children: /* @__PURE__ */ jsx(
|
|
8289
8290
|
Uo,
|
|
8290
8291
|
{
|
|
8292
|
+
portal: true,
|
|
8291
8293
|
className: "absolute z-dropdown mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-sm shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none dark:bg-primary-800 dark:ring-primary-700",
|
|
8292
8294
|
"data-testid": testId ? `${testId}-options` : void 0,
|
|
8293
8295
|
children: isLoading ? /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center gap-2 px-4 py-2.5 text-primary-500 dark:text-primary-400", children: [
|
|
@@ -9496,6 +9498,7 @@ function MultiSelect({
|
|
|
9496
9498
|
children: /* @__PURE__ */ jsx(
|
|
9497
9499
|
Bt,
|
|
9498
9500
|
{
|
|
9501
|
+
portal: true,
|
|
9499
9502
|
static: true,
|
|
9500
9503
|
className: "absolute z-dropdown mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-sm shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none dark:bg-primary-800 dark:ring-primary-700",
|
|
9501
9504
|
"data-testid": testId ? `${testId}-options` : void 0,
|