@c15t/dev-tools 2.0.0-rc.5 → 2.0.0-rc.6
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/0~rslib-runtime.js +42 -0
- package/dist/379.js +6788 -0
- package/dist/index.cjs +205 -121
- package/dist/index.js +1 -6737
- package/dist/react.cjs +205 -121
- package/dist/react.js +2 -6598
- package/dist/tanstack.cjs +197 -113
- package/dist/tanstack.js +1 -5724
- package/dist-types/components/dropdown-menu.d.ts +1 -1
- package/dist-types/react.d.ts +2 -2
- package/dist-types/version.d.ts +1 -1
- package/package.json +10 -10
|
@@ -42,4 +42,4 @@ export interface DropdownMenuInstance {
|
|
|
42
42
|
*/
|
|
43
43
|
export declare function createDropdownMenu(options: DropdownMenuOptions): DropdownMenuInstance;
|
|
44
44
|
export { detectPreferenceTrigger as detectPreferenceCenterTrigger, getPreferenceCenterOpener, } from '../utils/preference-trigger';
|
|
45
|
-
export { DEVTOOLS_ICON,
|
|
45
|
+
export { DEVTOOLS_ICON, EYE_ICON, PREFERENCES_ICON };
|
package/dist-types/react.d.ts
CHANGED
|
@@ -71,6 +71,6 @@ export interface C15TDevToolsProps extends Partial<DevToolsOptions> {
|
|
|
71
71
|
* ```
|
|
72
72
|
*/
|
|
73
73
|
export declare function C15TDevTools({ namespace, position, defaultOpen, disabled, }: C15TDevToolsProps): null;
|
|
74
|
-
export { C15TDevTools as DevTools };
|
|
75
|
-
export type { DevToolsOptions, DevToolsInstance };
|
|
76
74
|
export type { DevToolsPosition, DevToolsTab } from './core/state-manager';
|
|
75
|
+
export type { DevToolsInstance, DevToolsOptions };
|
|
76
|
+
export { C15TDevTools as DevTools };
|
package/dist-types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.0.0-rc.
|
|
1
|
+
export declare const version = "2.0.0-rc.6";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c15t/dev-tools",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.6",
|
|
4
4
|
"description": "A collection of developer tools and utilities for the c15t ecosystem, currently under active development.",
|
|
5
5
|
"homepage": "https://c15t.com",
|
|
6
6
|
"repository": {
|
|
@@ -51,23 +51,23 @@
|
|
|
51
51
|
"@radix-ui/react-accordion": "1.2.12",
|
|
52
52
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
53
53
|
"@radix-ui/react-slot": "1.2.4",
|
|
54
|
-
"@radix-ui/react-switch": "1.
|
|
54
|
+
"@radix-ui/react-switch": "1.2.6",
|
|
55
55
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
56
|
-
"c15t": "2.0.0-rc.
|
|
56
|
+
"c15t": "2.0.0-rc.6",
|
|
57
57
|
"class-variance-authority": "^0.7.1",
|
|
58
58
|
"clsx": "2.1.1",
|
|
59
|
-
"lucide-react": "^
|
|
60
|
-
"motion": "^12.
|
|
61
|
-
"react-draggable": "^4.
|
|
62
|
-
"tailwind-merge": "3.
|
|
59
|
+
"lucide-react": "^1.7.0",
|
|
60
|
+
"motion": "^12.38.0",
|
|
61
|
+
"react-draggable": "^4.5.0",
|
|
62
|
+
"tailwind-merge": "3.5.0",
|
|
63
63
|
"tsc-alias": "^1.8.16",
|
|
64
64
|
"usehooks-ts": "^3.1.1",
|
|
65
|
-
"zustand": "^5.0.
|
|
65
|
+
"zustand": "^5.0.12"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@c15t/typescript-config": "0.0.1-beta.1",
|
|
69
|
-
"@types/react": "19.2.
|
|
70
|
-
"@types/react-dom": "19.2.
|
|
69
|
+
"@types/react": "19.2.14",
|
|
70
|
+
"@types/react-dom": "19.2.3",
|
|
71
71
|
"postcss": "^8.5.8"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|