@juspay/svelte-ui-components 1.24.0 → 1.25.0

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -3,7 +3,7 @@ import type { FlyParams } from 'svelte/transition';
3
3
  * @name InputDataType
4
4
  * @description Different types of input data which can be passed to the Input Component
5
5
  */
6
- export type InputDataType = 'text' | 'tel' | 'password' | 'email';
6
+ export type InputDataType = 'text' | 'tel' | 'password' | 'email' | 'number';
7
7
  export type ModalTransition = 'IN' | 'ALL';
8
8
  export type AutoCompleteType = 'tel' | 'name' | 'email' | 'one-time-code' | 'postal-code' | 'street-address' | 'on' | 'address-level1';
9
9
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/svelte-ui-components",
3
- "version": "1.24.0",
3
+ "version": "1.25.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev --host",
6
6
  "build": "vite build && npm run package",