@firecms/ui 3.0.0-canary.136 → 3.0.0-canary.138

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.
Files changed (36) hide show
  1. package/README.md +1 -1
  2. package/dist/hooks/index.d.ts +0 -1
  3. package/dist/index.css +0 -4
  4. package/dist/index.es.js +141 -965
  5. package/dist/index.es.js.map +1 -1
  6. package/dist/index.umd.js +143 -966
  7. package/dist/index.umd.js.map +1 -1
  8. package/package.json +2 -3
  9. package/src/components/Autocomplete.tsx +1 -0
  10. package/src/components/Avatar.tsx +1 -1
  11. package/src/components/BooleanSwitchWithLabel.tsx +1 -0
  12. package/src/components/Card.tsx +1 -0
  13. package/src/components/Collapse.tsx +1 -0
  14. package/src/components/DateTimeField.tsx +133 -907
  15. package/src/components/DebouncedTextField.tsx +1 -0
  16. package/src/components/Dialog.tsx +1 -0
  17. package/src/components/DialogContent.tsx +1 -1
  18. package/src/components/DialogTitle.tsx +3 -2
  19. package/src/components/ExpandablePanel.tsx +3 -0
  20. package/src/components/FileUpload.tsx +1 -0
  21. package/src/components/InputLabel.tsx +0 -1
  22. package/src/components/Markdown.tsx +1 -0
  23. package/src/components/MultiSelect.tsx +2 -1
  24. package/src/components/Popover.tsx +1 -0
  25. package/src/components/SearchBar.tsx +1 -0
  26. package/src/components/Select.tsx +21 -28
  27. package/src/components/Sheet.tsx +1 -1
  28. package/src/components/TextField.tsx +3 -2
  29. package/src/components/TextareaAutosize.tsx +1 -0
  30. package/src/components/Tooltip.tsx +1 -0
  31. package/src/hooks/index.ts +0 -1
  32. package/src/index.css +0 -4
  33. package/dist/components/_MultiSelect.d.ts +0 -0
  34. package/dist/hooks/useLocaleConfig.d.ts +0 -1
  35. package/src/components/_MultiSelect.tsx +0 -222
  36. package/src/hooks/useLocaleConfig.tsx +0 -18
package/README.md CHANGED
@@ -89,7 +89,7 @@ navigating through **subcollections** and accessing custom views (such as custom
89
89
  forms or blog previews). This functionality can also be accessed
90
90
  programmatically using the `useSideEntityController` hook.
91
91
 
92
- FireCMS includes **over 15 built-in fields** with numerous customization and
92
+ FireCMS includes **over 20 built-in fields** with numerous customization and
93
93
  validation options. The components have been carefully designed for an
94
94
  outstanding user experience, including advanced features like **references** to
95
95
  other collections, **markdown**, and **array reordering**.
@@ -1,4 +1,3 @@
1
- export * from "./useLocaleConfig";
2
1
  export * from "./useInjectStyles";
3
2
  export * from "./useOutsideAlerter";
4
3
  export * from "./useDebounceValue";
package/dist/index.css CHANGED
@@ -71,7 +71,3 @@
71
71
  a {
72
72
  @apply text-blue-600 dark:text-blue-400 dark:hover:text-blue-600 hover:text-blue-800
73
73
  }
74
-
75
- body {
76
- @apply w-full min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center;
77
- }