@cocreate/utils 1.42.2 → 1.44.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.
Files changed (68) hide show
  1. package/.github/FUNDING.yml +3 -0
  2. package/.github/workflows/automated.yml +56 -0
  3. package/.github/workflows/manual.yml +43 -0
  4. package/CHANGELOG.md +2125 -0
  5. package/CoCreate.config.js +23 -0
  6. package/demo/index.html +23 -0
  7. package/docs/index.html +331 -0
  8. package/package.json +11 -29
  9. package/prettier.config.js +16 -0
  10. package/release.config.js +30 -0
  11. package/src/dataQuery.js +1 -0
  12. package/src/index.js +90 -70
  13. package/src/operators.ast.js +287 -0
  14. package/src/operators.js +450 -89
  15. package/src/operators.v1.js +687 -0
  16. package/src/queryElements.js +7 -9
  17. package/webpack.config.js +65 -0
  18. package/dist/cjs/ObjectId.js +0 -54
  19. package/dist/cjs/attributes.js +0 -64
  20. package/dist/cjs/checkValue.js +0 -26
  21. package/dist/cjs/clickedElement.js +0 -48
  22. package/dist/cjs/core.js +0 -33
  23. package/dist/cjs/createUpdate.js +0 -188
  24. package/dist/cjs/cssPath.js +0 -60
  25. package/dist/cjs/dataQuery.js +0 -280
  26. package/dist/cjs/dom.js +0 -29
  27. package/dist/cjs/domParser.js +0 -44
  28. package/dist/cjs/dotNotationToObject.js +0 -103
  29. package/dist/cjs/escapeHtml.js +0 -25
  30. package/dist/cjs/getRelativePath.js +0 -39
  31. package/dist/cjs/getValueFromObject.js +0 -41
  32. package/dist/cjs/index.js +0 -112
  33. package/dist/cjs/init-browser.js +0 -4
  34. package/dist/cjs/isValidDate.js +0 -32
  35. package/dist/cjs/objectToDotNotation.js +0 -53
  36. package/dist/cjs/objectToSearchParams.js +0 -42
  37. package/dist/cjs/operators copy.js +0 -562
  38. package/dist/cjs/operators.js +0 -480
  39. package/dist/cjs/parseTextToHtml.js +0 -27
  40. package/dist/cjs/queryElements.js +0 -155
  41. package/dist/cjs/safeParse.js +0 -169
  42. package/dist/cjs/uid.js +0 -34
  43. package/dist/esm/ObjectId.js +0 -35
  44. package/dist/esm/attributes.js +0 -45
  45. package/dist/esm/checkValue.js +0 -7
  46. package/dist/esm/clickedElement.js +0 -29
  47. package/dist/esm/core.js +0 -14
  48. package/dist/esm/createUpdate.js +0 -185
  49. package/dist/esm/cssPath.js +0 -41
  50. package/dist/esm/dataQuery.js +0 -261
  51. package/dist/esm/dom.js +0 -10
  52. package/dist/esm/domParser.js +0 -25
  53. package/dist/esm/dotNotationToObject.js +0 -84
  54. package/dist/esm/escapeHtml.js +0 -6
  55. package/dist/esm/getRelativePath.js +0 -20
  56. package/dist/esm/getValueFromObject.js +0 -22
  57. package/dist/esm/index.js +0 -93
  58. package/dist/esm/init-browser.js +0 -4
  59. package/dist/esm/isValidDate.js +0 -13
  60. package/dist/esm/objectToDotNotation.js +0 -34
  61. package/dist/esm/objectToSearchParams.js +0 -23
  62. package/dist/esm/operators copy.js +0 -543
  63. package/dist/esm/operators.js +0 -461
  64. package/dist/esm/package.json +0 -3
  65. package/dist/esm/parseTextToHtml.js +0 -8
  66. package/dist/esm/queryElements.js +0 -136
  67. package/dist/esm/safeParse.js +0 -150
  68. package/dist/esm/uid.js +0 -15
