@royaloperahouse/chord 2.2.5 → 2.2.7-a-chord-development

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 (36) hide show
  1. package/CHANGELOG.md +216 -7
  2. package/README.md +250 -40
  3. package/dist/chord.cjs.development.js +183 -107
  4. package/dist/chord.cjs.development.js.map +1 -1
  5. package/dist/chord.cjs.production.min.js +1 -1
  6. package/dist/chord.cjs.production.min.js.map +1 -1
  7. package/dist/chord.esm.js +183 -107
  8. package/dist/chord.esm.js.map +1 -1
  9. package/dist/components/atoms/Icons/SvgIcons/Descriptors/Seat.svg.d.ts +4 -0
  10. package/dist/components/atoms/Icons/SvgIcons/Descriptors/Standing.svg.d.ts +4 -0
  11. package/dist/components/atoms/Icons/SvgIcons/Descriptors/Wheelchair.svg.d.ts +4 -0
  12. package/dist/components/atoms/Icons/SvgIcons/index.d.ts +3 -0
  13. package/dist/components/atoms/Radio/Radio.d.ts +3 -0
  14. package/dist/components/atoms/Radio2/Radio2.d.ts +23 -0
  15. package/dist/components/atoms/Radio2/Radio2.style.d.ts +7 -0
  16. package/dist/components/atoms/Radio2/index.d.ts +2 -0
  17. package/dist/components/atoms/Tickbox/Tickbox.d.ts +3 -0
  18. package/dist/components/atoms/Tickbox2/Tickbox2.d.ts +23 -0
  19. package/dist/components/atoms/Tickbox2/Tickbox2.style.d.ts +7 -0
  20. package/dist/components/atoms/Tickbox2/index.d.ts +2 -0
  21. package/dist/components/atoms/index.d.ts +3 -1
  22. package/dist/components/index.d.ts +3 -3
  23. package/dist/components/molecules/Card/Card.style.d.ts +1 -0
  24. package/dist/components/molecules/PageHeading/index.d.ts +1 -1
  25. package/dist/components/molecules/PeopleListing/CreditListing/CreditListing.style.d.ts +1 -0
  26. package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +3 -0
  27. package/dist/components/molecules/RadioGroup2/RadioGroup2.d.ts +38 -0
  28. package/dist/components/molecules/RadioGroup2/RadioGroup2.style.d.ts +4 -0
  29. package/dist/components/molecules/RadioGroup2/index.d.ts +2 -0
  30. package/dist/components/molecules/index.d.ts +3 -2
  31. package/dist/index.d.ts +3 -2
  32. package/dist/types/card.d.ts +4 -0
  33. package/dist/types/formTypes.d.ts +125 -10
  34. package/dist/types/passwordStrength.d.ts +6 -6
  35. package/package.json +1 -1
  36. package/README.GIT +0 -277
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [2.2.7]
2
+ - Add new seat-type icons
3
+
4
+ ## [2.2.6]
5
+ - TextField: minor style fixes
6
+
1
7
  ## [2.2.5]
2
8
  - Add Status Banner Component
3
9
 
@@ -16,121 +22,172 @@
16
22
  - Read More Component
17
23
 
18
24
  ## [2.2.0]
25
+
19
26
  - Fix Grid bug introduced in 2.1.9
20
27
 
21
28
  ## [2.1.10]
29
+
22
30
  - Add missing export for `CreditListing`
23
31
 
24
32
  ## [2.1.9]
33
+
25
34
  - Add Credit Listing
26
35
 
27
36
  ## [2.1.8]
37
+
28
38
  - Add Branding Link to Compact Header
29
39
 
30
40
  ## [2.1.7]
41
+
31
42
  - Footer updates
32
43
 
33
44
  ## [2.1.6]
45
+
34
46
  - Add X logo
35
47
 
36
48
  ## [2.1.5]
37
- - Revert search error caused by previous version
49
+
50
+ - Patch search bar hidden fix
38
51
 
39
52
  ## [2.1.4]
53
+
40
54
  - Fix screenreader accessibility for accordions
41
55
 
42
56
  ## [2.1.3]
57
+
43
58
  - Navigation: make links links
44
59
  - Clear testing errors
45
60
 
46
61
  ## [2.1.2]
