From 8b0a4a1902026a0b467b97922d8f93876f7fd933 Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Thu, 17 Nov 2022 09:03:35 +0000 Subject: [PATCH] Build update --- build/css/index.css | 2 +- build/index.js | 2 +- build/index.modern.js | 2 +- build/interfaces.d.ts | 12 ++++++------ 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build/css/index.css b/build/css/index.css index 4f511168..f005ce19 100644 --- a/build/css/index.css +++ b/build/css/index.css @@ -1,6 +1,6 @@ /*! * - * simple-keyboard v3.4.187 + * simple-keyboard v3.4.188 * https://github.com/hodgef/simple-keyboard * * Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors. diff --git a/build/index.js b/build/index.js index 61a2f066..e5fa880c 100644 --- a/build/index.js +++ b/build/index.js @@ -1,6 +1,6 @@ /*! * - * simple-keyboard v3.4.187 + * simple-keyboard v3.4.188 * https://github.com/hodgef/simple-keyboard * * Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors. diff --git a/build/index.modern.js b/build/index.modern.js index ed21351a..d3224f71 100644 --- a/build/index.modern.js +++ b/build/index.modern.js @@ -1,6 +1,6 @@ /*! * - * simple-keyboard v3.4.187 (index.modern.js - Modern Browsers bundle) + * simple-keyboard v3.4.188 (index.modern.js - Modern Browsers bundle) * https://github.com/hodgef/simple-keyboard * * NOTE: This modern browsers bundle (index.modern.js) removes all polyfills diff --git a/build/interfaces.d.ts b/build/interfaces.d.ts index 5267d45e..fb6d0612 100644 --- a/build/interfaces.d.ts +++ b/build/interfaces.d.ts @@ -3,7 +3,7 @@ import Utilities from "./services/Utilities"; export interface KeyboardLayoutObject { [key: string]: string[]; } -export declare type KeyboardButtonTheme = { +export type KeyboardButtonTheme = { class: string; buttons: string; } | null; @@ -15,23 +15,23 @@ export interface KeyboardButtonAttributes { export interface KeyboardInput { [key: string]: string; } -export declare type CandidateBoxParams = { +export type CandidateBoxParams = { utilities: Utilities; }; -export declare type CandidateBoxShowParams = { +export type CandidateBoxShowParams = { candidateValue: string; targetElement: KeyboardElement; onSelect: (selectedCandidate: string, e: MouseEvent) => void; }; -export declare type CandidateBoxRenderParams = { +export type CandidateBoxRenderParams = { candidateListPages: string[][]; targetElement: KeyboardElement; pageIndex: number; nbPages: number; onItemSelected: (selectedCandidate: string, e: MouseEvent) => void; }; -export declare type KeyboardElement = HTMLDivElement | HTMLButtonElement; -export declare type KeyboardHandlerEvent = any; +export type KeyboardElement = HTMLDivElement | HTMLButtonElement; +export type KeyboardHandlerEvent = any; export interface KeyboardButtonElements { [key: string]: KeyboardElement[]; }