@aurodesignsystem-dev/auro-library 0.0.0-pr187.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/.husky/commit-msg +4 -0
  2. package/.husky/pre-commit +4 -0
  3. package/.tool-versions +1 -0
  4. package/CHANGELOG.md +664 -0
  5. package/LICENSE +201 -0
  6. package/README.md +235 -0
  7. package/bin/generateDocs.mjs +210 -0
  8. package/bin/generateDocs_index.mjs +210 -0
  9. package/package.json +92 -0
  10. package/scripts/build/generateDocs.mjs +24 -0
  11. package/scripts/build/generateReadme.mjs +60 -0
  12. package/scripts/build/generateWcaComponent.mjs +43 -0
  13. package/scripts/build/postCss.mjs +66 -0
  14. package/scripts/build/postinstall.mjs +31 -0
  15. package/scripts/build/pre-commit.mjs +17 -0
  16. package/scripts/build/prepWcaCompatibleCode.mjs +19 -0
  17. package/scripts/build/processors/defaultDocsProcessor.mjs +83 -0
  18. package/scripts/build/processors/defaultDotGithubSync.mjs +83 -0
  19. package/scripts/build/staticStyles-template.js +2 -0
  20. package/scripts/build/syncGithubFiles.mjs +25 -0
  21. package/scripts/build/versionWriter.js +26 -0
  22. package/scripts/runtime/FocusTrap/FocusTrap.mjs +194 -0
  23. package/scripts/runtime/FocusTrap/index.mjs +1 -0
  24. package/scripts/runtime/FocusTrap/test/FocusTrap.test.js +168 -0
  25. package/scripts/runtime/Focusables/Focusables.mjs +157 -0
  26. package/scripts/runtime/Focusables/index.mjs +1 -0
  27. package/scripts/runtime/Focusables/test/Focusables.test.js +165 -0
  28. package/scripts/runtime/dateUtilities/baseDateUtilities.mjs +58 -0
  29. package/scripts/runtime/dateUtilities/dateConstraints.mjs +11 -0
  30. package/scripts/runtime/dateUtilities/dateFormatter.mjs +104 -0
  31. package/scripts/runtime/dateUtilities/dateUtilities.mjs +218 -0
  32. package/scripts/runtime/dateUtilities/index.mjs +26 -0
  33. package/scripts/runtime/dependencyTagVersioning.mjs +42 -0
  34. package/scripts/runtime/floatingUI.mjs +646 -0
  35. package/scripts/test-plugin/iterateWithA11Check.mjs +82 -0
  36. package/scripts/utils/auroFileHandler.mjs +70 -0
  37. package/scripts/utils/auroLibraryUtils.mjs +206 -0
  38. package/scripts/utils/auroTemplateFiller.mjs +178 -0
  39. package/scripts/utils/logger.mjs +73 -0
  40. package/scripts/utils/runtimeUtils.mjs +70 -0
  41. package/scripts/utils/sharedFileProcessorUtils.mjs +270 -0
  42. package/shellScripts/README.md +58 -0
  43. package/shellScripts/automation.sh +104 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,664 @@
