@cocreate/selection 1.4.10 → 1.4.13

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## [1.4.13](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.4.12...v1.4.13) (2022-07-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * removed console.log ([d9cee14](https://github.com/CoCreate-app/CoCreate-selection/commit/d9cee14952326f2edf94594bf2a2be04e1ff2227))
7
+
8
+ ## [1.4.12](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.4.11...v1.4.12) (2022-06-18)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump dependencies ([ea490e5](https://github.com/CoCreate-app/CoCreate-selection/commit/ea490e5349fbada4430fbfa40eb683f9b1f22a36))
14
+
15
+ ## [1.4.11](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.4.10...v1.4.11) (2022-06-12)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * update dependencies ([9b27560](https://github.com/CoCreate-app/CoCreate-selection/commit/9b2756064e1928ea3d7d4edd11d22c0f78cadf4d))
21
+ * update docs css document_id ([234fc34](https://github.com/CoCreate-app/CoCreate-selection/commit/234fc344cb94447afbb4014c2ae62633e45bb548))
22
+
1
23
  ## [1.4.10](https://github.com/CoCreate-app/CoCreate-selection/compare/v1.4.9...v1.4.10) (2022-05-23)
2
24
 
3
25
 
package/docs/index.html CHANGED
@@ -10,7 +10,7 @@
10
10
  <meta name="keywords" content="helper classes, utility classes, css framework, css library, inline style classes" />
11
11
  <meta name="robots" content="index,follow" />
12
12
 
13
- <link rel="stylesheet" href="/docs/index.css" collection="files" document_id="62827d7e8082ce05b081430b" name="src" type="text/css" save="true" />
13
+ <link rel="stylesheet" href="/docs/index.css" collection="files" document_id="60888216117c640e7596303f" name="src" type="text/css" save="true" />
14
14
 
15
15
  </head>
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/selection",
3
- "version": "1.4.10",
3
+ "version": "1.4.13",
4
4
  "description": "A simple selection component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "selection",
@@ -61,8 +61,8 @@
61
61
  "webpack-log": "^3.0.1"
62
62
  },
63
63
  "dependencies": {
64
- "@cocreate/docs": "^1.3.1",
65
- "@cocreate/hosting": "^1.3.1",
66
- "@cocreate/utils": "^1.7.1"
64
+ "@cocreate/docs": "^1.3.3",
65
+ "@cocreate/hosting": "^1.3.3",
66
+ "@cocreate/utils": "^1.7.3"
67
67
  }
68
68
  }
package/src/index.js CHANGED
@@ -304,7 +304,7 @@ export function getStringPosition({string, target, position, attribute, property
304
304
  else
305
305
  element = dom.querySelector(selector);
306
306
  if (!element){
307
- console.log('element could not be found using selector:', selector);
307
+ // console.log('element could not be found using selector:', selector);
308
308
  return;
309
309
  }
310
310
  let start = 0, end = 0;