@firecms/ui 3.0.0-canary.155 → 3.0.0-canary.156

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.155",
4
+ "version": "3.0.0-canary.156",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -62,22 +62,22 @@
62
62
  "@radix-ui/react-popover": "^1.1.2",
63
63
  "@radix-ui/react-portal": "^1.1.2",
64
64
  "@radix-ui/react-radio-group": "^1.2.1",
65
- "@radix-ui/react-scroll-area": "^1.2.0",
65
+ "@radix-ui/react-scroll-area": "^1.2.1",
66
66
  "@radix-ui/react-select": "^2.1.2",
67
67
  "@radix-ui/react-separator": "^1.1.0",
68
68
  "@radix-ui/react-slider": "^1.2.1",
69
69
  "@radix-ui/react-switch": "^1.1.1",
70
70
  "@radix-ui/react-tabs": "^1.1.1",
71
- "@radix-ui/react-tooltip": "^1.1.3",
71
+ "@radix-ui/react-tooltip": "^1.1.4",
72
72
  "@radix-ui/react-visually-hidden": "^1.1.0",
73
73
  "clsx": "^2.1.1",
74
74
  "cmdk": "^0.2.1",
75
75
  "date-fns": "^3.6.0",
76
76
  "markdown-it": "^14.1.0",
77
77
  "material-icons": "^1.13.12",
78
- "react-dropzone": "^14.2.10",
78
+ "react-dropzone": "^14.3.5",
79
79
  "react-fast-compare": "^3.2.2",
80
- "tailwind-merge": "^2.5.4"
80
+ "tailwind-merge": "^2.5.5"
81
81
  },
82
82
  "peerDependencies": {
83
83
  "react": "^18.3.1",
@@ -85,16 +85,16 @@
85
85
  },
86
86
  "devDependencies": {
87
87
  "@jest/globals": "^29.7.0",
88
- "@testing-library/jest-dom": "^6.5.0",
88
+ "@testing-library/jest-dom": "^6.6.3",
89
89
  "@testing-library/react": "^16.0.1",
90
90
  "@testing-library/user-event": "^14.5.2",
91
91
  "@types/jest": "^29.5.14",
92
- "@types/node": "^20.16.11",
92
+ "@types/node": "^20.17.9",
93
93
  "@types/object-hash": "^3.0.6",
94
94
  "@types/react": "^18.3.12",
95
95
  "@types/react-dom": "^18.3.1",
96
96
  "@types/react-measure": "^2.0.12",
97
- "@vitejs/plugin-react": "^4.3.3",
97
+ "@vitejs/plugin-react": "^4.3.4",
98
98
  "babel-plugin-react-compiler": "beta",
99
99
  "cross-env": "^7.0.3",
100
100
  "eslint-plugin-react-compiler": "beta",
@@ -104,8 +104,8 @@
104
104
  "ts-jest": "^29.2.5",
105
105
  "ts-node": "^10.9.2",
106
106
  "tsd": "^0.31.2",
107
- "typescript": "^5.6.3",
108
- "vite": "^5.4.10",
107
+ "typescript": "^5.7.2",
108
+ "vite": "^5.4.11",
109
109
  "vite-plugin-static-copy": "^1.0.6"
110
110
  },
111
111
  "files": [
@@ -114,7 +114,7 @@
114
114
  "index.css",
115
115
  "tailwind.config.js"
116
116
  ],
117
- "gitHead": "c9b71679d709242ff3a47ec56a0ecf980ec76564",
117
+ "gitHead": "78b61328121fb331b164ca96030419b9607971a1",
118
118
  "publishConfig": {
119
119
  "access": "public"
120
120
  }
@@ -1,3 +1,5 @@
1
+ "use client";
2
+
1
3
  import React, { useRef, useState } from "react";
2
4
  import { CalendarMonthIcon, ClearIcon, ErrorIcon } from "../icons";
3
5
  import { IconButton } from "./IconButton";
@@ -1,3 +1,5 @@
1
+ "use client";
2
+
1
3
  import React, { useRef } from "react";
2
4
  import { defaultBorderMixin } from "../styles";
3
5
  import { cls } from "../util";
@@ -1,3 +1,5 @@
1
+ "use client";
2
+
1
3
  import { useEffect, useState } from "react";
2
4
 
3
5
  export function useDebounceValue<T>(value: T, delay = 300): T {
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  import { useEffect } from "react";
2
3
 
3
4
  /**
@@ -1,3 +1,5 @@
1
+ "use client";
2
+
1
3
  import { RefObject, useEffect } from "react";
2
4
 
3
5
  /**