@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.
@@ -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
- ESM dist/index.mjs 752.90 KB
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 178ms
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 5772ms
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
@@ -1,5 +1,11 @@
1
1
  # @noya-app/noya-designsystem
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - @noya-app/noya-colorpicker@0.0.3
8
+
3
9
  ## 0.0.3
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -10804,9 +10804,9 @@ function useKeyboardShortcuts(shortcuts, options = {}) {
10804
10804
  invokedWithinInput
10805
10805
  });
10806
10806
  };
10807
- listenerElement?.addEventListener(eventName, handler);
10807
+ listenerElement == null ? void 0 : listenerElement.addEventListener(eventName, handler);
10808
10808
  return () => {
10809
- listenerElement?.removeEventListener(eventName, handler);
10809
+ listenerElement == null ? void 0 : listenerElement.removeEventListener(eventName, handler);
10810
10810
  };
10811
10811
  }, [eventName]);
10812
10812
  }