@spark-web/field 0.0.0-snapshot-release-20260409001813

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,965 @@
1
+ # @spark-web/field
2
+
3
+ ## 0.0.0-snapshot-release-20260409001813
4
+
5
+ ### Patch Changes
6
+
7
+ - [#782](https://github.com/brighte-labs/spark-web/pull/782)
8
+ [`b18cf44`](https://github.com/brighte-labs/spark-web/commit/b18cf4426df1e94b005ece8d93996459dc3e41d6)
9
+ Thanks [@jacobporci-brighte](https://github.com/jacobporci-brighte)! -
10
+ **docs:** add CLAUDE.md AI context files to foundation and form packages;
11
+ patch data-table with manual sort and spinner overlay patterns
12
+ - Updated dependencies
13
+ [[`b18cf44`](https://github.com/brighte-labs/spark-web/commit/b18cf4426df1e94b005ece8d93996459dc3e41d6)]:
14
+ - @spark-web/box@0.0.0-snapshot-release-20260409001813
15
+ - @spark-web/stack@0.0.0-snapshot-release-20260409001813
16
+ - @spark-web/text@0.0.0-snapshot-release-20260409001813
17
+
18
+ ## 5.3.0
19
+
20
+ ### Minor Changes
21
+
22
+ - [#667](https://github.com/brighte-labs/spark-web/pull/667)
23
+ [`80d9c15`](https://github.com/brighte-labs/spark-web/commit/80d9c156a40bbcd2b1a91a2d0403b3c8e9b47b4e)
24
+ Thanks [@Leo704099](https://github.com/Leo704099)! - Support react 17 to 19
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies
29
+ [[`80d9c15`](https://github.com/brighte-labs/spark-web/commit/80d9c156a40bbcd2b1a91a2d0403b3c8e9b47b4e)]:
30
+ - @spark-web/stack@5.1.0
31
+ - @spark-web/theme@5.13.0
32
+ - @spark-web/utils@5.1.0
33
+ - @spark-web/a11y@5.3.0
34
+ - @spark-web/icon@5.1.0
35
+ - @spark-web/text@5.3.0
36
+ - @spark-web/box@6.0.0
37
+
38
+ ## 5.2.0
39
+
40
+ ### Minor Changes
41
+
42
+ - [#741](https://github.com/brighte-labs/spark-web/pull/741)
43
+ [`3a5ee14`](https://github.com/brighte-labs/spark-web/pull/741/changes/3a5ee146fef8fb3a3e46f6873099438bcffd59d2)
44
+ Thanks [@raivenlopez](https://github.com/raivenlopez)! - Allow both component
45
+ and text in Field description
46
+
47
+ ## 5.1.3
48
+
49
+ ### Patch Changes
50
+
51
+ - [#698](https://github.com/brighte-labs/spark-web/pull/698)
52
+ [`814b373`](https://github.com/brighte-labs/spark-web/commit/814b373cbe9fcf0757738c78eef6b516624df62c)
53
+ Thanks [@michtntbrighte](https://github.com/michtntbrighte)! - Bump version
54
+
55
+ - Updated dependencies
56
+ [[`814b373`](https://github.com/brighte-labs/spark-web/commit/814b373cbe9fcf0757738c78eef6b516624df62c)]:
57
+ - @spark-web/box@5.2.2
58
+ - @spark-web/stack@5.0.2
59
+ - @spark-web/text@5.2.3
60
+ - @spark-web/theme@5.12.1
61
+
62
+ ## 5.1.2
63
+
64
+ ### Patch Changes
65
+
66
+ - Updated dependencies
67
+ [[`1995db7`](https://github.com/brighte-labs/spark-web/commit/1995db7f4342803732c7648ab3ca6d32442cc347)]:
68
+ - @spark-web/theme@5.12.0
69
+ - @spark-web/stack@5.0.1
70
+ - @spark-web/text@5.2.2
71
+
72
+ ## 5.1.1
73
+
74
+ ### Patch Changes
75
+
76
+ - [#627](https://github.com/brighte-labs/spark-web/pull/627)
77
+ [`80504dc`](https://github.com/brighte-labs/spark-web/commit/80504dc3f57aa1f7ed8235c8fb4ca61587d17977)
78
+ Thanks [@mkt-brighte](https://github.com/mkt-brighte)! - Update readonly text
79
+ color to meet min contrast requirement
80
+
81
+ - Updated dependencies
82
+ [[`80504dc`](https://github.com/brighte-labs/spark-web/commit/80504dc3f57aa1f7ed8235c8fb4ca61587d17977)]:
83
+ - @spark-web/theme@5.10.6
84
+
85
+ ## 5.1.0
86
+
87
+ ### Minor Changes
88
+
89
+ - [#600](https://github.com/brighte-labs/spark-web/pull/600)
90
+ [`8e0bb68`](https://github.com/brighte-labs/spark-web/commit/8e0bb683181ee4f56f9fdcf378e48d9adae9475e)
91
+ Thanks [@chrischua-brighte](https://github.com/chrischua-brighte)! - add
92
+ readonly and overflowstrategy
93
+
94
+ ## 5.0.0
95
+
96
+ ### Major Changes
97
+
98
+ - This release of spark-web standardises the version across all packages to be
99
+ **`v5`**, primarily signifying the switch from `@emotion/css` to
100
+ `@emotion/react` as one of the key dependencies of the entire library, in
101
+ order to support server-side rendering / SSR.
102
+
103
+ This release also introduces support for theming, to allow for more co-branded
104
+ experiences across our web applications. It also supports component-level
105
+ theming for `<Button />`, `<ButtonLink />`, and `<Checkbox />`, which provides
106
+ the capability to override the global theme available inside an application.
107
+
108
+ To use this in an application, you can wrap the affected areas with a
109
+ `ThemeProvider`:
110
+
111
+ ```
112
+ <ThemeProvider theme="pantheon">
113
+ <Input type="text" />
114
+ <Button type="submit" />
115
+ </ThemeProvider>
116
+ ```
117
+
118
+ Part of the theming capabilities includes a new theme for `spark-web` called
119
+ "pantheon", which should map with our co-branding efforts in the Pantheon
120
+ project. It currently includes a small set of colors and its corresponding
121
+ font family.
122
+
123
+ ### Patch Changes
124
+
125
+ - [#532](https://github.com/brighte-labs/spark-web/pull/532)
126
+ [`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)
127
+ Thanks [@ralcoriza-brighte](https://github.com/ralcoriza-brighte)! - Fix
128
+ type-related issues
129
+
130
+ - Updated dependencies
131
+ [[`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)]:
132
+ - @spark-web/stack@5.0.0
133
+ - @spark-web/theme@5.0.0
134
+ - @spark-web/utils@5.0.0
135
+ - @spark-web/a11y@5.0.0
136
+ - @spark-web/icon@5.0.0
137
+ - @spark-web/text@5.0.0
138
+ - @spark-web/box@5.0.0
139
+
140
+ ## 5.0.0-rc.31
141
+
142
+ ### Patch Changes
143
+
144
+ - Fix type-related issues
145
+
146
+ - Updated dependencies []:
147
+ - @spark-web/stack@5.0.0-rc.31
148
+ - @spark-web/theme@5.0.0-rc.31
149
+ - @spark-web/utils@5.0.0-rc.31
150
+ - @spark-web/a11y@5.0.0-rc.31
151
+ - @spark-web/icon@5.0.0-rc.31
152
+ - @spark-web/text@5.0.0-rc.31
153
+ - @spark-web/box@5.0.0-rc.31
154
+
155
+ ## 5.0.0-rc.30
156
+
157
+ ### Minor Changes
158
+
159
+ - Adopt latest changes from stable main branch
160
+
161
+ ### Patch Changes
162
+
163
+ - Updated dependencies []:
164
+ - @spark-web/stack@5.0.0-rc.30
165
+ - @spark-web/theme@5.0.0-rc.30
166
+ - @spark-web/utils@5.0.0-rc.30
167
+ - @spark-web/a11y@5.0.0-rc.30
168
+ - @spark-web/icon@5.0.0-rc.30
169
+ - @spark-web/text@5.0.0-rc.30
170
+ - @spark-web/box@5.0.0-rc.30
171
+
172
+ ## 5.0.0-rc.29
173
+
174
+ ### Minor Changes
175
+
176
+ - Revise stylesheet maps to align with theme name change
177
+
178
+ ### Patch Changes
179
+
180
+ - Updated dependencies []:
181
+ - @spark-web/stack@5.0.0-rc.29
182
+ - @spark-web/theme@5.0.0-rc.29
183
+ - @spark-web/utils@5.0.0-rc.29
184
+ - @spark-web/a11y@5.0.0-rc.29
185
+ - @spark-web/icon@5.0.0-rc.29
186
+ - @spark-web/text@5.0.0-rc.29
187
+ - @spark-web/box@5.0.0-rc.29
188
+
189
+ ## 5.0.0-rc.28
190
+
191
+ ### Minor Changes
192
+
193
+ - Move fonts to theme package; Introduce Pantheon font family and stylesheet
194
+
195
+ ### Patch Changes
196
+
197
+ - Updated dependencies []:
198
+ - @spark-web/stack@5.0.0-rc.28
199
+ - @spark-web/theme@5.0.0-rc.28
200
+ - @spark-web/utils@5.0.0-rc.28
201
+ - @spark-web/a11y@5.0.0-rc.28
202
+ - @spark-web/icon@5.0.0-rc.28
203
+ - @spark-web/text@5.0.0-rc.28
204
+ - @spark-web/box@5.0.0-rc.28
205
+
206
+ ## 5.0.0-rc.27
207
+
208
+ ### Minor Changes
209
+
210
+ - Remove theme prop in button link
211
+
212
+ ### Patch Changes
213
+
214
+ - Updated dependencies []:
215
+ - @spark-web/stack@5.0.0-rc.27
216
+ - @spark-web/theme@5.0.0-rc.27
217
+ - @spark-web/utils@5.0.0-rc.27
218
+ - @spark-web/a11y@5.0.0-rc.27
219
+ - @spark-web/icon@5.0.0-rc.27
220
+ - @spark-web/text@5.0.0-rc.27
221
+ - @spark-web/box@5.0.0-rc.27
222
+
223
+ ## 5.0.0-rc.26
224
+
225
+ ### Minor Changes
226
+
227
+ - Roll back on using theme prop for component level theming; prefer using
228
+ ThemeProvider in applications instead
229
+
230
+ ### Patch Changes
231
+
232
+ - Updated dependencies []:
233
+ - @spark-web/stack@5.0.0-rc.26
234
+ - @spark-web/theme@5.0.0-rc.26
235
+ - @spark-web/utils@5.0.0-rc.26
236
+ - @spark-web/a11y@5.0.0-rc.26
237
+ - @spark-web/icon@5.0.0-rc.26
238
+ - @spark-web/text@5.0.0-rc.26
239
+ - @spark-web/box@5.0.0-rc.26
240
+
241
+ ## 5.0.0-rc.25
242
+
243
+ ### Minor Changes
244
+
245
+ - Implement checkbox tokens for test theme
246
+
247
+ ### Patch Changes
248
+
249
+ - Updated dependencies []:
250
+ - @spark-web/stack@5.0.0-rc.25
251
+ - @spark-web/theme@5.0.0-rc.25
252
+ - @spark-web/utils@5.0.0-rc.25
253
+ - @spark-web/a11y@5.0.0-rc.25
254
+ - @spark-web/icon@5.0.0-rc.25
255
+ - @spark-web/text@5.0.0-rc.25
256
+ - @spark-web/box@5.0.0-rc.25
257
+
258
+ ## 5.0.0-rc.24
259
+
260
+ ### Minor Changes
261
+
262
+ - Resolve issues with package build output
263
+
264
+ ### Patch Changes
265
+
266
+ - Updated dependencies []:
267
+ - @spark-web/stack@5.0.0-rc.24
268
+ - @spark-web/theme@5.0.0-rc.24
269
+ - @spark-web/utils@5.0.0-rc.24
270
+ - @spark-web/a11y@5.0.0-rc.24
271
+ - @spark-web/icon@5.0.0-rc.24
272
+ - @spark-web/text@5.0.0-rc.24
273
+ - @spark-web/box@5.0.0-rc.24
274
+
275
+ ## 4.0.0-rc.21
276
+
277
+ ### Minor Changes
278
+
279
+ - Introduce global theming provider to set global default theme
280
+
281
+ ### Patch Changes
282
+
283
+ - Updated dependencies []:
284
+ - @spark-web/stack@2.0.0-rc.21
285
+ - @spark-web/theme@4.0.0-rc.21
286
+ - @spark-web/utils@2.0.0-rc.21
287
+ - @spark-web/a11y@2.0.0-rc.21
288
+ - @spark-web/icon@2.0.0-rc.21
289
+ - @spark-web/text@2.0.0-rc.21
290
+ - @spark-web/box@2.0.0-rc.21
291
+
292
+ ## 4.0.0-rc.20
293
+
294
+ ### Minor Changes
295
+
296
+ - Support for component-level theming; button-level theming
297
+
298
+ ### Patch Changes
299
+
300
+ - Updated dependencies []:
301
+ - @spark-web/stack@2.0.0-rc.20
302
+ - @spark-web/theme@4.0.0-rc.20
303
+ - @spark-web/utils@2.0.0-rc.20
304
+ - @spark-web/a11y@2.0.0-rc.20
305
+ - @spark-web/icon@2.0.0-rc.20
306
+ - @spark-web/text@2.0.0-rc.20
307
+ - @spark-web/box@2.0.0-rc.20
308
+
309
+ ## 4.0.0-rc.19
310
+
311
+ ### Major Changes
312
+
313
+ - test
314
+
315
+ ### Patch Changes
316
+
317
+ - Updated dependencies []:
318
+ - @spark-web/stack@2.0.0-rc.19
319
+ - @spark-web/theme@4.0.0-rc.19
320
+ - @spark-web/utils@2.0.0-rc.19
321
+ - @spark-web/a11y@2.0.0-rc.19
322
+ - @spark-web/icon@2.0.0-rc.19
323
+ - @spark-web/text@2.0.0-rc.19
324
+ - @spark-web/box@2.0.0-rc.19
325
+
326
+ ## 4.0.0-rc.18
327
+
328
+ ### Major Changes
329
+
330
+ - tests
331
+
332
+ ### Patch Changes
333
+
334
+ - Updated dependencies []:
335
+ - @spark-web/stack@2.0.0-rc.18
336
+ - @spark-web/theme@4.0.0-rc.18
337
+ - @spark-web/utils@2.0.0-rc.18
338
+ - @spark-web/a11y@2.0.0-rc.18
339
+ - @spark-web/icon@2.0.0-rc.18
340
+ - @spark-web/text@2.0.0-rc.18
341
+ - @spark-web/box@2.0.0-rc.18
342
+
343
+ ## 4.0.0-rc.17
344
+
345
+ ### Major Changes
346
+
347
+ - test
348
+
349
+ ### Patch Changes
350
+
351
+ - Updated dependencies []:
352
+ - @spark-web/stack@2.0.0-rc.17
353
+ - @spark-web/theme@4.0.0-rc.17
354
+ - @spark-web/utils@2.0.0-rc.17
355
+ - @spark-web/a11y@2.0.0-rc.17
356
+ - @spark-web/icon@2.0.0-rc.17
357
+ - @spark-web/text@2.0.0-rc.17
358
+ - @spark-web/box@2.0.0-rc.17
359
+
360
+ ## 4.0.0-rc.16
361
+
362
+ ### Major Changes
363
+
364
+ - test
365
+
366
+ ### Patch Changes
367
+
368
+ - Updated dependencies []:
369
+ - @spark-web/stack@2.0.0-rc.16
370
+ - @spark-web/theme@4.0.0-rc.16
371
+ - @spark-web/utils@2.0.0-rc.16
372
+ - @spark-web/a11y@2.0.0-rc.16
373
+ - @spark-web/icon@2.0.0-rc.16
374
+ - @spark-web/text@2.0.0-rc.16
375
+ - @spark-web/box@2.0.0-rc.16
376
+
377
+ ## 4.0.0-rc.15
378
+
379
+ ### Major Changes
380
+
381
+ - test
382
+
383
+ ### Patch Changes
384
+
385
+ - Updated dependencies []:
386
+ - @spark-web/stack@2.0.0-rc.15
387
+ - @spark-web/theme@4.0.0-rc.15
388
+ - @spark-web/utils@2.0.0-rc.15
389
+ - @spark-web/a11y@2.0.0-rc.15
390
+ - @spark-web/icon@2.0.0-rc.15
391
+ - @spark-web/text@2.0.0-rc.15
392
+ - @spark-web/box@2.0.0-rc.15
393
+
394
+ ## 4.0.0-rc.14
395
+
396
+ ### Major Changes
397
+
398
+ - test
399
+
400
+ ### Patch Changes
401
+
402
+ - Updated dependencies []:
403
+ - @spark-web/stack@2.0.0-rc.14
404
+ - @spark-web/theme@4.0.0-rc.14
405
+ - @spark-web/utils@2.0.0-rc.14
406
+ - @spark-web/a11y@2.0.0-rc.14
407
+ - @spark-web/icon@2.0.0-rc.14
408
+ - @spark-web/text@2.0.0-rc.14
409
+ - @spark-web/box@2.0.0-rc.14
410
+
411
+ ## 4.0.0-rc.13
412
+
413
+ ### Major Changes
414
+
415
+ - test
416
+
417
+ ### Patch Changes
418
+
419
+ - Updated dependencies []:
420
+ - @spark-web/stack@2.0.0-rc.13
421
+ - @spark-web/theme@4.0.0-rc.13
422
+ - @spark-web/utils@2.0.0-rc.13
423
+ - @spark-web/a11y@2.0.0-rc.13
424
+ - @spark-web/icon@2.0.0-rc.13
425
+ - @spark-web/text@2.0.0-rc.13
426
+ - @spark-web/box@2.0.0-rc.13
427
+
428
+ ## 4.0.0-rc.12
429
+
430
+ ### Major Changes
431
+
432
+ - test
433
+
434
+ ### Patch Changes
435
+
436
+ - Updated dependencies []:
437
+ - @spark-web/stack@2.0.0-rc.12
438
+ - @spark-web/theme@4.0.0-rc.12
439
+ - @spark-web/utils@2.0.0-rc.12
440
+ - @spark-web/a11y@2.0.0-rc.12
441
+ - @spark-web/icon@2.0.0-rc.12
442
+ - @spark-web/text@2.0.0-rc.12
443
+ - @spark-web/box@2.0.0-rc.12
444
+
445
+ ## 4.0.0-rc.11
446
+
447
+ ### Major Changes
448
+
449
+ - test
450
+
451
+ ### Patch Changes
452
+
453
+ - Updated dependencies []:
454
+ - @spark-web/stack@2.0.0-rc.11
455
+ - @spark-web/theme@4.0.0-rc.11
456
+ - @spark-web/utils@2.0.0-rc.11
457
+ - @spark-web/a11y@2.0.0-rc.11
458
+ - @spark-web/icon@2.0.0-rc.11
459
+ - @spark-web/text@2.0.0-rc.11
460
+ - @spark-web/box@2.0.0-rc.11
461
+
462
+ ## 4.0.0-rc.10
463
+
464
+ ### Major Changes
465
+
466
+ - test
467
+
468
+ ### Patch Changes
469
+
470
+ - Updated dependencies []:
471
+ - @spark-web/stack@2.0.0-rc.10
472
+ - @spark-web/theme@4.0.0-rc.10
473
+ - @spark-web/utils@2.0.0-rc.10
474
+ - @spark-web/a11y@2.0.0-rc.10
475
+ - @spark-web/icon@2.0.0-rc.10
476
+ - @spark-web/text@2.0.0-rc.10
477
+ - @spark-web/box@2.0.0-rc.10
478
+
479
+ ## 4.0.0-rc.9
480
+
481
+ ### Major Changes
482
+
483
+ - test
484
+
485
+ ### Patch Changes
486
+
487
+ - Updated dependencies []:
488
+ - @spark-web/stack@2.0.0-rc.9
489
+ - @spark-web/theme@4.0.0-rc.9
490
+ - @spark-web/utils@2.0.0-rc.9
491
+ - @spark-web/a11y@2.0.0-rc.9
492
+ - @spark-web/icon@2.0.0-rc.9
493
+ - @spark-web/text@2.0.0-rc.9
494
+ - @spark-web/box@2.0.0-rc.9
495
+
496
+ ## 4.0.0-rc.8
497
+
498
+ ### Major Changes
499
+
500
+ - test
501
+
502
+ ### Patch Changes
503
+
504
+ - Updated dependencies []:
505
+ - @spark-web/stack@2.0.0-rc.8
506
+ - @spark-web/theme@4.0.0-rc.8
507
+ - @spark-web/utils@2.0.0-rc.8
508
+ - @spark-web/a11y@2.0.0-rc.8
509
+ - @spark-web/icon@2.0.0-rc.8
510
+ - @spark-web/text@2.0.0-rc.8
511
+ - @spark-web/box@2.0.0-rc.8
512
+
513
+ ## 4.0.0-rc.7
514
+
515
+ ### Major Changes
516
+
517
+ - test
518
+
519
+ ### Patch Changes
520
+
521
+ - Updated dependencies []:
522
+ - @spark-web/stack@2.0.0-rc.7
523
+ - @spark-web/theme@4.0.0-rc.7
524
+ - @spark-web/utils@2.0.0-rc.7
525
+ - @spark-web/a11y@2.0.0-rc.7
526
+ - @spark-web/icon@2.0.0-rc.7
527
+ - @spark-web/text@2.0.0-rc.7
528
+ - @spark-web/box@2.0.0-rc.7
529
+
530
+ ## 4.0.0-rc.6
531
+
532
+ ### Major Changes
533
+
534
+ - test
535
+
536
+ ### Patch Changes
537
+
538
+ - Updated dependencies []:
539
+ - @spark-web/stack@2.0.0-rc.6
540
+ - @spark-web/theme@4.0.0-rc.6
541
+ - @spark-web/utils@2.0.0-rc.6
542
+ - @spark-web/a11y@2.0.0-rc.6
543
+ - @spark-web/icon@2.0.0-rc.6
544
+ - @spark-web/text@2.0.0-rc.6
545
+ - @spark-web/box@2.0.0-rc.6
546
+
547
+ ## 4.0.0-rc.5
548
+
549
+ ### Major Changes
550
+
551
+ - test
552
+
553
+ ### Patch Changes
554
+
555
+ - Updated dependencies []:
556
+ - @spark-web/stack@2.0.0-rc.5
557
+ - @spark-web/theme@4.0.0-rc.5
558
+ - @spark-web/utils@2.0.0-rc.5
559
+ - @spark-web/a11y@2.0.0-rc.5
560
+ - @spark-web/icon@2.0.0-rc.5
561
+ - @spark-web/text@2.0.0-rc.5
562
+ - @spark-web/box@2.0.0-rc.5
563
+
564
+ ## 4.0.0-rc.4
565
+
566
+ ### Major Changes
567
+
568
+ - bug
569
+
570
+ ### Patch Changes
571
+
572
+ - Updated dependencies []:
573
+ - @spark-web/stack@2.0.0-rc.4
574
+ - @spark-web/theme@4.0.0-rc.4
575
+ - @spark-web/utils@2.0.0-rc.4
576
+ - @spark-web/a11y@2.0.0-rc.4
577
+ - @spark-web/icon@2.0.0-rc.4
578
+ - @spark-web/text@2.0.0-rc.4
579
+ - @spark-web/box@2.0.0-rc.4
580
+
581
+ ## 4.0.0-rc.3
582
+
583
+ ### Major Changes
584
+
585
+ - upgrade package
586
+
587
+ ### Patch Changes
588
+
589
+ - Updated dependencies []:
590
+ - @spark-web/stack@2.0.0-rc.3
591
+ - @spark-web/theme@4.0.0-rc.3
592
+ - @spark-web/utils@2.0.0-rc.3
593
+ - @spark-web/a11y@2.0.0-rc.3
594
+ - @spark-web/icon@2.0.0-rc.3
595
+ - @spark-web/text@2.0.0-rc.3
596
+ - @spark-web/box@2.0.0-rc.3
597
+
598
+ ## 4.0.0-rc.2
599
+
600
+ ### Major Changes
601
+
602
+ - add parser
603
+
604
+ ### Patch Changes
605
+
606
+ - Updated dependencies []:
607
+ - @spark-web/stack@2.0.0-rc.2
608
+ - @spark-web/theme@4.0.0-rc.2
609
+ - @spark-web/utils@2.0.0-rc.2
610
+ - @spark-web/a11y@2.0.0-rc.2
611
+ - @spark-web/icon@2.0.0-rc.2
612
+ - @spark-web/text@2.0.0-rc.2
613
+ - @spark-web/box@2.0.0-rc.2
614
+
615
+ ## 4.0.0-rc.1
616
+
617
+ ### Major Changes
618
+
619
+ - rc
620
+
621
+ ### Patch Changes
622
+
623
+ - Updated dependencies []:
624
+ - @spark-web/stack@2.0.0-rc.1
625
+ - @spark-web/theme@4.0.0-rc.1
626
+ - @spark-web/utils@2.0.0-rc.1
627
+ - @spark-web/a11y@2.0.0-rc.1
628
+ - @spark-web/icon@2.0.0-rc.1
629
+ - @spark-web/text@2.0.0-rc.1
630
+ - @spark-web/box@2.0.0-rc.1
631
+
632
+ ## 4.0.0-rc.0
633
+
634
+ ### Major Changes
635
+
636
+ - rc versio
637
+
638
+ ### Patch Changes
639
+
640
+ - Updated dependencies []:
641
+ - @spark-web/stack@2.0.0-rc.0
642
+ - @spark-web/theme@4.0.0-rc.0
643
+ - @spark-web/a11y@2.0.0-rc.0
644
+ - @spark-web/icon@2.0.0-rc.0
645
+ - @spark-web/text@2.0.0-rc.0
646
+ - @spark-web/box@2.0.0-rc.0
647
+ - @spark-web/utils@2.0.0-rc.0
648
+
649
+ ## 3.1.0
650
+
651
+ ### Minor Changes
652
+
653
+ - [#382](https://github.com/brighte-labs/spark-web/pull/382)
654
+ [`955bf5d`](https://github.com/brighte-labs/spark-web/commit/955bf5d7698bfdf45e7f317aa3e726c81d3444c0)
655
+ Thanks [@dilipt-brighte](https://github.com/dilipt-brighte)! - Updates React
656
+ version to latest (18.2.0)
657
+
658
+ ### Patch Changes
659
+
660
+ - Updated dependencies
661
+ [[`955bf5d`](https://github.com/brighte-labs/spark-web/commit/955bf5d7698bfdf45e7f317aa3e726c81d3444c0)]:
662
+ - @spark-web/a11y@1.4.0
663
+ - @spark-web/box@1.2.0
664
+ - @spark-web/icon@1.3.0
665
+ - @spark-web/stack@1.1.0
666
+ - @spark-web/text@1.2.0
667
+ - @spark-web/theme@3.2.0
668
+ - @spark-web/utils@1.3.0
669
+
670
+ ## 3.0.6
671
+
672
+ ### Patch Changes
673
+
674
+ - [#246](https://github.com/brighte-labs/spark-web/pull/246)
675
+ [`de99b9c`](https://github.com/brighte-labs/spark-web/commit/de99b9c7f72373bd1902cf67f5cfec9a1e1db01c)
676
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Remove
677
+ destructuring from theme object
678
+
679
+ - [#218](https://github.com/brighte-labs/spark-web/pull/218)
680
+ [`6fc8d1b`](https://github.com/brighte-labs/spark-web/commit/6fc8d1bc37e25d0cd622bc37f68a1d92eb5961b5)
681
+ Thanks [@nderkim](https://github.com/nderkim)! - Rename files to kebab case
682
+
683
+ - [#222](https://github.com/brighte-labs/spark-web/pull/222)
684
+ [`7f93c45`](https://github.com/brighte-labs/spark-web/commit/7f93c45bbae8c765e10df9d0dd7615473797749b)
685
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update
686
+ dependencies
687
+
688
+ - [#242](https://github.com/brighte-labs/spark-web/pull/242)
689
+ [`6df05f7`](https://github.com/brighte-labs/spark-web/commit/6df05f764e4181c140d6547d6b897d0210468f6a)
690
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - - Add homepage
691
+ and repository keys to package.json
692
+ - Add CHANGELOG and README to files key in package.json
693
+ - Updated dependencies
694
+ [[`adc5e9e`](https://github.com/brighte-labs/spark-web/commit/adc5e9e6c99acd117f3261edcefdb5573132441b),
695
+ [`de99b9c`](https://github.com/brighte-labs/spark-web/commit/de99b9c7f72373bd1902cf67f5cfec9a1e1db01c),
696
+ [`6fc8d1b`](https://github.com/brighte-labs/spark-web/commit/6fc8d1bc37e25d0cd622bc37f68a1d92eb5961b5),
697
+ [`7f93c45`](https://github.com/brighte-labs/spark-web/commit/7f93c45bbae8c765e10df9d0dd7615473797749b),
698
+ [`62f7de8`](https://github.com/brighte-labs/spark-web/commit/62f7de8a2e1df5ae088c093d3acdaa868d3f61fe),
699
+ [`6df05f7`](https://github.com/brighte-labs/spark-web/commit/6df05f764e4181c140d6547d6b897d0210468f6a)]:
700
+ - @spark-web/box@1.1.0
701
+ - @spark-web/icon@1.2.2
702
+ - @spark-web/text@1.1.2
703
+ - @spark-web/a11y@1.3.2
704
+ - @spark-web/stack@1.0.10
705
+ - @spark-web/theme@3.1.0
706
+ - @spark-web/utils@1.2.3
707
+
708
+ ## 3.0.5
709
+
710
+ ### Patch Changes
711
+
712
+ - [#208](https://github.com/brighte-labs/spark-web/pull/208)
713
+ [`1ea26ef`](https://github.com/brighte-labs/spark-web/commit/1ea26ef04a3b45875ed0dd2326eeab1fbe1e4bc5)
714
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Lower required
715
+ node version
716
+
717
+ - Updated dependencies
718
+ [[`1ea26ef`](https://github.com/brighte-labs/spark-web/commit/1ea26ef04a3b45875ed0dd2326eeab1fbe1e4bc5)]:
719
+ - @spark-web/a11y@1.3.1
720
+ - @spark-web/box@1.0.9
721
+ - @spark-web/icon@1.2.1
722
+ - @spark-web/stack@1.0.9
723
+ - @spark-web/text@1.1.1
724
+ - @spark-web/theme@3.0.6
725
+ - @spark-web/utils@1.2.2
726
+
727
+ ## 3.0.4
728
+
729
+ ### Patch Changes
730
+
731
+ - [#197](https://github.com/brighte-labs/spark-web/pull/197)
732
+ [`94016d8`](https://github.com/brighte-labs/spark-web/commit/94016d84e26bbe55833bbcbab847a2cce6041538)
733
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update packages
734
+
735
+ - Updated dependencies
736
+ [[`51b6c7a`](https://github.com/brighte-labs/spark-web/commit/51b6c7a43f441e02b90403b13af9cfa11e5438ef),
737
+ [`9ff0c4b`](https://github.com/brighte-labs/spark-web/commit/9ff0c4b4cc83e0e1ab609d0bcdb01458b654263e),
738
+ [`07286b5`](https://github.com/brighte-labs/spark-web/commit/07286b52f897909b1a806d736e1040351c93078f),
739
+ [`94016d8`](https://github.com/brighte-labs/spark-web/commit/94016d84e26bbe55833bbcbab847a2cce6041538)]:
740
+ - @spark-web/a11y@1.3.0
741
+ - @spark-web/text@1.1.0
742
+ - @spark-web/icon@1.2.0
743
+ - @spark-web/box@1.0.8
744
+ - @spark-web/stack@1.0.8
745
+ - @spark-web/theme@3.0.5
746
+ - @spark-web/utils@1.2.1
747
+
748
+ ## 3.0.3
749
+
750
+ ### Patch Changes
751
+
752
+ - [#173](https://github.com/brighte-labs/spark-web/pull/173)
753
+ [`90b7e9c`](https://github.com/brighte-labs/spark-web/commit/90b7e9cf4eb7e864d765c74b22c3dedf3d262e25)
754
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update babel
755
+ dependency
756
+
757
+ - Updated dependencies
758
+ [[`90b7e9c`](https://github.com/brighte-labs/spark-web/commit/90b7e9cf4eb7e864d765c74b22c3dedf3d262e25),
759
+ [`be99536`](https://github.com/brighte-labs/spark-web/commit/be99536abb56dd26e5c9a1703e6df9c7860b449b),
760
+ [`c3867af`](https://github.com/brighte-labs/spark-web/commit/c3867af7b77dfae3580ab63a5d5c9e8452f2da62)]:
761
+ - @spark-web/a11y@1.2.0
762
+ - @spark-web/box@1.0.7
763
+ - @spark-web/icon@1.1.5
764
+ - @spark-web/stack@1.0.7
765
+ - @spark-web/text@1.0.7
766
+ - @spark-web/theme@3.0.3
767
+ - @spark-web/utils@1.2.0
768
+
769
+ ## 3.0.2
770
+
771
+ ### Patch Changes
772
+
773
+ - [#169](https://github.com/brighte-labs/spark-web/pull/169)
774
+ [`7be2283`](https://github.com/brighte-labs/spark-web/commit/7be2283c91741bf87ede08a1e3d9f7eaec586d38)
775
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Memoize Field
776
+ context
777
+
778
+ ## 3.0.1
779
+
780
+ ### Patch Changes
781
+
782
+ - [#167](https://github.com/brighte-labs/spark-web/pull/167)
783
+ [`4f79350`](https://github.com/brighte-labs/spark-web/commit/4f793508fdb43ddd452f0d59a3126101f9fa5459)
784
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update Babel
785
+
786
+ - Updated dependencies
787
+ [[`4f79350`](https://github.com/brighte-labs/spark-web/commit/4f793508fdb43ddd452f0d59a3126101f9fa5459),
788
+ [`f524009`](https://github.com/brighte-labs/spark-web/commit/f5240098cf731b0a2e351b7b585711e893a33736),
789
+ [`60f7281`](https://github.com/brighte-labs/spark-web/commit/60f7281c4a194d934a2ce561cad47e737b0fb48e)]:
790
+ - @spark-web/a11y@1.1.0
791
+ - @spark-web/box@1.0.6
792
+ - @spark-web/icon@1.1.4
793
+ - @spark-web/stack@1.0.6
794
+ - @spark-web/text@1.0.6
795
+ - @spark-web/theme@3.0.2
796
+ - @spark-web/utils@1.1.5
797
+
798
+ ## 3.0.0
799
+
800
+ ### Major Changes
801
+
802
+ - [#99](https://github.com/brighte-labs/spark-web/pull/99)
803
+ [`3db131b`](https://github.com/brighte-labs/spark-web/commit/3db131bfadbc4149d05b7c74be1a3e68cdd5b18f)
804
+ Thanks [@oscargws](https://github.com/oscargws)! - Removed props spreading
805
+ from multiple packages
806
+
807
+ ## 2.0.1
808
+
809
+ ### Patch Changes
810
+
811
+ - [#128](https://github.com/brighte-labs/spark-web/pull/128)
812
+ [`2a1c354`](https://github.com/brighte-labs/spark-web/commit/2a1c3549e03f91d012906f90b13c1f8d7ba18d1e)
813
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Fix collapsing
814
+ gap on stack that wraps label, description, input and message
815
+
816
+ * [#123](https://github.com/brighte-labs/spark-web/pull/123)
817
+ [`d0ce080`](https://github.com/brighte-labs/spark-web/commit/d0ce08000f4c62d7402450b09f086d5806f1b50b)
818
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Tighten up
819
+ spacing
820
+
821
+ * Updated dependencies
822
+ [[`3d519f7`](https://github.com/brighte-labs/spark-web/commit/3d519f7cd4cf5b36dc09548891c835c294a5acef)]:
823
+ - @spark-web/utils@1.1.4
824
+
825
+ ## 2.0.0
826
+
827
+ ### Major Changes
828
+
829
+ - [#108](https://github.com/brighte-labs/spark-web/pull/108)
830
+ [`efa263a`](https://github.com/brighte-labs/spark-web/commit/efa263aee2c33297edb19203ae1d82abd99d298d)
831
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Refactor
832
+ useFieldContext to return tuple
833
+
834
+ ### Patch Changes
835
+
836
+ - [#113](https://github.com/brighte-labs/spark-web/pull/113)
837
+ [`156236d`](https://github.com/brighte-labs/spark-web/commit/156236d2474aee66a0b8e2030635f9c08a5b78ba)
838
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update
839
+ dependencies
840
+
841
+ - Updated dependencies
842
+ [[`08752c3`](https://github.com/brighte-labs/spark-web/commit/08752c350b53cde0657ec32f03f9932dec835e33),
843
+ [`156236d`](https://github.com/brighte-labs/spark-web/commit/156236d2474aee66a0b8e2030635f9c08a5b78ba)]:
844
+ - @spark-web/a11y@1.0.5
845
+ - @spark-web/box@1.0.5
846
+ - @spark-web/icon@1.1.3
847
+ - @spark-web/stack@1.0.5
848
+ - @spark-web/text@1.0.5
849
+ - @spark-web/theme@3.0.1
850
+ - @spark-web/utils@1.1.3
851
+
852
+ ## 1.1.0
853
+
854
+ ### Minor Changes
855
+
856
+ - [#50](https://github.com/brighte-labs/spark-web/pull/50)
857
+ [`60372d0`](https://github.com/brighte-labs/spark-web/commit/60372d0538fe5e141c8dabc1b20c8e09d1f56c70)
858
+ Thanks [@justinfaynhan](https://github.com/justinfaynhan)! - Added new
859
+ currency input component. Some changes have been made to its underlying base
860
+ textinput component to provide functionality to accomodate the adornments, in
861
+ this case, a starting adornment currency symbol.
862
+
863
+ ### Patch Changes
864
+
865
+ - [#65](https://github.com/brighte-labs/spark-web/pull/65)
866
+ [`182a53a`](https://github.com/brighte-labs/spark-web/commit/182a53a484892df48754e89dd714459a7f69fcff)
867
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Remove "Inter"
868
+ font, change font-weights and font-sizes.
869
+
870
+ * [#52](https://github.com/brighte-labs/spark-web/pull/52)
871
+ [`82ab744`](https://github.com/brighte-labs/spark-web/commit/82ab744f198466810f3386bc459b8ab4d57c820e)
872
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Add files array
873
+ to package.json files
874
+
875
+ * Updated dependencies
876
+ [[`1ef4f82`](https://github.com/brighte-labs/spark-web/commit/1ef4f82df999c487b79cd216c17ca5735e444fc5),
877
+ [`182a53a`](https://github.com/brighte-labs/spark-web/commit/182a53a484892df48754e89dd714459a7f69fcff),
878
+ [`5744b68`](https://github.com/brighte-labs/spark-web/commit/5744b6820f626b93a14e11e1fbd96bcbe1b12b27),
879
+ [`82ab744`](https://github.com/brighte-labs/spark-web/commit/82ab744f198466810f3386bc459b8ab4d57c820e),
880
+ [`df618d9`](https://github.com/brighte-labs/spark-web/commit/df618d92d534e06f06ecedc95ea6bdd51cdc906b)]:
881
+ - @spark-web/text@1.0.4
882
+ - @spark-web/theme@3.0.0
883
+ - @spark-web/stack@1.0.4
884
+ - @spark-web/a11y@1.0.4
885
+ - @spark-web/box@1.0.4
886
+ - @spark-web/icon@1.1.2
887
+ - @spark-web/utils@1.1.2
888
+
889
+ ## 1.0.3
890
+
891
+ ### Patch Changes
892
+
893
+ - [#42](https://github.com/brighte-labs/spark-web/pull/42)
894
+ [`435779a`](https://github.com/brighte-labs/spark-web/commit/435779aa42bd635bbf43e1fd41724c666402caa2)
895
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Prevent multiple
896
+ versions of React
897
+
898
+ - Updated dependencies
899
+ [[`435779a`](https://github.com/brighte-labs/spark-web/commit/435779aa42bd635bbf43e1fd41724c666402caa2)]:
900
+ - @spark-web/a11y@1.0.3
901
+ - @spark-web/box@1.0.3
902
+ - @spark-web/icon@1.1.1
903
+ - @spark-web/stack@1.0.3
904
+ - @spark-web/text@1.0.3
905
+ - @spark-web/theme@2.0.2
906
+ - @spark-web/utils@1.1.1
907
+
908
+ ## 1.0.2
909
+
910
+ ### Patch Changes
911
+
912
+ - [#40](https://github.com/brighte-labs/spark-web/pull/40)
913
+ [`062c8ab`](https://github.com/brighte-labs/spark-web/commit/062c8ab8c7b4120f8d14c269b5f7801288c678ca)
914
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Add
915
+ @babel/transform-runtime
916
+
917
+ - Updated dependencies
918
+ [[`062c8ab`](https://github.com/brighte-labs/spark-web/commit/062c8ab8c7b4120f8d14c269b5f7801288c678ca)]:
919
+ - @spark-web/a11y@1.0.2
920
+ - @spark-web/box@1.0.2
921
+ - @spark-web/icon@1.0.2
922
+ - @spark-web/stack@1.0.2
923
+ - @spark-web/text@1.0.2
924
+ - @spark-web/theme@2.0.1
925
+ - @spark-web/utils@1.0.2
926
+
927
+ ## 1.0.1
928
+
929
+ ### Patch Changes
930
+
931
+ - [#36](https://github.com/brighte-labs/spark-web/pull/36)
932
+ [`8546f8f`](https://github.com/brighte-labs/spark-web/commit/8546f8f05daaa79ea3ff954c6c4928a7a2d0622d)
933
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update Babel
934
+ config
935
+
936
+ - Updated dependencies
937
+ [[`aebff30`](https://github.com/brighte-labs/spark-web/commit/aebff30c86cb0a9db22b545c46159ce0d1c14afb),
938
+ [`8546f8f`](https://github.com/brighte-labs/spark-web/commit/8546f8f05daaa79ea3ff954c6c4928a7a2d0622d)]:
939
+ - @spark-web/theme@2.0.0
940
+ - @spark-web/a11y@1.0.1
941
+ - @spark-web/box@1.0.1
942
+ - @spark-web/icon@1.0.1
943
+ - @spark-web/stack@1.0.1
944
+ - @spark-web/text@1.0.1
945
+ - @spark-web/utils@1.0.1
946
+
947
+ ## 1.0.0
948
+
949
+ ### Major Changes
950
+
951
+ - [#27](https://github.com/brighte-labs/spark-web/pull/27)
952
+ [`4c8e398`](https://github.com/brighte-labs/spark-web/commit/4c8e3988f8a59d3dab60a6b67b1128b6ff2a5f2c)
953
+ Thanks [@JedWatson](https://github.com/JedWatson)! - Initial Version
954
+
955
+ ### Patch Changes
956
+
957
+ - Updated dependencies
958
+ [[`4c8e398`](https://github.com/brighte-labs/spark-web/commit/4c8e3988f8a59d3dab60a6b67b1128b6ff2a5f2c)]:
959
+ - @spark-web/a11y@1.0.0
960
+ - @spark-web/box@1.0.0
961
+ - @spark-web/icon@1.0.0
962
+ - @spark-web/stack@1.0.0
963
+ - @spark-web/text@1.0.0
964
+ - @spark-web/theme@1.0.0
965
+ - @spark-web/utils@1.0.0