62
+
47
63
  - TextField: include optional width param
48
64
 
49
65
  ## [2.1.1]
66
+
50
67
  - AnchorTabBar: change grid, to move tabs to the center
51
68
 
52
69
  ## [2.1.0]
70
+
53
71
  - Convert Pagination to href instead of React Router Link
54
72
 
55
73
  ## [2.0.0]
74
+
56
75
  - Remove swiper dependency
76
+
57
77
  ## [1.28.0]
78
+
58
79
  - Add new RadioGroup component
59
80
  - Progress: add the steps
60
81
  - Compact header: hide CTA if the prop is undefined
61
82
  - Compact header: change highlight color for Stream variant
62
83
 
63
84
  ## [1.27.1]
85
+
64
86
  - Fixed failing test on timer component
65
87
 
66
88
  ## [1.27.0]
89
+
67
90
  - ContentSummary component can now be configured to be fully clickable
68
91
 
69
92
  ## [1.26.0]
93
+
70
94
  - MiniCard and MinimalCarousel: add new components
71
95
 
72
96
  ## [1.25.2]
97
+
73
98
  - Now clicking on the gray overlay closes the search bar
74
99
 
75
100
  ## [1.25.1]
101
+
76
102
  - Stepper: Properly export component
77
103
 
78
104
  ## [1.25.0]
105
+
79
106
  - Stepper: Add Stepper component
80
107
 
81
108
  ## [1.24.2]
109
+
82
110
  - Increase Upsell Card Flag character limit to 30
83
111
 
84
112
  ## [1.24.1]
113
+
85
114
  - Include link field to Upsell Cards
86
115
 
87
116
  ## [1.24.0]
117
+
88
118
  - Implement Upsell Section & Upsell Cards
89
119
 
120
+ ## [1.23.2-b]
121
+
122
+ - Add Stepper component
123
+ - Fix solo negative sign NaN bug
124
+ -
125
+
90
126
  ## [1.23.2]
127
+
91
128
  - Fix BrandingStyle not showing bug
92
129
 
93
130
  ## [1.23.1]
131
+
94
132
  - Fix enum on BrandingStyle
95
133
 
96
134
  ## [1.23.0]
135
+
97
136
  - Re-enabled compact header on iOS
98
137
 
99
138
  ## [1.22.0]
139
+
100
140
  - TextArea: Added new TextArea component
101
141
  - TickBox: Added disabled and error states
102
142
 
103
143
  ## [1.21.1]
104
- - Made select state reset behaviour opt-in
144
+
145
+ - Compact PageHeading: Refactored to support iOS devices
105
146
 
106
147
  ## [1.21.0]
148
+
107
149
  - TextLogo: add new component
108
150
  - Compact PageHeading: swap logo with TextLogo to fix iOS issues
109
151
 
152
+ ## [1.20.2-a]
153
+
154
+ - Made select state reset behaviour opt-in
155
+
110
156
  ## [1.20.2]
157
+
111
158
  - Card: change cursor to default for cards without buttons
112
159
  - HighlightsCarousel: hide button in case there are no text for them
113
160
 
114
161
  ## [1.20.1]
162
+
115
163
  - Reset the select component's selected value to the first option if options change
116
164
 
117
165
  ## [1.20.0]
166
+
118
167
  - Tickbox: Add black-on-white option
168
+
119
169
  ## [1.19.0]
170
+
120
171
  - Add timer to navigation basket
172
+
121
173
  ## [1.18.3]
174
+
122
175
  - iOS devices show image instead of video for Compact PageHeading
123
176
 
124
177
  ## [1.18.1-2]
178
+
125
179
  - Fix iOS exception on VideoControls
126
180
 
127
181
  ## [1.18.0]
182
+
128
183
  - Add Compact PageHeading component
129
184
 
130
185
  ## [1.17.0]
186
+
131
187
  - Add Page Heading Panel variant
132
188
 
133
189
  ## [1.16.0]
190
+
134
191
  - Implemented a new Timer component
135
192
  - Progress: extended the component, added it to Storybook
136
193
  - PromoWithTags: added Timer component
@@ -139,290 +196,423 @@
139
196
  - Card: added label
140
197
 
141
198
  ## [1.15.1]
199
+
142
200
  - Change to pagination component to align page numbers with URL numbers.
