File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -8,26 +8,46 @@ const (
8
8
HXDelete = "hx-delete"
9
9
HXPatch = "hx-patch"
10
10
11
+ // Request Headers and Content-Type
12
+ HXHeaders = "hx-headers"
13
+ HXContent = "hx-content"
14
+
11
15
// Request Parameters
12
16
HXParams = "hx-params"
13
17
HXValues = "hx-values"
14
18
19
+ // Request Timeout and Retries
20
+ HXTimeout = "hx-timeout"
21
+ HXRetry = "hx-retry"
22
+ HXRetryTimeout = "hx-retry-timeout"
23
+
15
24
// Response Processing
16
25
HXSwap = "hx-swap"
17
26
HXTarget = "hx-target"
18
27
HXSwapOOB = "hx-swap-oob"
28
+ HXSelect = "hx-select"
29
+ HXExt = "hx-ext"
30
+ HXVals = "hx-vals"
19
31
20
32
// Events
21
- HXTrigger = "hx-trigger"
22
- HXConfirm = "hx-confirm"
33
+ HXTrigger = "hx-trigger"
34
+ HXConfirm = "hx-confirm"
35
+ HXOn = "hx-on"
36
+ HXTriggeringElement = "hx-triggering-element"
37
+ HXTriggeringEvent = "hx-triggering-event"
23
38
24
39
// Indicators
25
40
HXIndicator = "hx-indicator"
26
41
27
42
// History
28
- HXPushURL = "hx-push-url"
43
+ HXPushURL = "hx-push-url"
44
+ HXHistoryElt = "hx-history-elt"
45
+ HXHistoryAttr = "hx-history-attr"
29
46
30
47
// Error Handling
31
48
HXBoost = "hx-boost"
32
49
HXError = "hx-error"
50
+
51
+ // Caching
52
+ HXCache = "hx-cache"
33
53
)
You can’t perform that action at this time.
0 commit comments