Package Exports
- ku4es-ui-kernel
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ku4es-ui-kernel) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ku4es-ui-kernel
kodmunki™ Utilities for ECMAScript UI Kernel
Bookmarklet
javascript:void((function(){var script=document.createElement('script');script.type='text/javascript';script.onload=function(){window.ku4=Object.assign(window.ku4 || {}, window["ku4es-ui-kernel"])};script.src='https://cdn.jsdelivr.net/gh/kodmunki/utils/ku4es-ui-kernel.js';document.head.appendChild(script);})());API Documentation
Conventions
Access Modifiers
ku4es-ui-kernel uses a convention for access modifiers as follows:
| Modifier | Character | Description |
|---|---|---|
| Public | N/A | Public members may be accessed by all internal and external dependents. They are default members and have no conventional modifier. |
| Protected | $ | Protected members may be accessed by children |
| Abstract | $ | Abstract members are Protected members that expect to have implementation details defined by children. |
| Virtual | $ | Virtual members are Abstract members that have a defaulted defined implementation that can be and will plausibly be overridden by children. |
| Private | _ | Private members should only be accessed by the defining class. |
Source Tree
.
src
├── dom
│ ├── Document.js
│ ├── Event.js
│ └── Window.js
├── index.js
├── index.mjs
├── io
│ ├── Key.js
│ ├── Keyboard.js
│ └── Swipe.js
└── string
└── index.js