@cocreate/utils 1.41.0 → 1.41.2

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.
@@ -22,13 +22,13 @@ jobs:
22
22
  runs-on: ubuntu-latest
23
23
  steps:
24
24
  - name: Checkout
25
- uses: actions/checkout@v3
25
+ uses: actions/checkout@v4
26
26
  - name: Setup Node.js
27
- uses: actions/setup-node@v3
27
+ uses: actions/setup-node@v4
28
28
  with:
29
- node-version: 14
29
+ node-version: 22 # Required for the latest semantic-release plugins
30
30
  - name: Semantic Release
31
- uses: cycjimmy/semantic-release-action@v3
31
+ uses: cycjimmy/semantic-release-action@v4 # Update to v4 for better Node 20+ support
32
32
  id: semantic
33
33
  with:
34
34
  extra_plugins: |
@@ -36,7 +36,7 @@ jobs:
36
36
  @semantic-release/git
37
37
  @semantic-release/github
38
38
  env:
39
- GITHUB_TOKEN: "${{ secrets.GITHUB }}"
39
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" # Use the built-in token if possible
40
40
  NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
41
41
  outputs:
42
42
  new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.41.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.41.1...v1.41.2) (2026-02-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * root factory variable Module ([c723787](https://github.com/CoCreate-app/CoCreate-utils/commit/c7237877d833976c821eeb322fd18b3e92f7fd37))
7
+
8
+ ## [1.41.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.41.0...v1.41.1) (2026-02-04)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update worklow ([5a12bfc](https://github.com/CoCreate-app/CoCreate-utils/commit/5a12bfc15a3be0161592ad041293b876dd92d186))
14
+
1
15
  # [1.41.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.40.1...v1.41.0) (2025-11-16)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/utils",
3
- "version": "1.41.0",
3
+ "version": "1.41.2",
4
4
  "description": "A simple utils component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "utils",
package/src/index.js CHANGED
@@ -67,6 +67,46 @@
67
67
  return depth > 0 ? "../".repeat(depth) : "./";
68
68
  }
69
69
 
70
+ // function getRelativePath(path) {
71
+ // const isBrowser = typeof window !== 'undefined';
72
+
73
+ // // If no path provided, use window.location.pathname
74
+ // if (!path && isBrowser) {
75
+ // path = window.location.pathname;
76
+
77
+ // // FIX: Only remove the end segment if it looks like a file (has an extension like .html)
78
+ // // This prevents stripping valid routes like /dashboard
79
+ // if (/\.[^/]+$/.test(path)) {
80
+ // path = path.replace(/\/[^\/]*$/, "");
81
+ // }
82
+ // }
83
+
84
+ // // For localhost/127.0.0.1, remove everything up to and including the first '/src'
85
+ // if (
86
+ // isBrowser &&
87
+ // (window.location.hostname === "localhost" ||
88
+ // window.location.hostname === "127.0.0.1")
89
+ // ) {
90
+ // const srcIndex = path.indexOf("/src");
91
+ // if (srcIndex !== -1) {
92
+ // // If path is "/BeautySalon/src", this returns ""
93
+ // path = path.slice(srcIndex + 4);
94
+ // }
95
+ // }
96
+
97
+ // // Handle the empty string case here:
98
+ // // "" does not end with "/", so it adds one -> "/"
99
+ // if (!path || !path.endsWith("/")) {
100
+ // path = (path || "") + "/";
101
+ // }
102
+
103
+ // // "/" splits to ['', ''], filter removes them -> length is 0
104
+ // let depth = path.split("/").filter(Boolean).length;
105
+
106
+ // // 0 depth returns "./"
107
+ // return depth > 0 ? "../".repeat(depth) : "./";
108
+ // }
109
+
70
110
  /**
71
111
  * Generates an ObjectId
72
112
  */
@@ -734,7 +774,7 @@
734
774
  if (!prefix) {
735
775
  for (let attr of element.attributes) {
736
776
  // If an attribute with "-query" suffix is found, extract prefix.
737
- if (attr.name.endsWith("-query")) {
777
+ if (attr.name.endsWith("-query") || attr.name.endsWith(".query")) {
738
778
  prefix = attr.name.slice(0, -6);
739
779
  }
740
780
  }
@@ -742,7 +782,7 @@
742
782
  if (!prefix) return [];
743
783
  }
744
784
  // Get the selector using the derived prefix.
745
- selector = element.getAttribute(prefix + "-" + "query");
785
+ selector = element.getAttribute(prefix + "-" + "query") || element.getAttribute(prefix + "." + "query");
746
786
  if (!selector) return []; // Exit if no selector is found.
747
787
  }
748
788