@firecms/ui 3.0.0-canary.150 → 3.0.0-canary.151

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@firecms/ui",
3
3
  "type": "module",
4
- "version": "3.0.0-canary.150",
4
+ "version": "3.0.0-canary.151",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -108,7 +108,7 @@
108
108
  "index.css",
109
109
  "tailwind.config.js"
110
110
  ],
111
- "gitHead": "4df9d54d1bd70b5b5823d797bc2ce6b6c34cf051",
111
+ "gitHead": "ad3743e89a21f607375f9d5c44a5ff6574288014",
112
112
  "publishConfig": {
113
113
  "access": "public"
114
114
  }
@@ -298,8 +298,8 @@ export const MultiSelect = React.forwardRef<
298
298
  <CommandPrimitive.Empty className={"px-4 py-2"}>
299
299
  No results found.
300
300
  </CommandPrimitive.Empty>
301
- {includeSelectAll && <CommandPrimitive.Group>
302
- <CommandPrimitive.Item
301
+ <CommandPrimitive.Group>
302
+ {includeSelectAll && <CommandPrimitive.Item
303
303
  key="all"
304
304
  onSelect={toggleAll}
305
305
  className={
@@ -316,9 +316,9 @@ export const MultiSelect = React.forwardRef<
316
316
  >
317
317
  <InnerCheckBox checked={selectedValues.length === allValues.length}/>
318
318
  <span className={"text-sm text-text-secondary dark:text-text-secondary-dark"}>(Select All)</span>
319
- </CommandPrimitive.Item>
319
+ </CommandPrimitive.Item>}
320
320
  {children}
321
- </CommandPrimitive.Group>}
321
+ </CommandPrimitive.Group>
322
322
 
323
323
  </CommandPrimitive.List>
324
324
  </CommandPrimitive>