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

@chakra-ui/vue-composables

Package Overview
Dependencies
Maintainers
3
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-ui/vue-composables - npm Package Compare versions

Comparing version 0.0.0-dev-20230328142219 to 0.0.0-dev-20230328194300

dist/chunk-5KFONQLM.mjs

1

dist/index.d.ts

@@ -10,3 +10,4 @@ export { DocumentEventName, GeneralEventListener, WindowEventName, useEventListener } from './use-event-listener.js';

export { useWindowEvent } from './use-window-event.js';
export { Descendant, DescendantAuthority, createDescendantRegister } from './use-descendant.js';
import '@chakra-ui/vue-utils';
import 'vue';

@@ -6,2 +6,3 @@ "use strict";

var __hasOwnProp = Object.prototype.hasOwnProperty;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });

@@ -21,2 +22,6 @@ var __export = (target, all) => {

var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var __publicField = (obj, key, value) => {
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
return value;
};

@@ -26,3 +31,6 @@ // src/index.tsx

__export(src_exports, {
Descendant: () => Descendant,
DescendantAuthority: () => DescendantAuthority,
StackMessage: () => StackMessage,
createDescendantRegister: () => createDescendantRegister,
useClipboard: () => useClipboard,

@@ -399,5 +407,115 @@ useCounter: () => useCounter,

__name(useWindowEvent, "useWindowEvent");
// src/use-descendant.ts
var import_vue_utils4 = require("@chakra-ui/vue-utils");
var import_vue10 = require("vue");
var DescendantAuthority = class {
constructor(id) {
__publicField(this, "descendants");
__publicField(this, "id");
this.descendants = [];
this.id = id;
}
register(descendant) {
this.descendants.push(descendant);
return descendant.id;
}
unregister(id) {
this.descendants = this.descendants.filter((descendant) => descendant.id !== id);
}
isRegistered(id) {
return this.descendants.some((descendant) => descendant.id === id);
}
getDescendants() {
return this.descendants;
}
getDescendantById(id) {
return this.descendants.find((descendant) => descendant.id === id);
}
json() {
const payload = {
id: this.id,
descendants: this.descendants.map((descendant) => ({
id: descendant.id,
authorityId: descendant.authorityId
}))
};
return payload;
}
};
__name(DescendantAuthority, "DescendantAuthority");
var descendantManagerStore = /* @__PURE__ */ new Map();
var Descendant = class {
constructor({
id,
authority
}) {
__publicField(this, "id");
__publicField(this, "authorityId");
this.id = id;
this.authorityId = authority.id;
}
};
__name(Descendant, "Descendant");
function createDescendantAuthority(id) {
const descendantManager = new DescendantAuthority(id);
descendantManagerStore.set(id, descendantManager);
return descendantManager;
}
__name(createDescendantAuthority, "createDescendantAuthority");
function createDescendant(id, authority) {
return new Descendant({
id,
authority
});
}
__name(createDescendant, "createDescendant");
function storeDescendant(descendant) {
const {
id,
authorityId
} = descendant;
const authority = descendantManagerStore.get(authorityId);
if (authority.isRegistered(id)) {
throw new Error(`Descendant with id ${id} is already registered.`);
}
return authority.register(descendant);
}
__name(storeDescendant, "storeDescendant");
function createDescendantRegister(id) {
let __descendantAuthority__ = createDescendantAuthority(Symbol(id));
const descendantAuthority = (0, import_vue10.customRef)((track, trigger) => ({
get() {
track();
return __descendantAuthority__;
},
set(value) {
__descendantAuthority__ = value;
trigger();
}
}));
const [DescendantAuthorityProvider, useAuthority] = (0, import_vue_utils4.createContext)({
name: id,
strict: false
}, __descendantAuthority__);
function registerAuthority() {
DescendantAuthorityProvider(__descendantAuthority__);
}
__name(registerAuthority, "registerAuthority");
function registerDescendant(id2) {
const descendant = createDescendant(id2, __descendantAuthority__);
storeDescendant(descendant);
(0, import_vue10.triggerRef)(descendantAuthority);
return descendant;
}
__name(registerDescendant, "registerDescendant");
return [registerAuthority, registerDescendant, useAuthority, descendantAuthority];
}
__name(createDescendantRegister, "createDescendantRegister");
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Descendant,
DescendantAuthority,
StackMessage,
createDescendantRegister,
useClipboard,

@@ -404,0 +522,0 @@ useCounter,

2

dist/metafile-cjs.json

@@ -1,1 +0,1 @@

{"inputs":{"src/use-event-listener.ts":{"bytes":3188,"imports":[]},"src/use-element-stack.ts":{"bytes":1083,"imports":[]},"src/use-clipboard.ts":{"bytes":1257,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"}]},"src/use-counter.ts":{"bytes":3769,"imports":[]},"src/use-id.ts":{"bytes":2727,"imports":[]},"src/use-disclosure.ts":{"bytes":3712,"imports":[{"path":"src/use-id.ts","kind":"import-statement"}]},"src/use-supported.ts":{"bytes":844,"imports":[]},"src/use-media-query.ts":{"bytes":1383,"imports":[{"path":"src/use-supported.ts","kind":"import-statement"}]},"src/use-window-event.ts":{"bytes":525,"imports":[]},"src/index.tsx":{"bytes":753,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"},{"path":"src/use-element-stack.ts","kind":"import-statement"},{"path":"src/use-clipboard.ts","kind":"import-statement"},{"path":"src/use-counter.ts","kind":"import-statement"},{"path":"src/use-disclosure.ts","kind":"import-statement"},{"path":"src/use-id.ts","kind":"import-statement"},{"path":"src/use-media-query.ts","kind":"import-statement"},{"path":"src/use-supported.ts","kind":"import-statement"},{"path":"src/use-window-event.ts","kind":"import-statement"}]}},"outputs":{"dist/index.js":{"imports":[],"exports":[],"entryPoint":"src/index.tsx","inputs":{"src/index.tsx":{"bytesInOutput":567},"src/use-event-listener.ts":{"bytesInOutput":1108},"src/use-element-stack.ts":{"bytesInOutput":1164},"src/use-clipboard.ts":{"bytesInOutput":1103},"src/use-counter.ts":{"bytesInOutput":2795},"src/use-disclosure.ts":{"bytesInOutput":1491},"src/use-id.ts":{"bytesInOutput":993},"src/use-media-query.ts":{"bytesInOutput":1204},"src/use-supported.ts":{"bytesInOutput":410},"src/use-window-event.ts":{"bytesInOutput":381}},"bytes":12708},"dist/use-clipboard.js":{"imports":[],"exports":[],"entryPoint":"src/use-clipboard.ts","inputs":{"src/use-clipboard.ts":{"bytesInOutput":1262},"src/use-event-listener.ts":{"bytesInOutput":1108}},"bytes":3445},"dist/use-counter.js":{"imports":[],"exports":[],"entryPoint":"src/use-counter.ts","inputs":{"src/use-counter.ts":{"bytesInOutput":2931}},"bytes":3947},"dist/use-disclosure.js":{"imports":[],"exports":[],"entryPoint":"src/use-disclosure.ts","inputs":{"src/use-disclosure.ts":{"bytesInOutput":1655},"src/use-id.ts":{"bytesInOutput":798}},"bytes":3519},"dist/use-element-stack.js":{"imports":[],"exports":[],"entryPoint":"src/use-element-stack.ts","inputs":{"src/use-element-stack.ts":{"bytesInOutput":1459}},"bytes":2541},"dist/use-event-listener.js":{"imports":[],"exports":[],"entryPoint":"src/use-event-listener.ts","inputs":{"src/use-event-listener.ts":{"bytesInOutput":1290}},"bytes":2319},"dist/use-id.js":{"imports":[],"exports":[],"entryPoint":"src/use-id.ts","inputs":{"src/use-id.ts":{"bytesInOutput":1133}},"bytes":2149},"dist/use-media-query.js":{"imports":[],"exports":[],"entryPoint":"src/use-media-query.ts","inputs":{"src/use-media-query.ts":{"bytesInOutput":1358},"src/use-supported.ts":{"bytesInOutput":406}},"bytes":2839},"dist/use-supported.js":{"imports":[],"exports":[],"entryPoint":"src/use-supported.ts","inputs":{"src/use-supported.ts":{"bytesInOutput":565}},"bytes":1585},"dist/use-window-event.js":{"imports":[],"exports":[],"entryPoint":"src/use-window-event.ts","inputs":{"src/use-window-event.ts":{"bytesInOutput":551}},"bytes":1576}}}
{"inputs":{"src/use-event-listener.ts":{"bytes":3188,"imports":[]},"src/use-element-stack.ts":{"bytes":1083,"imports":[]},"src/use-clipboard.ts":{"bytes":1257,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"}]},"src/use-counter.ts":{"bytes":3769,"imports":[]},"src/use-id.ts":{"bytes":2727,"imports":[]},"src/use-disclosure.ts":{"bytes":3712,"imports":[{"path":"src/use-id.ts","kind":"import-statement"}]},"src/use-supported.ts":{"bytes":844,"imports":[]},"src/use-media-query.ts":{"bytes":1383,"imports":[{"path":"src/use-supported.ts","kind":"import-statement"}]},"src/use-window-event.ts":{"bytes":525,"imports":[]},"src/use-descendant.ts":{"bytes":3227,"imports":[]},"src/index.tsx":{"bytes":847,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"},{"path":"src/use-element-stack.ts","kind":"import-statement"},{"path":"src/use-clipboard.ts","kind":"import-statement"},{"path":"src/use-counter.ts","kind":"import-statement"},{"path":"src/use-disclosure.ts","kind":"import-statement"},{"path":"src/use-id.ts","kind":"import-statement"},{"path":"src/use-media-query.ts","kind":"import-statement"},{"path":"src/use-supported.ts","kind":"import-statement"},{"path":"src/use-window-event.ts","kind":"import-statement"},{"path":"src/use-descendant.ts","kind":"import-statement"}]}},"outputs":{"dist/index.js":{"imports":[],"exports":[],"entryPoint":"src/index.tsx","inputs":{"src/index.tsx":{"bytesInOutput":709},"src/use-event-listener.ts":{"bytesInOutput":1108},"src/use-element-stack.ts":{"bytesInOutput":1164},"src/use-clipboard.ts":{"bytesInOutput":1103},"src/use-counter.ts":{"bytesInOutput":2795},"src/use-disclosure.ts":{"bytesInOutput":1491},"src/use-id.ts":{"bytesInOutput":993},"src/use-media-query.ts":{"bytesInOutput":1204},"src/use-supported.ts":{"bytesInOutput":410},"src/use-window-event.ts":{"bytesInOutput":381},"src/use-descendant.ts":{"bytesInOutput":3109}},"bytes":16346},"dist/use-clipboard.js":{"imports":[],"exports":[],"entryPoint":"src/use-clipboard.ts","inputs":{"src/use-clipboard.ts":{"bytesInOutput":1262},"src/use-event-listener.ts":{"bytesInOutput":1108}},"bytes":3445},"dist/use-counter.js":{"imports":[],"exports":[],"entryPoint":"src/use-counter.ts","inputs":{"src/use-counter.ts":{"bytesInOutput":2931}},"bytes":3947},"dist/use-descendant.js":{"imports":[],"exports":[],"entryPoint":"src/use-descendant.ts","inputs":{"src/use-descendant.ts":{"bytesInOutput":3369}},"bytes":4735},"dist/use-disclosure.js":{"imports":[],"exports":[],"entryPoint":"src/use-disclosure.ts","inputs":{"src/use-disclosure.ts":{"bytesInOutput":1655},"src/use-id.ts":{"bytesInOutput":798}},"bytes":3519},"dist/use-element-stack.js":{"imports":[],"exports":[],"entryPoint":"src/use-element-stack.ts","inputs":{"src/use-element-stack.ts":{"bytesInOutput":1459}},"bytes":2541},"dist/use-event-listener.js":{"imports":[],"exports":[],"entryPoint":"src/use-event-listener.ts","inputs":{"src/use-event-listener.ts":{"bytesInOutput":1290}},"bytes":2319},"dist/use-id.js":{"imports":[],"exports":[],"entryPoint":"src/use-id.ts","inputs":{"src/use-id.ts":{"bytesInOutput":1133}},"bytes":2149},"dist/use-media-query.js":{"imports":[],"exports":[],"entryPoint":"src/use-media-query.ts","inputs":{"src/use-media-query.ts":{"bytesInOutput":1358},"src/use-supported.ts":{"bytesInOutput":406}},"bytes":2839},"dist/use-supported.js":{"imports":[],"exports":[],"entryPoint":"src/use-supported.ts","inputs":{"src/use-supported.ts":{"bytesInOutput":565}},"bytes":1585},"dist/use-window-event.js":{"imports":[],"exports":[],"entryPoint":"src/use-window-event.ts","inputs":{"src/use-window-event.ts":{"bytesInOutput":551}},"bytes":1576}}}

