New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@zag-js/checkbox

Package Overview
Dependencies
Maintainers
1
Versions
976
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zag-js/checkbox - npm Package Compare versions

Comparing version

to
0.0.0-dev-20220616103638

16

dist/checkbox.types.d.ts

@@ -66,3 +66,3 @@ import type { StateMachine as S } from "@zag-js/core";

"aria-labelledby"?: string;
"aria-invalid"?: true | undefined;
"aria-invalid"?: boolean;
"aria-describedby"?: string;

@@ -81,7 +81,19 @@ };

*/
isRtl: boolean;
readonly isRtl: boolean;
}>;
declare type PrivateContext = Context<{
/**
* @internal
* Whether the checkbox is pressed
*/
active: boolean;
/**
* @internal
* Whether the checkbox has focus
*/
focused: boolean;
/**
* @internal
* Whether the checkbox is hovered
*/
hovered: boolean;

@@ -88,0 +100,0 @@ }>;

6

package.json
{
"name": "@zag-js/checkbox",
"version": "0.0.0-dev-20220616103428",
"version": "0.0.0-dev-20220616103638",
"description": "Core logic for the checkbox widget implemented as a state machine",

@@ -42,6 +42,6 @@ "keywords": [

"@zag-js/core": "0.1.6",
"@zag-js/dom-utils": "0.0.0-dev-20220616103428",
"@zag-js/types": "0.0.0-dev-20220616103428",
"@zag-js/dom-utils": "0.0.0-dev-20220616103638",
"@zag-js/types": "0.0.0-dev-20220616103638",
"@zag-js/utils": "0.1.2"
}
}