This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
Releases: illright/attractions
Releases · illright/attractions
v3.7.2
Fixed
- On touch devices, the slider would throw errors on release, not anymore (Thanks to @naranjamecanica for #380)
v3.7.0
v3.6.0
v3.5.2
v3.5.1
v3.5.0
Added
- The
Slider
component has been added, allowing you to create a slider similar to the one you would get with<input type="range">
. It also support inputting a range by supplying a tuple for thevalue
prop (Thanks to @RikuVan for the contribution - #290). - The
closeOnSelection
prop to theDatePicker
component has been added to close the dropdown after a selection has been made.
Changed
- Change the
Dropdown
chevron transition animation to ascaleY(-1)
for150ms
(#310). - The
Card
component will now use the SCSS$background
variable as its default background color instead of the hard-coded white color.
Fixed
v3.4.0
Added
- The
Breadcrumbs
component has been added to the library (#157). - A new
Table
component has been added, useful for displaying simple collections of data (#255). maxReachedTooltip
prop for theCheckboxGroup
andCheckboxChipGroup
components to customize the tooltip text that appears on hover when the maximum amount of checkboxes have been checked (#13).- The
hours
,minutes
andseconds
props of theTimePicker
component allow you to specify what values the user can choose from (#120). disabledDates
prop for theCalendar
component to disable specific dates or ranges of dates (#34).inputClass
prop for theTimePicker
andDatePicker
components to pass them down to theTextField
(#269).- The
Button
component is now SvelteKit-compatible (using thenoPrefetch
prop would also unsetsveltekit:prefetch
).
Fixed
- [For contributors on Windows] The scripts in
package.json
should now work on CMD as well.
v3.3.0
This release contains no new features but fixes a Sass deprecation. You'll have to bump your sass
dependency to >= 1.33.0
in order to upgrade to this version.
Fixed
- Deprecated Sass features: The division in Sass with the slash operator was deprecated.
- A typo in the documentation: A code sample suggested users to use
reqiure
.
v3.2.1
Fixed
- Typings: The
SnackbarContainer
'sposition
prop was typed as expecting the entireSnackbarPositions
enum object. It has been fixed to expect only one of its values, and similarly so forPopoverPositions
(#257).
v3.2.0
Added
- New SCSS variables for customizing the curvature radius of the outline
TextField
and the font weight of theButton
(#245 and #246).
Fixed
- The
DatePicker
component wasn't generating the days of the month correctly in certain timezones (#243). - The outline
TextField
didn't respect the background color (#246).
Changed
- Improved TypeScript declaration files. They should now work when importing nested modules such as
attractions/utils
or evenattractions/snackbar/snackbar-positions
. They also now specifynull
as a valid value wherever it is accepted. You may (and should) enable--strictNullChecks
again!
Thanks to @sallaben and @damonbauer for contributing to this release!