Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #381 from illright/illright/patch-94164
Browse files Browse the repository at this point in the history
Add a changelog entry, upgrade dependencies, bump
  • Loading branch information
illright authored Mar 1, 2024
2 parents d2f47dd + 62b656f commit f045539
Show file tree
Hide file tree
Showing 6 changed files with 3,124 additions and 1,262 deletions.
1 change: 0 additions & 1 deletion .prettierrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ singleQuote: true
arrowParens: avoid
endOfLine: auto
svelteSortOrder: options-scripts-markup-styles
svelteBracketNewLine: true
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented here.

The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/).

## [3.7.2] - 2024-03-01

### Fixed

- On touch devices, the slider would throw errors on release, not anymore (Thanks to [@naranjamecanica](https://github.com/naranjamecanica) for [#380](https://github.com/illright/attractions/pull/380))

## [3.7.1] - 2023-06-25

### Added
Expand Down Expand Up @@ -230,7 +236,8 @@ Minor documentation and bug fixes.
First stable release with proper documentation.
Previous, undocumented, releases can be found in [the releases section](https://github.com/illright/attractions/releases).

[unreleased]: https://github.com/illright/attractions/compare/v3.7.1...HEAD
[unreleased]: https://github.com/illright/attractions/compare/v3.7.2...HEAD
[3.7.2]: https://github.com/illright/attractions/releases/tag/v3.7.2
[3.7.1]: https://github.com/illright/attractions/releases/tag/v3.7.1
[3.7.0]: https://github.com/illright/attractions/releases/tag/v3.7.0
[3.6.0]: https://github.com/illright/attractions/releases/tag/v3.6.0
Expand Down
22 changes: 11 additions & 11 deletions attractions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "attractions",
"version": "3.7.1",
"version": "3.7.2",
"description": "A UI kit for Svelte",
"homepage": "https://illright.github.io/attractions/",
"bugs": "https://github.com/illright/attractions/issues",
Expand Down Expand Up @@ -30,23 +30,23 @@
"*"
],
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^7.32.0",
"pkg-versions": "^2.1.0",
"prettier-plugin-svelte": "^2.7.0",
"rollup": "^2.75.7",
"rollup-plugin-svelte": "^7.1.0",
"prettier-plugin-svelte": "^2.10.1",
"rollup": "^2.79.1",
"rollup-plugin-svelte": "^7.1.6",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.52.3",
"sass": "^1.71.1",
"stylelint": "^13.13.1",
"sveld": "0.17.2",
"svelte": "^3.48.0",
"svelte": "^3.59.2",
"svelte-preprocess": "^4.10.7",
"typescript": "^4.7.4"
"typescript": "^4.9.5"
},
"peerDependencies": {
"postcss": ">=7 <9",
Expand Down
12 changes: 11 additions & 1 deletion docs/src/components/home/info-tile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,17 @@
export let href;
</script>

<div class="info-tile" on:click={() => goto(href)}>
<div
class="info-tile"
role="button"
on:click={() => goto(href)}
tabindex="0"
on:keydown={e => {
if (e.key == ' ' || e.key == 'Enter') {
goto(href);
}
}}
>
<Card>
<div class="icon">
<svelte:component this={icon} size="24" />
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@
"docs"
],
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/core": "^7.24.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.3",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/runtime": "^7.24.0",
"eslint": "8.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte3": "^3.4.1",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.0",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-svelte": "^2.10.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"svelte": "^3.48.0",
"svelte-check": "^2.7.2",
"typescript": "^4.7.4"
"svelte": "^3.59.2",
"svelte-check": "^2.10.3",
"typescript": "^4.9.5"
}
}
Loading

0 comments on commit f045539

Please sign in to comment.