Build update

This commit is contained in:
Francisco Hodge 2023-11-02 03:51:10 +00:00
parent 8f61bd0690
commit 9bdbd3aa3b
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v3.7.23
* simple-keyboard v3.7.24
* https://github.com/hodgef/simple-keyboard
*
* Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.

View File

@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v3.7.23
* simple-keyboard v3.7.24
* https://github.com/hodgef/simple-keyboard
*
* Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.

View File

@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v3.7.23 (index.modern.esm.js - Modern Browsers bundle, ESM output)
* simple-keyboard v3.7.24 (index.modern.esm.js - Modern Browsers bundle, ESM output)
* https://github.com/hodgef/simple-keyboard
*
* NOTE: This modern browsers bundle (index.modern.esm.js) removes all polyfills

View File

@ -1,6 +1,6 @@
/*!
*
* simple-keyboard v3.7.23 (index.modern.js - Modern Browsers bundle)
* simple-keyboard v3.7.24 (index.modern.js - Modern Browsers bundle)
* https://github.com/hodgef/simple-keyboard
*
* NOTE: This modern browsers bundle (index.modern.js) removes all polyfills

View File

@ -216,11 +216,11 @@ export interface KeyboardOptions {
/**
* Executes the callback function every time simple-keyboard is rendered (e.g: when you change layouts).
*/
onRender?: (instance?: SimpleKeyboard) => void;
onRender?: (instance: SimpleKeyboard) => void;
/**
* Executes the callback function once simple-keyboard is rendered for the first time (on initialization).
*/
onInit?: (instance?: SimpleKeyboard) => void;
onInit?: (instance: SimpleKeyboard) => void;
/**
* Retrieves the current input
*/