@codbex/harmonia 1.5.0 → 1.5.2

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.
@@ -1915,23 +1915,18 @@ function unsafeStringify(arr, offset3 = 0) {
1915
1915
  }
1916
1916
 
1917
1917
  // node_modules/uuid/dist/rng.js
1918
- var getRandomValues;
1919
1918
  var rnds8 = new Uint8Array(16);
1920
1919
  function rng() {
1921
- if (!getRandomValues) {
1922
- if (typeof crypto === "undefined" || !crypto.getRandomValues) {
1923
- throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
1924
- }
1925
- getRandomValues = crypto.getRandomValues.bind(crypto);
1926
- }
1927
- return getRandomValues(rnds8);
1920
+ return crypto.getRandomValues(rnds8);
1928
1921
  }
1929
1922
 
1930
- // node_modules/uuid/dist/native.js
1931
- var randomUUID = typeof crypto !== "undefined" && crypto.randomUUID && crypto.randomUUID.bind(crypto);
1932
- var native_default = { randomUUID };
1933
-
1934
1923
  // node_modules/uuid/dist/v4.js
1924
+ function v4(options, buf, offset3) {
1925
+ if (!buf && !options && crypto.randomUUID) {
1926
+ return crypto.randomUUID();
1927
+ }
1928
+ return _v4(options, buf, offset3);
1929
+ }
1935
1930
  function _v4(options, buf, offset3) {
1936
1931
  options = options || {};
1937
1932
  const rnds = options.random ?? options.rng?.() ?? rng();
@@ -1952,12 +1947,6 @@ function _v4(options, buf, offset3) {
1952
1947
  }
1953
1948
  return unsafeStringify(rnds);
1954
1949
  }
1955
- function v4(options, buf, offset3) {
1956
- if (native_default.randomUUID && !buf && !options) {
1957
- return native_default.randomUUID();
1958
- }
1959
- return _v4(options, buf, offset3);
1960
- }
1961
1950
  var v4_default = v4;
1962
1951
 
1963
1952
  // src/common/icons.js
@@ -9944,7 +9933,7 @@ function tree_default(Alpine) {
9944
9933
  }
9945
9934
 
9946
9935
  // package.json
9947
- var version = "1.5.0";
9936
+ var version = "1.5.2";
9948
9937
 
9949
9938
  // src/utils/breakpoint-listener.js
9950
9939
  function getBreakpointListener(handler, breakpoint = 768) {