143
201
 
144
202
  ## [1.15.0]
145
- - Implemented a new Select component
203
+
204
+ - Add Compact PageHeading component
146
205
 
147
206
  ## [1.14.0]
207
+
148
208
  - Added standfirst functionality to Accordion/ Accordions component and theme for Schools Platform
149
209
 
150
210
  ## [1.13.2]
211
+
151
212
  - Add styled-components to dev-dependencies, to fix issues with tests that appear after adding the new styled components
152
213
 
153
214
  ## [1.13.1]
215
+
154
216
  - AnchorTabBar: fix the issues on mobile devices that are related to scroll/stickiness
155
217
 
156
218
  ## [1.13.0]
219
+
157
220
  - Implemented a new TextField component
158
221
 
159
222
  ## [1.12.4]
223
+
160
224
  - Search: change copy
161
225
 
162
226
  ## [1.12.0]
227
+
163
228
  - Search: Extend ContentSummary and SearchBar components to support new search results
164
229
 
230
+ ## [1.11.0-a]
231
+
232
+ - Pagination: add new component
233
+
165
234
  ## [1.11.0]
235
+
166
236
  - Carousels: Rewrite logic that cuts description, to support older browsers
167
237
 
238
+ ## [1.10.0-a]
239
+
240
+ - ContentSummary: make image clickable
241
+
168
242
  ## [1.10.0]
243
+
169
244
  - PageHeadingImpact: Replace CSS background-image with HTML image element
170
245
 
171
246
  ## [1.9.0]
247
+
172
248
  - Card: Add a new prop for the hover line color
173
249
 
250
+ ## [1.9.0-c]
251
+
252
+ - ContentSummary: make image clickable
253
+
254
+ ## [1.9.0-b]
255
+
256
+ - ContentSummary: change image size
257
+ - SearchBar: Export component
258
+
259
+ ## [1.9.0-a]
260
+
261
+ - ContentSummary: change image props
262
+
263
+ ## [1.9.0]
264
+
265
+ - Card: Add a new prop for the hover line color
266
+
267
+ ## [1.8.1-h]
268
+
269
+ - ContentSummary: add exports
270
+
271
+ ## [1.8.1-g]
272
+
273
+ - ContentSummary: refactor
274
+
275
+ ## [1.8.1-f]
276
+
277
+ - ContentSummary: update conditional rendering
278
+
279
+ ## [1.8.1-c]
280
+
281
+ - ContentSummary: update for Search results
282
+ - ContentSummarySection: remove
283
+
284
+ ## [1.8.1-b]
285
+
286
+ - Card: add new prop for the line color on hover
287
+
174
288
  ## [1.8.0]
289
+
175
290
  - SearchBar: Disable
176
291
 
177
292
  ## [1.7.2]
293
+
178
294
  - Add imageAltText to Card component
179
295
 
180
296
  ## [1.7.0]
297
+
181
298
  - Add new ContentSummary component
182
299
  - Add new ContentSummarySection component
183
300
  - Add Content Summary Section and individual Content Summaries
184
301
 
185
302
  ## [1.6.3]
303
+
186
304
  - Add exports for zIndexes
187
305
 
188
306
  ## [1.6.2]
189
- - ImpactHeader: add alt text for sponsors logo custom image
307
+
308
+ - ImpactHeader: add alt text for sponsors logo custom image
190
309
 
191
310
  ## [1.6.1]
311
+
192
312
  - PageHeadingHighlight component: update exports
193
313
 
194
314
  ## [1.6.0]
315
+
195
316
  - Add new PageHeadingHighlight component
196
317
 
197
318
  ## [1.5.0]
319
+
198
320
  - PageHeading: decrease header height when title is not available
199
321
 
200
322
  ## [1.4.0]
323
+
201
324
  - ImpactHeader: make it possible to pass custom image as a sponsor logo
202
325
 
203
326
  ## [1.3.1]
327
+
204
328
  - Enable reduced size textLinks on PromoWithTags/asCard
205
329
 
206
330
  ## [1.3.0]
331
+
207
332
  - Add Static Actvivity Cards as PromoWithTags variant
208
333
 
209
334
  ## [1.2.0]
210
- - Card: buttons do not change position on mobiles;
335
+
336
+ - Card: buttons do not change position on mobiles;
211
337
 
