@scaleflex/widget-utils 4.8.1 → 4.8.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,25 @@
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.8.3](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.8.2...v4.8.3) (2026-01-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * correct formatting of ignoreSymbols array in customEncodeURIComponent function ([aecd910](https://code.scaleflex.cloud/scaleflex/widget/commits/aecd910e1e8e842712bbefe2d148261c31c18770))
12
+
13
+
14
+
15
+
16
+
17
+ ## [4.8.2](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.8.1...v4.8.2) (2026-01-28)
18
+
19
+ **Note:** Version bump only for package @scaleflex/widget-utils
20
+
21
+
22
+
23
+
24
+
6
25
  ## [4.8.1](https://code.scaleflex.cloud/scaleflex/widget/compare/v4.8.0...v4.8.1) (2025-12-22)
7
26
 
8
27
  **Note:** Version bump only for package @scaleflex/widget-utils
@@ -38,7 +38,7 @@ export var customEncodeURIComponent = function customEncodeURIComponent(str, opt
38
38
  return str;
39
39
  }
40
40
  var options = _objectSpread({
41
- ignoreSymbols: [':', ',', '.', '@', '=', '+']
41
+ ignoreSymbols: [':', ',', '.', '@', '=']
42
42
  }, opts || {});
43
43
  var ignoreSymbols = options.ignoreSymbols || [];
44
44
  return Array.isArray(ignoreSymbols) && ignoreSymbols.length > 0 ? _toConsumableArray(str).map(function (_char) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Shared utility functions for filerobot modules",
4
4
  "main": "lib/index.js",
5
5
  "types": "types/index.d.ts",
6
- "version": "4.8.1",
6
+ "version": "4.8.3",
7
7
  "files": [
8
8
  "/dist",
9
9
  "/lib",
@@ -16,10 +16,10 @@
16
16
  "dependencies": {
17
17
  "@scaleflex/icons": "^3.0.0-beta.11",
18
18
  "@scaleflex/ui": "^3.0.0-beta.11",
19
- "@scaleflex/widget-icons": "^4.8.1",
19
+ "@scaleflex/widget-icons": "^4.8.3",
20
20
  "abortcontroller-polyfill": "^1.4.0",
21
21
  "dompurify": "^3.1.6",
22
22
  "lodash.throttle": "^4.1.1"
23
23
  },
24
- "gitHead": "7794244f4a0a6fb15defbe8cab1aa37b3d5b9c1e"
24
+ "gitHead": "dc72e2dd7d64deb01e5789711786ccaf6740f893"
25
25
  }