package/CHANGELOG.md ADDED
@@ -0,0 +1,2125 @@
1
+ # [1.44.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.43.0...v1.44.0) (2026-07-17)
2
+
3
+
4
+ ### Features
5
+
6
+ * update automated workflow and release configuration for improved semantic release handling ([0ed2578](https://github.com/CoCreate-app/CoCreate-utils/commit/0ed2578ab8fa636038076c0a3ec56f4426213deb))
7
+
8
+ # [1.43.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.42.3...v1.43.0) (2026-07-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update module export to ES6 syntax in release.config.js ([94292aa](https://github.com/CoCreate-app/CoCreate-utils/commit/94292aa0c6cb730a052ed6ae582672b1f9ddb19f))
14
+
15
+
16
+ ### Features
17
+
18
+ * add AST evaluation engine and core operator engine in operators.v1.js ([75ac414](https://github.com/CoCreate-app/CoCreate-utils/commit/75ac414a92f6e5a6d1d062c3061010afa639f658))
19
+ * implement universal stateless AST operator engine in operators.ast.js ([432c083](https://github.com/CoCreate-app/CoCreate-utils/commit/432c083b51168419ebb5293508ea132c0ae94dd4))
20
+
21
+ ## [1.42.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.42.2...v1.42.3) (2026-07-11)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * if query is empty, return true in queryData ([ab76c21](https://github.com/CoCreate-app/CoCreate-utils/commit/ab76c21ff2fad97f9ed11981ffd3120ba8561251))
27
+ * merge conflicts and update package exports for CommonJS support ([259e489](https://github.com/CoCreate-app/CoCreate-utils/commit/259e489cff2f764bfc00a54e2ccd144558a37efd))
28
+ * minor improvements ([d9686fd](https://github.com/CoCreate-app/CoCreate-utils/commit/d9686fda4631c893f3fb360baf28fe941b623d89))
29
+ * package exports and main/module paths for better compatibility ([1c3ee8f](https://github.com/CoCreate-app/CoCreate-utils/commit/1c3ee8f95028804140a5039dbbd67b29d511026e))
30
+ * Remove safeParse exports and imports ([a120faf](https://github.com/CoCreate-app/CoCreate-utils/commit/a120faf2f2e0652afaafa847b9662c36de53b558))
31
+ * removed dist from git ignore to include built files in the repository ([001aa9d](https://github.com/CoCreate-app/CoCreate-utils/commit/001aa9d8fa659897f699b3da43c7c10049e061bb))
32
+ * removed post install and add add packages to apprved list ([08d5ca3](https://github.com/CoCreate-app/CoCreate-utils/commit/08d5ca3cbf1fbc7d095017449c2cd72668227161))
33
+ * root factory variable Module ([2d99013](https://github.com/CoCreate-app/CoCreate-utils/commit/2d9901364d435e8f02a0701a6fa578d55391a683))
34
+ * semantic version handling ([fd9156a](https://github.com/CoCreate-app/CoCreate-utils/commit/fd9156a67728e9382c3ec16b534972ba9ff27b3a))
35
+
36
+ ## [1.42.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.42.1...v1.42.2) (2026-03-04)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * suppuport for common.js ([384bb7c](https://github.com/CoCreate-app/CoCreate-utils/commit/384bb7c5f68a585ec322cc0c0c322ae1ef97bc09))
42
+ * update to exports ([e55e9a0](https://github.com/CoCreate-app/CoCreate-utils/commit/e55e9a031bd6044ed250c3b3e0824c0f2bac0069))
43
+
44
+ ## [1.42.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.42.0...v1.42.1) (2026-03-04)
45
+
46
+
47
+ ### Bug Fixes
48
+
49
+ * index.cjs ([3d74325](https://github.com/CoCreate-app/CoCreate-utils/commit/3d74325bc406161a97348be43a510c1c180fbc6e))
50
+
51
+ # [1.42.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.41.2...v1.42.0) (2026-03-01)
52
+
53
+
54
+ ### Features
55
+
56
+ * add utility functions for date validation and operator processing ([6649ca4](https://github.com/CoCreate-app/CoCreate-utils/commit/6649ca45218adafa14030e998c8a004da30a9397))
57
+
58
+ ## [1.41.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.41.1...v1.41.2) (2026-02-28)
59
+
60
+
61
+ ### Bug Fixes
62
+
63
+ * root factory variable Module ([c723787](https://github.com/CoCreate-app/CoCreate-utils/commit/c7237877d833976c821eeb322fd18b3e92f7fd37))
64
+
65
+ ## [1.41.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.41.0...v1.41.1) (2026-02-04)
66
+
67
+
68
+ ### Bug Fixes
69
+
70
+ * update worklow ([5a12bfc](https://github.com/CoCreate-app/CoCreate-utils/commit/5a12bfc15a3be0161592ad041293b876dd92d186))
71
+
72
+ # [1.41.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.40.1...v1.41.0) (2025-11-16)
73
+
74
+
75
+ ### Features
76
+
77
+ * add uid function to generate UUIDs with customizable length ([7103971](https://github.com/CoCreate-app/CoCreate-utils/commit/71039712fe19d37bacdd5cd23db3366dd6b16ccb))
78
+
79
+ ## [1.40.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.40.0...v1.40.1) (2025-10-10)
80
+
81
+
82
+ ### Bug Fixes
83
+
84
+ * refine getRelativePath handling for localhost and improve getValueFromObject validation ([b7bd32f](https://github.com/CoCreate-app/CoCreate-utils/commit/b7bd32fa83d503108e9398e40c1c519caadb8ed5))
85
+
86
+ # [1.40.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.39.2...v1.40.0) (2025-10-08)
87
+
88
+
89
+ ### Features
90
+
91
+ * add getRelativePath function to compute relative paths based on current location ([786ed1b](https://github.com/CoCreate-app/CoCreate-utils/commit/786ed1b642febad9c5fda1c9f5534e829f5fd6c6))
92
+ * enhance getRelativePath function to handle default path and localhost scenarios ([cd0b369](https://github.com/CoCreate-app/CoCreate-utils/commit/cd0b3692b1753d06805670c59d832a00e7b85a64))
93
+
94
+ ## [1.39.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.39.1...v1.39.2) (2025-09-01)
95
+
96
+
97
+ ### Bug Fixes
98
+
99
+ * improve media query handling in checkMediaQueries function ([cab86d6](https://github.com/CoCreate-app/CoCreate-utils/commit/cab86d6b43bb1739a0b62e28a826b5bdebab5e03))
100
+
101
+ ## [1.39.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.39.0...v1.39.1) (2025-05-01)
102
+
103
+
104
+ ### Bug Fixes
105
+
106
+ * update [@cocreate](https://github.com/cocreate) dependencies ([c5dee31](https://github.com/CoCreate-app/CoCreate-utils/commit/c5dee31d6fc34ee817da8e6d38c8b51902d2b3bd))
107
+
108
+ # [1.39.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.38.0...v1.39.0) (2025-04-30)
109
+
110
+
111
+ ### Bug Fixes
112
+
113
+ * added css-loader ([6c004bb](https://github.com/CoCreate-app/CoCreate-utils/commit/6c004bb47bea3034717bfd728bd4eb4b12a01fa3))
114
+ * code comments ([ecfffef](https://github.com/CoCreate-app/CoCreate-utils/commit/ecfffef9b4a45aaec0fb88d155ee3a4b3c846e9a))
115
+ * queryTypesRegex ([ffb701a](https://github.com/CoCreate-app/CoCreate-utils/commit/ffb701af15bec5e369b99f2166bfc8d849a1d6fd))
116
+ * update query attributes ([b55cb88](https://github.com/CoCreate-app/CoCreate-utils/commit/b55cb88f31048b4dc92b0087949aa5a7b61dae7f))
117
+ * updated cocreate modules versions ([c5159ba](https://github.com/CoCreate-app/CoCreate-utils/commit/c5159ba91c6e17e0a3abe9a26a1070256b1386d8))
118
+ * webpack.config and devdependencies ([3069907](https://github.com/CoCreate-app/CoCreate-utils/commit/306990780e38edf216d79e3a26a79a569c84b628))
119
+
120
+
121
+ ### Features
122
+
123
+ * New helper functions ([7bd41b8](https://github.com/CoCreate-app/CoCreate-utils/commit/7bd41b84cad45780370abe8b9d89d16aadb7213e))
124
+
125
+ # [1.38.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.37.3...v1.38.0) (2025-04-11)
126
+
127
+
128
+ ### Bug Fixes
129
+
130
+ * query elements ([663eec4](https://github.com/CoCreate-app/CoCreate-utils/commit/663eec46c92716c298e45cd4fa6ec48be616a9a1))
131
+ * Selector === "" retuning null ([e8fd9fb](https://github.com/CoCreate-app/CoCreate-utils/commit/e8fd9fb726f78477e9ea5a15e9bf08097bc9250f))
132
+ * special selector split ([94dd267](https://github.com/CoCreate-app/CoCreate-utils/commit/94dd267d4028945c9813c4bc7be33bcc7d0494d3))
133
+ * variable typo selector ([fe101f5](https://github.com/CoCreate-app/CoCreate-utils/commit/fe101f5a9c728d054466b21524cfc2b0ece07e8a))
134
+
135
+
136
+ ### Features
137
+
138
+ * improve queryElements() ([0e05425](https://github.com/CoCreate-app/CoCreate-utils/commit/0e05425fc68394004ef2c78f3bd2004447b2233a))
139
+ * prefix-document to query document ([21644d9](https://github.com/CoCreate-app/CoCreate-utils/commit/21644d940e1f20530f5594b751d596b4aa431fc4))
140
+
141
+ ## [1.37.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.37.2...v1.37.3) (2024-12-22)
142
+
143
+
144
+ ### Bug Fixes
145
+
146
+ * handling updates for arrays using dotnotation ([e227054](https://github.com/CoCreate-app/CoCreate-utils/commit/e2270546f349a1a86f2d858e6e779c98b5cc9a7f))
147
+
148
+ ## [1.37.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.37.1...v1.37.2) (2024-12-14)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * $delete, $unset, $slice use splice to modify array ([ecb5859](https://github.com/CoCreate-app/CoCreate-utils/commit/ecb58596eae5f7c7884e39ec534dfa62a8db81ac))
154
+
155
+ ## [1.37.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.37.0...v1.37.1) (2024-12-14)
156
+
157
+
158
+ ### Bug Fixes
159
+
160
+ * $delete, $unset, $slice use splice to modify array ([674d17c](https://github.com/CoCreate-app/CoCreate-utils/commit/674d17cc9c54c72293b919ec349f0c5131891c73))
161
+
162
+ # [1.37.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.36.0...v1.37.0) (2024-12-09)
163
+
164
+
165
+ ### Features
166
+
167
+ * if queriedElement has a contentDocument the next query will be on the contentDocument ([190bd70](https://github.com/CoCreate-app/CoCreate-utils/commit/190bd7076c172ee7477e509845f79a04b2d50f12))
168
+ * queriedElements support frameDocument query ([768cbce](https://github.com/CoCreate-app/CoCreate-utils/commit/768cbce0cc2ef5e759521396aa76bb603046dd1f))
169
+
170
+ # [1.36.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.35.0...v1.36.0) (2024-11-04)
171
+
172
+
173
+ ### Bug Fixes
174
+
175
+ * pretier.config.js and file formating ([70a49d7](https://github.com/CoCreate-app/CoCreate-utils/commit/70a49d750d9431754eda0858367d6db888208430))
176
+
177
+
178
+ ### Features
179
+
180
+ * add prettier.config.js and format files ([ff9e566](https://github.com/CoCreate-app/CoCreate-utils/commit/ff9e5663151b59d6f3e70c473d84f84561881696))
181
+ * add prettier.config.js and format files ([8b2ce50](https://github.com/CoCreate-app/CoCreate-utils/commit/8b2ce50cefa8de3d21a31d56f054a7c65f4cf242))
182
+
183
+ # [1.35.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.34.3...v1.35.0) (2024-11-02)
184
+
185
+
186
+ ### Bug Fixes
187
+
188
+ * assign clickedElementListenerAdded = true and improve eroor catching ([e8caa1d](https://github.com/CoCreate-app/CoCreate-utils/commit/e8caa1d5818eff8b44ba552446faac2533ba1d46))
189
+ * csspathformating and removed dead code ([fb7da92](https://github.com/CoCreate-app/CoCreate-utils/commit/fb7da920947ccb1b12ab56a08e3e755610ee0a92))
190
+
191
+
192
+ ### Features
193
+
194
+ * dotNotationToObject improved array support and dynamically create an index with aplha charater to represent the group index [a] ([75c51cf](https://github.com/CoCreate-app/CoCreate-utils/commit/75c51cf4c6e6a0338ca16a8924a07d2e84f5e06d))
195
+
196
+ ## [1.34.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.34.2...v1.34.3) (2024-07-09)
197
+
198
+
199
+ ### Bug Fixes
200
+
201
+ * $pull continue if key does not exist ([41f44a0](https://github.com/CoCreate-app/CoCreate-utils/commit/41f44a0f374ce2f264bc5cfcf37fae0279559351))
202
+
203
+ ## [1.34.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.34.1...v1.34.2) (2024-06-23)
204
+
205
+
206
+ ### Bug Fixes
207
+
208
+ * bump dependencies ([c182805](https://github.com/CoCreate-app/CoCreate-utils/commit/c182805904267db3b47c54ec6c29df222ef35741))
209
+
210
+ ## [1.34.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.34.0...v1.34.1) (2024-06-23)
211
+
212
+
213
+ ### Bug Fixes
214
+
215
+ * update dependencies ([e9dc689](https://github.com/CoCreate-app/CoCreate-utils/commit/e9dc6898ed20f61829805676a23ca912a09c1697))
216
+
217
+ # [1.34.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.7...v1.34.0) (2024-06-12)
218
+
219
+
220
+ ### Bug Fixes
221
+
222
+ * bump cocreate dependencies ([08a6820](https://github.com/CoCreate-app/CoCreate-utils/commit/08a68208699370ba5bef8fce082d9d038837f28d))
223
+ * continue if property is $options ([ea10a5a](https://github.com/CoCreate-app/CoCreate-utils/commit/ea10a5a2dce77390cf3aced0f881e66ad8b5df16))
224
+ * handling $inc operator update ([2260162](https://github.com/CoCreate-app/CoCreate-utils/commit/22601620df4a2aaaa0f16b00e907bbe6b164b315))
225
+ * svg icon class ([edef3c2](https://github.com/CoCreate-app/CoCreate-utils/commit/edef3c2bc9cd98f9c60c60b7a783d83473f3dd9a))
226
+
227
+
228
+ ### Features
229
+
230
+ * suport options for regex operator ([78a3c4d](https://github.com/CoCreate-app/CoCreate-utils/commit/78a3c4d33e7e6d8ec957d94e92a1b740865e0307))
231
+
232
+ ## [1.33.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.6...v1.33.7) (2024-04-29)
233
+
234
+
235
+ ### Bug Fixes
236
+
237
+ * bump cocreate dependencies ([496206b](https://github.com/CoCreate-app/CoCreate-utils/commit/496206be2b3df39e7debce7f04f4f72404cc36f8))
238
+
239
+ ## [1.33.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.5...v1.33.6) (2024-02-19)
240
+
241
+
242
+ ### Bug Fixes
243
+
244
+ * date comaprison ([f4b2994](https://github.com/CoCreate-app/CoCreate-utils/commit/f4b2994b96a15bcf8216b164b4cc13ce8eec897e))
245
+
246
+ ## [1.33.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.4...v1.33.5) (2024-02-17)
247
+
248
+
249
+ ### Bug Fixes
250
+
251
+ * continue if specialSelector is empty ([af9a36e](https://github.com/CoCreate-app/CoCreate-utils/commit/af9a36e2d2ae0dcc62195bd8a049a7c0f0cd2901))
252
+
253
+ ## [1.33.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.3...v1.33.4) (2024-02-15)
254
+
255
+
256
+ ### Bug Fixes
257
+
258
+ * $addToSet creates array if undefined ([64d02f9](https://github.com/CoCreate-app/CoCreate-utils/commit/64d02f9d3ee01011ee3701e781850b5e21a16ba6))
259
+
260
+ ## [1.33.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.2...v1.33.3) (2024-02-14)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * createUpdate added to utils to be accessible by other modues ([a54f039](https://github.com/CoCreate-app/CoCreate-utils/commit/a54f03966e80b37cebdf7ee42dbd0b2efb530572))
266
+
267
+ ## [1.33.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.1...v1.33.2) (2024-02-13)
268
+
269
+
270
+ ### Bug Fixes
271
+
272
+ * selector split ([fd205fa](https://github.com/CoCreate-app/CoCreate-utils/commit/fd205faa2dfb2fef5a57526a9630d77974229ad6))
273
+
274
+ ## [1.33.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.33.0...v1.33.1) (2024-02-05)
275
+
276
+
277
+ ### Bug Fixes
278
+
279
+ * Removed https://cdn.cocreate.app/latest/CoCreate.min.css ([93e7304](https://github.com/CoCreate-app/CoCreate-utils/commit/93e7304cd0a391f1e59465a12c52fcc0f395de79))
280
+
281
+ # [1.33.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.32.0...v1.33.0) (2024-01-30)
282
+
283
+
284
+ ### Bug Fixes
285
+
286
+ * removed sortDataOld ([9755f81](https://github.com/CoCreate-app/CoCreate-utils/commit/9755f815fedd5156ea4a9c2b11b4896c10441424))
287
+ * supput values null, false, undefined, 0 ([954c126](https://github.com/CoCreate-app/CoCreate-utils/commit/954c1262b37c42d8f0badf9fe1c5855f4e244b8e))
288
+
289
+
290
+ ### Features
291
+
292
+ * queryData $type, $mod, $where operators ([94684a0](https://github.com/CoCreate-app/CoCreate-utils/commit/94684a0959fbf353d77ae363b522d5e17f209af0))
293
+
294
+ # [1.32.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.31.0...v1.32.0) (2024-01-17)
295
+
296
+
297
+ ### Bug Fixes
298
+
299
+ * getValueFromObject conditions and param names ([2fd7387](https://github.com/CoCreate-app/CoCreate-utils/commit/2fd73873cc42d0a22e43e04fee35f31227790f7b))
300
+ * getValueFromObject param trowError boolean will trow erro if property does not exist vs returning undefined ([39a9cab](https://github.com/CoCreate-app/CoCreate-utils/commit/39a9cabb9e109d1aae6a695ba47d76c95c8581f6))
301
+ * renamed isMatch to queryMatch ([b3c9429](https://github.com/CoCreate-app/CoCreate-utils/commit/b3c942950661b1d906c9f8a77a3bbd2f5693fd47))
302
+ * update to support new query system ([a267b52](https://github.com/CoCreate-app/CoCreate-utils/commit/a267b5260955a631330a2b22bd9fb316a00004c6))
303
+
304
+
305
+ ### Features
306
+
307
+ * query() function to handle queries similar to mongodb ([164bf45](https://github.com/CoCreate-app/CoCreate-utils/commit/164bf45d44f620fe8e6a4cf75fe744be68277d6c))
308
+ * sort by multiple keys ([7872a53](https://github.com/CoCreate-app/CoCreate-utils/commit/7872a5308bcf510e40385c57b45c0d899a40295a))
309
+
310
+ # [1.31.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.30.0...v1.31.0) (2024-01-08)
311
+
312
+
313
+ ### Features
314
+
315
+ * bumped CoCreate dependencies to their latest versions ([b963ae6](https://github.com/CoCreate-app/CoCreate-utils/commit/b963ae686da7e0af9dd17993738c0c4b4d9e095b))
316
+
317
+ # [1.30.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.29.0...v1.30.0) (2023-11-25)
318
+
319
+
320
+ ### Bug Fixes
321
+
322
+ * update licensing details ([51ef15f](https://github.com/CoCreate-app/CoCreate-utils/commit/51ef15fc8e8b367cfab80d9dd914cde677400699))
323
+
324
+
325
+ ### Features
326
+
327
+ * upgrade dependencies for latest features and fixes ([a2e112d](https://github.com/CoCreate-app/CoCreate-utils/commit/a2e112d91cdcc30350bce76c84473fa3867d0e0d))
328
+
329
+ # [1.29.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.28.0...v1.29.0) (2023-11-25)
330
+
331
+
332
+ ### Bug Fixes
333
+
334
+ * update nav, edit button and css path ([ec4face](https://github.com/CoCreate-app/CoCreate-utils/commit/ec4face08667e426dc54f86a4b55c2d6a80442b1))
335
+
336
+
337
+ ### Features
338
+
339
+ * upgrade dependencies for latest features and fixes ([9e85101](https://github.com/CoCreate-app/CoCreate-utils/commit/9e85101e3fd9a67544fbe4ecd53aaa2cb20453d4))
340
+
341
+ # [1.28.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.27.4...v1.28.0) (2023-11-19)
342
+
343
+
344
+ ### Features
345
+
346
+ * update dependecies for th latest features and bug fixes ([a28b912](https://github.com/CoCreate-app/CoCreate-utils/commit/a28b912ccccc9253e99fa6ba7e59f83b797d9ffa))
347
+
348
+ ## [1.27.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.27.3...v1.27.4) (2023-11-18)
349
+
350
+
351
+ ### Bug Fixes
352
+
353
+ * $in operator support ([891577e](https://github.com/CoCreate-app/CoCreate-utils/commit/891577eb61ba2760b2441f1e031e759242ba5797))
354
+ * improved handeling of $nin operator ([740c98f](https://github.com/CoCreate-app/CoCreate-utils/commit/740c98ff080751d1da83ccadef80d142a42a5ba7))
355
+
356
+ ## [1.27.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.27.2...v1.27.3) (2023-11-16)
357
+
358
+
359
+ ### Bug Fixes
360
+
361
+ * improved handeling of logical operators ([e020f59](https://github.com/CoCreate-app/CoCreate-utils/commit/e020f59f508e5f8d155972cf852b7ef810703cc8))
362
+
363
+ ## [1.27.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.27.1...v1.27.2) (2023-11-12)
364
+
365
+
366
+ ### Bug Fixes
367
+
368
+ * bump dependencies for latest features ([6e2cd90](https://github.com/CoCreate-app/CoCreate-utils/commit/6e2cd900c2fbdeb22b235830814446521f34d6a4))
369
+
370
+ ## [1.27.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.27.0...v1.27.1) (2023-11-09)
371
+
372
+
373
+ ### Bug Fixes
374
+
375
+ * meta name typo ([e629a89](https://github.com/CoCreate-app/CoCreate-utils/commit/e629a89c8a3943d9ef8eaa891f41756cd766e6bb))
376
+ * ObjectId use new Date(new Date().toISOString()).getTime() instead of date.now() preventing 24 possible collisions in a day ([89236e5](https://github.com/CoCreate-app/CoCreate-utils/commit/89236e534d958399827f7ad0fa9345bdecc06497))
377
+ * update host ([d234c14](https://github.com/CoCreate-app/CoCreate-utils/commit/d234c1459da3064105ba50cfef9bbdb0fe484cd9))
378
+
379
+ # [1.27.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.26.2...v1.27.0) (2023-11-03)
380
+
381
+
382
+ ### Bug Fixes
383
+
384
+ * favicon.ico path ([4474c25](https://github.com/CoCreate-app/CoCreate-utils/commit/4474c25089a0953c6d24264152fe3b9d690dce25))
385
+ * update dependencies to the lates versions ([d0bd60b](https://github.com/CoCreate-app/CoCreate-utils/commit/d0bd60bb21b2f555ddee0412861a9e7510173fb7))
386
+
387
+
388
+ ### Features
389
+
390
+ * checkMediaQuries ([f9322d2](https://github.com/CoCreate-app/CoCreate-utils/commit/f9322d26261a4ee7007064115c86303a78534034))
391
+ * isValidDate converts date to system local date ([4519b7c](https://github.com/CoCreate-app/CoCreate-utils/commit/4519b7ce2b2d739bd9c76dd0605f91c41837d7d0))
392
+
393
+ ## [1.26.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.26.1...v1.26.2) (2023-10-25)
394
+
395
+
396
+ ### Bug Fixes
397
+
398
+ * bump dependencies ([251e017](https://github.com/CoCreate-app/CoCreate-utils/commit/251e0176b5bde517e28601fa823945d003c81489))
399
+
400
+ ## [1.26.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.26.0...v1.26.1) (2023-10-24)
401
+
402
+
403
+ ### Bug Fixes
404
+
405
+ * initialize counter with a random number from 1000 - 5000 ([0d82bf2](https://github.com/CoCreate-app/CoCreate-utils/commit/0d82bf289743a5db7ab431261b3ff343f9cc6c19))
406
+
407
+ # [1.26.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.25.4...v1.26.0) (2023-10-22)
408
+
409
+
410
+ ### Features
411
+
412
+ * ObjectId() returns an object containg the parts iof the _id along with a toString() function ([9cd7b81](https://github.com/CoCreate-app/CoCreate-utils/commit/9cd7b817282af1e0b3adaab7df5d059df2f1c0bc))
413
+
414
+ ## [1.25.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.25.3...v1.25.4) (2023-10-14)
415
+
416
+
417
+ ### Bug Fixes
418
+
419
+ * bump dependencies ([a6e8f6d](https://github.com/CoCreate-app/CoCreate-utils/commit/a6e8f6d38ad30053f356be53cb5bf75454e1991a))
420
+
421
+ ## [1.25.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.25.2...v1.25.3) (2023-10-09)
422
+
423
+
424
+ ### Bug Fixes
425
+
426
+ * bump dependencies ([6153d84](https://github.com/CoCreate-app/CoCreate-utils/commit/6153d840af8c3b7255df604d12ce8297fbf6c215))
427
+
428
+ ## [1.25.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.25.1...v1.25.2) (2023-10-09)
429
+
430
+
431
+ ### Bug Fixes
432
+
433
+ * bump dependencies ([64160f9](https://github.com/CoCreate-app/CoCreate-utils/commit/64160f9ffba34a02c603f353876b5e10a9bce491))
434
+
435
+ ## [1.25.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.25.0...v1.25.1) (2023-10-09)
436
+
437
+
438
+ ### Bug Fixes
439
+
440
+ * bump cocreate dependency versions ([fb527b1](https://github.com/CoCreate-app/CoCreate-utils/commit/fb527b136fb19667dc1c4f1a127b659ef9e4e3bb))
441
+
442
+ # [1.25.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.24.2...v1.25.0) (2023-10-09)
443
+
444
+
445
+ ### Bug Fixes
446
+
447
+ * improved validating dates from strings ([a0d6fa1](https://github.com/CoCreate-app/CoCreate-utils/commit/a0d6fa198ee0d5642bc1a51d356216f840aa7aae))
448
+ * ObjectId() retuns an _id string, ObjectId(some_id) will validate and thorw an error if not valid ([cb50091](https://github.com/CoCreate-app/CoCreate-utils/commit/cb500913969cfcfd2b71c7d730b8358601ebcc2b))
449
+
450
+
451
+ ### Features
452
+
453
+ * isValidDate() - validates the string and returns a date object or the original value ([780574b](https://github.com/CoCreate-app/CoCreate-utils/commit/780574be515926896d3c621a0745a1f750cd7487))
454
+
455
+ ## [1.24.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.24.1...v1.24.2) (2023-09-18)
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * Add path and pathname ([fd834cc](https://github.com/CoCreate-app/CoCreate-utils/commit/fd834cc07e91588f7cfb3e82f68cfd36a126d313))
461
+ * Update dCoCreate dpendencies to latest versions ([881ce68](https://github.com/CoCreate-app/CoCreate-utils/commit/881ce68616693560a557b47d9d3142dd8fec397c))
462
+
463
+ ## [1.24.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.24.0...v1.24.1) (2023-08-21)
464
+
465
+
466
+ ### Bug Fixes
467
+
468
+ * bump dependencies ([9ff1244](https://github.com/CoCreate-app/CoCreate-utils/commit/9ff12448c3699fc7578417c3fd1dff5c8d52998d))
469
+
470
+ # [1.24.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.23.1...v1.24.0) (2023-08-21)
471
+
472
+
473
+ ### Features
474
+
475
+ * Update cocreate dependencies for the latest features and bug fixes ([5bab743](https://github.com/CoCreate-app/CoCreate-utils/commit/5bab7434e48eafbed46607f03fde4d32e24eb7e4))
476
+
477
+ ## [1.23.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.23.0...v1.23.1) (2023-08-21)
478
+
479
+
480
+ ### Bug Fixes
481
+
482
+ * /dist/CoCreate.js updated to https://CoCreate.app/dist/CoCreate.js ([1d8af47](https://github.com/CoCreate-app/CoCreate-utils/commit/1d8af47fbf25cd6de8b8c733ca672746318c5b36))
483
+ * replace cdn with /dist ([e27bc6a](https://github.com/CoCreate-app/CoCreate-utils/commit/e27bc6a21257c152890ea8b265738a83cb63baa5))
484
+ * update file uploader ([dc6c59e](https://github.com/CoCreate-app/CoCreate-utils/commit/dc6c59eab9687eab8ef7d4bf4510e0d0b9bd7029))
485
+
486
+ # [1.23.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.22.0...v1.23.0) (2023-08-17)
487
+
488
+
489
+ ### Features
490
+
491
+ * bump cocreate dependencies for the latest updates and features ([5c008fd](https://github.com/CoCreate-app/CoCreate-utils/commit/5c008fd099c992b8e10a4e49df68d003edf6ab9e))
492
+
493
+ # [1.22.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.16...v1.22.0) (2023-08-16)
494
+
495
+
496
+ ### Bug Fixes
497
+
498
+ * cleaned code and removed unused functions ([7e99c1f](https://github.com/CoCreate-app/CoCreate-utils/commit/7e99c1f59c22ea4f32a913d317e1475aa96105e2))
499
+ * crud attributes renamed ([97fc1fd](https://github.com/CoCreate-app/CoCreate-utils/commit/97fc1fde4c2f4ae018a0c81e38ff4ff8da72c978))
500
+ * removed commented functions ([b2295cd](https://github.com/CoCreate-app/CoCreate-utils/commit/b2295cddecb44a5d0cd95e30d2279121a3b0aec7))
501
+ * replace -target -selector ([0c4185a](https://github.com/CoCreate-app/CoCreate-utils/commit/0c4185a0673b3a91732f9990c9c73dd1f03b2274))
502
+ * selector bug when element type is not present ([24802a2](https://github.com/CoCreate-app/CoCreate-utils/commit/24802a26b8bbfd04a0d7ba13ed05e488cfd5af3c))
503
+ * Trim special selectors before using them in the switch statement ([f1072f8](https://github.com/CoCreate-app/CoCreate-utils/commit/f1072f8673617dbeeff969bfccd64e7344150cbd))
504
+ * webpack.config and package.json make use of mode=production instead of process.env ([9380425](https://github.com/CoCreate-app/CoCreate-utils/commit/9380425129194dd4eb6f3ea3dad8a1427af6e44d))
505
+
506
+
507
+ ### Features
508
+
509
+ * Add isObjectEmpty utility function ([b0932e1](https://github.com/CoCreate-app/CoCreate-utils/commit/b0932e1612b239c43dd250fe86039f0f72eebbca))
510
+ * name attribute and variable renamed to key ([48af4cd](https://github.com/CoCreate-app/CoCreate-utils/commit/48af4cd3d399d9e453f7fc5ec79ee38f8bf42116))
511
+ * New function for getting elements by attribute defined selector type ([7d27cb2](https://github.com/CoCreate-app/CoCreate-utils/commit/7d27cb2326e2da6005e245e2bd9a0c875cad1f83))
512
+ * Refactor query functions, add queryElements function ([261170b](https://github.com/CoCreate-app/CoCreate-utils/commit/261170b52ae17a0e3049be7de16c88d0c2fcc53e))
513
+ * update template_id to render-selector attribute. update filter attributes to filter selector-attributes ([0dfab9c](https://github.com/CoCreate-app/CoCreate-utils/commit/0dfab9c33874d25136d1e3544db677eaf6b3f260))
514
+
515
+ ## [1.21.16](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.15...v1.21.16) (2023-06-14)
516
+
517
+
518
+ ### Bug Fixes
519
+
520
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([5b8c88a](https://github.com/CoCreate-app/CoCreate-utils/commit/5b8c88a8c1777263f2bf1926bff31ca69153af8e))
521
+
522
+ ## [1.21.15](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.14...v1.21.15) (2023-06-11)
523
+
524
+
525
+ ### Bug Fixes
526
+
527
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([5f9742b](https://github.com/CoCreate-app/CoCreate-utils/commit/5f9742bfeda6046a33b6047d207eb1860a9501f3))
528
+
529
+ ## [1.21.14](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.13...v1.21.14) (2023-06-11)
530
+
531
+
532
+ ### Bug Fixes
533
+
534
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([7f0d845](https://github.com/CoCreate-app/CoCreate-utils/commit/7f0d84510c7919d50456f17f7ccea1e994c2b53c))
535
+
536
+ ## [1.21.13](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.12...v1.21.13) (2023-06-11)
537
+
538
+
539
+ ### Bug Fixes
540
+
541
+ * testing workflow ([264a1c6](https://github.com/CoCreate-app/CoCreate-utils/commit/264a1c6e1e51bc712398ab3b629a42040ea2e136))
542
+
543
+ ## [1.21.12](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.11...v1.21.12) (2023-06-11)
544
+
545
+
546
+ ### Bug Fixes
547
+
548
+ * testing workflow ([21fcae7](https://github.com/CoCreate-app/CoCreate-utils/commit/21fcae7b400c090f72d1a3bd4d2dcac44360e6e5))
549
+
550
+ ## [1.21.11](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.10...v1.21.11) (2023-06-11)
551
+
552
+
553
+ ### Bug Fixes
554
+
555
+ * testing workflow ([b0ec7a4](https://github.com/CoCreate-app/CoCreate-utils/commit/b0ec7a422182139df67b2585072abc11f1c99073))
556
+ * testing workflow ([2941b89](https://github.com/CoCreate-app/CoCreate-utils/commit/2941b89954e18cd603c3297b76e6ca55efb0cc4f))
557
+
558
+ ## [1.21.10](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.9...v1.21.10) (2023-06-11)
559
+
560
+
561
+ ### Bug Fixes
562
+
563
+ * testing workflow ([34b1eeb](https://github.com/CoCreate-app/CoCreate-utils/commit/34b1eeb3e86f01f5aea3cc2284a206a12909e119))
564
+
565
+ ## [1.21.9](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.8...v1.21.9) (2023-06-11)
566
+
567
+
568
+ ### Bug Fixes
569
+
570
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([0777f47](https://github.com/CoCreate-app/CoCreate-utils/commit/0777f4738bcb213ff0ffefa026a1367f9f6db4dc))
571
+
572
+ ## [1.21.8](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.7...v1.21.8) (2023-06-11)
573
+
574
+
575
+ ### Bug Fixes
576
+
577
+ * postintall error ([7df694c](https://github.com/CoCreate-app/CoCreate-utils/commit/7df694cfacd96334cce68b05ffd24e8c56df72f9))
578
+
579
+ ## [1.21.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.6...v1.21.7) (2023-06-11)
580
+
581
+
582
+ ### Bug Fixes
583
+
584
+ * @cocreate/cli moved to dependencies ([32ca0f2](https://github.com/CoCreate-app/CoCreate-utils/commit/32ca0f282cff436096752a1ba0c8703e7dfd52ca))
585
+
586
+ ## [1.21.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.5...v1.21.6) (2023-06-11)
587
+
588
+
589
+ ### Bug Fixes
590
+
591
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([1c9d7d8](https://github.com/CoCreate-app/CoCreate-utils/commit/1c9d7d82f10ecccfbd22479d5b202c326696acac))
592
+
593
+ ## [1.21.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.4...v1.21.5) (2023-06-11)
594
+
595
+
596
+ ### Bug Fixes
597
+
598
+ * renamed hosts to host. the value can be a string or an array of strings ([9a2dff9](https://github.com/CoCreate-app/CoCreate-utils/commit/9a2dff94863a0f7e3f7361b817d9d4dfb1753f3c))
599
+
600
+ ## [1.21.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.3...v1.21.4) (2023-06-10)
601
+
602
+
603
+ ### Bug Fixes
604
+
605
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([eff26e1](https://github.com/CoCreate-app/CoCreate-utils/commit/eff26e13969e34fdc5f27bb2bd75a4041f06578f))
606
+
607
+ ## [1.21.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.2...v1.21.3) (2023-06-04)
608
+
609
+
610
+ ### Bug Fixes
611
+
612
+ * Refactor CoCreate.config.js to remove hard-coded credentials ([d8c1ab0](https://github.com/CoCreate-app/CoCreate-utils/commit/d8c1ab0ff26f6377216f95dbfd57e5a2d966d05d))
613
+
614
+ ## [1.21.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.1...v1.21.2) (2023-06-04)
615
+
616
+
617
+ ### Bug Fixes
618
+
619
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([b625b44](https://github.com/CoCreate-app/CoCreate-utils/commit/b625b447c937545abc72e5e849c3f4f0beea8966))
620
+
621
+ ## [1.21.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.21.0...v1.21.1) (2023-06-04)
622
+
623
+
624
+ ### Bug Fixes
625
+
626
+ * [@v3](https://github.com/v3) ([115db0d](https://github.com/CoCreate-app/CoCreate-utils/commit/115db0d653a6c6003109e9cca67fbce1561a3a17))
627
+
628
+ # [1.21.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.11...v1.21.0) (2023-06-04)
629
+
630
+
631
+ ### Bug Fixes
632
+
633
+ * **semantic-release:** worklow error solved by running node version 14 ([13af687](https://github.com/CoCreate-app/CoCreate-utils/commit/13af68775507a53461fff3b421ebc11dbba7ac4d))
634
+
635
+
636
+ ### Features
637
+
638
+ * dotNotationToObject will delete a key if its value is undefined. ([7689011](https://github.com/CoCreate-app/CoCreate-utils/commit/768901151cb6d58adfd8c32eb6e84f466a96ac64))
639
+
640
+ ## [1.20.11](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.10...v1.20.11) (2023-06-02)
641
+
642
+
643
+ ### Bug Fixes
644
+
645
+ * format demo html ([0781405](https://github.com/CoCreate-app/CoCreate-utils/commit/07814055d65483c9e38199a3f9542d24ae038bbc))
646
+
647
+ ## [1.20.10](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.9...v1.20.10) (2023-05-21)
648
+
649
+
650
+ ### Bug Fixes
651
+
652
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([15e76aa](https://github.com/CoCreate-app/CoCreate-utils/commit/15e76aa21facfd82c46851e5838f746a9e1d145b))
653
+
654
+ ## [1.20.9](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.8...v1.20.9) (2023-05-19)
655
+
656
+
657
+ ### Bug Fixes
658
+
659
+ * update packages to latest version. This commit updates various packages in the dependencies section of the package.json file to their latest published versions, thereby fixing multiple bugs and improving overall performance. ([44fd1d1](https://github.com/CoCreate-app/CoCreate-utils/commit/44fd1d1bb5b1d020610becf5b4633c623207f96a))
660
+
661
+ ## [1.20.8](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.7...v1.20.8) (2023-05-10)
662
+
663
+
664
+ ### Bug Fixes
665
+
666
+ * apikey renamed to key ([04c944b](https://github.com/CoCreate-app/CoCreate-utils/commit/04c944b58b00cb5ee68f3c08e5fa7b382b4e668c))
667
+
668
+ ## [1.20.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.6...v1.20.7) (2023-05-06)
669
+
670
+
671
+ ### Bug Fixes
672
+
673
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([e2a3b43](https://github.com/CoCreate-app/CoCreate-utils/commit/e2a3b43be8ae595f5ef5691bb4ca23e64bc662d4))
674
+
675
+ ## [1.20.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.5...v1.20.6) (2023-05-01)
676
+
677
+
678
+ ### Bug Fixes
679
+
680
+ * update manifest.json to manifest.webmanifest ([a3a589c](https://github.com/CoCreate-app/CoCreate-utils/commit/a3a589c3970e8bbc2a84da9aa3b96838d95d8c35))
681
+
682
+ ## [1.20.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.4...v1.20.5) (2023-05-01)
683
+
684
+
685
+ ### Bug Fixes
686
+
687
+ * replace fontawesome with svg ([27533ff](https://github.com/CoCreate-app/CoCreate-utils/commit/27533ffbb078eb1c30ee46b68d2e702a603e435c))
688
+
689
+ ## [1.20.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.3...v1.20.4) (2023-04-30)
690
+
691
+
692
+ ### Bug Fixes
693
+
694
+ * fullscreen target updated to fullscreen fullscreen-target ([a070010](https://github.com/CoCreate-app/CoCreate-utils/commit/a070010b154dce613b3cec1fd6a9f456405b8006))
695
+ * package-lock.json and pnpm-lock.yaml added to .gitignore ([ac2e244](https://github.com/CoCreate-app/CoCreate-utils/commit/ac2e2448448b8d2c0d2a95b230ec508a7200787b))
696
+ * removed toogle fullscreen icons. now using css content ([b2700fa](https://github.com/CoCreate-app/CoCreate-utils/commit/b2700fa1ce380bfb42a369b1843e236718d2c27c))
697
+
698
+ ## [1.20.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.2...v1.20.3) (2023-04-24)
699
+
700
+
701
+ ### Bug Fixes
702
+
703
+ * updated worrkflows to v3 and node version 16 ([47558e0](https://github.com/CoCreate-app/CoCreate-utils/commit/47558e00e12baeb3d2792afbd3fde4d36657624c))
704
+ * workflow node version updated 16 ([c1ad96d](https://github.com/CoCreate-app/CoCreate-utils/commit/c1ad96d68866758203ffbe3bf90c86c1c7c808fc))
705
+
706
+ ## [1.20.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.1...v1.20.2) (2023-04-24)
707
+
708
+
709
+ ### Bug Fixes
710
+
711
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([87a223d](https://github.com/CoCreate-app/CoCreate-utils/commit/87a223d80fd1f15f5ce5a11c533baa48969911a1))
712
+
713
+ ## [1.20.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.20.0...v1.20.1) (2023-04-24)
714
+
715
+
716
+ ### Bug Fixes
717
+
718
+ * removed uglify.js from dev dependencies ([717a3cc](https://github.com/CoCreate-app/CoCreate-utils/commit/717a3ccd7eec18bbc62e936737cfa2fb4a9c5961))
719
+
720
+ # [1.20.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.7...v1.20.0) (2023-04-24)
721
+
722
+
723
+ ### Features
724
+
725
+ * added pwa manifest ([3692080](https://github.com/CoCreate-app/CoCreate-utils/commit/36920809ee5101bedda992ef005842a34feb3498))
726
+
727
+ ## [1.19.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.6...v1.19.7) (2023-04-13)
728
+
729
+
730
+ ### Bug Fixes
731
+
732
+ * replaced object.entries with Object.keys ([f679614](https://github.com/CoCreate-app/CoCreate-utils/commit/f67961495349a9ce44ca387144c0790684c73ee1))
733
+
734
+ ## [1.19.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.5...v1.19.6) (2023-04-11)
735
+
736
+
737
+ ### Bug Fixes
738
+
739
+ * bump dependencies ([c4e4b22](https://github.com/CoCreate-app/CoCreate-utils/commit/c4e4b22299b8a419d6d2db6fcd788ea62f2088d9))
740
+
741
+ ## [1.19.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.4...v1.19.5) (2023-04-11)
742
+
743
+
744
+ ### Bug Fixes
745
+
746
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([49f3652](https://github.com/CoCreate-app/CoCreate-utils/commit/49f36528a4572491187bb69e5625c626e793c56d))
747
+
748
+ ## [1.19.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.3...v1.19.4) (2023-04-11)
749
+
750
+
751
+ ### Bug Fixes
752
+
753
+ * renamed domans to hosts ([a43e64a](https://github.com/CoCreate-app/CoCreate-utils/commit/a43e64aa6c3ee8def8e7c1ddb2121c678f117576))
754
+
755
+ ## [1.19.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.2...v1.19.3) (2023-03-30)
756
+
757
+
758
+ ### Bug Fixes
759
+
760
+ * bump [@cocreate](https://github.com/cocreate) dependencies' ([ab12c4c](https://github.com/CoCreate-app/CoCreate-utils/commit/ab12c4cc0378418a6a484dea5abc0611e72dd604))
761
+
762
+ ## [1.19.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.1...v1.19.2) (2023-03-16)
763
+
764
+
765
+ ### Bug Fixes
766
+
767
+ * bump dependencies' ([b66fd12](https://github.com/CoCreate-app/CoCreate-utils/commit/b66fd123ff2ec9ec8c5f422c1123366205c2e00c))
768
+
769
+ ## [1.19.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.19.0...v1.19.1) (2023-03-16)
770
+
771
+
772
+ ### Bug Fixes
773
+
774
+ * bump dependencies' ([275260b](https://github.com/CoCreate-app/CoCreate-utils/commit/275260b77e3d3b80ba983b9e80345fa8e88ca778))
775
+
776
+ # [1.19.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.18.4...v1.19.0) (2023-03-16)
777
+
778
+
779
+ ### Features
780
+
781
+ * replaced get-value and set-value with a super charged version of CoCreate-events ([144e773](https://github.com/CoCreate-app/CoCreate-utils/commit/144e773bacb91393eac7cc8b909f8e9ae8921288))
782
+
783
+ ## [1.18.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.18.3...v1.18.4) (2023-02-27)
784
+
785
+
786
+ ### Bug Fixes
787
+
788
+ * getValueFromObject returns empty strings ([d030659](https://github.com/CoCreate-app/CoCreate-utils/commit/d030659a285bed28900bc1c2fd2197addc894cba))
789
+
790
+ ## [1.18.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.18.2...v1.18.3) (2023-02-01)
791
+
792
+
793
+ ### Bug Fixes
794
+
795
+ * bump dependencies ([1ff96fd](https://github.com/CoCreate-app/CoCreate-utils/commit/1ff96fd4e36d067b083547c95c0e0f8b5286230c))
796
+
797
+ ## [1.18.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.18.1...v1.18.2) (2023-02-01)
798
+
799
+
800
+ ### Bug Fixes
801
+
802
+ * improved serchData function ([9ccdeb2](https://github.com/CoCreate-app/CoCreate-utils/commit/9ccdeb20be86e87e50fea2f37cb5d019ca6636bc))
803
+
804
+ ## [1.18.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.18.0...v1.18.1) (2023-01-31)
805
+
806
+
807
+ ### Bug Fixes
808
+
809
+ * bump dependencies ([1923825](https://github.com/CoCreate-app/CoCreate-utils/commit/192382563e0afcbadd0aa3c9fa6aa65f28c397ec))
810
+
811
+ # [1.18.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.26...v1.18.0) (2023-01-31)
812
+
813
+
814
+ ### Features
815
+
816
+ * supports query and search of empty string. ([b3e45e8](https://github.com/CoCreate-app/CoCreate-utils/commit/b3e45e81b27f595d0179f6e01af5555e9315cfa2))
817
+
818
+ ## [1.17.26](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.25...v1.17.26) (2023-01-30)
819
+
820
+
821
+ ### Bug Fixes
822
+
823
+ * bump dependencies ([a1ec5c0](https://github.com/CoCreate-app/CoCreate-utils/commit/a1ec5c01851192a5e0f737eedd00acdc80280785))
824
+
825
+ ## [1.17.25](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.24...v1.17.25) (2023-01-30)
826
+
827
+
828
+ ### Bug Fixes
829
+
830
+ * selectors = [selector] ([7d1d45d](https://github.com/CoCreate-app/CoCreate-utils/commit/7d1d45d4778592284f8da1d9a14bb363adb9c95b))
831
+
832
+ ## [1.17.24](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.23...v1.17.24) (2023-01-30)
833
+
834
+
835
+ ### Bug Fixes
836
+
837
+ * queryDocumentSelectorAll return array ([ae3759d](https://github.com/CoCreate-app/CoCreate-utils/commit/ae3759d8062d1e21d452d3f48fdb6dd66bd71367))
838
+
839
+ ## [1.17.23](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.22...v1.17.23) (2023-01-29)
840
+
841
+
842
+ ### Bug Fixes
843
+
844
+ * bump dependencies ([f794357](https://github.com/CoCreate-app/CoCreate-utils/commit/f7943578bb3a265b6cfed8343cce5307c5e40b53))
845
+
846
+ ## [1.17.22](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.21...v1.17.22) (2023-01-27)
847
+
848
+
849
+ ### Bug Fixes
850
+
851
+ * bump dependencies ([f310a55](https://github.com/CoCreate-app/CoCreate-utils/commit/f310a55935915f70964ff7df808844efe88b6a7f))
852
+
853
+ ## [1.17.21](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.20...v1.17.21) (2023-01-27)
854
+
855
+
856
+ ### Bug Fixes
857
+
858
+ * try to access window.top if fails continue ([c2bd8e6](https://github.com/CoCreate-app/CoCreate-utils/commit/c2bd8e6275ebb6450ffdac7a7d40ffd7837a87bc))
859
+
860
+ ## [1.17.20](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.19...v1.17.20) (2023-01-10)
861
+
862
+
863
+ ### Bug Fixes
864
+
865
+ * bump dependencies ([2f25cc8](https://github.com/CoCreate-app/CoCreate-utils/commit/2f25cc888fe737b3ba2e68fbbb2049583e613c1d))
866
+
867
+ ## [1.17.19](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.18...v1.17.19) (2023-01-09)
868
+
869
+
870
+ ### Bug Fixes
871
+
872
+ * bump dependnecies ([af70876](https://github.com/CoCreate-app/CoCreate-utils/commit/af70876684e901ec45e481edd137a40cc569cbfd))
873
+
874
+ ## [1.17.18](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.17...v1.17.18) (2023-01-09)
875
+
876
+
877
+ ### Bug Fixes
878
+
879
+ * bumpo dependnecies ([b177a5d](https://github.com/CoCreate-app/CoCreate-utils/commit/b177a5d3a20262d750f77918edaeaf15efde658b))
880
+ * query logical operator default set to and, if sort is number and has no value set to 0 ([27f6e87](https://github.com/CoCreate-app/CoCreate-utils/commit/27f6e87db9ab13e9903d57b17f5e0850d8357220))
881
+
882
+ ## [1.17.17](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.16...v1.17.17) (2023-01-06)
883
+
884
+
885
+ ### Bug Fixes
886
+
887
+ * bump dependencies, worklow [@v3](https://github.com/v3) ([fb77bfe](https://github.com/CoCreate-app/CoCreate-utils/commit/fb77bfe5784fc41cd0faf8f015ee241d80607b91))
888
+ * edit in github btn styles ([8e09f99](https://github.com/CoCreate-app/CoCreate-utils/commit/8e09f99a86995328b2616e0532155741f9efd890))
889
+
890
+ ## [1.17.16](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.15...v1.17.16) (2023-01-05)
891
+
892
+
893
+ ### Bug Fixes
894
+
895
+ * bump dependencies ([38e764e](https://github.com/CoCreate-app/CoCreate-utils/commit/38e764e72fc91f09b6435ceea2389e1c21b0d4f2))
896
+
897
+ ## [1.17.15](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.14...v1.17.15) (2023-01-05)
898
+
899
+
900
+ ### Bug Fixes
901
+
902
+ * bump cdn to 1.39.4 ([ad89cdd](https://github.com/CoCreate-app/CoCreate-utils/commit/ad89cdd4b84f894da6962c0b1f0531b584d5b72a))
903
+ * bump dependencies ([a509975](https://github.com/CoCreate-app/CoCreate-utils/commit/a50997515eb03121175b1cb58db00abf1e3fe708))
904
+
905
+ ## [1.17.14](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.13...v1.17.14) (2023-01-01)
906
+
907
+
908
+ ### Bug Fixes
909
+
910
+ * docs sanbox overflow ([1c6b8bd](https://github.com/CoCreate-app/CoCreate-utils/commit/1c6b8bd4f6d64111379e725965ded3ccb49cac2a))
911
+
912
+ ## [1.17.13](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.12...v1.17.13) (2022-12-31)
913
+
914
+
915
+ ### Bug Fixes
916
+
917
+ * bump dependencies ([0ec93f9](https://github.com/CoCreate-app/CoCreate-utils/commit/0ec93f9c20168ebd086ad6a753cadb99009f730d))
918
+
919
+ ## [1.17.12](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.11...v1.17.12) (2022-12-31)
920
+
921
+
922
+ ### Bug Fixes
923
+
924
+ * bump dependencies ([4539e63](https://github.com/CoCreate-app/CoCreate-utils/commit/4539e63cace3f7bc4fea394f3988a7beaaaee941))
925
+
926
+ ## [1.17.11](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.10...v1.17.11) (2022-12-30)
927
+
928
+
929
+ ### Bug Fixes
930
+
931
+ * update config sources to use template braces with entry on src ([15ef786](https://github.com/CoCreate-app/CoCreate-utils/commit/15ef7862f5d1a5a4ff7fc21814d4d7dbd0289b78))
932
+
933
+ ## [1.17.10](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.9...v1.17.10) (2022-12-29)
934
+
935
+
936
+ ### Bug Fixes
937
+
938
+ * bump dependencies ([d5e1e9d](https://github.com/CoCreate-app/CoCreate-utils/commit/d5e1e9dd385d226a8f5e3ee8cd5ccd3556dde131))
939
+
940
+ ## [1.17.9](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.8...v1.17.9) (2022-12-29)
941
+
942
+
943
+ ### Bug Fixes
944
+
945
+ * bump dependencies ([66454fd](https://github.com/CoCreate-app/CoCreate-utils/commit/66454fd19e0540c4d2c3de883fc0f0c3410b75bc))
946
+
947
+ ## [1.17.8](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.7...v1.17.8) (2022-12-27)
948
+
949
+
950
+ ### Bug Fixes
951
+
952
+ * bump dependencies ([aeda203](https://github.com/CoCreate-app/CoCreate-utils/commit/aeda203630f6ef6f6fced9a1e02ada288a140db3))
953
+
954
+ ## [1.17.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.6...v1.17.7) (2022-12-25)
955
+
956
+
957
+ ### Bug Fixes
958
+
959
+ * bump dependencies ([18fb95d](https://github.com/CoCreate-app/CoCreate-utils/commit/18fb95d3411197a04ef76c4eeb4a898ae8024174))
960
+
961
+ ## [1.17.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.5...v1.17.6) (2022-12-25)
962
+
963
+
964
+ ### Bug Fixes
965
+
966
+ * bump dependencies ([72d7043](https://github.com/CoCreate-app/CoCreate-utils/commit/72d7043a09c923a6dd05bf0d699e4e7ee5126a31))
967
+
968
+ ## [1.17.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.4...v1.17.5) (2022-12-23)
969
+
970
+
971
+ ### Bug Fixes
972
+
973
+ * bump dependnecies ([82a2a7e](https://github.com/CoCreate-app/CoCreate-utils/commit/82a2a7ede631d3f8be42ac5e1f815de49ffa8070))
974
+
975
+ ## [1.17.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.3...v1.17.4) (2022-12-22)
976
+
977
+
978
+ ### Bug Fixes
979
+
980
+ * bump dependencies ([efd2255](https://github.com/CoCreate-app/CoCreate-utils/commit/efd22556fa81b09c154c5ce48b95368f883acede))
981
+ * update cdn ([0a41491](https://github.com/CoCreate-app/CoCreate-utils/commit/0a41491cd21bd0420c7447fae90fc69ea30635c9))
982
+
983
+ ## [1.17.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.2...v1.17.3) (2022-12-22)
984
+
985
+
986
+ ### Bug Fixes
987
+
988
+ * update demos and bump dependencies ([8c3eb78](https://github.com/CoCreate-app/CoCreate-utils/commit/8c3eb788e855ca649c56d447fa726bad2926819d))
989
+
990
+ ## [1.17.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.1...v1.17.2) (2022-12-21)
991
+
992
+
993
+ ### Bug Fixes
994
+
995
+ * bump dependencies ([8c3f6dd](https://github.com/CoCreate-app/CoCreate-utils/commit/8c3f6dd820e213be43494edb8ddd202f5de579e3))
996
+
997
+ ## [1.17.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.17.0...v1.17.1) (2022-12-20)
998
+
999
+
1000
+ ### Bug Fixes
1001
+
1002
+ * bump dependencies ([d73c223](https://github.com/CoCreate-app/CoCreate-utils/commit/d73c2232038fca2dff19c701fd0fee1a4701a78a))
1003
+
1004
+ # [1.17.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.16.5...v1.17.0) (2022-12-17)
1005
+
1006
+
1007
+ ### Features
1008
+
1009
+ * escapeHthml function ([ef5359b](https://github.com/CoCreate-app/CoCreate-utils/commit/ef5359b511351b47803674e9ebde3532620313e1))
1010
+
1011
+ ## [1.16.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.16.4...v1.16.5) (2022-12-15)
1012
+
1013
+
1014
+ ### Bug Fixes
1015
+
1016
+ * add missing dev dependency style-loader ([b3553f1](https://github.com/CoCreate-app/CoCreate-utils/commit/b3553f106576deb1856e76239ed72d78ff481625))
1017
+
1018
+ ## [1.16.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.16.3...v1.16.4) (2022-12-13)
1019
+
1020
+
1021
+ ### Bug Fixes
1022
+
1023
+ * removed un used devDependencies ([0a09534](https://github.com/CoCreate-app/CoCreate-utils/commit/0a09534a11df3680e432febf9776411e1e0e73ab))
1024
+
1025
+ ## [1.16.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.16.2...v1.16.3) (2022-12-13)
1026
+
1027
+
1028
+ ### Bug Fixes
1029
+
1030
+ * bump dependencies ([c67f136](https://github.com/CoCreate-app/CoCreate-utils/commit/c67f136bd3438c2977251e322a9bc51cd8efed3d))
1031
+
1032
+ ## [1.16.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.16.1...v1.16.2) (2022-12-13)
1033
+
1034
+
1035
+ ### Bug Fixes
1036
+
1037
+ * query operator includes and $includes ([c3cbafe](https://github.com/CoCreate-app/CoCreate-utils/commit/c3cbafe2751387de0a8a28cd0bb284eb19ce651d))
1038
+ * sort direction uses key word asc desc ([87870b0](https://github.com/CoCreate-app/CoCreate-utils/commit/87870b005720d4d723fb194a5c876acd1b6f1c41))
1039
+
1040
+ ## [1.16.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.16.0...v1.16.1) (2022-12-12)
1041
+
1042
+
1043
+ ### Bug Fixes
1044
+
1045
+ * bump dependencies ([d36245c](https://github.com/CoCreate-app/CoCreate-utils/commit/d36245c5c78c5f33e9ecb23f2c5091cee7e46aee))
1046
+
1047
+ # [1.16.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.15.3...v1.16.0) (2022-12-12)
1048
+
1049
+
1050
+ ### Features
1051
+
1052
+ * getAttributes, getAttributeNames and setAttributeNames ([de2d962](https://github.com/CoCreate-app/CoCreate-utils/commit/de2d96223017f457a1bf13e07ee1a8c49a0596ed))
1053
+
1054
+ ## [1.15.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.15.2...v1.15.3) (2022-12-11)
1055
+
1056
+
1057
+ ### Bug Fixes
1058
+
1059
+ * bump dependencies ([e818cea](https://github.com/CoCreate-app/CoCreate-utils/commit/e818cea98fbdc8a4c831fe2a35d50b49e3f1b33c))
1060
+
1061
+ ## [1.15.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.15.1...v1.15.2) (2022-12-09)
1062
+
1063
+
1064
+ ### Bug Fixes
1065
+
1066
+ * bump dependencies ([97c1d5f](https://github.com/CoCreate-app/CoCreate-utils/commit/97c1d5fc7d514989169a314d503f6e08dd77078c))
1067
+
1068
+ ## [1.15.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.15.0...v1.15.1) (2022-12-09)
1069
+
1070
+
1071
+ ### Bug Fixes
1072
+
1073
+ * getValueFromObject returned false if value could not be found, it will now return undefined ([2ca7c4f](https://github.com/CoCreate-app/CoCreate-utils/commit/2ca7c4f1c893025b9240b796858457a1b33cc47e))
1074
+
1075
+ # [1.15.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.14.3...v1.15.0) (2022-12-08)
1076
+
1077
+
1078
+ ### Features
1079
+
1080
+ * checkValue function to check if value contains template brackets {{}} ([8432c50](https://github.com/CoCreate-app/CoCreate-utils/commit/8432c50ab48e345dfbcaf025128bed7db1abd539))
1081
+
1082
+ ## [1.14.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.14.2...v1.14.3) (2022-12-07)
1083
+
1084
+
1085
+ ### Bug Fixes
1086
+
1087
+ * bump dependencies ([20dfebf](https://github.com/CoCreate-app/CoCreate-utils/commit/20dfebf1c48cf79c10ba376ce3d409c7065e0147))
1088
+
1089
+ ## [1.14.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.14.1...v1.14.2) (2022-12-07)
1090
+
1091
+
1092
+ ### Bug Fixes
1093
+
1094
+ * sort type is string and value is undefined replace with empty string ([009cc48](https://github.com/CoCreate-app/CoCreate-utils/commit/009cc48ad7dbfdf1b04dd2e0d8dedbba291e6fb3))
1095
+
1096
+ ## [1.14.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.14.0...v1.14.1) (2022-12-04)
1097
+
1098
+
1099
+ ### Bug Fixes
1100
+
1101
+ * bump dependencies ([047612f](https://github.com/CoCreate-app/CoCreate-utils/commit/047612f5d961df25b08994cd2bd394db5ed552b6))
1102
+
1103
+ # [1.14.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.13.1...v1.14.0) (2022-12-04)
1104
+
1105
+
1106
+ ### Bug Fixes
1107
+
1108
+ * operator typo ([fd47c03](https://github.com/CoCreate-app/CoCreate-utils/commit/fd47c03fcccc2e55d55fd01d50b24bfb36914106))
1109
+
1110
+
1111
+ ### Features
1112
+
1113
+ * ObjectId generator ([7b2de66](https://github.com/CoCreate-app/CoCreate-utils/commit/7b2de667e83ab5420228b86052cd2d6918d17188))
1114
+
1115
+ ## [1.13.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.13.0...v1.13.1) (2022-12-02)
1116
+
1117
+
1118
+ ### Bug Fixes
1119
+
1120
+ * bump dependencies ([d260b53](https://github.com/CoCreate-app/CoCreate-utils/commit/d260b531473a55becb72c25bc79b1e4924b9331e))
1121
+ * docs ([8c98304](https://github.com/CoCreate-app/CoCreate-utils/commit/8c98304bb530b7d1357788ef9b03589cef1fcf4b))
1122
+
1123
+ # [1.13.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.7...v1.13.0) (2022-12-02)
1124
+
1125
+
1126
+ ### Features
1127
+
1128
+ * getValueFromObject returns the defined key value, supports dot notation string. queryData supports logicalOperators and, or ([4d3c5e2](https://github.com/CoCreate-app/CoCreate-utils/commit/4d3c5e273ebe6042f78cb8f85d535468c1bd049d))
1129
+ * search param caseSensitive and search can be an array ([50cd481](https://github.com/CoCreate-app/CoCreate-utils/commit/50cd4810bfa0b1e286b30d8418246045e67a2b37))
1130
+
1131
+ ## [1.12.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.6...v1.12.7) (2022-11-28)
1132
+
1133
+
1134
+ ### Bug Fixes
1135
+
1136
+ * bump dependencies ([36a7c1c](https://github.com/CoCreate-app/CoCreate-utils/commit/36a7c1c273c6767f6202241659172fd76ebd452a))
1137
+
1138
+ ## [1.12.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.5...v1.12.6) (2022-11-28)
1139
+
1140
+
1141
+ ### Bug Fixes
1142
+
1143
+ * if no query.length or no search.length return true ([67d40d1](https://github.com/CoCreate-app/CoCreate-utils/commit/67d40d14d4c2c6c21aa83c6ec0aca575efeaec08))
1144
+
1145
+ ## [1.12.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.4...v1.12.5) (2022-11-28)
1146
+
1147
+
1148
+ ### Bug Fixes
1149
+
1150
+ * bump dependencies ([83e94fc](https://github.com/CoCreate-app/CoCreate-utils/commit/83e94fc3911cb241b05d3700e33abeff35ed1aab))
1151
+
1152
+ ## [1.12.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.3...v1.12.4) (2022-11-28)
1153
+
1154
+
1155
+ ### Bug Fixes
1156
+
1157
+ * search - if operator or and no match found return false ([27dc82d](https://github.com/CoCreate-app/CoCreate-utils/commit/27dc82d6ea56983fa46736fba0f4cab3f31a4ea0))
1158
+
1159
+ ## [1.12.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.2...v1.12.3) (2022-11-27)
1160
+
1161
+
1162
+ ### Bug Fixes
1163
+
1164
+ * bump dependencies ([b13d826](https://github.com/CoCreate-app/CoCreate-utils/commit/b13d8265de4a93a23c2fa9f2c8d31860cffa7846))
1165
+
1166
+ ## [1.12.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.1...v1.12.2) (2022-11-27)
1167
+
1168
+
1169
+ ### Bug Fixes
1170
+
1171
+ * improved searchData function ([25febc6](https://github.com/CoCreate-app/CoCreate-utils/commit/25febc683f44bbb75e7bd4f1e69ef239837a01de))
1172
+
1173
+ ## [1.12.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.0...v1.12.1) (2022-11-26)
1174
+
1175
+
1176
+ ### Bug Fixes
1177
+
1178
+ * bump dependencies ([146c820](https://github.com/CoCreate-app/CoCreate-utils/commit/146c8209a799a8f742076e3e5a2881f99bd26bc9))
1179
+
1180
+ # [1.12.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.11.0...v1.12.0) (2022-11-25)
1181
+
1182
+
1183
+ ### Features
1184
+
1185
+ * functions for search, query and sorting objects and arrays ([a0ef76d](https://github.com/CoCreate-app/CoCreate-utils/commit/a0ef76d24969e3679159987b2f3c4633bc46c138))
1186
+
1187
+ # [1.11.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.23...v1.11.0) (2022-11-25)
1188
+
1189
+
1190
+ ### Bug Fixes
1191
+
1192
+ * add valueTypes to archive ([6fd51ff](https://github.com/CoCreate-app/CoCreate-utils/commit/6fd51ffe880699b5303be7f2452a363cc3737716))
1193
+
1194
+
1195
+ ### Features
1196
+
1197
+ * utils can be used in browser or server ([f8ad791](https://github.com/CoCreate-app/CoCreate-utils/commit/f8ad7913e5d0c658ca3ef58bda09082dde8b67ef))
1198
+
1199
+ ## [1.10.23](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.22...v1.10.23) (2022-11-24)
1200
+
1201
+
1202
+ ### Bug Fixes
1203
+
1204
+ * bump depenedencies ([9b4eb69](https://github.com/CoCreate-app/CoCreate-utils/commit/9b4eb69f42919ec31dfcd2dc7aaff651b645c8d6))
1205
+
1206
+ ## [1.10.22](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.21...v1.10.22) (2022-11-23)
1207
+
1208
+
1209
+ ### Bug Fixes
1210
+
1211
+ * bumped [@cocreate](https://github.com/cocreate) dependencies ([1df48f4](https://github.com/CoCreate-app/CoCreate-utils/commit/1df48f4dcf4cea3242306d9f1db7b45a4d106adf))
1212
+
1213
+ ## [1.10.21](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.20...v1.10.21) (2022-11-22)
1214
+
1215
+
1216
+ ### Bug Fixes
1217
+
1218
+ * workflow docs ([c487ffc](https://github.com/CoCreate-app/CoCreate-utils/commit/c487ffc8ecf10a9aef8d0940a38c46a122f58b59))
1219
+
1220
+ ## [1.10.20](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.19...v1.10.20) (2022-11-22)
1221
+
1222
+
1223
+ ### Bug Fixes
1224
+
1225
+ * apply src: {{source}} to CoCreate.config ([49cbcc5](https://github.com/CoCreate-app/CoCreate-utils/commit/49cbcc5c1471bf5f42ee1a4e708bf783096e760c))
1226
+
1227
+ ## [1.10.19](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.18...v1.10.19) (2022-11-21)
1228
+
1229
+
1230
+ ### Bug Fixes
1231
+
1232
+ * @cocreate/docs bug fix ([b748daf](https://github.com/CoCreate-app/CoCreate-utils/commit/b748daf8b18ead98fc66bedf1e480c166be03df4))
1233
+
1234
+ ## [1.10.18](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.17...v1.10.18) (2022-11-21)
1235
+
1236
+
1237
+ ### Bug Fixes
1238
+
1239
+ * replaced document_id with document._id ([90e32b2](https://github.com/CoCreate-app/CoCreate-utils/commit/90e32b2da28abdcbd35e4dd08aabd77865b615a1))
1240
+
1241
+ ## [1.10.17](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.16...v1.10.17) (2022-11-21)
1242
+
1243
+
1244
+ ### Bug Fixes
1245
+
1246
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([97926a2](https://github.com/CoCreate-app/CoCreate-utils/commit/97926a2fb7c383d3d0fc3fcdda75a1c47430e9b4))
1247
+
1248
+ ## [1.10.16](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.15...v1.10.16) (2022-11-21)
1249
+
1250
+
1251
+ ### Bug Fixes
1252
+
1253
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([8692bb4](https://github.com/CoCreate-app/CoCreate-utils/commit/8692bb4a25724ac06246475010b41fb99584967d))
1254
+
1255
+ ## [1.10.15](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.14...v1.10.15) (2022-11-21)
1256
+
1257
+
1258
+ ### Bug Fixes
1259
+
1260
+ * bump d@cocreate ependencies ([3824be5](https://github.com/CoCreate-app/CoCreate-utils/commit/3824be507971f5febc247da3cccebc85a8e2b6d1))
1261
+
1262
+ ## [1.10.14](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.13...v1.10.14) (2022-11-21)
1263
+
1264
+
1265
+ ### Bug Fixes
1266
+
1267
+ * renamed crud.checkAttrValue to crud.checkValue ([fe07687](https://github.com/CoCreate-app/CoCreate-utils/commit/fe076874b5f0f8a835556749341c53205c3d7bbf))
1268
+
1269
+ ## [1.10.13](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.12...v1.10.13) (2022-10-02)
1270
+
1271
+
1272
+ ### Bug Fixes
1273
+
1274
+ * bump dependencies ([ea69eb1](https://github.com/CoCreate-app/CoCreate-utils/commit/ea69eb176c68c83b44f574cff98c639fc5931275))
1275
+
1276
+ ## [1.10.12](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.11...v1.10.12) (2022-10-02)
1277
+
1278
+
1279
+ ### Bug Fixes
1280
+
1281
+ * minor bug fixes ([1a527d6](https://github.com/CoCreate-app/CoCreate-utils/commit/1a527d6996a779faaf55624d058e1313df5f578f))
1282
+
1283
+ ## [1.10.11](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.10...v1.10.11) (2022-10-02)
1284
+
1285
+
1286
+ ### Bug Fixes
1287
+
1288
+ * bump @cocreate/hosting and @cocreate/socket-client ([445c4d4](https://github.com/CoCreate-app/CoCreate-utils/commit/445c4d41132d1b78d036de69de60c1f8915d75d6))
1289
+
1290
+ ## [1.10.10](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.9...v1.10.10) (2022-10-01)
1291
+
1292
+
1293
+ ### Bug Fixes
1294
+
1295
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([7cea885](https://github.com/CoCreate-app/CoCreate-utils/commit/7cea88580789306e2fd5ede13ba8400d789ef2d5))
1296
+
1297
+ ## [1.10.9](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.8...v1.10.9) (2022-10-01)
1298
+
1299
+
1300
+ ### Bug Fixes
1301
+
1302
+ * bump dependencies ([be3502f](https://github.com/CoCreate-app/CoCreate-utils/commit/be3502f901f436839e3b7f9276a8bd3a042a9b03))
1303
+
1304
+ ## [1.10.8](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.7...v1.10.8) (2022-10-01)
1305
+
1306
+
1307
+ ### Bug Fixes
1308
+
1309
+ * bump dependencies ([8664d0b](https://github.com/CoCreate-app/CoCreate-utils/commit/8664d0bbb3bf10f8a93833b42ef9d35374c57dd8))
1310
+
1311
+ ## [1.10.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.6...v1.10.7) (2022-09-30)
1312
+
1313
+
1314
+ ### Bug Fixes
1315
+
1316
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([c6b9551](https://github.com/CoCreate-app/CoCreate-utils/commit/c6b9551fb3ba3f987dd20c89a297e2e290cee35c))
1317
+
1318
+ ## [1.10.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.5...v1.10.6) (2022-09-30)
1319
+
1320
+
1321
+ ### Bug Fixes
1322
+
1323
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([c71abcb](https://github.com/CoCreate-app/CoCreate-utils/commit/c71abcb2c1dd6dc1e816c58a47492c86e4302d78))
1324
+
1325
+ ## [1.10.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.4...v1.10.5) (2022-09-30)
1326
+
1327
+
1328
+ ### Bug Fixes
1329
+
1330
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([234caa2](https://github.com/CoCreate-app/CoCreate-utils/commit/234caa2621090861097931ace25525e7caf3a1f6))
1331
+
1332
+ ## [1.10.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.3...v1.10.4) (2022-09-30)
1333
+
1334
+
1335
+ ### Bug Fixes
1336
+
1337
+ * bump dependencies ([5b0d903](https://github.com/CoCreate-app/CoCreate-utils/commit/5b0d9036d12d59076ebdbd8fc70862cc791771e0))
1338
+
1339
+ ## [1.10.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.2...v1.10.3) (2022-09-29)
1340
+
1341
+
1342
+ ### Bug Fixes
1343
+
1344
+ * config renameed to CoCreateConfig ([eda669c](https://github.com/CoCreate-app/CoCreate-utils/commit/eda669c88a5e141bb50fe37ba9ede11824da36bb))
1345
+
1346
+ ## [1.10.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.1...v1.10.2) (2022-09-22)
1347
+
1348
+
1349
+ ### Bug Fixes
1350
+
1351
+ * dotNotationToObject if condition bug resolved ([cee0089](https://github.com/CoCreate-app/CoCreate-utils/commit/cee0089818f3a5358ec20b625c84910e1508661f))
1352
+
1353
+ ## [1.10.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.0...v1.10.1) (2022-09-01)
1354
+
1355
+
1356
+ ### Bug Fixes
1357
+
1358
+ * bump all of [@cocreate](https://github.com/cocreate) dependencies ([36536ff](https://github.com/CoCreate-app/CoCreate-utils/commit/36536ff6e53f08edabbdece0b082b4bf389263bb))
1359
+
1360
+ # [1.10.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.9.1...v1.10.0) (2022-08-23)
1361
+
1362
+
1363
+ ### Features
1364
+
1365
+ * dotNotationToObject to convert a dot notation string to a nested object structure ([b924d33](https://github.com/CoCreate-app/CoCreate-utils/commit/b924d333ccf364d6ac1f736e8cbfe2d8999316cb))
1366
+
1367
+ ## [1.9.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.9.0...v1.9.1) (2022-07-29)
1368
+
1369
+
1370
+ ### Bug Fixes
1371
+
1372
+ * removed console.log ([b237022](https://github.com/CoCreate-app/CoCreate-utils/commit/b2370221c33dc1972eee8204af8a310f9e44721c))
1373
+
1374
+ # [1.9.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.8.1...v1.9.0) (2022-07-03)
1375
+
1376
+
1377
+ ### Bug Fixes
1378
+
1379
+ * add queryDocumentSelector to export default ([b067ed1](https://github.com/CoCreate-app/CoCreate-utils/commit/b067ed1354488cf52014e2d417d75c5be455fc6f))
1380
+
1381
+
1382
+ ### Features
1383
+
1384
+ * queryDocumentSelector to return one element from an iframe or iframes parent ([477f179](https://github.com/CoCreate-app/CoCreate-utils/commit/477f179ef4e00aab219d12a5a9ae3a5e1cfae992))
1385
+
1386
+ ## [1.8.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.8.0...v1.8.1) (2022-07-01)
1387
+
1388
+
1389
+ ### Bug Fixes
1390
+
1391
+ * remove function queryFrameSelector rhas been replaced by queryDocumentSelectorAll ([3c11054](https://github.com/CoCreate-app/CoCreate-utils/commit/3c110543598ded5753c9d715f3cb650d46e93263))
1392
+
1393
+ # [1.8.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.7.6...v1.8.0) (2022-07-01)
1394
+
1395
+
1396
+ ### Features
1397
+
1398
+ * queryDocumentSelectorAll - ability to query iframes and parent of iframes ([90bd26b](https://github.com/CoCreate-app/CoCreate-utils/commit/90bd26b139a6a5413ac67a92504cf533f10e0838))
1399
+
1400
+ ## [1.7.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.7.5...v1.7.6) (2022-06-27)
1401
+
1402
+
1403
+ ### Bug Fixes
1404
+
1405
+ * remove functon getAttributes ([162228d](https://github.com/CoCreate-app/CoCreate-utils/commit/162228ddd99bcdf64a59088bddf2a6216a911898))
1406
+
1407
+ ## [1.7.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.7.4...v1.7.5) (2022-06-24)
1408
+
1409
+
1410
+ ### Bug Fixes
1411
+
1412
+ * check path for character < if exist clean up path to mak it in to a valid selector ([9321063](https://github.com/CoCreate-app/CoCreate-utils/commit/93210634425db2dff507919dd32415f0d7bdfc95))
1413
+
1414
+ ## [1.7.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.7.3...v1.7.4) (2022-06-18)
1415
+
1416
+
1417
+ ### Bug Fixes
1418
+
1419
+ * bump dependencies ([779f302](https://github.com/CoCreate-app/CoCreate-utils/commit/779f3026942bded821eb58ed0631c254494ba9ab))
1420
+
1421
+ ## [1.7.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.7.2...v1.7.3) (2022-06-12)
1422
+
1423
+
1424
+ ### Bug Fixes
1425
+
1426
+ * update dependencies ([925855d](https://github.com/CoCreate-app/CoCreate-utils/commit/925855da986c61f700642657e27a4dca8a461d64))
1427
+ * update docs css document_id ([cec8894](https://github.com/CoCreate-app/CoCreate-utils/commit/cec8894132d8d47eac5b0857fdcfd793ec97e6a2))
1428
+
1429
+ ## [1.7.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.7.1...v1.7.2) (2022-05-23)
1430
+
1431
+
1432
+ ### Bug Fixes
1433
+
1434
+ * bump all dependencies ([2008e5d](https://github.com/CoCreate-app/CoCreate-utils/commit/2008e5d332cd30e801b47bb09d07609722fa7b02))
1435
+
1436
+ ## [1.7.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.7.0...v1.7.1) (2022-05-17)
1437
+
1438
+
1439
+ ### Bug Fixes
1440
+
1441
+ * update document_id on link index.css ([a364cfb](https://github.com/CoCreate-app/CoCreate-utils/commit/a364cfb814524a0f2f8142919c8afbe696492bdc))
1442
+
1443
+ # [1.7.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.7...v1.7.0) (2022-05-14)
1444
+
1445
+
1446
+ ### Features
1447
+
1448
+ * function readDocumentList has been renamed to readDocuments ([19a402f](https://github.com/CoCreate-app/CoCreate-utils/commit/19a402f4a3372a6d88c75c729efc7ef38bdbb11b))
1449
+
1450
+ ## [1.6.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.6...v1.6.7) (2022-05-06)
1451
+
1452
+
1453
+ ### Bug Fixes
1454
+
1455
+ * update config organization_Id to organization_id ([ea79e61](https://github.com/CoCreate-app/CoCreate-utils/commit/ea79e610fb1807e13516959697176253c38c8a9f))
1456
+
1457
+ ## [1.6.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.5...v1.6.6) (2022-02-24)
1458
+
1459
+
1460
+ ### Bug Fixes
1461
+
1462
+ * CoCreate.config replace CoCreate.app with * ([d651a4a](https://github.com/CoCreate-app/CoCreate-utils/commit/d651a4a5a88fd105a1986bb55ec9795aad52ffd6))
1463
+
1464
+ ## [1.6.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.4...v1.6.5) (2022-02-16)
1465
+
1466
+
1467
+ ### Bug Fixes
1468
+
1469
+ * update dependencies ([e727235](https://github.com/CoCreate-app/CoCreate-utils/commit/e7272356da2fee0811b9f42ed8c8d749b8c1ef2b))
1470
+
1471
+ ## [1.6.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.3...v1.6.4) (2022-02-10)
1472
+
1473
+
1474
+ ### Bug Fixes
1475
+
1476
+ * bump dependencies ([5235dcb](https://github.com/CoCreate-app/CoCreate-utils/commit/5235dcb03337bce15bd0aa7d94497660f4024c8f))
1477
+
1478
+ ## [1.6.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.2...v1.6.3) (2022-02-07)
1479
+
1480
+
1481
+ ### Bug Fixes
1482
+
1483
+ * bump dependency versions ([849f540](https://github.com/CoCreate-app/CoCreate-utils/commit/849f5409d140a475701f7c392ab99eeeb7001c6e))
1484
+
1485
+ ## [1.6.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.1...v1.6.2) (2022-02-07)
1486
+
1487
+
1488
+ ### Bug Fixes
1489
+
1490
+ * if eid contains {{...}} continue with cssPath ([34e142c](https://github.com/CoCreate-app/CoCreate-utils/commit/34e142ce50e82da94c603c431244727f479bd333))
1491
+
1492
+ ## [1.6.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.6.0...v1.6.1) (2022-02-03)
1493
+
1494
+
1495
+ ### Bug Fixes
1496
+
1497
+ * replaced show and hide class hidden with attribute hidden ([f1ad793](https://github.com/CoCreate-app/CoCreate-utils/commit/f1ad793841db4abe67032a24625e8a46f7560bbf))
1498
+
1499
+ # [1.6.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.5.1...v1.6.0) (2022-02-03)
1500
+
1501
+
1502
+ ### Features
1503
+
1504
+ * queryFrameSelectorAll to return elements from other documents, getFrameSelector to pase a selector and return document and selector ([c3b8c27](https://github.com/CoCreate-app/CoCreate-utils/commit/c3b8c27fc1f452b7eac0ac801770e3c0809295f8))
1505
+
1506
+ ## [1.5.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.5.0...v1.5.1) (2022-02-01)
1507
+
1508
+
1509
+ ### Bug Fixes
1510
+
1511
+ * update dependency versions ([f85b89a](https://github.com/CoCreate-app/CoCreate-utils/commit/f85b89a8b27e0a92153739e89345c753917b350f))
1512
+
1513
+ # [1.5.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.4.3...v1.5.0) (2022-01-29)
1514
+
1515
+
1516
+ ### Features
1517
+
1518
+ * function to add click event to all documents in order to apply clickedElement to document dom object. this provides a refrence to the element that was actively clicked ([537003d](https://github.com/CoCreate-app/CoCreate-utils/commit/537003de6aa749a8dc215e70926dfc3dd2b830fb))
1519
+
1520
+ ## [1.4.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.4.2...v1.4.3) (2022-01-01)
1521
+
1522
+
1523
+ ### Bug Fixes
1524
+
1525
+ * get-value attribute value now supports a selector added # to all values currently in get-value attributes ([d48bcd5](https://github.com/CoCreate-app/CoCreate-utils/commit/d48bcd5bdbc715b3aacb8db3b99cd8aa581b72ce))
1526
+
1527
+ ## [1.4.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.4.1...v1.4.2) (2021-12-25)
1528
+
1529
+
1530
+ ### Bug Fixes
1531
+
1532
+ * comment cssPath class parser. path could not resolve element ([1a00794](https://github.com/CoCreate-app/CoCreate-utils/commit/1a00794a0ee96699379e8efd0e75000efe93cded))
1533
+
1534
+ ## [1.4.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.4.0...v1.4.1) (2021-12-15)
1535
+
1536
+
1537
+ ### Bug Fixes
1538
+
1539
+ * update dependencies ([a36e4a6](https://github.com/CoCreate-app/CoCreate-utils/commit/a36e4a6356fdf7e25351895c9897e0f31341a9e1))
1540
+
1541
+ # [1.4.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.19...v1.4.0) (2021-12-14)
1542
+
1543
+
1544
+ ### Features
1545
+
1546
+ * cssPath and domParser update to support nested contenteditable elements ([a7b700a](https://github.com/CoCreate-app/CoCreate-utils/commit/a7b700add647856071cf2c3bfa0ce95b36144e0a))
1547
+
1548
+ ## [1.3.19](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.18...v1.3.19) (2021-12-08)
1549
+
1550
+
1551
+ ### Bug Fixes
1552
+
1553
+ * cssPath nth-child if childern > 1 ([caa0f54](https://github.com/CoCreate-app/CoCreate-utils/commit/caa0f5480c58a3f5a5e8e117133ccad9f4acde66))
1554
+
1555
+ ## [1.3.18](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.17...v1.3.18) (2021-12-08)
1556
+
1557
+
1558
+ ### Bug Fixes
1559
+
1560
+ * csspath element null return ([dd4ac41](https://github.com/CoCreate-app/CoCreate-utils/commit/dd4ac41f123105f1b4364e858bc221914220427c))
1561
+
1562
+ ## [1.3.17](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.16...v1.3.17) (2021-11-27)
1563
+
1564
+
1565
+ ### Bug Fixes
1566
+
1567
+ * update dependencies ([d09ebd8](https://github.com/CoCreate-app/CoCreate-utils/commit/d09ebd8f0c9f0be1ffc9a84cd86252faf7d13bfd))
1568
+
1569
+ ## [1.3.16](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.15...v1.3.16) (2021-11-27)
1570
+
1571
+
1572
+ ### Bug Fixes
1573
+
1574
+ * update dependencies ([86924ed](https://github.com/CoCreate-app/CoCreate-utils/commit/86924ed3e16a02c1c02a9c8727adc3e284a2b0a5))
1575
+
1576
+ ## [1.3.15](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.14...v1.3.15) (2021-11-27)
1577
+
1578
+
1579
+ ### Bug Fixes
1580
+
1581
+ * update docs api and cocreateJS script ([7c731e2](https://github.com/CoCreate-app/CoCreate-utils/commit/7c731e23e2f90a6e47f503fbc20c310e3d325f51))
1582
+
1583
+ ## [1.3.14](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.13...v1.3.14) (2021-11-26)
1584
+
1585
+
1586
+ ### Bug Fixes
1587
+
1588
+ * docs sidenav width ([340fe11](https://github.com/CoCreate-app/CoCreate-utils/commit/340fe115daa5795d4e4c31439b892232f77201d6))
1589
+
1590
+ ## [1.3.13](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.12...v1.3.13) (2021-11-26)
1591
+
1592
+
1593
+ ### Bug Fixes
1594
+
1595
+ * update dependencies ([5f0a9a3](https://github.com/CoCreate-app/CoCreate-utils/commit/5f0a9a32bc5429359a67eeaa5dbe76b26f55f357))
1596
+
1597
+ ## [1.3.12](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.11...v1.3.12) (2021-11-23)
1598
+
1599
+
1600
+ ### Bug Fixes
1601
+
1602
+ * update dependencies ([46a25c9](https://github.com/CoCreate-app/CoCreate-utils/commit/46a25c956602b61815398426e910aef0071ba23d))
1603
+
1604
+ ## [1.3.11](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.10...v1.3.11) (2021-11-20)
1605
+
1606
+
1607
+ ### Bug Fixes
1608
+
1609
+ * update dependencies ([3cd5ae0](https://github.com/CoCreate-app/CoCreate-utils/commit/3cd5ae06e78e35b9cc0410293d1f03de7e4e4abd))
1610
+
1611
+ ## [1.3.10](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.9...v1.3.10) (2021-11-19)
1612
+
1613
+
1614
+ ### Bug Fixes
1615
+
1616
+ * update dependencies ([ea1b16b](https://github.com/CoCreate-app/CoCreate-utils/commit/ea1b16b5f8f385e2a9970e061cde393fcd8a345f))
1617
+
1618
+ ## [1.3.9](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.8...v1.3.9) (2021-11-18)
1619
+
1620
+
1621
+ ### Bug Fixes
1622
+
1623
+ * update dependencies ([3805e75](https://github.com/CoCreate-app/CoCreate-utils/commit/3805e7545a91be4159cf54e24b08516f4f9529ad))
1624
+
1625
+ ## [1.3.8](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.7...v1.3.8) (2021-11-16)
1626
+
1627
+
1628
+ ### Bug Fixes
1629
+
1630
+ * update dependencies ([8ba3aac](https://github.com/CoCreate-app/CoCreate-utils/commit/8ba3aac3e2549a9ecb3fce877e11d5bfae59d913))
1631
+
1632
+ ## [1.3.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.6...v1.3.7) (2021-11-15)
1633
+
1634
+
1635
+ ### Bug Fixes
1636
+
1637
+ * update dependencies ([5408f3b](https://github.com/CoCreate-app/CoCreate-utils/commit/5408f3bddf05ec2253c72fe07ce9e31595cf5243))
1638
+
1639
+ ## [1.3.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.5...v1.3.6) (2021-11-11)
1640
+
1641
+
1642
+ ### Bug Fixes
1643
+
1644
+ * update readme ([cf15c33](https://github.com/CoCreate-app/CoCreate-utils/commit/cf15c33d12bb74508a10cda88ffa62ba05163c32))
1645
+
1646
+ ## [1.3.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.4...v1.3.5) (2021-11-06)
1647
+
1648
+
1649
+ ### Bug Fixes
1650
+
1651
+ * update dependencies ([d673974](https://github.com/CoCreate-app/CoCreate-utils/commit/d673974be38c03a86e19a01255da95555a9efe0d))
1652
+
1653
+ ## [1.3.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.3...v1.3.4) (2021-11-04)
1654
+
1655
+
1656
+ ### Bug Fixes
1657
+
1658
+ * update dependencies ([810034c](https://github.com/CoCreate-app/CoCreate-utils/commit/810034c4cec62f7a98b2f498ef6132ebfdb250e4))
1659
+
1660
+ ## [1.3.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.2...v1.3.3) (2021-11-04)
1661
+
1662
+
1663
+ ### Bug Fixes
1664
+
1665
+ * update packages ([ab1805f](https://github.com/CoCreate-app/CoCreate-utils/commit/ab1805f2c318b0446a7f83ec7970dac22112afc3))
1666
+
1667
+ ## [1.3.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.1...v1.3.2) (2021-11-03)
1668
+
1669
+
1670
+ ### Bug Fixes
1671
+
1672
+ * domParser could not handle an innerHtml html that began with text. maintag could not be found ([3fcbda4](https://github.com/CoCreate-app/CoCreate-utils/commit/3fcbda446d1b979884f5c99ad6bd8f37ff936541))
1673
+
1674
+ ## [1.3.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.3.0...v1.3.1) (2021-11-01)
1675
+
1676
+
1677
+ ### Bug Fixes
1678
+
1679
+ * update package dependencies ([1dce029](https://github.com/CoCreate-app/CoCreate-utils/commit/1dce029e60e599897f374a376588ec3e607f8786))
1680
+
1681
+ # [1.3.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.2.1...v1.3.0) (2021-11-01)
1682
+
1683
+
1684
+ ### Bug Fixes
1685
+
1686
+ * cssPath did not push and return path if it was id ([4af00bd](https://github.com/CoCreate-app/CoCreate-utils/commit/4af00bd4c3fd376a1fd15d7dd1eeeec63ff0ddcf))
1687
+
1688
+
1689
+ ### Features
1690
+
1691
+ * cssPath will stop and return path if id or eid found... rather then continuing to travel up the dom tree ([17d6ced](https://github.com/CoCreate-app/CoCreate-utils/commit/17d6ced222f0552f870f2feeffecf7970ad653a3))
1692
+
1693
+ ## [1.2.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.2.0...v1.2.1) (2021-10-29)
1694
+
1695
+
1696
+ ### Bug Fixes
1697
+
1698
+ * update dependencies ([f77e945](https://github.com/CoCreate-app/CoCreate-utils/commit/f77e945e2b17310d20769434492bd074e99a1d78))
1699
+
1700
+ # [1.2.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.36...v1.2.0) (2021-10-29)
1701
+
1702
+
1703
+ ### Features
1704
+
1705
+ * cssPath and domParser ([25c5088](https://github.com/CoCreate-app/CoCreate-utils/commit/25c508855c663f5e2f64596549d1eccb14eb4292))
1706
+
1707
+ ## [1.1.36](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.35...v1.1.36) (2021-10-17)
1708
+
1709
+
1710
+ ### Bug Fixes
1711
+
1712
+ * update dependendies ([c5a34a9](https://github.com/CoCreate-app/CoCreate-utils/commit/c5a34a9ce6cff492f76e8e614a35860037d1f722))
1713
+
1714
+ ## [1.1.35](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.34...v1.1.35) (2021-10-16)
1715
+
1716
+
1717
+ ### Bug Fixes
1718
+
1719
+ * update socket package to fix bug in docs ([a5e71bd](https://github.com/CoCreate-app/CoCreate-utils/commit/a5e71bd6b6ae2a6cb025a50c91f6d90868c3f286))
1720
+
1721
+ ## [1.1.34](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.33...v1.1.34) (2021-10-15)
1722
+
1723
+
1724
+ ### Bug Fixes
1725
+
1726
+ * update dependencies ([c0118c8](https://github.com/CoCreate-app/CoCreate-utils/commit/c0118c87f282ba84eaf9394ee82d9e8273842629))
1727
+ * update dependencies ([f388916](https://github.com/CoCreate-app/CoCreate-utils/commit/f388916f3ba3fdf76aa9d9e6e80d9ea53cb36af1))
1728
+
1729
+ ## [1.1.33](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.32...v1.1.33) (2021-10-15)
1730
+
1731
+
1732
+ ### Bug Fixes
1733
+
1734
+ * update packages ([e525a27](https://github.com/CoCreate-app/CoCreate-utils/commit/e525a2736d8ec2079c0808804626d79e6a438f93))
1735
+
1736
+ ## [1.1.32](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.31...v1.1.32) (2021-10-15)
1737
+
1738
+
1739
+ ### Bug Fixes
1740
+
1741
+ * updated dependencies ([c1dd75e](https://github.com/CoCreate-app/CoCreate-utils/commit/c1dd75e7d0d7c96aecf399cd7340d14a299ec0f2))
1742
+
1743
+ ## [1.1.31](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.30...v1.1.31) (2021-10-13)
1744
+
1745
+
1746
+ ### Bug Fixes
1747
+
1748
+ * update descriptions ([64fbbc6](https://github.com/CoCreate-app/CoCreate-utils/commit/64fbbc610289b180b72c8b372424835f57e2430f))
1749
+
1750
+ ## [1.1.30](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.29...v1.1.30) (2021-10-13)
1751
+
1752
+
1753
+ ### Bug Fixes
1754
+
1755
+ * update dependencies ([611597a](https://github.com/CoCreate-app/CoCreate-utils/commit/611597a68a44407870096408dfcc6cd3446560d9))
1756
+
1757
+ ## [1.1.29](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.28...v1.1.29) (2021-10-06)
1758
+
1759
+
1760
+ ### Bug Fixes
1761
+
1762
+ * update dependencies ([82fbcbc](https://github.com/CoCreate-app/CoCreate-utils/commit/82fbcbc7c034c2dd2185812cd9c2f1ccc9f9a1ef))
1763
+
1764
+ ## [1.1.28](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.27...v1.1.28) (2021-10-05)
1765
+
1766
+
1767
+ ### Bug Fixes
1768
+
1769
+ * update dependencies ([fce9515](https://github.com/CoCreate-app/CoCreate-utils/commit/fce9515f11247a3653f3bbb4ff34926b66d76459))
1770
+ * website_id in CoCreate.config ([dc0ba5c](https://github.com/CoCreate-app/CoCreate-utils/commit/dc0ba5c7956c959d5b3a2535f1e37e69e7d4f1aa))
1771
+
1772
+ ## [1.1.27](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.26...v1.1.27) (2021-10-04)
1773
+
1774
+
1775
+ ### Bug Fixes
1776
+
1777
+ * update dependencies ([fae48cb](https://github.com/CoCreate-app/CoCreate-utils/commit/fae48cb6eeed8ae6b474be2ff30f7deb190fe190))
1778
+
1779
+ ## [1.1.26](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.25...v1.1.26) (2021-10-04)
1780
+
1781
+
1782
+ ### Bug Fixes
1783
+
1784
+ * remove configMatch from exports ([069417e](https://github.com/CoCreate-app/CoCreate-utils/commit/069417e0bd8d4b1b798034497b72c9d7d05840df))
1785
+
1786
+ ## [1.1.25](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.24...v1.1.25) (2021-10-04)
1787
+
1788
+
1789
+ ### Bug Fixes
1790
+
1791
+ * relocated matchConfig to @cocreate/element-config ([0ff7505](https://github.com/CoCreate-app/CoCreate-utils/commit/0ff7505e6c38727179d3d39221551c294926e6e4))
1792
+
1793
+ ## [1.1.24](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.23...v1.1.24) (2021-10-02)
1794
+
1795
+
1796
+ ### Bug Fixes
1797
+
1798
+ * removed unused functions ([49e4e46](https://github.com/CoCreate-app/CoCreate-utils/commit/49e4e461bf572897012052e235430c4cf3a23808))
1799
+
1800
+ ## [1.1.23](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.22...v1.1.23) (2021-10-02)
1801
+
1802
+
1803
+ ### Bug Fixes
1804
+
1805
+ * removed unused utilties ([b7d4c93](https://github.com/CoCreate-app/CoCreate-utils/commit/b7d4c93cb44ff202e33fc1f2be7643c7bef75cb1))
1806
+ * reverted prevoius changes ([303bcf1](https://github.com/CoCreate-app/CoCreate-utils/commit/303bcf1d77260b39fd05d45ffe69b1d99f027a90))
1807
+
1808
+ ## [1.1.22](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.21...v1.1.22) (2021-10-01)
1809
+
1810
+
1811
+ ### Bug Fixes
1812
+
1813
+ * update packages ([77b69a1](https://github.com/CoCreate-app/CoCreate-utils/commit/77b69a172adc0a8186bf6c4284ff643a4b7d37de))
1814
+
1815
+ ## [1.1.21](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.20...v1.1.21) (2021-10-01)
1816
+
1817
+
1818
+ ### Bug Fixes
1819
+
1820
+ * update dependencies ([36a9a59](https://github.com/CoCreate-app/CoCreate-utils/commit/36a9a59fb27d49223aded9236d490b6e308a6b86))
1821
+
1822
+ ## [1.1.20](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.19...v1.1.20) (2021-09-28)
1823
+
1824
+
1825
+ ### Bug Fixes
1826
+
1827
+ * update dependencies ([b110537](https://github.com/CoCreate-app/CoCreate-utils/commit/b11053759d32263badf4d622a75be7539e45791d))
1828
+
1829
+ ## [1.1.19](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.18...v1.1.19) (2021-09-16)
1830
+
1831
+
1832
+ ### Bug Fixes
1833
+
1834
+ * update dependencies ([4e227bd](https://github.com/CoCreate-app/CoCreate-utils/commit/4e227bd655df2a811cfc61ade1409b7a7424559c))
1835
+
1836
+ ## [1.1.18](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.17...v1.1.18) (2021-09-14)
1837
+
1838
+
1839
+ ### Bug Fixes
1840
+
1841
+ * add cocreate.app to domains ([e570e58](https://github.com/CoCreate-app/CoCreate-utils/commit/e570e58569fac4f3309746a1a8888daa0192c1df))
1842
+
1843
+ ## [1.1.17](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.16...v1.1.17) (2021-09-13)
1844
+
1845
+
1846
+ ### Bug Fixes
1847
+
1848
+ * upgrade dependencies ([303315d](https://github.com/CoCreate-app/CoCreate-utils/commit/303315d7010bd7c1cf15ef96f715af543c3e3d84))
1849
+
1850
+ ## [1.1.16](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.15...v1.1.16) (2021-09-12)
1851
+
1852
+
1853
+ ### Bug Fixes
1854
+
1855
+ * update sidenav to use resize and toggle ([24a3e09](https://github.com/CoCreate-app/CoCreate-utils/commit/24a3e0908f062987c1da18732ace2d84a2a5b6b4))
1856
+
1857
+ ## [1.1.15](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.14...v1.1.15) (2021-09-09)
1858
+
1859
+
1860
+ ### Bug Fixes
1861
+
1862
+ * update dependency @cocreate/docs ([8026f9a](https://github.com/CoCreate-app/CoCreate-utils/commit/8026f9a5a7882250afaa73e8de47b8413742c0fe))
1863
+
1864
+ ## [1.1.14](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.13...v1.1.14) (2021-09-09)
1865
+
1866
+
1867
+ ### Bug Fixes
1868
+
1869
+ * ci docs ([f889bc3](https://github.com/CoCreate-app/CoCreate-utils/commit/f889bc34976b6932b878975cef224c78b4f154ba))
1870
+
1871
+ ## [1.1.13](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.12...v1.1.13) (2021-09-09)
1872
+
1873
+
1874
+ ### Bug Fixes
1875
+
1876
+ * update dependencies ([a6efa27](https://github.com/CoCreate-app/CoCreate-utils/commit/a6efa2796f51b5a94f81dc32c900b7dc65706d6c))
1877
+
1878
+ ## [1.1.12](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.11...v1.1.12) (2021-09-09)
1879
+
1880
+
1881
+ ### Bug Fixes
1882
+
1883
+ * CoCreate.config directory, path, name and public ([197bbcf](https://github.com/CoCreate-app/CoCreate-utils/commit/197bbcf6dc27b7db1a4f6bae623138075b12e192))
1884
+
1885
+ ## [1.1.11](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.10...v1.1.11) (2021-09-08)
1886
+
1887
+
1888
+ ### Bug Fixes
1889
+
1890
+ * update dependencies ([4f4835c](https://github.com/CoCreate-app/CoCreate-utils/commit/4f4835c38aeb8871ba8e0283cc6b68254e112a5b))
1891
+
1892
+ ## [1.1.10](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.9...v1.1.10) (2021-09-04)
1893
+
1894
+
1895
+ ### Bug Fixes
1896
+
1897
+ * update dependencies ([ccc34f0](https://github.com/CoCreate-app/CoCreate-utils/commit/ccc34f0702407aeb04b904fd9d487becfd63de2e))
1898
+
1899
+ ## [1.1.9](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.8...v1.1.9) (2021-08-31)
1900
+
1901
+
1902
+ ### Bug Fixes
1903
+
1904
+ * update dependencies ([6f15f55](https://github.com/CoCreate-app/CoCreate-utils/commit/6f15f55d2639ee2f1b307b49fe2d70d02861d7c4))
1905
+
1906
+ ## [1.1.8](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.7...v1.1.8) (2021-08-27)
1907
+
1908
+
1909
+ ### Bug Fixes
1910
+
1911
+ * updaed dependencies ([ba3d183](https://github.com/CoCreate-app/CoCreate-utils/commit/ba3d183f54fc3099bd47ae9b504c59299cd51de5))
1912
+
1913
+ ## [1.1.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.6...v1.1.7) (2021-08-23)
1914
+
1915
+
1916
+ ### Bug Fixes
1917
+
1918
+ * update package versions ([2136a18](https://github.com/CoCreate-app/CoCreate-utils/commit/2136a1856f6fb3fd7e922859f8adeef7e1af6718))
1919
+
1920
+ ## [1.1.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.5...v1.1.6) (2021-08-22)
1921
+
1922
+
1923
+ ### Bug Fixes
1924
+
1925
+ * removed data- from main-content, clone, filter-value_type ([e5f182e](https://github.com/CoCreate-app/CoCreate-utils/commit/e5f182e08ef0a0198e54d9c4f4acd9097fb34165))
1926
+
1927
+ ## [1.1.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.4...v1.1.5) (2021-08-22)
1928
+
1929
+
1930
+ ### Bug Fixes
1931
+
1932
+ * bump package versions ([00dd6ba](https://github.com/CoCreate-app/CoCreate-utils/commit/00dd6ba11390c83fa5cf34b1ea81d034966952ea))
1933
+
1934
+ ## [1.1.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.3...v1.1.4) (2021-08-22)
1935
+
1936
+
1937
+ ### Bug Fixes
1938
+
1939
+ * bump package versions ([b394252](https://github.com/CoCreate-app/CoCreate-utils/commit/b39425257a92bed3a70b8e68714ddab1edc1ed0a))
1940
+
1941
+ ## [1.1.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.2...v1.1.3) (2021-08-14)
1942
+
1943
+
1944
+ ### Bug Fixes
1945
+
1946
+ * update to docs ([2e7fba9](https://github.com/CoCreate-app/CoCreate-utils/commit/2e7fba91ec908fef3645cc55fb2c18f5ca1ddb0d))
1947
+
1948
+ ## [1.1.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.1...v1.1.2) (2021-08-02)
1949
+
1950
+
1951
+ ### Bug Fixes
1952
+
1953
+ * remove data- from attributes ([94e0b2a](https://github.com/CoCreate-app/CoCreate-utils/commit/94e0b2a6b6c82445a1c0cd3fb627a6ad287e20fd))
1954
+ * update data-fullscreen to fullscreen ([3f97b5c](https://github.com/CoCreate-app/CoCreate-utils/commit/3f97b5c79f2ddda24b5452df5a976fc8dde2cd39))
1955
+
1956
+ ## [1.1.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.1.0...v1.1.1) (2021-07-28)
1957
+
1958
+
1959
+ ### Bug Fixes
1960
+
1961
+ * remove data- from fetch, pass and filter ([7a2ba8c](https://github.com/CoCreate-app/CoCreate-utils/commit/7a2ba8cfc3d342bf8f02d5f95163a0061be8e65d))
1962
+
1963
+ # [1.1.0](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.21...v1.1.0) (2021-07-28)
1964
+
1965
+
1966
+ ### Features
1967
+
1968
+ * add new is{attribute} system and remove data- from attributtes ([98ed4b1](https://github.com/CoCreate-app/CoCreate-utils/commit/98ed4b1ef1e0add092c6d0dd0fbbffd9271aa8fd))
1969
+
1970
+ ## [1.0.21](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.20...v1.0.21) (2021-07-17)
1971
+
1972
+
1973
+ ### Bug Fixes
1974
+
1975
+ * init and update demos scripts ([7baf1c8](https://github.com/CoCreate-app/CoCreate-utils/commit/7baf1c82a5aa0887730a28f95c7dae80a0d66da2))
1976
+ * workflows ([35b25e1](https://github.com/CoCreate-app/CoCreate-utils/commit/35b25e13ff2a072b572a21a2b0ab2a7074f30b2a))
1977
+
1978
+ ## [1.0.20](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.19...v1.0.20) (2021-07-14)
1979
+
1980
+
1981
+ ### Bug Fixes
1982
+
1983
+ * upgrade all packages ([82aab58](https://github.com/CoCreate-app/CoCreate-utils/commit/82aab58878db6c589cba0d4df8cdfb2dd2444008))
1984
+
1985
+ ## [1.0.19](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.18...v1.0.19) (2021-07-13)
1986
+
1987
+
1988
+ ### Bug Fixes
1989
+
1990
+ * add yarn lockfile to git ignore ([acc31a1](https://github.com/CoCreate-app/CoCreate-utils/commit/acc31a17a8d67948de170435a916a5ca036fb39e))
1991
+ * remove yarn.lock ([4059687](https://github.com/CoCreate-app/CoCreate-utils/commit/4059687ceeddc13eeccf40a60d79a8ef1dc82b2b))
1992
+
1993
+ ## [1.0.18](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.17...v1.0.18) (2021-07-10)
1994
+
1995
+
1996
+ ### Bug Fixes
1997
+
1998
+ * gitignore all logs ([05e2893](https://github.com/CoCreate-app/CoCreate-utils/commit/05e289339aa8d7a2f5dcdcc808e1644ea190efa9))
1999
+
2000
+ ## [1.0.17](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.16...v1.0.17) (2021-07-07)
2001
+
2002
+
2003
+ ### Bug Fixes
2004
+
2005
+ * update package versions ([0a83875](https://github.com/CoCreate-app/CoCreate-utils/commit/0a8387520dda6948b2d1af9bae3de6b0ce795725))
2006
+
2007
+ ## [1.0.16](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.15...v1.0.16) (2021-06-30)
2008
+
2009
+
2010
+ ### Bug Fixes
2011
+
2012
+ * Update readme.md ([9afa4cb](https://github.com/CoCreate-app/CoCreate-utils/commit/9afa4cb1d8bfe4658ef0b17939b157ef50300cee))
2013
+
2014
+ ## [1.0.15](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.14...v1.0.15) (2021-06-30)
2015
+
2016
+
2017
+ ### Bug Fixes
2018
+
2019
+ * automated and manual workflows ([f82fdb0](https://github.com/CoCreate-app/CoCreate-utils/commit/f82fdb00215289e510e556a76aa99f486aa36633))
2020
+
2021
+ ## [1.0.14](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.13...v1.0.14) (2021-06-25)
2022
+
2023
+
2024
+ ### Bug Fixes
2025
+
2026
+ * latest version numbers applied to all cocreate packages ([a8168c1](https://github.com/CoCreate-app/CoCreate-utils/commit/a8168c18f2be60eb08d75c990129d30bdbb864f3))
2027
+
2028
+ ## [1.0.13](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.12...v1.0.13) (2021-06-24)
2029
+
2030
+
2031
+ ### Bug Fixes
2032
+
2033
+ * package versioningto 1.0.0 ([c80db11](https://github.com/CoCreate-app/CoCreate-utils/commit/c80db1116ba547c538ed4f2d9b1c35451a88ba96))
2034
+
2035
+ ## [1.0.12](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.11...v1.0.12) (2021-06-24)
2036
+
2037
+
2038
+ ### Bug Fixes
2039
+
2040
+ * update all [@cocreate](https://github.com/cocreate) to use latest versions ([4c64b7b](https://github.com/CoCreate-app/CoCreate-utils/commit/4c64b7b1d14801a7597a1746ec524804b01b46ca))
2041
+
2042
+ ## [1.0.11](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.10...v1.0.11) (2021-06-23)
2043
+
2044
+
2045
+ ### Bug Fixes
2046
+
2047
+ * update checkValue to checkAttrValue ([a33ec95](https://github.com/CoCreate-app/CoCreate-utils/commit/a33ec95fe6e64a9dbaacd5747d89e51fb98d0563))
2048
+
2049
+ ## [1.0.10](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.9...v1.0.10) (2021-06-20)
2050
+
2051
+
2052
+ ### Bug Fixes
2053
+
2054
+ * new mutaionObserver init function ([bc296e7](https://github.com/CoCreate-app/CoCreate-utils/commit/bc296e749964365a8dbdd4f8452364fda49f6ab3))
2055
+
2056
+ ## [1.0.9](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.8...v1.0.9) (2021-06-17)
2057
+
2058
+
2059
+ ### Bug Fixes
2060
+
2061
+ * added header for seo ([102167c](https://github.com/CoCreate-app/CoCreate-utils/commit/102167c3ed079729022811096c3172eff980c0d1))
2062
+
2063
+ ## [1.0.8](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.7...v1.0.8) (2021-06-06)
2064
+
2065
+
2066
+ ### Bug Fixes
2067
+
2068
+ * update packages, add uuid, add data-parse to demos ([1bdf18f](https://github.com/CoCreate-app/CoCreate-utils/commit/1bdf18ff122a94c4aba77ac905c12be17bb0b1f1))
2069
+
2070
+ ## [1.0.7](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.6...v1.0.7) (2021-05-08)
2071
+
2072
+
2073
+ ### Bug Fixes
2074
+
2075
+ * add css auto parse and save to docs. ([1bd0ff1](https://github.com/CoCreate-app/CoCreate-utils/commit/1bd0ff186bf45b2123a08ebf0a1e3e6bf1072f33))
2076
+
2077
+ ## [1.0.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.5...v1.0.6) (2021-04-27)
2078
+
2079
+
2080
+ ### Bug Fixes
2081
+
2082
+ * add host in docs ([a71d6ef](https://github.com/CoCreate-app/CoCreate-utils/commit/a71d6ef5cde9c98d75348382b8174c6967c9b218))
2083
+
2084
+ ## [1.0.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.4...v1.0.5) (2021-04-27)
2085
+
2086
+
2087
+ ### Bug Fixes
2088
+
2089
+ * Update to readme, demo, added cdn scripts ([a322382](https://github.com/CoCreate-app/CoCreate-utils/commit/a322382c6a8fa5878459597751ad866af105e8b5))
2090
+
2091
+ ## [1.0.4](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.3...v1.0.4) (2021-04-23)
2092
+
2093
+
2094
+ ### Bug Fixes
2095
+
2096
+ * readme and documentation. Removed securitykeys ([15bf3b8](https://github.com/CoCreate-app/CoCreate-utils/commit/15bf3b80360d107474d7a085325f9ecf0b785ffa))
2097
+
2098
+ ## [1.0.3](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.2...v1.0.3) (2021-04-19)
2099
+
2100
+
2101
+ ### Bug Fixes
2102
+
2103
+ * ci and build process ([cfb2160](https://github.com/CoCreate-app/CoCreate-utils/commit/cfb216065c1efe0de27f5d387961e35b0f1cb9f7))
2104
+ * npm publish and cdn deployment ([e0475e5](https://github.com/CoCreate-app/CoCreate-utils/commit/e0475e5f15ece4e8e32364f6dc108caa16f02291))
2105
+
2106
+ ## [1.0.2](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.1...v1.0.2) (2021-04-04)
2107
+
2108
+
2109
+ ### Bug Fixes
2110
+
2111
+ * update socket to socket-lient and crud to crud client" ([02d38d1](https://github.com/CoCreate-app/CoCreate-utils/commit/02d38d196db42a9d2ae9644ab45f6cb7f7018983))
2112
+
2113
+ ## [1.0.1](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.0.0...v1.0.1) (2021-03-29)
2114
+
2115
+
2116
+ ### Bug Fixes
2117
+
2118
+ * Package Paths ([e3922fe](https://github.com/CoCreate-app/CoCreate-utils/commit/e3922fe7a0d8eaf1280cb908fe9e5637273e5e2b))
2119
+
2120
+ # 1.0.0 (2021-03-29)
2121
+
2122
+
2123
+ ### Features
2124
+
2125
+ * Initial Release ([6c42b88](https://github.com/CoCreate-app/CoCreate-utils/commit/6c42b88a97bb8b3c92a42f4d5a6bd1f5463ab79d))