212
338
  ## [1.1.0]
339
+
213
340
  - TitleWithCTA: fix cases with a long title
214
341
  - Card: add pointer cursor to container
215
342
 
216
343
  ## [0.9.0]
344
+
217
345
  - PromoWithTags: Add margin under ExtraContent iframe
218
346
 
219
347
  ## [0.8.0]
348
+
220
349
  - Card component: buttons are aligned by height
221
350
  - Highlight carousel: added possibility to display two CTAs
222
351
 
223
352
  ## [0.7.50]
353
+
224
354
  - Add Static Actvivity Cards
225
355
 
226
356
  ## [0.7.49]
357
+
227
358
  - Change button behaviour on stream and DED pages
228
359
 
229
360
  ## [0.7.48]
361
+
230
362
  - Add background themes to Information component
231
363
 
232
364
  ## [0.7.47]
365
+
233
366
  - PromoWithTags: Swap Content & ExtraContent divs to correct keyboard tab order
234
367
 
235
368
  ## [0.7.46]
369
+
236
370
  - Information: Add new Information component
237
371
 
238
372
  ## [0.7.45]
373
+
239
374
  - PromoWithTags: extend the component to handle extra content
240
375
 
241
376
  ## [0.7.441]
377
+
242
378
  - PageHeading: increase max line height for mobile devices
243
379
 
244
380
  ## [0.7.44]
381
+
245
382
  - PromoWithTags, PromoWithTitle: change grid for text content on tablet view
246
383
 
247
384
  ## [0.7.43]
385
+
248
386
  - AnchorTabBar: fix the typo in the name of the component
249
387
  - PromoWithTags: increase spacing between tags and body text
250
388
  - PromoWithTags: change prop name for subtags
251
389
 
252
390
  ## [0.7.42]
391
+
253
392
  - Livechat: Add more branded fields
254
393
 
255
394
  ## [0.7.41]
395
+
256
396
  - PromoWithTags: convert the checks value to boolean
257
397
 
258
398
  ## [0.7.40]
399
+
259
400
  - Add new PromoWithTags component
260
401
  - StickyBar: remove bottom border for mobile viewport
261
402
 
262
403
  ## [0.7.39]
404
+
263
405
  - Livechat: restyling
264
406
 
265
407
  ## [0.7.38]
408
+
266
409
  - PromoWithTitle: add styles for headings
267
410
 
268
411
  ## [0.7.37]
412
+
269
413
  - Tabs: Fix nav item spacing for large desktop displays
270
414
 
271
415
  ## [0.7.36]
272
- - Update PromowithTitle component with tags and change highlight color for text and title in Stream Header
416
+
417
+ - Update PromowithTitle component with tags and change highlight color for text and title in Stream Header
273
418
 
274
419
  ## [0.7.35]
420
+
275
421
  - Add new StickyBar component
276
422
 
277
423
  ## [0.7.34]
424
+
278
425
  - Tabs: Left-align last dropdown menu in the navigation bar
279
426
 
280
427
  ## [0.7.33]
428
+
281
429
  - Livechat: add Talkdesk Livechat injection component
282
430
 
283
431
  ## [0.7.32]
432
+
284
433
  - Carousels: extend character limit for description
285
434
 
286
435
  ## [0.7.31]
436
+
287
437
  - Card: add image alt text as a prop
288
438
 
289
439
  ## [0.7.30]
440
+
290
441
  - Navigation: add possibility to pass basket link as prop
291
442
 
292
443
  ## [0.7.29]
444
+
293
445
  - TextOnly: change spacing for the headings
294
446
 
295
447
  ## [0.7.28]
448
+
296
449
  - Order PeopleListing component by presence of headshot
297
450
  - Show four listings per row on large desktop
298
451
 
299
452
  ## [0.7.27]
453
+
300
454
  - Extend ContactCard capabilities
301
455
  - Extend Tertiary Button text length
302
456
 
303
457
  ## [0.7.26]
458
+
304
459
  - Add storybook-deployer package
305
460
  - Update README with instructions for deployment
306
461
 
307
462
  ## [0.7.25]
463
+
308
464
  - PeopleListing: add headshot
309
465
 
310
466
  ## [0.7.24]
