@jsenv/navi 0.29.346 → 0.29.347
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.
- package/dist/dev/jsenv_navi.js +9 -3
- package/dist/dev/jsenv_navi.js.map +2 -2
- package/dist/jsenv_navi.js +9 -3
- package/dist/jsenv_navi.js.map +2 -2
- package/docs/actions.md +8 -4
- package/package.json +1 -1
package/dist/dev/jsenv_navi.js
CHANGED
|
@@ -50776,9 +50776,15 @@ const COMMAND_DEFAULT_PROPS_FACTORIES = {
|
|
|
50776
50776
|
* drawn — must still close it. What `<Link pressableDuringRouteTransition>`
|
|
50777
50777
|
* says, for the other half of a toggle. Only for a control that does not
|
|
50778
50778
|
* travel with the pages.
|
|
50779
|
-
* @param {Function} [action]
|
|
50780
|
-
*
|
|
50781
|
-
* the
|
|
50779
|
+
* @param {Function} [action] What the press runs: a button holds no value, so
|
|
50780
|
+
* every press is one call. The button is busy while it runs, refuses a second
|
|
50781
|
+
* press and draws the error on itself. On a button with an `href` or a
|
|
50782
|
+
* `route`, the same order as a Link's: it runs on the press, before the
|
|
50783
|
+
* navigation, and the navigation does not wait for it (see Link's `action`).
|
|
50784
|
+
* @param {Function} [uiAction] The same press, for what cannot fail and takes
|
|
50785
|
+
* no time — moving something else on screen, writing a local signal: a plain
|
|
50786
|
+
* callback, no busy state, nothing drawn if it throws (see
|
|
50787
|
+
* docs/actions.md#action-or-uiaction).
|
|
50782
50788
|
* @param {string} [selfInteractions] The interactions this button takes for
|
|
50783
50789
|
* itself inside a zone that belongs to another control — a chip's cross on a
|
|
50784
50790
|
* picker's façade, an eye on a pressable row, a badge against the edge of a
|