Skip to content

Commit

Permalink
v0.1.31
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Jun 13, 2024
1 parent 9a5a671 commit b936a14
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 64 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.30...HEAD)
## [Unreleased](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.31...HEAD)

### Added
### Changed
Expand All @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security

## [0.1.31](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.30...v0.1.31) - 2024-06-13

### Changed

- Upgraded TNA Frontend to `v0.1.59`

## [0.1.30](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.29...v0.1.30) - 2024-06-05

### Changed
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ We test each component against its published [component fixtures](https://github

| TNA Frontend Jinja | Compatible TNA Frontend versions |
| --------------------- | ------------------------------------------ |
| `0.1.31` | `v0.1.59` |
| `0.1.30` | `v0.1.58` |
| `0.1.29` | `v0.1.57` |
| `0.1.28` | `v0.1.55`, `v0.1.56` |
Expand Down
101 changes: 41 additions & 60 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"test": "node test-fixtures.mjs"
},
"dependencies": {
"@nationalarchives/frontend": "0.1.58",
"@nationalarchives/frontend": "0.1.59",
"diff": "^5.1.0",
"glob": "^10.2.7",
"js-beautify": "^1.14.8",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="tna-frontend-jinja",
version="0.1.30",
version="0.1.31",
author="Andrew Hosgood",
author_email="[email protected]",
description="TNA Frontend Jinja templates",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
{%- for item in params['items'] -%}
<li class="{{ ' '.join(itemClasses) }}">
<a href="{{ item.href }}" class="tna-index-grid__item" title="{{ item.title }}">
<img src="{{ item.src }}" class="tna-index-grid__item-image" width="{{ item.width }}" height="{{ item.height }}" alt="{{ item.alt }}">
<img src="{{ item.src }}" class="tna-index-grid__item-image" width="{{ item.width }}" height="{{ item.height }}" alt="{{ item.alt }}"{%- if params.lazyImages %} loading="lazy"{% endif %}>
<span class="tna-index-grid__item-content">
<span class="tna-index-grid__item-title">{{ item.title }}</span>
{%- if item.label -%}
Expand Down

0 comments on commit b936a14

Please sign in to comment.