@pixum/combobox 4.0.2-alpha.41 → 4.0.3
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,28 @@
|
|
|
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.3](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@4.0.1...@pixum/combobox@4.0.3) (2025-05-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **toggle-button:** use id for identifying toggle option if possible #PXOCT-1884 ([29f8e39](https://git.pixum.net/design-system/component-library/commits/29f8e397fecd5bc8aaf9c2dd5df8cb9707000aa0)), closes [#PXOCT-1884](https://git.pixum.net/design-system/component-library/issues/PXOCT-1884)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [4.0.2](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@4.0.1...@pixum/combobox@4.0.2) (2025-05-30)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **toggle-button:** use id for identifying toggle option if possible #PXOCT-1884 ([29f8e39](https://git.pixum.net/design-system/component-library/commits/29f8e397fecd5bc8aaf9c2dd5df8cb9707000aa0)), closes [#PXOCT-1884](https://git.pixum.net/design-system/component-library/issues/PXOCT-1884)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [4.0.1](https://git.pixum.net/design-system/component-library/compare/@pixum/combobox@4.0.0...@pixum/combobox@4.0.1) (2025-03-13)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @pixum/combobox
|
|
@@ -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,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixum/combobox",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "lib/index.js",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"peerDependencies": {
|
|
8
8
|
"@pixum/bottom-sheet": "^3.0.2",
|
|
9
|
-
"@pixum/button": "^4.
|
|
9
|
+
"@pixum/button": "^4.1.6",
|
|
10
10
|
"@pixum/menu": "^3.0.0",
|
|
11
11
|
"@pixum/menu-item": "^2.0.0",
|
|
12
|
-
"@pixum/svg-icon": "^
|
|
12
|
+
"@pixum/svg-icon": "^5.1.0",
|
|
13
13
|
"@pixum/text": "^2.0.0",
|
|
14
14
|
"@pixum/theme-provider": "^4.2.10",
|
|
15
15
|
"@pixum/user-input": "^3.0.0",
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"sideEffects": [
|
|
22
22
|
"*.css"
|
|
23
23
|
],
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "9ce68cac1b5adac58a485c6b870efba522d97457"
|
|
25
25
|
}
|