@firecms/ui 3.0.0-canary.140 → 3.0.0-canary.142

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.140",
4
+ "version": "3.0.0-canary.142",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -71,9 +71,9 @@
71
71
  "date-fns": "^3.6.0",
72
72
  "markdown-it": "^14.1.0",
73
73
  "material-icons": "^1.13.12",
74
- "react-dropzone": "^14.2.9",
74
+ "react-dropzone": "^14.2.10",
75
75
  "react-fast-compare": "^3.2.2",
76
- "tailwind-merge": "^2.5.3"
76
+ "tailwind-merge": "^2.5.4"
77
77
  },
78
78
  "peerDependencies": {
79
79
  "react": "^18.3.1",
@@ -84,22 +84,22 @@
84
84
  "@testing-library/jest-dom": "^6.5.0",
85
85
  "@testing-library/react": "^16.0.1",
86
86
  "@testing-library/user-event": "^14.5.2",
87
- "@types/jest": "^29.5.13",
87
+ "@types/jest": "^29.5.14",
88
88
  "@types/node": "^20.16.11",
89
89
  "@types/object-hash": "^3.0.6",
90
- "@types/react": "^18.3.11",
91
- "@types/react-dom": "^18.3.0",
90
+ "@types/react": "^18.3.12",
91
+ "@types/react-dom": "^18.3.1",
92
92
  "@types/react-measure": "^2.0.12",
93
- "@vitejs/plugin-react": "^4.3.2",
93
+ "@vitejs/plugin-react": "^4.3.3",
94
94
  "cross-env": "^7.0.3",
95
- "firebase": "^10.14.0",
95
+ "firebase": "^10.14.1",
96
96
  "jest": "^29.7.0",
97
97
  "npm-run-all": "^4.1.5",
98
98
  "ts-jest": "^29.2.5",
99
99
  "ts-node": "^10.9.2",
100
100
  "tsd": "^0.31.2",
101
101
  "typescript": "^5.6.3",
102
- "vite": "^5.4.8",
102
+ "vite": "^5.4.10",
103
103
  "vite-plugin-static-copy": "^1.0.6"
104
104
  },
105
105
  "files": [
@@ -107,7 +107,7 @@
107
107
  "src",
108
108
  "tailwind.config.js"
109
109
  ],
110
- "gitHead": "112132e315d1ae63babf9f53500c00bc37a2d8e4",
110
+ "gitHead": "9adfc426dab9b7e197f1080065e08d49366fdadd",
111
111
  "publishConfig": {
112
112
  "access": "public"
113
113
  }
@@ -34,7 +34,7 @@ export const TableBody = ({
34
34
  ...rest
35
35
  }: TableBodyProps) => (
36
36
  <tbody
37
- className={cls("bg-white dark:bg-gray-950 text-sm divide-y divide-gray-100 dark:divide-gray-800 dark:divide-opacity-80", className)}
37
+ className={cls("bg-white dark:bg-gray-950 text-sm divide-y divide-gray-100 dark:divide-gray-700 dark:divide-opacity-70", className)}
38
38
  {...rest}
39
39
  >
40
40
  {children}
@@ -84,7 +84,7 @@ export const TableRow = ({
84
84
  style={style}
85
85
  className={cls(
86
86
  "bg-white dark:bg-gray-950",
87
- onClick ? "hover:bg-slate-100 dark:hover:bg-gray-800 cursor-pointer" : "",
87
+ onClick ? "hover:bg-slate-100 dark:hover:bg-slate-800 cursor-pointer" : "",
88
88
  className
89
89
  )}
90
90
  {...rest}