@firecms/ui 3.0.0-canary.113 → 3.0.0-canary.115
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.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -3
- package/src/components/MultiSelect.tsx +2 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@firecms/ui",
|
3
3
|
"type": "module",
|
4
|
-
"version": "3.0.0-canary.
|
4
|
+
"version": "3.0.0-canary.115",
|
5
5
|
"description": "Awesome Firebase/Firestore-based headless open-source CMS",
|
6
6
|
"funding": {
|
7
7
|
"url": "https://github.com/sponsors/firecmsco"
|
@@ -35,7 +35,8 @@
|
|
35
35
|
},
|
36
36
|
"./package.json": "./package.json",
|
37
37
|
"./tailwind.config.js": "./tailwind.config.js",
|
38
|
-
"./index.css": "./dist/index.css"
|
38
|
+
"./index.css": "./dist/index.css",
|
39
|
+
"./dist/index.css": "./dist/index.css"
|
39
40
|
},
|
40
41
|
"scripts": {
|
41
42
|
"watch": "vite build --watch",
|
@@ -104,7 +105,7 @@
|
|
104
105
|
"src",
|
105
106
|
"tailwind.config.js"
|
106
107
|
],
|
107
|
-
"gitHead": "
|
108
|
+
"gitHead": "f5cd33daaf9c7e04fc8ca359e7196ab120b524f9",
|
108
109
|
"publishConfig": {
|
109
110
|
"access": "public"
|
110
111
|
}
|
@@ -5,7 +5,7 @@ import * as Dialog from "@radix-ui/react-dialog";
|
|
5
5
|
import { Command as CommandPrimitive } from "cmdk";
|
6
6
|
|
7
7
|
import { ExpandMoreIcon } from "../icons";
|
8
|
-
import { fieldBackgroundDisabledMixin, fieldBackgroundHoverMixin, fieldBackgroundMixin } from "../styles";
|
8
|
+
import { fieldBackgroundDisabledMixin, fieldBackgroundHoverMixin, fieldBackgroundMixin, focusedDisabled } from "../styles";
|
9
9
|
import { cls } from "../util";
|
10
10
|
import { SelectInputLabel } from "./common/SelectInputLabel";
|
11
11
|
import { useOutsideAlerter } from "../hooks";
|
@@ -140,7 +140,7 @@ export function MultiSelect({
|
|
140
140
|
onValueChange={setInputValue}
|
141
141
|
// onBlur={() => setOpenInternal(false)}
|
142
142
|
onFocus={openDialog}
|
143
|
-
className="ml-2 bg-transparent outline-none flex-1 h-full w-full "
|
143
|
+
className={cls("ml-2 bg-transparent outline-none flex-1 h-full w-full ", focusedDisabled)}
|
144
144
|
/>
|
145
145
|
</div>
|
146
146
|
<div className={"px-2 h-full flex items-center"}>
|