Build update

This commit is contained in:
Francisco Hodge 2024-07-15 16:41:31 +00:00
parent d2c33286d4
commit f8e559d775
8 changed files with 13 additions and 10 deletions

View File

@ -3,6 +3,11 @@ import PhysicalKeyboard from "../services/PhysicalKeyboard";
import Utilities from "../services/Utilities"; import Utilities from "../services/Utilities";
import { KeyboardOptions, KeyboardInput, KeyboardButtonElements, KeyboardHandlerEvent, KeyboardElement } from "../interfaces"; import { KeyboardOptions, KeyboardInput, KeyboardButtonElements, KeyboardHandlerEvent, KeyboardElement } from "../interfaces";
import CandidateBox from "./CandidateBox"; import CandidateBox from "./CandidateBox";
declare global {
interface Window {
SimpleKeyboardInstances: any;
}
}
/** /**
* Root class for simple-keyboard. * Root class for simple-keyboard.
* This class: * This class:

View File

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

View File

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

View File

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

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,2 @@
export declare const getDefaultLayout: () => { import { KeyboardLayoutObject } from "../interfaces";
default: string[]; export declare const getDefaultLayout: () => KeyboardLayoutObject;
shift: string[];
};