1
+ # Semantic Release Automated Changelog
2
+
3
+ ## [5.3.2](https://github.com/AlaskaAirlines/auro-library/compare/v5.3.1...v5.3.2) (2025-07-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * remove mousedown `preventDefault` on bib ([0f92a2f](https://github.com/AlaskaAirlines/auro-library/commit/0f92a2fd3c10cbe0c2d978aa6b3bf2404fae0761))
9
+
10
+ ## [5.3.1](https://github.com/AlaskaAirlines/auro-library/compare/v5.3.0...v5.3.1) (2025-07-11)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add contain: layout as needed to resolve issues with positioning in projects that use tailwindcss ([ad8474d](https://github.com/AlaskaAirlines/auro-library/commit/ad8474d958bcf088be880f494f0505e873819490))
16
+
17
+ # [5.3.0](https://github.com/AlaskaAirlines/auro-library/compare/v5.2.3...v5.3.0) (2025-07-04)
18
+
19
+
20
+ ### Features
21
+
22
+ * add event type to auroDropdown-toggled for keyboard detection ([d7ec5b7](https://github.com/AlaskaAirlines/auro-library/commit/d7ec5b755cee75d0371bf3202d5a382ce20cd47c))
23
+
24
+ ## [5.2.3](https://github.com/AlaskaAirlines/auro-library/compare/v5.2.2...v5.2.3) (2025-07-02)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * check for matchWidth before forcing dropdown width ([706f7ee](https://github.com/AlaskaAirlines/auro-library/commit/706f7eefe15d2ab5f5e208a14fe6e337d5b4e1c5))
30
+
31
+ ## [5.2.2](https://github.com/AlaskaAirlines/auro-library/compare/v5.2.1...v5.2.2) (2025-06-27)
32
+
33
+
34
+ ### Bug Fixes
35
+
36
+ * correct logic for key handling when enter is pressed in the trigger of a floatingui element ([f310866](https://github.com/AlaskaAirlines/auro-library/commit/f310866d6137aa2e8a2a2a62c95bbe00867bf09d))
37
+
38
+ ## [5.2.1](https://github.com/AlaskaAirlines/auro-library/compare/v5.2.0...v5.2.1) (2025-06-26)
39
+
40
+
41
+ ### Performance Improvements
42
+
43
+ * add deep nested focusable elements support in focustrap ([68b0262](https://github.com/AlaskaAirlines/auro-library/commit/68b0262157f0a2cad24d603e67c59e2b2ea0f76f))
44
+
45
+ # [5.2.0](https://github.com/AlaskaAirlines/auro-library/compare/v5.1.0...v5.2.0) (2025-06-24)
46
+
47
+
48
+ ### Features
49
+
50
+ * add support for component tag name attributes when detecting focusable components ([3a10af3](https://github.com/AlaskaAirlines/auro-library/commit/3a10af334c24bdc52404e7ecf85effb2a1afd574))
51
+
52
+ # [5.1.0](https://github.com/AlaskaAirlines/auro-library/compare/v5.0.2...v5.1.0) (2025-06-18)
53
+
54
+
55
+ ### Features
56
+
57
+ * add focus trap ([1ec8290](https://github.com/AlaskaAirlines/auro-library/commit/1ec82905e5fc27aa0e4769df683462ebbce08bcd))
58
+
59
+ ## [5.0.2](https://github.com/AlaskaAirlines/auro-library/compare/v5.0.1...v5.0.2) (2025-06-02)
60
+
61
+
62
+ ### Bug Fixes
63
+
64
+ * add optional locale to get date string from a specific locale instead of the users locale ([dc188c1](https://github.com/AlaskaAirlines/auro-library/commit/dc188c15c10bcde4bec30284838b4f2866c78b01))
65
+
66
+ ## [5.0.1](https://github.com/AlaskaAirlines/auro-library/compare/v5.0.0...v5.0.1) (2025-06-02)
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * resolve issues with isMousePressed and keeping bibs open on focus loss ([3ae2c38](https://github.com/AlaskaAirlines/auro-library/commit/3ae2c38003eda3c58f1278924844bfd9f57e349f))
72
+
73
+ # [5.0.0](https://github.com/AlaskaAirlines/auro-library/compare/v4.5.0...v5.0.0) (2025-05-29)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * update positioning strategy and remove dom node transportation from FloatingUI ([3e01ab2](https://github.com/AlaskaAirlines/auro-library/commit/3e01ab2e8cadfa76d7d057abc6626b7b09ef568f))
79
+
80
+
81
+ ### BREAKING CHANGES
82
+
83
+ * this changes the fundamental strategy for implementing FloatingUI and will require accommodating changes in consuming code to work correctly
84
+
85
+ # [4.5.0](https://github.com/AlaskaAirlines/auro-library/compare/v4.4.1...v4.5.0) (2025-05-15)
86
+
87
+
88
+ ### Features
89
+
90
+ * add an advanced `iterate()` to test the given action AND a11y [#159](https://github.com/AlaskaAirlines/auro-library/issues/159) ([0d1734c](https://github.com/AlaskaAirlines/auro-library/commit/0d1734ca3403b51962412444f8264b088482af21))
91
+
92
+ ## [4.4.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.4.0...v4.4.1) (2025-05-01)
93
+
94
+
95
+ ### Bug Fixes
96
+
97
+ * allow typing in space on Input Element ([7d0e250](https://github.com/AlaskaAirlines/auro-library/commit/7d0e25053bbfe52f5038224f82e60054facfef81))
98
+
99
+ # [4.4.0](https://github.com/AlaskaAirlines/auro-library/compare/v4.3.1...v4.4.0) (2025-04-30)
100
+
101
+
102
+ ### Features
103
+
104
+ * add support for dayless (e.g. 10/1999) and two-digit year (e.g. 10/99) date formats ([50b730b](https://github.com/AlaskaAirlines/auro-library/commit/50b730bd5ed9a5de7f3c3b44cb0826d96dfed982))
105
+
106
+ ## [4.3.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.3.0...v4.3.1) (2025-04-30)
107
+
108
+
109
+ ### Bug Fixes
110
+
111
+ * add .element to fix undefined value on isPopoverVisible ([69f4223](https://github.com/AlaskaAirlines/auro-library/commit/69f4223e35a6f180d932e669c2514a03369a47a3))
112
+
113
+ ## [4.3.1-beta.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.3.0...v4.3.1-beta.1) (2025-04-30)
114
+
115
+
116
+ ### Bug Fixes
117
+
118
+ * add .element to fix undefined value on isPopoverVisible ([69f4223](https://github.com/AlaskaAirlines/auro-library/commit/69f4223e35a6f180d932e669c2514a03369a47a3))
119
+
120
+ # [4.3.0](https://github.com/AlaskaAirlines/auro-library/compare/v4.2.1...v4.3.0) (2025-04-18)
121
+
122
+
123
+ ### Bug Fixes
124
+
125
+ * update `matchDate` function to correctly check older dates than year 1000 ([81852fc](https://github.com/AlaskaAirlines/auro-library/commit/81852fc18b6cabc5a4f009c9ddda4a2c10119a67))
126
+
127
+
128
+ ### Features
129
+
130
+ * add exported date constraints to dateUtilities for external reference by consumers and allow for barrel imports ([d796e96](https://github.com/AlaskaAirlines/auro-library/commit/d796e963ab5a1db778c78b2b15e45cd28ea1100d))
131
+
132
+ # [4.3.0-beta.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.2.2-beta.1...v4.3.0-beta.1) (2025-04-16)
133
+
134
+
135
+ ### Features
136
+
137
+ * add exported date constraints to dateUtilities for external reference by consumers and allow for barrel imports ([d796e96](https://github.com/AlaskaAirlines/auro-library/commit/d796e963ab5a1db778c78b2b15e45cd28ea1100d))
138
+
139
+ ## [4.2.2-beta.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.2.1...v4.2.2-beta.1) (2025-04-16)
140
+
141
+
142
+ ### Bug Fixes
143
+
144
+ * update `matchDate` function to correctly check older dates than year 1000 ([81852fc](https://github.com/AlaskaAirlines/auro-library/commit/81852fc18b6cabc5a4f009c9ddda4a2c10119a67))
145
+
146
+ ## [4.2.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.2.0...v4.2.1) (2025-04-14)
147
+
148
+
149
+ ### Bug Fixes
150
+
151
+ * add SSR env condition check in floatingUI ([c71a77e](https://github.com/AlaskaAirlines/auro-library/commit/c71a77ed805dc2e61593dd0c483a01c9f19e2a01))
152
+ * correct method call to hide dropdown in AuroFloatingUI class ([44e30fc](https://github.com/AlaskaAirlines/auro-library/commit/44e30fc384be9adbcd3f493faba4c2f652c019f3))
153
+ * not to hide bib on blur event with mouse being pressed ([8808ee6](https://github.com/AlaskaAirlines/auro-library/commit/8808ee6911ccfb81c0e9a0ed23762852983e1239))
154
+ * remove bib on disconnect in floatingUI ([b5a2935](https://github.com/AlaskaAirlines/auro-library/commit/b5a29358910199589422067ad30767c99bb16daa))
155
+ * setup mousePressChecker in floatingUI's configure function ([6136d36](https://github.com/AlaskaAirlines/auro-library/commit/6136d36a980802dc56a0bea9d9aa12b7bf3e6621))
156
+
157
+ # [4.2.0](https://github.com/AlaskaAirlines/auro-library/compare/v4.1.1...v4.2.0) (2025-04-10)
158
+
159
+
160
+ ### Features
161
+
162
+ * add dateAndFormatMatch to date utilities ([4ce4779](https://github.com/AlaskaAirlines/auro-library/commit/4ce47799514a528d351ec829b8fc8f3f093868cf))
163
+
164
+ ## [4.1.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.1.0...v4.1.1) (2025-04-09)
165
+
166
+
167
+ ### Bug Fixes
168
+
169
+ * update wca writing script not to write lines with [@tags](https://github.com/tags) ([8ff5eab](https://github.com/AlaskaAirlines/auro-library/commit/8ff5eab39a656bcf2eac1d4439cb0d44d3208d48))
170
+
171
+ # [4.1.0](https://github.com/AlaskaAirlines/auro-library/compare/v4.0.0...v4.1.0) (2025-04-02)
172
+
173
+
174
+ ### Bug Fixes
175
+
176
+ * hide bib correctly when losing focus on trigger ([226ed07](https://github.com/AlaskaAirlines/auro-library/commit/226ed07a6200d733649f6a9f6e651b88e6ce0d64))
177
+ * prevent clicking background of bib resetting `document.activeElement` ([b8c64d4](https://github.com/AlaskaAirlines/auro-library/commit/b8c64d494e42917c7aabbbc64addf3d7076c62c6))
178
+
179
+
180
+ ### Features
181
+
182
+ * create date utilities library ([2241546](https://github.com/AlaskaAirlines/auro-library/commit/22415464a01fcf9a53e8b3b32787f068272b7eaf))
183
+
184
+ # [4.1.0-beta.2](https://github.com/AlaskaAirlines/auro-library/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2025-04-01)
185
+
186
+
187
+ ### Bug Fixes
188
+
189
+ * hide bib correctly when losing focus on trigger ([226ed07](https://github.com/AlaskaAirlines/auro-library/commit/226ed07a6200d733649f6a9f6e651b88e6ce0d64))
190
+ * prevent clicking background of bib resetting `document.activeElement` ([b8c64d4](https://github.com/AlaskaAirlines/auro-library/commit/b8c64d494e42917c7aabbbc64addf3d7076c62c6))
191
+
192
+ # [4.1.0-beta.1](https://github.com/AlaskaAirlines/auro-library/compare/v4.0.0...v4.1.0-beta.1) (2025-03-28)
193
+
194
+
195
+ ### Features
196
+
197
+ * create date utilities library ([2241546](https://github.com/AlaskaAirlines/auro-library/commit/22415464a01fcf9a53e8b3b32787f068272b7eaf))
198
+
199
+ # [4.0.0](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.13...v4.0.0) (2025-03-24)
200
+
201
+
202
+ ### Features
203
+
204
+ * add drawer behavior to floatingUI ([55e6d30](https://github.com/AlaskaAirlines/auro-library/commit/55e6d30df013193174af6b865e023bb14eaa6dd5))
205
+
206
+
207
+ ### Performance Improvements
208
+
209
+ * update randomize id logic to use crypto ([0ac1a85](https://github.com/AlaskaAirlines/auro-library/commit/0ac1a85a6ecdc90b68d2bc79238a9410bd00613d))
210
+
211
+
212
+ ### BREAKING CHANGES
213
+
214
+ * `data-show` attribute on bib won't be set by floatingUI
215
+
216
+ ## [3.0.13](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.12...v3.0.13) (2025-03-19)
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * correct method call to hide dropdown in AuroFloatingUI class ([27d9c6c](https://github.com/AlaskaAirlines/auro-library/commit/27d9c6cc8df7f5e6603e5dc231fae2d72a75a486))
222
+
223
+ ## [3.0.12](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.11...v3.0.12) (2025-03-19)
224
+
225
+
226
+ ### Bug Fixes
227
+
228
+ * update dropdown reference in AuroFloatingUI class ([0fe1cb3](https://github.com/AlaskaAirlines/auro-library/commit/0fe1cb3b127b83ad5e39748429263c99580dee70))
229
+
230
+ ## [3.0.11](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.10...v3.0.11) (2025-02-28)
231
+
232
+
233
+ ### Performance Improvements
234
+
235
+ * update eslint-config to get rid of node version warnings ([ecb349e](https://github.com/AlaskaAirlines/auro-library/commit/ecb349ebf223a9eb14f0e01ddaee5cfdc4558acd))
236
+
237
+ ## [3.0.10](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.9...v3.0.10) (2025-02-20)
238
+
239
+
240
+ ### Bug Fixes
241
+
242
+ * make bib not to pushed up by keyboard ([50773d0](https://github.com/AlaskaAirlines/auro-library/commit/50773d08141bebc5a9f8b50b83c94cd34149fc3d))
243
+
244
+ ## [3.0.9](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.8...v3.0.9) (2025-02-17)
245
+
246
+
247
+ ### Bug Fixes
248
+
249
+ * fix runtime error on floatingui with no trigger slot ([060c30f](https://github.com/AlaskaAirlines/auro-library/commit/060c30f3da32004e5e0d978949e7d65c661ddfed))
250
+ * lock body scroll only when bib is open in fullscreen mode ([ce5df91](https://github.com/AlaskaAirlines/auro-library/commit/ce5df91b981d7b41b9e938b7d41cc114a279cb59))
251
+ * simplify the strategy logic on `floatingUI` ([42c89db](https://github.com/AlaskaAirlines/auro-library/commit/42c89dbdf9cb48756928143b09b25aa82989dfd4))
252
+
253
+
254
+ ### Performance Improvements
255
+
256
+ * lock body's scroll while bib is open ([d78b46e](https://github.com/AlaskaAirlines/auro-library/commit/d78b46ecc689f45b75b3a5317ae029d8b3061c1e))
257
+
258
+ ## [3.0.8](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.7...v3.0.8) (2025-02-05)
259
+
260
+
261
+ ### Bug Fixes
262
+
263
+ * temporarily comment out aria-expanded code [#105](https://github.com/AlaskaAirlines/auro-library/issues/105) ([b7cd263](https://github.com/AlaskaAirlines/auro-library/commit/b7cd2632047641d92b3557beef9450d4d9f109c2))
264
+
265
+ ## [3.0.7](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.6...v3.0.7) (2025-01-13)
266
+
267
+
268
+ ### Performance Improvements
269
+
270
+ * add ability to pass custom env variables [#103](https://github.com/AlaskaAirlines/auro-library/issues/103) ([fab4c8e](https://github.com/AlaskaAirlines/auro-library/commit/fab4c8e10cab475426b3ed5dfe6db7e9ac99f07c))
271
+
272
+ ## [3.0.6](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.5...v3.0.6) (2025-01-02)
273
+
274
+
275
+ ### Bug Fixes
276
+
277
+ * postCSS reference path ([6d33791](https://github.com/AlaskaAirlines/auro-library/commit/6d33791e9f1b74c5052ffcaadc456a798c1ece4d))
278
+
279
+ ## [3.0.5](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.4...v3.0.5) (2024-12-27)
280
+
281
+
282
+ ### Bug Fixes
283
+
284
+ * force focus state to dropdown.trigger as `document.activeElement` stays in body even with clicking [#99](https://github.com/AlaskaAirlines/auro-library/issues/99) ([5bfec7a](https://github.com/AlaskaAirlines/auro-library/commit/5bfec7a004c48b4f9612193eb4a64057b81e57cc))
285
+
286
+ ## [3.0.4](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.3...v3.0.4) (2024-12-27)
287
+
288
+
289
+ ### Performance Improvements
290
+
291
+ * update `floatingUI` to match with `auro-formkit/dropdown` ([d003072](https://github.com/AlaskaAirlines/auro-library/commit/d00307245d16ad3a4d5aa1b2d60bb374caf3d454))
292
+
293
+ ## [3.0.3](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.2...v3.0.3) (2024-12-23)
294
+
295
+
296
+ ### Performance Improvements
297
+
298
+ * update node to version 22 ([6005e32](https://github.com/AlaskaAirlines/auro-library/commit/6005e32156c3c4e6d9b8205270092b4c77a1bf1a))
299
+
300
+ ## [3.0.2](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.1...v3.0.2) (2024-11-13)
301
+
302
+
303
+ ### Bug Fixes
304
+
305
+ * automatically create `docTemplate` when generating docs [#94](https://github.com/AlaskaAirlines/auro-library/issues/94) ([e6195d9](https://github.com/AlaskaAirlines/auro-library/commit/e6195d958233cd5b0902cb5afbf769dff246e852))
306
+
307
+
308
+ ### Performance Improvements
309
+
310
+ * omit dir exist checking (sourcery reccomendation) ([68de618](https://github.com/AlaskaAirlines/auro-library/commit/68de61844960bf6d32df2ed66ca714857da1d623))
311
+
312
+ ## [3.0.1](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.0...v3.0.1) (2024-11-07)
313
+
314
+
315
+ ### Bug Fixes
316
+
317
+ * make api table formatter a preProcessor ([98d3de1](https://github.com/AlaskaAirlines/auro-library/commit/98d3de1e290ea2e3f03da9ef0d167c3291bc195b))
318
+ * properly consume remoteReadmeVariant ([7b5f108](https://github.com/AlaskaAirlines/auro-library/commit/7b5f1082710288d86f8bf182c0ceb71ac3ad7420))
319
+ * sourcery feedback ([de11fe8](https://github.com/AlaskaAirlines/auro-library/commit/de11fe8d70946b6096970026406f63bd9fdc10ba))
320
+ * use fileURLToPath instead of manual formatting ([3d4e834](https://github.com/AlaskaAirlines/auro-library/commit/3d4e8348bf249620eb88a6e1094a8f920c34369a))
321
+ * use import.meta.url instead of __dirname ([9185197](https://github.com/AlaskaAirlines/auro-library/commit/9185197d8b0179dfe645497c640b025d8f39c6b3))
322
+
323
+ # [3.0.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.11.0...v3.0.0) (2024-11-05)
324
+
325
+
326
+ ### Bug Fixes
327
+
328
+ * add missing logger import ([8258705](https://github.com/AlaskaAirlines/auro-library/commit/8258705385b20950dba442a59fa41b56052955bf))
329
+ * sourcery feedback - change tag detection ([51b134f](https://github.com/AlaskaAirlines/auro-library/commit/51b134fea57c79e9625b6053296049c19959595a))
330
+
331
+
332
+ ### Features
333
+
334
+ * add more consistent "component root" path generator ([c88f5a8](https://github.com/AlaskaAirlines/auro-library/commit/c88f5a8018fcbcbc1deefa35a0152c1696681957))
335
+ * add syncGithubFiles.mjs script ([207009d](https://github.com/AlaskaAirlines/auro-library/commit/207009d000565566aed4687ed45ee7e286528856))
336
+ * **build:** new script that generate extended component files for `wca` to be able to analyze [#85](https://github.com/AlaskaAirlines/auro-library/issues/85) ([ae8e6ab](https://github.com/AlaskaAirlines/auro-library/commit/ae8e6ab41db40df05f53562e14692a943c37d796))
337
+ * change API for generateReadmeURL and processDocs ([a1a975c](https://github.com/AlaskaAirlines/auro-library/commit/a1a975c0d9020bdd71c9da0bf165777c54801e8b))
338
+
339
+
340
+ ### BREAKING CHANGES
341
+
342
+ * `processDocFiles` no longer accepts individual config arguments
343
+
344
+ # [2.11.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.10.1...v2.11.0) (2024-11-01)
345
+
346
+
347
+ ### Features
348
+
349
+ * adding .editoconfig file for IDE formatting ([82e2b64](https://github.com/AlaskaAirlines/auro-library/commit/82e2b64673319c8d5b18269dca2d0d3f8a7de83b))
350
+
351
+ ## [2.10.1](https://github.com/AlaskaAirlines/auro-library/compare/v2.10.0...v2.10.1) (2024-10-21)
352
+
353
+
354
+ ### Bug Fixes
355
+
356
+ * reference consuming component's package.json, rather than relatively ([21cf238](https://github.com/AlaskaAirlines/auro-library/commit/21cf2382a54d4a620d1d5d658fa928b54e15d077))
357
+
358
+ # [2.10.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.9.0...v2.10.0) (2024-10-09)
359
+
360
+
361
+ ### Bug Fixes
362
+
363
+ * add tmp/ to npmignore ([94a61b5](https://github.com/AlaskaAirlines/auro-library/commit/94a61b526b72dbe445633dfbea41bf56cc4fef89))
364
+ * update file ending and disable overwrite by default ([fd65cf3](https://github.com/AlaskaAirlines/auro-library/commit/fd65cf39f0051577c5fb43e77bd6bdd6cb0ccdf9))
365
+
366
+
367
+ ### Features
368
+
369
+ * add first test suites for doc gen ([88d8987](https://github.com/AlaskaAirlines/auro-library/commit/88d8987126d04f82d14a6ac11078d509eb3e8629))
370
+ * add vitest for unit testing ([0f96702](https://github.com/AlaskaAirlines/auro-library/commit/0f967027ea177f0218d3b6f44e973ce5d22768a8))
371
+
372
+
373
+ ### Performance Improvements
374
+
375
+ * remove extra comment from early in dev ([25ac890](https://github.com/AlaskaAirlines/auro-library/commit/25ac8903be38ca600fbd8b1e2ec02d56bc711770))
376
+
377
+ # [2.9.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.8.0...v2.9.0) (2024-10-07)
378
+
379
+
380
+ ### Bug Fixes
381
+
382
+ * add matchWord to md magic config ([372cb28](https://github.com/AlaskaAirlines/auro-library/commit/372cb28a1c9eb0bd5f1014a4a8a9e6415cf659e5))
383
+
384
+
385
+ ### Features
386
+
387
+ * add handlebars template support ([bc3851d](https://github.com/AlaskaAirlines/auro-library/commit/bc3851dd87eb907927a3e2e22de53013c5e4e958))
388
+ * add new processing paradigm ([9a1dd25](https://github.com/AlaskaAirlines/auro-library/commit/9a1dd254e1288a6c7873b145a62087a37233a641))
389
+
390
+ # [2.8.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.7.0...v2.8.0) (2024-09-19)
391
+
392
+
393
+ ### Features
394
+
395
+ * add runtime script for Floating UI [#65](https://github.com/AlaskaAirlines/auro-library/issues/65) ([e180fcb](https://github.com/AlaskaAirlines/auro-library/commit/e180fcb319e9ab6673765041b5a96057e562bd60))
396
+
397
+ # [2.7.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.6.3...v2.7.0) (2024-08-21)
398
+
399
+
400
+ ### Features
401
+
402
+ * add registerComponent function ([fc3a135](https://github.com/AlaskaAirlines/auro-library/commit/fc3a135f5fad8e3b5fc022f2e0f38443b11681fc))
403
+
404
+ ## [2.6.3](https://github.com/AlaskaAirlines/auro-library/compare/v2.6.2...v2.6.3) (2024-08-07)
405
+
406
+
407
+ ### Bug Fixes
408
+
409
+ * **readme:** update generateDocs script for dynamic readme support [#57](https://github.com/AlaskaAirlines/auro-library/issues/57) ([f3c3092](https://github.com/AlaskaAirlines/auro-library/commit/f3c3092f4c9cc61dcc9f4b55cb5f63be4127c6de))
410
+
411
+ ## [2.6.2](https://github.com/AlaskaAirlines/auro-library/compare/v2.6.1...v2.6.2) (2024-08-07)
412
+
413
+
414
+ ### Bug Fixes
415
+
416
+ * update various build scripts ([9b726b3](https://github.com/AlaskaAirlines/auro-library/commit/9b726b3ad2fd616987a4488cc440f0f7498c0028))
417
+
418
+ ## [2.6.1](https://github.com/AlaskaAirlines/auro-library/compare/v2.6.0...v2.6.1) (2024-08-06)
419
+
420
+
421
+ ### Performance Improvements
422
+
423
+ * cleanup and update existing build scripts ([b6d5d95](https://github.com/AlaskaAirlines/auro-library/commit/b6d5d952c8e0ce8c7636057e612ae821f5e85079))
424
+
425
+ # [2.6.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.5.1...v2.6.0) (2024-04-29)
426
+
427
+
428
+ ### Features
429
+
430
+ * **tagname:** add new functions for handling custom named components. [#51](https://github.com/AlaskaAirlines/auro-library/issues/51) ([1c7addc](https://github.com/AlaskaAirlines/auro-library/commit/1c7addcb9c637bdf043470e04626b9b4328ed6b6))
431
+
432
+ ## [2.5.1](https://github.com/AlaskaAirlines/auro-library/compare/v2.5.0...v2.5.1) (2024-02-07)
433
+
434
+
435
+ ### Bug Fixes
436
+
437
+ * update reference to index.md ([e504708](https://github.com/AlaskaAirlines/auro-library/commit/e5047082cc0e198d0ee8e35fccdd1d715e3ff940))
438
+
439
+ # [2.5.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.7...v2.5.0) (2024-02-07)
440
+
441
+
442
+ ### Features
443
+
444
+ * add alt generator ([4bb0207](https://github.com/AlaskaAirlines/auro-library/commit/4bb0207a47a80230954c876647115f47dc9cdfb4))
445
+ * add support for scrapping package.json ([551b407](https://github.com/AlaskaAirlines/auro-library/commit/551b4071ea407d5d5db68037fb63b1874161a35d))
446
+
447
+
448
+ ### Performance Improvements
449
+
450
+ * update to support index.md ([87634f6](https://github.com/AlaskaAirlines/auro-library/commit/87634f62a76a1923e3584bc9c7b98c673f663755))
451
+
452
+ ## [2.4.7](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.6...v2.4.7) (2024-02-07)
453
+
454
+
455
+ ### Performance Improvements
456
+
457
+ * update template ([54c3da8](https://github.com/AlaskaAirlines/auro-library/commit/54c3da858e5b898bd1ade63b4ade324c78ee5379))
458
+
459
+ ## [2.4.6](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.5...v2.4.6) (2024-02-07)
460
+
461
+
462
+ ### Performance Improvements
463
+
464
+ * add support for version extraction ([d7d80cd](https://github.com/AlaskaAirlines/auro-library/commit/d7d80cda8b605300553fa67c38249d73ab23ca07))
465
+
466
+ ## [2.4.5](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.4...v2.4.5) (2024-02-06)
467
+
468
+
469
+ ### Performance Improvements
470
+
471
+ * remove unnecessary auto-assigned ([1d6b88c](https://github.com/AlaskaAirlines/auro-library/commit/1d6b88c004e16de3c8c95d5fe1f1adcf2590496d))
472
+
473
+ ## [2.4.4](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.3...v2.4.4) (2024-02-06)
474
+
475
+
476
+ ### Performance Improvements
477
+
478
+ * remove optional labeled filter ([62e2cf2](https://github.com/AlaskaAirlines/auro-library/commit/62e2cf2fe052d6d832701e36ce1d1a71174f7b0b))
479
+
480
+ ## [2.4.3](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.2...v2.4.3) (2024-02-02)
481
+
482
+
483
+ ### Bug Fixes
484
+
485
+ * remove accidental duplicate line ([9de53ed](https://github.com/AlaskaAirlines/auro-library/commit/9de53ed23512d11f293e30a97a2a7a23dc6e2874))
486
+
487
+ ## [2.4.2](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.1...v2.4.2) (2024-02-02)
488
+
489
+
490
+ ### Performance Improvements
491
+
492
+ * update regex ([0ac7870](https://github.com/AlaskaAirlines/auro-library/commit/0ac78704cf0cdc8867d3a88190534c7e9fd86d8a))
493
+
494
+ ## [2.4.1](https://github.com/AlaskaAirlines/auro-library/compare/v2.4.0...v2.4.1) (2024-01-30)
495
+
496
+
497
+ ### Performance Improvements
498
+
499
+ * update workflow dependencies ([15d2a6a](https://github.com/AlaskaAirlines/auro-library/commit/15d2a6a3b31cb2ad17bbef52db5d971e5f98bca7))
500
+
501
+ # [2.4.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.3.2...v2.4.0) (2024-01-26)
502
+
503
+
504
+ ### Features
505
+
506
+ * add shell scripts ([caccc2a](https://github.com/AlaskaAirlines/auro-library/commit/caccc2a62855337727c4a805d2cc9e3879c42e18))
507
+
508
+ ## [2.3.2](https://github.com/AlaskaAirlines/auro-library/compare/v2.3.1...v2.3.2) (2024-01-25)
509
+
510
+
511
+ ### Bug Fixes
512
+
513
+ * update workflow call ref ([fdf5659](https://github.com/AlaskaAirlines/auro-library/commit/fdf5659b309e97916d6190e3c26495750a00f26b))
514
+
515
+ ## [2.3.1](https://github.com/AlaskaAirlines/auro-library/compare/v2.3.0...v2.3.1) (2024-01-25)
516
+
517
+
518
+ ### Bug Fixes
519
+
520
+ * update workflow_call: in script ([c72ec89](https://github.com/AlaskaAirlines/auro-library/commit/c72ec895366d2d36223930bd9de4f56c780dcae4))
521
+
522
+ # [2.3.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.7...v2.3.0) (2024-01-25)
523
+
524
+
525
+ ### Features
526
+
527
+ * add new workflow template ([368f423](https://github.com/AlaskaAirlines/auro-library/commit/368f42300639587f11a24d9e951eea08767a27a1))
528
+
529
+ ## [2.2.7](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.6...v2.2.7) (2024-01-24)
530
+
531
+
532
+ ### Performance Improvements
533
+
534
+ * update dependencies ([87ae1c3](https://github.com/AlaskaAirlines/auro-library/commit/87ae1c34601b03cc45d8f62e3c732edea23f175e))
535
+
536
+ ## [2.2.6](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.5...v2.2.6) (2024-01-19)
537
+
538
+
539
+ ### Bug Fixes
540
+
541
+ * update to current version of docs generator script ([31f3ea9](https://github.com/AlaskaAirlines/auro-library/commit/31f3ea9b03a87345ac69c3d84e33375bcdf403a9))
542
+
543
+ ## [2.2.5](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.4...v2.2.5) (2024-01-11)
544
+
545
+
546
+ ### Bug Fixes
547
+
548
+ * update package location ref ([e8cdbf8](https://github.com/AlaskaAirlines/auro-library/commit/e8cdbf8114dcc1e8a9a2af0e37fdca7a5616f6be))
549
+
550
+ ## [2.2.4](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.3...v2.2.4) (2024-01-11)
551
+
552
+
553
+ ### Performance Improvements
554
+
555
+ * add script to bin dir ([80476b5](https://github.com/AlaskaAirlines/auro-library/commit/80476b5d434446c34bf9a5c22749d4541fb5d8b9))
556
+
557
+ ## [2.2.3](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.2...v2.2.3) (2024-01-10)
558
+
559
+
560
+ ### Performance Improvements
561
+
562
+ * make generateDocs available from bin dir ([157aef6](https://github.com/AlaskaAirlines/auro-library/commit/157aef6ba3641bbf55d6e542d525159e5f780fc5))
563
+
564
+ ## [2.2.2](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.1...v2.2.2) (2024-01-09)
565
+
566
+
567
+ ### Bug Fixes
568
+
569
+ * update dependency script to be ES6 ([426b58f](https://github.com/AlaskaAirlines/auro-library/commit/426b58f13c0c9a72cbe0619c33a3d1773013c56c))
570
+
571
+ ## [2.2.1](https://github.com/AlaskaAirlines/auro-library/compare/v2.2.0...v2.2.1) (2024-01-09)
572
+
573
+
574
+ ### Bug Fixes
575
+
576
+ * update relative path ([d8eed9f](https://github.com/AlaskaAirlines/auro-library/commit/d8eed9ffb985dd57bbd179e7f2a1bbcbbd587b8f))
577
+
578
+ # [2.2.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.1.1...v2.2.0) (2024-01-09)
579
+
580
+
581
+ ### Features
582
+
583
+ * add build scripts from generator [#47](https://github.com/AlaskaAirlines/auro-library/issues/47) ([ac81a7d](https://github.com/AlaskaAirlines/auro-library/commit/ac81a7d3768e97435d7c80436ae241e2ce38e30b))
584
+
585
+ ## [2.1.1](https://github.com/AlaskaAirlines/auro-library/compare/v2.1.0...v2.1.1) (2023-12-29)
586
+
587
+
588
+ ### Bug Fixes
589
+
590
+ * **utils:** move runtime utils to separete file from node utils ([592990e](https://github.com/AlaskaAirlines/auro-library/commit/592990eeb693282999d75998dc49e62f0857012a))
591
+
592
+ # [2.1.0](https://github.com/AlaskaAirlines/auro-library/compare/v2.0.0...v2.1.0) (2023-12-28)
593
+
594
+
595
+ ### Features
596
+
597
+ * **closest:** add closest element function [#43](https://github.com/AlaskaAirlines/auro-library/issues/43) ([f215c74](https://github.com/AlaskaAirlines/auro-library/commit/f215c746c59d70007da2b3fcad7dfb74420bd182))
598
+
599
+ # [2.0.0](https://github.com/AlaskaAirlines/auro-library/compare/v1.1.0...v2.0.0) (2023-10-05)
600
+
601
+
602
+ ### Performance Improvements
603
+
604
+ * **npmignore:** include scripts/config/ directory [#38](https://github.com/AlaskaAirlines/auro-library/issues/38) ([e4e1a75](https://github.com/AlaskaAirlines/auro-library/commit/e4e1a7526765cc828d6124c71853d8cb9e9d3f6f))
605
+ * **scripts:** update directory file for config scripts [#38](https://github.com/AlaskaAirlines/auro-library/issues/38) ([8167f2f](https://github.com/AlaskaAirlines/auro-library/commit/8167f2f5521a22145419d9f7cd8f5e5c4ba5dd80))
606
+
607
+
608
+ ### BREAKING CHANGES
609
+
610
+ * **scripts:** The automation scripts directory name has been changed from "setup" to "config".
611
+
612
+ # [1.1.0](https://github.com/AlaskaAirlines/auro-library/compare/v1.0.2...v1.1.0) (2023-08-31)
613
+
614
+
615
+ ### Bug Fixes
616
+
617
+ * **err:** update parameter handling ([04af13a](https://github.com/AlaskaAirlines/auro-library/commit/04af13a315ebb35795fe7b6c162373d7b9c5d3b3))
618
+
619
+
620
+ ### Features
621
+
622
+ * **automation:** add automation scripts for workflows and linters [#32](https://github.com/AlaskaAirlines/auro-library/issues/32) ([5dff1b7](https://github.com/AlaskaAirlines/auro-library/commit/5dff1b7dcbe2d7862b4994399f40781037b48d69))
623
+ * **surge:** add workflow that deploys surge demo [#35](https://github.com/AlaskaAirlines/auro-library/issues/35) ([7117212](https://github.com/AlaskaAirlines/auro-library/commit/71172129d0309e132821f1bcb5d8673baa746468))
624
+
625
+
626
+ ### Performance Improvements
627
+
628
+ * **.npmignore:** update .npmignore ([2de9db7](https://github.com/AlaskaAirlines/auro-library/commit/2de9db717b6e069a8ffb6b6e067a83b08c41d8c6))
629
+ * **docs:** add generateDocs script [#36](https://github.com/AlaskaAirlines/auro-library/issues/36) ([9746820](https://github.com/AlaskaAirlines/auro-library/commit/97468201ca83767b3cc1dd1396e0d78f311a69f5))
630
+ * **extraction:** extract functions and insert into library utils [#36](https://github.com/AlaskaAirlines/auro-library/issues/36) ([c3018eb](https://github.com/AlaskaAirlines/auro-library/commit/c3018eb01acf4b3682b63b0b92c3beb5b3641161))
631
+
632
+ ## [1.0.2](https://github.com/AlaskaAirlines/auro-library/compare/v1.0.1...v1.0.2) (2023-07-24)
633
+
634
+
635
+ ### Bug Fixes
636
+
637
+ * print surge output in publishDemo [#29](https://github.com/AlaskaAirlines/auro-library/issues/29) ([02001d8](https://github.com/AlaskaAirlines/auro-library/commit/02001d8d16c4d874d489a327ddabafb2994e5221))
638
+ * update demo url filter to replace '#' chars [#31](https://github.com/AlaskaAirlines/auro-library/issues/31) ([d81fcc2](https://github.com/AlaskaAirlines/auro-library/commit/d81fcc25dfa6580bb333f0b22241fedd9cf548c4))
639
+
640
+ ## [1.0.1](https://github.com/AlaskaAirlines/auro-library/compare/v1.0.0...v1.0.1) (2023-07-19)
641
+
642
+
643
+ ### Bug Fixes
644
+
645
+ * **versionWriter:** use correct path to node_modules directory [#23](https://github.com/AlaskaAirlines/auro-library/issues/23) ([e926397](https://github.com/AlaskaAirlines/auro-library/commit/e926397a8b31c90e9c7e80fd5126600d20ffc3b5))
646
+
647
+ # 1.0.0 (2023-07-14)
648
+
649
+
650
+ ### Bug Fixes
651
+
652
+ * **action:** allow SURGE_TOKEN secret to be passed in ([12bddae](https://github.com/AlaskaAirlines/auro-library/commit/12bddae92a764af0c97af5116af7257152300f5e))
653
+ * **release:** add missing config setup for semantic release [#13](https://github.com/AlaskaAirlines/auro-library/issues/13) ([7bc6f83](https://github.com/AlaskaAirlines/auro-library/commit/7bc6f83e23dc72bbb30adbb9da8bde85fb9d299d))
654
+
655
+
656
+ ### Features
657
+
658
+ * **actions:** introduce publish demo workflow ([2dd4d88](https://github.com/AlaskaAirlines/auro-library/commit/2dd4d88b8010929c02d3624ec02961d7643b789b))
659
+ * **assign:** add workflow action [#9](https://github.com/AlaskaAirlines/auro-library/issues/9) ([8b18979](https://github.com/AlaskaAirlines/auro-library/commit/8b18979b793277b2e1ea69358638cd2384f89965))
660
+ * **demo:** write script to replace demo script tags ([bf378f4](https://github.com/AlaskaAirlines/auro-library/commit/bf378f407a6b954e45c36de7dc3ebf69ec68e850))
661
+ * introduce surge teardown workflow [#5](https://github.com/AlaskaAirlines/auro-library/issues/5) ([429d7e4](https://github.com/AlaskaAirlines/auro-library/commit/429d7e49fb006768f0c2be69552de6911af7e363))
662
+ * **npm:** add npm resources + husky git hooks ([3876a57](https://github.com/AlaskaAirlines/auro-library/commit/3876a5763cab5800f463e18bbcf014d437602417))
663
+ * **npm:** configure repo for releasing as an NPM package [#13](https://github.com/AlaskaAirlines/auro-library/issues/13) ([c81d36f](https://github.com/AlaskaAirlines/auro-library/commit/c81d36f239bc58b6fb97089f3fb9af8ace6fb9e5))
664
+ * **versioning:** add dependency versioning utility and docs [#11](https://github.com/AlaskaAirlines/auro-library/issues/11) ([739679f](https://github.com/AlaskaAirlines/auro-library/commit/739679f36e24f3c3583e87a77982d7f34a631f55))