467
+
311
468
  - Add new ContactCard component
312
469
 
313
470
  ## [0.7.23]
471
+
314
472
  - Accordion: make accordion keyboard-navigable
315
473
 
316
474
  ## [0.7.22]
475
+
317
476
  - Add new AnnouncementBanner component
318
477
 
319
478
  ## [0.7.21]
479
+
320
480
  - PageHeading: add a possibility to handle bold and italic in text
321
481
  - Header-2: fix font size and line-height
322
482
 
323
483
  ## [0.7.20]
484
+
324
485
  - TextOnly: fix spacing between the elements
325
486
 
326
487
  ## [0.7.19]
488
+
327
489
  - TextOnly: extend styles for embedded headers and links
328
490
 
329
491
  ## [0.7.18]
492
+
330
493
  - Quote: fix qoute signs
331
494
 
332
495
  ## [0.7.17]
496
+
333
497
  - Add new Quote component
334
498
 
335
499
  ## [0.7.16]
500
+
336
501
  - Card: fix title font size for tablet
337
502
 
338
503
  ## [0.7.15]
504
+
339
505
  - Tickbox: fix keyboard key value
340
506
 
341
507
  ## [0.7.14]
508
+
342
509
  - Fix keyboard accessibility for Tickbox
343
510
 
344
511
  ## [0.7.13]
512
+
345
513
  - Fix Carousel Card typography
346
514
  - Fix Impact Header Grid
347
515
  - Fix Footer Grid
348
516
  - Add additional font sizes for tablet
349
517
 
350
518
  ## [0.7.12]
519
+
351
520
  - Tickbox: fixed issue with component's state updating
352
521
 
353
522
  ## [0.7.11]
523
+
354
524
  - PromoWithTitle: align image vertically
355
525
 
356
526
  ## [0.7.10]
527
+
357
528
  - Theme: increases font size
358
529
 
359
530
  ## [0.7.9]
531
+
360
532
  - Impact: fix sponsor click and font size on mobile
361
533
  - Carousel: add buttons to tablet
362
534
  - Navigation: position fixed when menu is open on mobile
363
535
  - Highlight Carousel: add html text to short description
364
536
 
365
537
  ## [0.7.8]
538
+
366
539
  - TitleWithCTA: add message prop
367
540
 
368
541
  ## [0.7.7]
542
+
369
543
  - Tabs: close dropdown when it is clicked twice
370
544
 
371
545
  ## [0.7.6]
546
+
372
547
  - Add new initOpen prop to Accordion component
373
548
 
374
549
  ## [0.7.5]
550
+
375
551
  - Fix Styling in PeopleListing on Desktop
376
552
 
377
553
  ## [0.7.4]
554
+
378
555
  - Fix git README
379
556
 
380
557
  ## [0.7.3]
558
+
381
559
  - Fix Styling in PeopleListing on Mobile
382
560
 
383
561
  ## [0.7.2]
562
+
384
563
  - Add align center image in Editorial component
385
564
  - Export ControlledDropdown component
386
565
 
387
566
  ## [0.7.1]
567
+
388
568
  - Fix TitleWithCTA bug (visualization in two lines) in tablet
389
569
  - Export TextLink component
390
570
  - PeopleListing: custom person separator
391
571
 
392
572
  ## [0.7.0]
573
+
393
574
  - PeopleListing: replace people prop by roles prop
394
575
 
395
576
  ## [0.6.0]
577
+
396
578
  - Refactor the AnchorTabBar to separate page title and buttons
397
579
  - Add new TitleWithCTA component
398
580
  - Export Tab component
399
581
 
400
582
  ## [0.5.11]
583
+
401
584
  - Add Tickbox component and TickboxMode enum
402
585
  - PageHeading: fix typography
403
586
 
404
587
  ## [0.5.10]
588
+
405
589
  - Highlights Carousel: tablet layout improvements
406
590
  - Navigation improvements for small desktops.
407
591
  - Hide Rotator Buttons in the Hihghlight Carousel when there is only one event
408
592
 
409
593
  ## [0.5.9]
594
+
410
595
  - Reduce tablet grid margin from 50px to 32px.
411
596
  - Add alternative to aspect-ratio css attribute.
412
597
 
413
598
  ## [0.5.8]
