intelliwaketssveltekitv25 0.1.87 → 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.
@@ -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;
@@ -90,7 +90,7 @@
90
90
  <input
91
91
  type="text"
92
92
  inputmode={!!constrainDecimals ? "decimal" : "numeric"}
93
- pattern={!!constrainDecimals ? "[0-9]*[.,]?[0-9]+" : "[0-9]*"}
93
+ pattern={!!constrainDecimals ? "[0-9,]*[.,]?[0-9]+" : "[0-9,]*"}
94
94
  style={inputStyle}
95
95
  {...otherProps}
96
96
  class="text-right {inputClass}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "0.1.87",
3
+ "version": "0.1.89",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",