@aria-ui/core
Advanced tools
Comparing version 0.0.17 to 0.0.18
@@ -262,2 +262,16 @@ import { HTMLElement } from 'server-dom-shim'; | ||
export { BaseElement, type ConnectableElement, type Context, ElementBuilder, type ReadonlySignal, type Signal, type SignalState, type SignalValue, assignProps, batch, createComputed, createContext, createSignal, mapSignals, mapValues, untracked, useAnimationFrame, useAriaAttribute, useAriaRole, useAttribute, useEffect, useEventListener, useQuerySelector, useQuerySelectorAll, useStyle }; | ||
declare const emptyObjectSymbol: unique symbol; | ||
/** | ||
* Represents a strictly empty plain object, the `{}` value. | ||
* | ||
* When you annotate something as the type `{}`, it can be anything except | ||
* `null` and `undefined`. This means that you cannot use `{}` to represent an | ||
* empty plain object ([read more](https://stackoverflow.com/questions/47339869/typescript-empty-object-and-any-difference/52193484#52193484)). | ||
* | ||
* @public | ||
*/ | ||
interface EmptyObject { | ||
[emptyObjectSymbol]?: never; | ||
} | ||
export { BaseElement, type ConnectableElement, type Context, ElementBuilder, type EmptyObject, type ReadonlySignal, type Signal, type SignalState, type SignalValue, assignProps, batch, createComputed, createContext, createSignal, mapSignals, mapValues, untracked, useAnimationFrame, useAriaAttribute, useAriaRole, useAttribute, useEffect, useEventListener, useQuerySelector, useQuerySelectorAll, useStyle }; |
// src/context.ts | ||
import { effect as effect2 } from "@preact/signals-core"; | ||
import { getEventTarget } from "@zag-js/dom-query"; | ||
import { effect as effect2 } from "@preact/signals-core"; | ||
@@ -5,0 +5,0 @@ // src/signals.ts |
{ | ||
"name": "@aria-ui/core", | ||
"type": "module", | ||
"version": "0.0.17", | ||
"version": "0.0.18", | ||
"private": false, | ||
@@ -14,9 +14,9 @@ "sideEffects": false, | ||
"@dddstack/ariatype-aria-roles": "^2.0.0", | ||
"@preact/signals-core": "^1.6.1", | ||
"@zag-js/dom-query": "^0.59.0", | ||
"@preact/signals-core": "^1.7.0", | ||
"@zag-js/dom-query": "^0.63.0", | ||
"server-dom-shim": "^1.0.2" | ||
}, | ||
"devDependencies": { | ||
"tsup": "^8.1.0", | ||
"typescript": "^5.5.3" | ||
"tsup": "^8.2.3", | ||
"typescript": "^5.5.4" | ||
}, | ||
@@ -23,0 +23,0 @@ "publishConfig": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27135
3361
640
+ Added@zag-js/dom-query@0.63.0(transitive)
- Removed@zag-js/dom-query@0.59.0(transitive)
Updated@preact/signals-core@^1.7.0
Updated@zag-js/dom-query@^0.63.0