Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5c0f258
feat: add location support to IMage Widget
hjpalpha Apr 1, 2026
7c50056
as per review
hjpalpha Apr 1, 2026
4148868
Update Image.lua
hjpalpha Apr 3, 2026
9d76b32
Update Image.lua
hjpalpha Apr 3, 2026
aaa13b3
Update Image.lua
hjpalpha Apr 3, 2026
4aebd7d
Update Image.lua
hjpalpha Apr 3, 2026
a8b198c
Update Image.lua
hjpalpha Apr 3, 2026
357a5d2
Update Image.lua
hjpalpha Apr 3, 2026
6208a4a
Update Image.lua
hjpalpha Apr 3, 2026
3c1dc81
Update Image.lua
hjpalpha Apr 3, 2026
c9dda34
Update Image.lua
hjpalpha Apr 3, 2026
a75e9c6
Update Image.lua
hjpalpha Apr 3, 2026
c704246
Update Image.lua
hjpalpha Apr 3, 2026
033cca3
Update Image.lua
hjpalpha Apr 3, 2026
253705e
Update Image.lua
hjpalpha Apr 3, 2026
7086f05
Update Image.lua
hjpalpha Apr 3, 2026
79b4ead
Update Image.lua
hjpalpha Apr 3, 2026
29c4985
Update Image.lua
hjpalpha Apr 3, 2026
5fc9b2d
Update Image.lua
hjpalpha Apr 3, 2026
41fc7bc
Update Image.lua
hjpalpha Apr 3, 2026
1ca5fdf
Update Image.lua
hjpalpha Apr 3, 2026
be6a986
Update Image.lua
hjpalpha Apr 3, 2026
1f961ba
Update Image.lua
hjpalpha Apr 3, 2026
63d1888
Merge branch 'main' into hjpalpha-patch-1
hjpalpha Apr 3, 2026
2854dc4
consumers
hjpalpha Apr 3, 2026
3352722
fix anno
hjpalpha Apr 3, 2026
eed069f
Update lua/wikis/commons/Widget/Image/Icon/Image.lua
hjpalpha Apr 8, 2026
ccdf90c
as per review
hjpalpha Apr 9, 2026
5ec6fa5
Apply suggestions from code review
hjpalpha Apr 9, 2026
261083f
Update Image.lua
hjpalpha Apr 9, 2026
4c57dac
Update Image.lua
hjpalpha Apr 9, 2026
86f24f2
github web fucked up the line endings ...
hjpalpha Apr 9, 2026
f493c25
fixerino
hjpalpha Apr 14, 2026
e6acb7b
chore: update visual snapshots
hjpalpha Apr 14, 2026
1708caf
Update lua/wikis/commons/Widget/Image/Icon/Image.lua
hjpalpha Apr 14, 2026
898bc69
chore: update visual snapshots
hjpalpha Apr 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lua/wikis/commons/Widget/Image/Icon/Image.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ local WidgetIcon = Lua.import('Module:Widget/Image/Icon')
---@field caption string?
---@field alt string?
---@field alignment string?
---@field location string?
Comment thread
hjpalpha marked this conversation as resolved.
Outdated

---@class IconImageWidget: IconWidget
---@operator call(IconImageWidgetParameters): IconImageWidget
Expand All @@ -41,6 +42,7 @@ function Icon:render()
caption = self.props.caption,
alt = self.props.alt,
alignment = self.props.alignment,
location = self.props.location,
}
Comment thread
hjpalpha marked this conversation as resolved.
Outdated
)
end
Expand Down
Loading