intelliwaketssveltekitv25 0.1.88 → 0.1.89
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/dist/Functions.d.ts +1 -1
- package/package.json +1 -1
package/dist/Functions.d.ts
CHANGED
|
@@ -192,7 +192,7 @@ export declare function IsMobileOrTablet(): boolean;
|
|
|
192
192
|
*/
|
|
193
193
|
export declare function DownloadString(filename: string, text: string): void;
|
|
194
194
|
export declare function HandleKeyDownNumerics(event: KeyboardEvent, allowDecimals?: boolean): void;
|
|
195
|
-
export type TInputNumberAttributes = Omit<HTMLInputAttributes, 'this'> & {
|
|
195
|
+
export type TInputNumberAttributes = Omit<HTMLInputAttributes, 'value' | 'this' | 'onchange' | 'min' | 'max' | 'use'> & {
|
|
196
196
|
value: number | null;
|
|
197
197
|
onchange?: (value: number | null) => void;
|
|
198
198
|
inputClass?: string;
|