599
+
414
600
  - PromoWithTitle links style
415
601
 
416
602
  ## [0.5.7]
603
+
417
604
  - Added Star icon to Iconography
418
605
 
419
606
  ## [0.5.6]
607
+
420
608
  - Added Favourite and Favourite Full icons to Iconography
421
609
 
422
610
  ## [0.5.5]
611
+
423
612
  - Export ImageAspectRatioWrapper component and AspectRatio enum
424
613
 
425
614
  ## [0.5.4]
615
+
426
616
  - Fix Card typography
427
617
  - Fix Carousel title typography
428
618
  - Fix Image Carousel size
@@ -431,51 +621,63 @@
431
621
  - Fix Anchor bar internal navigation
432
622
 
433
623
  ## [0.5.3]
624
+
434
625
  - Handle keyboard events using key attribute
435
626
 
436
627
  ## [0.5.2]
628
+
437
629
  - Highlights Carousel: info change swiping slide
438
630
  - Fix RotatorButtons a11y
439
631
 
440
632
  ## [0.5.1]
633
+
441
634
  - Highlights Carousel: fix box-sizing
442
635
 
443
636
  ## [0.5.0]
637
+
444
638
  - Highlights Carousel: new slides props (breaking change)
445
639
  - Fix in PageHeadingImpact image
446
640
 
447
641
  ## [0.4.4]
642
+
448
643
  - AnchorTabBar a11y: added tabIndex to links
449
644
 
450
645
  ## [0.4.3]
646
+
451
647
  - Prevent focus when navigation tab is clicked
452
648
 
453
649
  ## [0.4.2]
650
+
454
651
  - Highlights Carousel Components
455
652
  - Keyboard navigation fix for Navigation Component
456
653
 
457
654
  ## [0.4.1]
655
+
458
656
  - Swiper included as dependency
459
657
  - Fix for italics in Editorial, Card and PromoWithTitle components
460
658
  - Extra Props for AnchorTabBar
461
659
 
462
660
  ## [0.4.0]
661
+
463
662
  - Navigation Logo breaking change
464
663
  - Colors enum exported as in types
465
664
 
466
665
  ## [0.3.9]
666
+
467
667
  - Added Carousel Component
468
668
  - Dropdowns overlap fix
469
669
  - z-index fixes (for cards overlapping Anchor Tabs)
470
670
  - Navigation menu alignment fix
471
671
 
472
672
  ## [0.3.8]
673
+
473
674
  - Add possibility to configure GridItem for TextOnly component
474
675
  - Rich Text Editor Styling fix
475
676
  - Tweaks to Button layout for components
476
677
  - Anchor navigation arrows fix
477
678
 
478
679
  ## [0.3.7]
680
+
479
681
  - Typography change for Subtitle 2
480
682
  - AltHeader, BodyText, Header, Overline and Subtitle Components
481
683
  - REMOVED Heading Component - replaced by Header Component
@@ -483,22 +685,26 @@
483
685
  - made 'devices' public
484
686
 
485
687
  ## [0.3.6]
688
+
486
689
  - PageHeading Component
487
690
  - SectionTitle multiline fix
488
691
 
489
692
  ## [0.3.5]
693
+
490
694
  - Fix for Searchbox border on iOS
491
695
  - Fix for Accordion - Mobile Styling Issue
492
696
  - Fix for Card Component - Styling Issues
493
697
  - Change in Search layout
494
698
 
495
699
  ## [0.3.4]
700
+
496
701
  - Added Rotator Buttons
497
702
  - General Gotham SSm A & B font setup fixes
498
703
  - Fix for Footer font and size in mobile view
499
704
  - Subtitles 2 typography changes
500
705
 
501
706
  ## [0.3.3]
707
+
502
708
  - Added AnchorTabBar Component
503
709
  - Added Accordion Component
504
710
  - Added Card Component
@@ -506,10 +712,13 @@
506
712
  - Fix for Navigation Search font and mobile view
507
713
 
508
714
  ## [0.3.0]
715
+
509
716
  - Design system project renamed and moved to chord
510
717
 
511
718
  ## [0.2.0]
512
- - public NPM Library
719
+
720
+ - public NPM Library
513
721
 
514
722
  ## [0.1.0]
723
+
515
724
  - Initial version