@pixum/combobox 4.0.9 → 4.0.11

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.0.11](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@4.0.9...@pixum/combobox@4.0.11) (2025-06-30)
7
+
8
+ **Note:** Version bump only for package @pixum/combobox
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.0.10](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@4.0.9...@pixum/combobox@4.0.10) (2025-06-30)
15
+
16
+ **Note:** Version bump only for package @pixum/combobox
17
+
18
+
19
+
20
+
21
+
6
22
  ## [4.0.9](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@4.0.1...@pixum/combobox@4.0.9) (2025-06-27)
7
23
 
8
24
 
@@ -0,0 +1 @@
1
+ export declare const useIsDesktop: () => boolean;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.useIsDesktop = void 0;
4
+ var react_1 = require("react");
5
+ var react_device_detect_1 = require("react-device-detect");
6
+ var useIsDesktop = function () {
7
+ var _a = (0, react_1.useState)(false), isPageLoaded = _a[0], setPageLoaded = _a[1];
8
+ (0, react_1.useEffect)(function () {
9
+ setPageLoaded(true);
10
+ }, []);
11
+ return (0, react_1.useMemo)(function () { return isPageLoaded && react_device_detect_1.isDesktop; }, [react_device_detect_1.isDesktop, isPageLoaded]);
12
+ };
13
+ exports.useIsDesktop = useIsDesktop;
14
+ //# sourceMappingURL=useIsDesktop.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useIsDesktop.js","sourceRoot":"","sources":["../../src/helper/useIsDesktop.ts"],"names":[],"mappings":";;;AAAA,+BAAoD;AACpD,2DAA+C;AAExC,IAAM,YAAY,GAAG;IACpB,IAAA,KAAgC,IAAA,gBAAQ,EAAC,KAAK,CAAC,EAA9C,YAAY,QAAA,EAAE,aAAa,QAAmB,CAAA;IAErD,IAAA,iBAAS,EAAC;QACR,aAAa,CAAC,IAAI,CAAC,CAAA;IACrB,CAAC,EAAE,EAAE,CAAC,CAAA;IAEN,OAAO,IAAA,eAAO,EAAC,cAAM,OAAA,YAAY,IAAI,+BAAS,EAAzB,CAAyB,EAAE,CAAC,+BAAS,EAAE,YAAY,CAAC,CAAC,CAAA;AAC5E,CAAC,CAAA;AARY,QAAA,YAAY,gBAQxB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixum/combobox",
3
- "version": "4.0.9",
3
+ "version": "4.0.11",
4
4
  "main": "lib/index.js",
5
5
  "module": "lib/index.js",
6
6
  "license": "UNLICENSED",
@@ -21,5 +21,5 @@
21
21
  "sideEffects": [
22
22
  "*.css"
23
23
  ],
24
- "gitHead": "8d33bca2e4debb15b425254b018f9b9a86114c66"
24
+ "gitHead": "22ea47b7b313e320fa475dc52f186b7a11446149"
25
25
  }