siam-ui-utils 3.0.28 → 3.0.29
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/index.d.ts +9 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -120,6 +120,15 @@ declare module 'siam-ui-utils/custom-input/checkbox' {
|
|
|
120
120
|
): JSX.Element;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
+
declare module 'siam-ui-utils/custom-input/mask' {
|
|
124
|
+
export interface CustomInputMaskProps {
|
|
125
|
+
[key: string]: any;
|
|
126
|
+
}
|
|
127
|
+
export function CustomInputMask(
|
|
128
|
+
props: CustomInputMaskProps
|
|
129
|
+
): JSX.Element;
|
|
130
|
+
}
|
|
131
|
+
|
|
123
132
|
declare module 'siam-ui-utils/custom-input/radio' {
|
|
124
133
|
export interface CustomInputRadioProps {
|
|
125
134
|
[key: string]: any;
|