@pie-lib/style-utils 0.21.2-next.0 → 0.23.0-mui-update.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,7 +3,7 @@
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.21.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.17.0...@pie-lib/style-utils@0.21.1) (2025-10-22)
6
+ # [0.23.0-mui-update.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.22.0-mui-update.0...@pie-lib/style-utils@0.23.0-mui-update.0) (2025-11-17)
7
7
 
8
8
  **Note:** Version bump only for package @pie-lib/style-utils
9
9
 
@@ -11,7 +11,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- # [0.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.17.0...@pie-lib/style-utils@0.21.0) (2025-10-16)
14
+ # [0.22.0-mui-update.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.21.0-mui-update.0...@pie-lib/style-utils@0.22.0-mui-update.0) (2025-11-05)
15
15
 
16
16
  **Note:** Version bump only for package @pie-lib/style-utils
17
17
 
@@ -19,7 +19,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
19
19
 
20
20
 
21
21
 
22
- # [0.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.17.0...@pie-lib/style-utils@0.20.0) (2025-10-16)
22
+ # [0.21.0-mui-update.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.20.0-mui-update.0...@pie-lib/style-utils@0.21.0-mui-update.0) (2025-11-03)
23
23
 
24
24
  **Note:** Version bump only for package @pie-lib/style-utils
25
25
 
@@ -27,15 +27,18 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
27
27
 
28
28
 
29
29
 
30
- # [0.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.17.0...@pie-lib/style-utils@0.19.0) (2025-10-16)
30
+ # [0.20.0-mui-update.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.18.0-mui-update.0...@pie-lib/style-utils@0.20.0-mui-update.0) (2025-11-03)
31
31
 
32
- **Note:** Version bump only for package @pie-lib/style-utils
32
+
33
+ ### Bug Fixes
34
+
35
+ * refactor text select as renderAsString not used anymore ([9a1aea9](https://github.com/pie-framework/pie-lib/commit/9a1aea9c9cc709a803e30a8477b42ae2136a5061))
33
36
 
34
37
 
35
38
 
36
39
 
37
40
 
38
- # [0.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.17.0...@pie-lib/style-utils@0.18.0) (2025-10-16)
41
+ # [0.18.0-mui-update.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/style-utils@0.17.0...@pie-lib/style-utils@0.18.0-mui-update.0) (2025-10-31)
39
42
 
40
43
  **Note:** Version bump only for package @pie-lib/style-utils
41
44
 
package/lib/index.js CHANGED
@@ -4,19 +4,16 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.noSelect = void 0;
7
-
8
7
  /**
9
8
  * disable text selection
10
9
  */
11
- var noSelect = function noSelect() {
10
+ var noSelect = exports.noSelect = function noSelect() {
12
11
  return {
13
12
  cursor: 'default',
14
- '-webkit-user-select': 'none',
15
- '-moz-user-select': 'none',
16
- '-ms-user-select': 'none',
17
- 'user-select': 'none'
13
+ WebkitUserSelect: 'none',
14
+ MozUserSelect: 'none',
15
+ msUserSelect: 'none',
16
+ userSelect: 'none'
18
17
  };
19
18
  };
20
-
21
- exports.noSelect = noSelect;
22
19
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +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"}
1
+ {"version":3,"file":"index.js","names":["noSelect","exports","cursor","WebkitUserSelect","MozUserSelect","msUserSelect","userSelect"],"sources":["../src/index.js"],"sourcesContent":["/**\n * disable text selection\n */\nexport const noSelect = () => ({\n cursor: 'default',\n WebkitUserSelect: 'none',\n MozUserSelect: 'none',\n msUserSelect: 'none',\n userSelect: 'none',\n});\n"],"mappings":";;;;;;AAAA;AACA;AACA;AACO,IAAMA,QAAQ,GAAAC,OAAA,CAAAD,QAAA,GAAG,SAAXA,QAAQA,CAAA;EAAA,OAAU;IAC7BE,MAAM,EAAE,SAAS;IACjBC,gBAAgB,EAAE,MAAM;IACxBC,aAAa,EAAE,MAAM;IACrBC,YAAY,EAAE,MAAM;IACpBC,UAAU,EAAE;EACd,CAAC;AAAA,CAAC","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pie-lib/style-utils",
3
- "version": "0.21.2-next.0+19a7ac5d",
3
+ "version": "0.23.0-mui-update.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": "19a7ac5d429f1c5fe9138faff9981720f8c9e294"
13
+ "gitHead": "4d8ccede3634986a13ea7df987defd26d089f0d6"
14
14
  }
package/src/index.js CHANGED
@@ -3,8 +3,8 @@
3
3
  */
4
4
  export const noSelect = () => ({
5
5
  cursor: 'default',
6
- '-webkit-user-select': 'none',
7
- '-moz-user-select': 'none',
8
- '-ms-user-select': 'none',
9
- 'user-select': 'none',
6
+ WebkitUserSelect: 'none',
7
+ MozUserSelect: 'none',
8
+ msUserSelect: 'none',
9
+ userSelect: 'none',
10
10
  });