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

@zag-js/dom-utils

Package Overview
Dependencies
Maintainers
1
Versions
227
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zag-js/dom-utils - npm Package Compare versions

Comparing version

to
0.0.0-dev-20220604091726

15

dist/index.js

@@ -931,2 +931,3 @@ var __create = Object.create;

// src/live-region.ts
var LIVE_REGION_ID = "__live-region__";
function createLiveRegion(opts = {}) {

@@ -938,7 +939,7 @@ var _a;

function announce(message, delay) {
const oldRegion = doc.getElementById("__live-region__");
const oldRegion = doc.getElementById(LIVE_REGION_ID);
oldRegion == null ? void 0 : oldRegion.remove();
delay = delay != null ? delay : _delay;
const region = doc.createElement("span");
region.id = "__live-region__";
region.id = LIVE_REGION_ID;
region.dataset.liveAnnouncer = "true";

@@ -955,6 +956,12 @@ const role = level !== "assertive" ? "status" : "alert";

function destroy() {
const oldRegion = doc.getElementById("__live-region__");
const oldRegion = doc.getElementById(LIVE_REGION_ID);
oldRegion == null ? void 0 : oldRegion.remove();
}
return { announce, destroy };
return {
announce,
destroy,
toJSON() {
return LIVE_REGION_ID;
}
};
}

@@ -961,0 +968,0 @@

@@ -11,3 +11,4 @@ export declare type LiveRegionOptions = {

destroy: () => void;
toJSON(): string;
};
//# sourceMappingURL=live-region.d.ts.map
{
"name": "@zag-js/dom-utils",
"version": "0.0.0-dev-20220603135505",
"version": "0.0.0-dev-20220604091726",
"description": "",

@@ -29,3 +29,3 @@ "keywords": [

"@types/react": "^18.0.0",
"@zag-js/utils": "0.0.0-dev-20220603135505",
"@zag-js/utils": "0.0.0-dev-20220604091726",
"scroll-into-view-if-needed": "^2.2.29"

@@ -32,0 +32,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet