plain.htmx 0.13.0__py3-none-any.whl → 0.15.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plain/htmx/CHANGELOG.md +20 -0
- plain/htmx/assets/htmx/plainhtmx.js +3 -0
- plain/htmx/templates.py +2 -1
- {plain_htmx-0.13.0.dist-info → plain_htmx-0.15.0.dist-info}/METADATA +1 -1
- {plain_htmx-0.13.0.dist-info → plain_htmx-0.15.0.dist-info}/RECORD +7 -7
- {plain_htmx-0.13.0.dist-info → plain_htmx-0.15.0.dist-info}/WHEEL +1 -1
- {plain_htmx-0.13.0.dist-info → plain_htmx-0.15.0.dist-info}/licenses/LICENSE +0 -0
plain/htmx/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# plain-htmx changelog
|
|
2
2
|
|
|
3
|
+
## [0.15.0](https://github.com/dropseed/plain/releases/plain-htmx@0.15.0) (2025-12-09)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Native browser form validation is now enabled by default via `htmx.config.reportValidityOfForms`, so forms with HTML5 validation attributes will show validation feedback before submitting ([b9e2476](https://github.com/dropseed/plain/commit/b9e2476))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- Test your usage of HTMX forms where client validation is concerned
|
|
12
|
+
|
|
13
|
+
## [0.14.0](https://github.com/dropseed/plain/releases/plain-htmx@0.14.0) (2025-12-04)
|
|
14
|
+
|
|
15
|
+
### What's changed
|
|
16
|
+
|
|
17
|
+
- Improved type annotations for template extension context handling ([ac1eeb0](https://github.com/dropseed/plain/commit/ac1eeb0))
|
|
18
|
+
|
|
19
|
+
### Upgrade instructions
|
|
20
|
+
|
|
21
|
+
- No changes required
|
|
22
|
+
|
|
3
23
|
## [0.13.0](https://github.com/dropseed/plain/releases/plain-htmx@0.13.0) (2025-11-24)
|
|
4
24
|
|
|
5
25
|
### What's changed
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
htmx.config.inlineScriptNonce = nonce;
|
|
7
7
|
htmx.config.inlineStyleNonce = nonce;
|
|
8
8
|
|
|
9
|
+
// Enable native browser form validation feedback
|
|
10
|
+
htmx.config.reportValidityOfForms = true;
|
|
11
|
+
|
|
9
12
|
htmx.defineExtension("plain-views", {
|
|
10
13
|
init() {
|
|
11
14
|
// Set or append this extension to the body hx-ext automatically
|
plain/htmx/templates.py
CHANGED
|
@@ -7,6 +7,7 @@ from jinja2 import meta, nodes
|
|
|
7
7
|
from jinja2.ext import Extension
|
|
8
8
|
from jinja2.nodes import CallBlock, Node
|
|
9
9
|
from jinja2.parser import Parser
|
|
10
|
+
from jinja2.runtime import Context
|
|
10
11
|
|
|
11
12
|
from plain.runtime import settings
|
|
12
13
|
from plain.templates import register_template_extension
|
|
@@ -19,7 +20,7 @@ class HTMXJSExtension(InclusionTagExtension):
|
|
|
19
20
|
template_name = "htmx/js.html"
|
|
20
21
|
|
|
21
22
|
def get_context(
|
|
22
|
-
self, context:
|
|
23
|
+
self, context: Context, *args: Any, **kwargs: Any
|
|
23
24
|
) -> dict[str, Any]:
|
|
24
25
|
request = context.get("request")
|
|
25
26
|
return {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
plain/htmx/CHANGELOG.md,sha256=
|
|
1
|
+
plain/htmx/CHANGELOG.md,sha256=P4V56CNDtNqYMhkZUv631zf8wuiEjoxleX2w5vdcwrk,4813
|
|
2
2
|
plain/htmx/README.md,sha256=C9H_66JD9tykCiTbKjZFAzX7MkVrym58wsEaA1wjxqY,12690
|
|
3
3
|
plain/htmx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
plain/htmx/templates.py,sha256=
|
|
4
|
+
plain/htmx/templates.py,sha256=vL8MtfeOq35YGiSw1tzM9ugeAd5TSKGm19i1Ts5_X1Q,6700
|
|
5
5
|
plain/htmx/views.py,sha256=6Y2ttsTe3EaUwb2jzU3jMil4U9TAasbah7DJF9yjS8o,2371
|
|
6
|
-
plain/htmx/assets/htmx/plainhtmx.js,sha256=
|
|
6
|
+
plain/htmx/assets/htmx/plainhtmx.js,sha256=4CD6LvSFIBt41BJflUITaY4cuMyj7uD2UNEVfYhLQuI,2111
|
|
7
7
|
plain/htmx/assets/htmx/vendor/idiomorph/idiomorph-ext.js,sha256=UvnPpQ3Jg380QwIF5PzlxmUQJuoMt6BxsmS_PMd2ayM,48004
|
|
8
8
|
plain/htmx/assets/htmx/vendor/idiomorph/idiomorph-ext.min.js,sha256=Ax3YbD9-2A-Ha_81wI5E4NLHHOjAvNJw4GvDocg2i-s,10313
|
|
9
9
|
plain/htmx/assets/htmx/vendor/idiomorph/idiomorph-htmx.js,sha256=ASBB00mwLYQY25neGwIQHU1A-NNdHpXp28ACHPIvoxE,813
|
|
@@ -44,7 +44,7 @@ plain/htmx/assets/htmx/vendor/src/ext/restored.js,sha256=0td3Ga2ZIcVdFKJm6FoCXTm
|
|
|
44
44
|
plain/htmx/assets/htmx/vendor/src/ext/sse.js,sha256=ju2N9N81ASa-ncT6JJbm65iQ4y9iAqKXRuPDwOcATBM,10320
|
|
45
45
|
plain/htmx/assets/htmx/vendor/src/ext/ws.js,sha256=KMVp1yOrFb6ncZUprsnN3OPRpmV9GG0YBuLSW1wekMc,13899
|
|
46
46
|
plain/htmx/templates/htmx/js.html,sha256=4G-EW1NWhqzXVtgND5rqkOmwgCO8XEGfvJTw4gy_BSA,883
|
|
47
|
-
plain_htmx-0.
|
|
48
|
-
plain_htmx-0.
|
|
49
|
-
plain_htmx-0.
|
|
50
|
-
plain_htmx-0.
|
|
47
|
+
plain_htmx-0.15.0.dist-info/METADATA,sha256=emP79wfAL1md-RLKPcZpK8FGuw6tBCnueFG_7c7pJgw,12999
|
|
48
|
+
plain_htmx-0.15.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
49
|
+
plain_htmx-0.15.0.dist-info/licenses/LICENSE,sha256=cvKM3OlqHx3ijD6e34zsSUkPvzl-ya3Dd63A6EHL94U,1500
|
|
50
|
+
plain_htmx-0.15.0.dist-info/RECORD,,
|
|
File without changes
|