@noya-app/noya-designsystem 0.0.3 → 0.0.4
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -5,13 +5,13 @@ CLI tsup v8.0.1
|
|
|
5
5
|
CLI Target: esnext
|
|
6
6
|
CJS Build start
|
|
7
7
|
ESM Build start
|
|
8
|
-
|
|
9
|
-
ESM dist/index.mjs.map 1.15 MB
|
|
10
|
-
ESM ⚡️ Build success in 164ms
|
|
11
|
-
CJS dist/index.js 789.36 KB
|
|
8
|
+
CJS dist/index.js 789.43 KB
|
|
12
9
|
CJS dist/index.js.map 1.15 MB
|
|
13
|
-
CJS ⚡️ Build success in
|
|
10
|
+
CJS ⚡️ Build success in 159ms
|
|
11
|
+
ESM dist/index.mjs 752.96 KB
|
|
12
|
+
ESM dist/index.mjs.map 1.15 MB
|
|
13
|
+
ESM ⚡️ Build success in 160ms
|
|
14
14
|
DTS Build start
|
|
15
|
-
DTS ⚡️ Build success in
|
|
15
|
+
DTS ⚡️ Build success in 5396ms
|
|
16
16
|
DTS dist/index.d.ts 48.78 KB
|
|
17
17
|
DTS dist/index.d.mts 48.78 KB
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -10804,9 +10804,9 @@ function useKeyboardShortcuts(shortcuts, options = {}) {
|
|
|
10804
10804
|
invokedWithinInput
|
|
10805
10805
|
});
|
|
10806
10806
|
};
|
|
10807
|
-
listenerElement
|
|
10807
|
+
listenerElement == null ? void 0 : listenerElement.addEventListener(eventName, handler);
|
|
10808
10808
|
return () => {
|
|
10809
|
-
listenerElement
|
|
10809
|
+
listenerElement == null ? void 0 : listenerElement.removeEventListener(eventName, handler);
|
|
10810
10810
|
};
|
|
10811
10811
|
}, [eventName]);
|
|
10812
10812
|
}
|