@pie-lib/style-utils 0.8.0 → 0.10.0

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,46 +3,41 @@
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
- # [0.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.8.0) (2025-07-31)
7
-
8
- **Note:** Version bump only for package @pie-lib/style-utils
6
+ # [0.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.10.0) (2025-08-07)
9
7
 
10
8
 
9
+ ### Features
11
10
 
11
+ * split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
12
12
 
13
13
 
14
- # [0.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.7.0) (2025-07-31)
15
-
16
- **Note:** Version bump only for package @pie-lib/style-utils
17
14
 
18
15
 
19
16
 
17
+ # [0.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.9.0) (2025-07-31)
20
18
 
19
+ **Note:** Version bump only for package @pie-lib/style-utils
21
20
 
22
- # [0.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.6.0) (2025-07-31)
21
+ # [0.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.8.0) (2025-07-31)
23
22
 
24
23
  **Note:** Version bump only for package @pie-lib/style-utils
25
24
 
25
+ # [0.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.7.0) (2025-07-31)
26
26
 
27
+ **Note:** Version bump only for package @pie-lib/style-utils
27
28
 
29
+ # [0.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.6.0) (2025-07-31)
28
30
 
31
+ **Note:** Version bump only for package @pie-lib/style-utils
29
32
 
30
33
  # [0.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.5.0) (2025-07-31)
31
34
 
32
35
  **Note:** Version bump only for package @pie-lib/style-utils
33
36
 
34
-
35
-
36
-
37
-
38
37
  # [0.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.4.0) (2025-07-31)
39
38
 
40
39
  **Note:** Version bump only for package @pie-lib/style-utils
41
40
 
42
-
43
-
44
-
45
-
46
41
  # [0.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.1.43...@pie-lib/style-utils@0.6.0) (2025-07-31)
47
42
 
48
43
  **Note:** Version bump only for package @pie-lib/style-utils
package/lib/index.js ADDED
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.noSelect = void 0;
7
+
8
+ /**
9
+ * disable text selection
10
+ */
11
+ var noSelect = function noSelect() {
12
+ return {
13
+ cursor: 'default',
14
+ '-webkit-user-select': 'none',
15
+ '-moz-user-select': 'none',
16
+ '-ms-user-select': 'none',
17
+ 'user-select': 'none'
18
+ };
19
+ };
20
+
21
+ exports.noSelect = noSelect;
22
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.js"],"names":["noSelect","cursor"],"mappings":";;;;;;;AAAA;AACA;AACA;AACO,IAAMA,QAAQ,GAAG,SAAXA,QAAW;AAAA,SAAO;AAC7BC,IAAAA,MAAM,EAAE,SADqB;AAE7B,2BAAuB,MAFM;AAG7B,wBAAoB,MAHS;AAI7B,uBAAmB,MAJU;AAK7B,mBAAe;AALc,GAAP;AAAA,CAAjB","sourcesContent":["/**\n * disable text selection\n */\nexport const noSelect = () => ({\n cursor: 'default',\n '-webkit-user-select': 'none',\n '-moz-user-select': 'none',\n '-ms-user-select': 'none',\n 'user-select': 'none',\n});\n"],"file":"index.js"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pie-lib/style-utils",
3
- "version": "0.8.0",
3
+ "version": "0.10.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "src/index.js",
@@ -10,5 +10,5 @@
10
10
  "scripts": {},
11
11
  "author": "",
12
12
  "license": "ISC",
13
- "gitHead": "b52ffaa60bc5a96e2ead9c2f6cfcd17e2db058f7"
13
+ "gitHead": "ba75c393e47a34ace71e2ee5c3a2ddd3b87423ec"
14
14
  }