@mintjamsinc/ichigojs 0.1.61 → 0.1.62
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/README.md +21 -1
- package/dist/ichigo.cjs +49 -5
- package/dist/ichigo.cjs.map +1 -1
- package/dist/ichigo.esm.js +49 -5
- package/dist/ichigo.esm.js.map +1 -1
- package/dist/ichigo.esm.min.js +1 -1
- package/dist/ichigo.min.cjs +1 -1
- package/dist/ichigo.umd.js +49 -5
- package/dist/ichigo.umd.js.map +1 -1
- package/dist/ichigo.umd.min.js +1 -1
- package/dist/types/ichigo/directives/VOnDirective.d.ts +4 -0
- package/package.json +1 -1
|
@@ -14,6 +14,10 @@ import { VDOMUpdater } from "../VDOMUpdater";
|
|
|
14
14
|
* The `v-on` directive supports event modifiers such as `.stop`, `.prevent`, `.capture`, `.self`, and `.once` to modify the behavior of the event listener.
|
|
15
15
|
* For example, `v-on:click.stop="handleClick"` will stop the event from propagating up the DOM tree.
|
|
16
16
|
*
|
|
17
|
+
* Key modifiers (KeyboardEvent): `.enter`, `.tab`, `.delete` (Delete/Backspace), `.esc` / `.escape`, `.space`, `.up`, `.down`, `.left`, `.right`.
|
|
18
|
+
* Mouse button modifiers (MouseEvent): `.left`, `.middle`, `.right`.
|
|
19
|
+
* System modifiers (KeyboardEvent and MouseEvent): `.shift`, `.ctrl`, `.alt`, `.meta`, plus `.exact` to require that no other system modifiers are held.
|
|
20
|
+
*
|
|
17
21
|
* Additionally, this directive supports lifecycle hooks:
|
|
18
22
|
* @mount="onMount" - Called before the VNode is mounted to the DOM element
|
|
19
23
|
* @mounted="onMounted" - Called after the VNode is mounted to the DOM element
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintjamsinc/ichigojs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.62",
|
|
4
4
|
"description": "ichigo.js - Simple and intuitive reactive framework. Lightweight, fast, and user-friendly virtual DOM library",
|
|
5
5
|
"main": "./dist/ichigo.cjs",
|
|
6
6
|
"module": "./dist/ichigo.esm.js",
|