Compare commits
No commits in common. "3041e0118411704f245798809e26e10efb877e5b" and "51c456eb387bdce75891a21db677a23bddaddfb2" have entirely different histories.
3041e01184
...
51c456eb38
|
@ -5,13 +5,6 @@ All notable changes to wuttaweb will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## v0.20.3 (2025-01-14)
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- add `render_grid_tag()` as separate def block for index templates
|
|
||||||
- add `click_handler` attr for GridAction
|
|
||||||
|
|
||||||
## v0.20.2 (2025-01-14)
|
## v0.20.2 (2025-01-14)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "WuttaWeb"
|
name = "WuttaWeb"
|
||||||
version = "0.20.3"
|
version = "0.20.2"
|
||||||
description = "Web App for Wutta Framework"
|
description = "Web App for Wutta Framework"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
||||||
|
|
|
@ -2284,16 +2284,6 @@ class GridAction:
|
||||||
|
|
||||||
Optional ``target`` attribute for the ``<a>`` tag.
|
Optional ``target`` attribute for the ``<a>`` tag.
|
||||||
|
|
||||||
.. attribute:: click_handler
|
|
||||||
|
|
||||||
Optional JS click handler for the action. This value will be
|
|
||||||
rendered as-is within the final grid template, hence the JS
|
|
||||||
string must be callable code. Note that ``props.row`` will be
|
|
||||||
available in the calling context, so a couple of examples:
|
|
||||||
|
|
||||||
* ``deleteThisThing(props.row)``
|
|
||||||
* ``$emit('do-something', props.row)``
|
|
||||||
|
|
||||||
.. attribute:: icon
|
.. attribute:: icon
|
||||||
|
|
||||||
Name of icon to be shown for the action link.
|
Name of icon to be shown for the action link.
|
||||||
|
@ -2312,7 +2302,6 @@ class GridAction:
|
||||||
label=None,
|
label=None,
|
||||||
url=None,
|
url=None,
|
||||||
target=None,
|
target=None,
|
||||||
click_handler=None,
|
|
||||||
icon=None,
|
icon=None,
|
||||||
link_class=None,
|
link_class=None,
|
||||||
):
|
):
|
||||||
|
@ -2322,7 +2311,6 @@ class GridAction:
|
||||||
self.key = key
|
self.key = key
|
||||||
self.url = url
|
self.url = url
|
||||||
self.target = target
|
self.target = target
|
||||||
self.click_handler = click_handler
|
|
||||||
self.label = label or self.app.make_title(key)
|
self.label = label or self.app.make_title(key)
|
||||||
self.icon = icon or key
|
self.icon = icon or key
|
||||||
self.link_class = link_class or ''
|
self.link_class = link_class or ''
|
||||||
|
|
|
@ -183,9 +183,6 @@
|
||||||
% if action.target:
|
% if action.target:
|
||||||
target="${action.target}"
|
target="${action.target}"
|
||||||
% endif
|
% endif
|
||||||
% if action.click_handler:
|
|
||||||
@click.prevent="${action.click_handler}"
|
|
||||||
% endif
|
|
||||||
class="${action.link_class}">
|
class="${action.link_class}">
|
||||||
${action.render_icon_and_label()}
|
${action.render_icon_and_label()}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -8,14 +8,10 @@
|
||||||
|
|
||||||
<%def name="page_content()">
|
<%def name="page_content()">
|
||||||
% if grid is not Undefined:
|
% if grid is not Undefined:
|
||||||
${self.render_grid_tag()}
|
${grid.render_vue_tag()}
|
||||||
% endif
|
% endif
|
||||||
</%def>
|
</%def>
|
||||||
|
|
||||||
<%def name="render_grid_tag()">
|
|
||||||
${grid.render_vue_tag()}
|
|
||||||
</%def>
|
|
||||||
|
|
||||||
<%def name="render_vue_templates()">
|
<%def name="render_vue_templates()">
|
||||||
${parent.render_vue_templates()}
|
${parent.render_vue_templates()}
|
||||||
${self.render_vue_template_grid()}
|
${self.render_vue_template_grid()}
|
||||||
|
|
Loading…
Reference in a new issue