@cocreate/utils 1.42.0 → 1.42.2

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