amotify 0.0.54 → 0.0.55
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/@types/fn.tsx +3 -1
- package/dist/amotify.js +2 -2
- package/dist/amotify.min.css +1 -1
- package/dist/coreVender.js +1 -1
- package/package.json +1 -1
- package/src/functions/Input/Text.tsx +60 -4
- package/src/functions/Input/_.tsx +8 -0
package/@types/fn.tsx
CHANGED
|
@@ -401,6 +401,8 @@ declare global {
|
|
|
401
401
|
body: ReactElement
|
|
402
402
|
}
|
|
403
403
|
Normal: ( props: OriginParams ) => JSX.Element
|
|
404
|
+
Katakana: ( props: OriginParams ) => JSX.Element
|
|
405
|
+
HankakuKatakana: ( props: OriginParams ) => JSX.Element
|
|
404
406
|
Number: ( props: PlainParams ) => JSX.Element
|
|
405
407
|
DigitNumber: ( props: PlainParams ) => JSX.Element
|
|
406
408
|
Tel: ( props: PlainParams ) => JSX.Element
|
|
@@ -414,7 +416,7 @@ declare global {
|
|
|
414
416
|
}
|
|
415
417
|
}
|
|
416
418
|
|
|
417
|
-
type RestrictTypes = 'text' | 'number' | 'digitNumber' | 'tel' | 'email' | 'url' | 'fileName' | 'password' | 'postal' | 'creditCard'
|
|
419
|
+
type RestrictTypes = 'text' | 'katakana' | 'hankaku.katakana' | 'number' | 'digitNumber' | 'tel' | 'email' | 'url' | 'fileName' | 'password' | 'postal' | 'creditCard';
|
|
418
420
|
|
|
419
421
|
type PlainParams = CoreParams & React.DOMAttributes<HTMLInputElement> & {
|
|
420
422
|
tone?: BoxToneTypes
|