@@ -1,1 +0,1 @@

{"inputs":{"src/use-event-listener.ts":{"bytes":3188,"imports":[]},"src/use-element-stack.ts":{"bytes":1083,"imports":[]},"src/use-clipboard.ts":{"bytes":1257,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"}]},"src/use-counter.ts":{"bytes":3769,"imports":[]},"src/use-id.ts":{"bytes":2727,"imports":[]},"src/use-disclosure.ts":{"bytes":3712,"imports":[{"path":"src/use-id.ts","kind":"import-statement"}]},"src/use-supported.ts":{"bytes":844,"imports":[]},"src/use-media-query.ts":{"bytes":1383,"imports":[{"path":"src/use-supported.ts","kind":"import-statement"}]},"src/use-window-event.ts":{"bytes":525,"imports":[]},"src/index.tsx":{"bytes":753,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"},{"path":"src/use-element-stack.ts","kind":"import-statement"},{"path":"src/use-clipboard.ts","kind":"import-statement"},{"path":"src/use-counter.ts","kind":"import-statement"},{"path":"src/use-disclosure.ts","kind":"import-statement"},{"path":"src/use-id.ts","kind":"import-statement"},{"path":"src/use-media-query.ts","kind":"import-statement"},{"path":"src/use-supported.ts","kind":"import-statement"},{"path":"src/use-window-event.ts","kind":"import-statement"}]}},"outputs":{"dist/use-supported.mjs":{"imports":[{"path":"dist/chunk-CVY42S22.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useSupported"],"entryPoint":"src/use-supported.ts","inputs":{},"bytes":113},"dist/use-window-event.mjs":{"imports":[{"path":"dist/chunk-GYYEICKB.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useWindowEvent"],"entryPoint":"src/use-window-event.ts","inputs":{},"bytes":117},"dist/index.mjs":{"imports":[{"path":"dist/chunk-GYYEICKB.mjs","kind":"import-statement"},{"path":"dist/chunk-2DLF3X5H.mjs","kind":"import-statement"},{"path":"dist/chunk-5HFSJ3YD.mjs","kind":"import-statement"},{"path":"dist/chunk-2Y6P7DRF.mjs","kind":"import-statement"},{"path":"dist/chunk-VU7CFUHP.mjs","kind":"import-statement"},{"path":"dist/chunk-3CLT3SW7.mjs","kind":"import-statement"},{"path":"dist/chunk-IMCL7PMS.mjs","kind":"import-statement"},{"path":"dist/chunk-3SGQPVZG.mjs","kind":"import-statement"},{"path":"dist/chunk-CVY42S22.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["DocumentEventName","GeneralEventListener","StackMessage","WindowEventName","useClipboard","useCounter","useDisclosure","useElementStack","useEventListener","useId","useIds","useMediaQuery","useStackContext","useStackProvider","useSupported","useWindowEvent"],"entryPoint":"src/index.tsx","inputs":{"src/index.tsx":{"bytesInOutput":0}},"bytes":815},"dist/chunk-GYYEICKB.mjs":{"imports":[{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useWindowEvent"],"inputs":{"src/use-window-event.ts":{"bytesInOutput":365}},"bytes":472},"dist/use-clipboard.mjs":{"imports":[{"path":"dist/chunk-2DLF3X5H.mjs","kind":"import-statement"},{"path":"dist/chunk-3CLT3SW7.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useClipboard"],"entryPoint":"src/use-clipboard.ts","inputs":{},"bytes":144},"dist/chunk-2DLF3X5H.mjs":{"imports":[{"path":"dist/chunk-3CLT3SW7.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useClipboard"],"inputs":{"src/use-clipboard.ts":{"bytesInOutput":1035}},"bytes":1196},"dist/use-counter.mjs":{"imports":[{"path":"dist/chunk-5HFSJ3YD.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useCounter"],"entryPoint":"src/use-counter.ts","inputs":{},"bytes":109},"dist/chunk-5HFSJ3YD.mjs":{"imports":[{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useCounter"],"inputs":{"src/use-counter.ts":{"bytesInOutput":2633}},"bytes":2731},"dist/use-disclosure.mjs":{"imports":[{"path":"dist/chunk-2Y6P7DRF.mjs","kind":"import-statement"},{"path":"dist/chunk-IMCL7PMS.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useDisclosure"],"entryPoint":"src/use-disclosure.ts","inputs":{},"bytes":146},"dist/chunk-2Y6P7DRF.mjs":{"imports":[{"path":"dist/chunk-IMCL7PMS.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useDisclosure"],"inputs":{"src/use-disclosure.ts":{"bytesInOutput":1405}},"bytes":1557},"dist/use-element-stack.mjs":{"imports":[{"path":"dist/chunk-VU7CFUHP.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["StackMessage","useElementStack","useStackContext","useStackProvider"],"entryPoint":"src/use-element-stack.ts","inputs":{},"bytes":229},"dist/chunk-VU7CFUHP.mjs":{"imports":[{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["StackMessage","useElementStack","useStackContext","useStackProvider"],"inputs":{"src/use-element-stack.ts":{"bytesInOutput":1137}},"bytes":1301},"dist/use-event-listener.mjs":{"imports":[{"path":"dist/chunk-3CLT3SW7.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useEventListener"],"entryPoint":"src/use-event-listener.ts","inputs":{},"bytes":121},"dist/chunk-3CLT3SW7.mjs":{"imports":[{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useEventListener"],"inputs":{"src/use-event-listener.ts":{"bytesInOutput":1003}},"bytes":1114},"dist/use-id.mjs":{"imports":[{"path":"dist/chunk-IMCL7PMS.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useId","useIds"],"entryPoint":"src/use-id.ts","inputs":{},"bytes":119},"dist/chunk-IMCL7PMS.mjs":{"imports":[{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useId","useIds"],"inputs":{"src/use-id.ts":{"bytesInOutput":915}},"bytes":1013},"dist/use-media-query.mjs":{"imports":[{"path":"dist/chunk-3SGQPVZG.mjs","kind":"import-statement"},{"path":"dist/chunk-CVY42S22.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useMediaQuery"],"entryPoint":"src/use-media-query.ts","inputs":{},"bytes":146},"dist/chunk-3SGQPVZG.mjs":{"imports":[{"path":"dist/chunk-CVY42S22.mjs","kind":"import-statement"},{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useMediaQuery"],"inputs":{"src/use-media-query.ts":{"bytesInOutput":1127}},"bytes":1287},"dist/chunk-CVY42S22.mjs":{"imports":[{"path":"dist/chunk-INDHDMU3.mjs","kind":"import-statement"}],"exports":["useSupported"],"inputs":{"src/use-supported.ts":{"bytesInOutput":359}},"bytes":461},"dist/chunk-INDHDMU3.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
{"inputs":{"src/use-event-listener.ts":{"bytes":3188,"imports":[]},"src/use-element-stack.ts":{"bytes":1083,"imports":[]},"src/use-clipboard.ts":{"bytes":1257,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"}]},"src/use-counter.ts":{"bytes":3769,"imports":[]},"src/use-id.ts":{"bytes":2727,"imports":[]},"src/use-disclosure.ts":{"bytes":3712,"imports":[{"path":"src/use-id.ts","kind":"import-statement"}]},"src/use-supported.ts":{"bytes":844,"imports":[]},"src/use-media-query.ts":{"bytes":1383,"imports":[{"path":"src/use-supported.ts","kind":"import-statement"}]},"src/use-window-event.ts":{"bytes":525,"imports":[]},"src/use-descendant.ts":{"bytes":3227,"imports":[]},"src/index.tsx":{"bytes":847,"imports":[{"path":"src/use-event-listener.ts","kind":"import-statement"},{"path":"src/use-element-stack.ts","kind":"import-statement"},{"path":"src/use-clipboard.ts","kind":"import-statement"},{"path":"src/use-counter.ts","kind":"import-statement"},{"path":"src/use-disclosure.ts","kind":"import-statement"},{"path":"src/use-id.ts","kind":"import-statement"},{"path":"src/use-media-query.ts","kind":"import-statement"},{"path":"src/use-supported.ts","kind":"import-statement"},{"path":"src/use-window-event.ts","kind":"import-statement"},{"path":"src/use-descendant.ts","kind":"import-statement"}]}},"outputs":{"dist/use-media-query.mjs":{"imports":[{"path":"dist/chunk-6PADYM5L.mjs","kind":"import-statement"},{"path":"dist/chunk-T2UAVNAT.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useMediaQuery"],"entryPoint":"src/use-media-query.ts","inputs":{},"bytes":146},"dist/use-supported.mjs":{"imports":[{"path":"dist/chunk-T2UAVNAT.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useSupported"],"entryPoint":"src/use-supported.ts","inputs":{},"bytes":113},"dist/use-window-event.mjs":{"imports":[{"path":"dist/chunk-NZCDU3ND.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useWindowEvent"],"entryPoint":"src/use-window-event.ts","inputs":{},"bytes":117},"dist/index.mjs":{"imports":[{"path":"dist/chunk-6PADYM5L.mjs","kind":"import-statement"},{"path":"dist/chunk-T2UAVNAT.mjs","kind":"import-statement"},{"path":"dist/chunk-NZCDU3ND.mjs","kind":"import-statement"},{"path":"dist/chunk-HJHQWC54.mjs","kind":"import-statement"},{"path":"dist/chunk-ITNZ3OHT.mjs","kind":"import-statement"},{"path":"dist/chunk-6XTWJRAW.mjs","kind":"import-statement"},{"path":"dist/chunk-SI2LUL6C.mjs","kind":"import-statement"},{"path":"dist/chunk-6U6PC2OR.mjs","kind":"import-statement"},{"path":"dist/chunk-5KFONQLM.mjs","kind":"import-statement"},{"path":"dist/chunk-OGYT5CBC.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["Descendant","DescendantAuthority","DocumentEventName","GeneralEventListener","StackMessage","WindowEventName","createDescendantRegister","useClipboard","useCounter","useDisclosure","useElementStack","useEventListener","useId","useIds","useMediaQuery","useStackContext","useStackProvider","useSupported","useWindowEvent"],"entryPoint":"src/index.tsx","inputs":{"src/index.tsx":{"bytesInOutput":0}},"bytes":984},"dist/chunk-6PADYM5L.mjs":{"imports":[{"path":"dist/chunk-T2UAVNAT.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useMediaQuery"],"inputs":{"src/use-media-query.ts":{"bytesInOutput":1127}},"bytes":1287},"dist/chunk-T2UAVNAT.mjs":{"imports":[{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useSupported"],"inputs":{"src/use-supported.ts":{"bytesInOutput":359}},"bytes":461},"dist/chunk-NZCDU3ND.mjs":{"imports":[{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useWindowEvent"],"inputs":{"src/use-window-event.ts":{"bytesInOutput":365}},"bytes":472},"dist/use-clipboard.mjs":{"imports":[{"path":"dist/chunk-HJHQWC54.mjs","kind":"import-statement"},{"path":"dist/chunk-5KFONQLM.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useClipboard"],"entryPoint":"src/use-clipboard.ts","inputs":{},"bytes":144},"dist/chunk-HJHQWC54.mjs":{"imports":[{"path":"dist/chunk-5KFONQLM.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useClipboard"],"inputs":{"src/use-clipboard.ts":{"bytesInOutput":1035}},"bytes":1196},"dist/use-counter.mjs":{"imports":[{"path":"dist/chunk-ITNZ3OHT.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useCounter"],"entryPoint":"src/use-counter.ts","inputs":{},"bytes":109},"dist/chunk-ITNZ3OHT.mjs":{"imports":[{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useCounter"],"inputs":{"src/use-counter.ts":{"bytesInOutput":2633}},"bytes":2731},"dist/use-descendant.mjs":{"imports":[{"path":"dist/chunk-6XTWJRAW.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["Descendant","DescendantAuthority","createDescendantRegister"],"entryPoint":"src/use-descendant.ts","inputs":{},"bytes":211},"dist/chunk-6XTWJRAW.mjs":{"imports":[{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["Descendant","DescendantAuthority","createDescendantRegister"],"inputs":{"src/use-descendant.ts":{"bytesInOutput":3057}},"bytes":3226},"dist/use-disclosure.mjs":{"imports":[{"path":"dist/chunk-SI2LUL6C.mjs","kind":"import-statement"},{"path":"dist/chunk-OGYT5CBC.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useDisclosure"],"entryPoint":"src/use-disclosure.ts","inputs":{},"bytes":146},"dist/chunk-SI2LUL6C.mjs":{"imports":[{"path":"dist/chunk-OGYT5CBC.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useDisclosure"],"inputs":{"src/use-disclosure.ts":{"bytesInOutput":1405}},"bytes":1557},"dist/use-element-stack.mjs":{"imports":[{"path":"dist/chunk-6U6PC2OR.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["StackMessage","useElementStack","useStackContext","useStackProvider"],"entryPoint":"src/use-element-stack.ts","inputs":{},"bytes":229},"dist/chunk-6U6PC2OR.mjs":{"imports":[{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["StackMessage","useElementStack","useStackContext","useStackProvider"],"inputs":{"src/use-element-stack.ts":{"bytesInOutput":1137}},"bytes":1301},"dist/use-event-listener.mjs":{"imports":[{"path":"dist/chunk-5KFONQLM.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useEventListener"],"entryPoint":"src/use-event-listener.ts","inputs":{},"bytes":121},"dist/chunk-5KFONQLM.mjs":{"imports":[{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useEventListener"],"inputs":{"src/use-event-listener.ts":{"bytesInOutput":1003}},"bytes":1114},"dist/use-id.mjs":{"imports":[{"path":"dist/chunk-OGYT5CBC.mjs","kind":"import-statement"},{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useId","useIds"],"entryPoint":"src/use-id.ts","inputs":{},"bytes":119},"dist/chunk-OGYT5CBC.mjs":{"imports":[{"path":"dist/chunk-Q3KE6ACF.mjs","kind":"import-statement"}],"exports":["useId","useIds"],"inputs":{"src/use-id.ts":{"bytesInOutput":915}},"bytes":1013},"dist/chunk-Q3KE6ACF.mjs":{"imports":[],"exports":["__name","__publicField"],"inputs":{},"bytes":464}}}
{
"name": "@chakra-ui/vue-composables",
"description": "Chakra UI Vue | Chakra ui vue utility composables component",
"version": "0.0.0-dev-20230328142219",
"version": "0.0.0-dev-20230328194300",
"main": "dist/index.js",

@@ -30,4 +30,4 @@ "module": "dist/index.mjs",

"@chakra-ui/utils": "2.0.15",
"@chakra-ui/vue-system": "0.0.0-dev-20230328142219",
"@chakra-ui/vue-utils": "0.0.0-dev-20230328142219"
"@chakra-ui/vue-system": "0.0.0-dev-20230328194300",
"@chakra-ui/vue-utils": "0.0.0-dev-20230328194300"
},

@@ -34,0 +34,0 @@ "devDependencies": {

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

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc