@elliemae/ds-form 3.17.0-next.2 → 3.17.0-next.21

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 (145) hide show
  1. package/dist/types/Checkbox/index.d.ts +1 -0
  2. package/dist/types/CheckboxGroup/DSCheckboxGroup.d.ts +46 -0
  3. package/dist/types/CheckboxGroup/defaultProps.d.ts +14 -0
  4. package/dist/types/CheckboxGroup/index.d.ts +1 -0
  5. package/dist/types/CheckboxGroup/props.d.ts +26 -0
  6. package/dist/types/CheckboxGroup/tests/DSCheckboxGroup.events.test.d.ts +1 -0
  7. package/dist/types/ComboBox/index.d.ts +1 -0
  8. package/dist/types/ComboBoxFreeSolo/ComboBoxFreeSolo.d.ts +78 -0
  9. package/dist/types/ComboBoxFreeSolo/components/MultiValueLabel.d.ts +5 -0
  10. package/dist/types/ComboBoxFreeSolo/components/MultiValueRemove.d.ts +5 -0
  11. package/dist/types/ComboBoxFreeSolo/components/SingleValue.d.ts +2 -0
  12. package/dist/types/ComboBoxFreeSolo/components/SingleValueRemove.d.ts +5 -0
  13. package/dist/types/ComboBoxFreeSolo/index.d.ts +1 -0
  14. package/dist/types/DateInput/DSDateInput.d.ts +62 -0
  15. package/dist/types/DateInput/components/DateInputImpl.d.ts +40 -0
  16. package/dist/types/DateInput/components/DateInputs.d.ts +40 -0
  17. package/dist/types/DateInput/components/utils.d.ts +40 -0
  18. package/dist/types/DateInput/defaultProps.d.ts +18 -0
  19. package/dist/types/DateInput/index.d.ts +1 -0
  20. package/dist/types/DateInput/props.d.ts +60 -0
  21. package/dist/types/DateInput/tests/DSDateInput.events.test.d.ts +1 -0
  22. package/dist/types/DateInputV2/components/DSDateInput.d.ts +54 -0
  23. package/dist/types/DateInputV2/components/DateInputs.d.ts +32 -0
  24. package/dist/types/DateInputV2/components/helpers.d.ts +1 -0
  25. package/dist/types/DateInputV2/components/props.d.ts +53 -0
  26. package/dist/types/DateInputV2/components/propsTypes.d.ts +21 -0
  27. package/dist/types/DateInputV2/components/styled.d.ts +5 -0
  28. package/dist/types/DateInputV2/components/utils.d.ts +42 -0
  29. package/dist/types/DateInputV2/index.d.ts +2 -0
  30. package/dist/types/DateInputV2/tests/DateInput.test.d.ts +1 -0
  31. package/dist/types/ExpandableInput/DSExpandableInput.d.ts +15 -0
  32. package/dist/types/ExpandableInput/ExpandableInputImpl.d.ts +7 -0
  33. package/dist/types/ExpandableInput/index.d.ts +1 -0
  34. package/dist/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +43 -0
  35. package/dist/types/FloatingLabelInput/FloatingLabelInputImpl.d.ts +27 -0
  36. package/dist/types/FloatingLabelInput/getSvgPath.d.ts +10 -0
  37. package/dist/types/FloatingLabelInput/index.d.ts +1 -0
  38. package/dist/types/FormItem/DSFormItemLayout.d.ts +180 -0
  39. package/dist/types/FormItem/Error/DSError.d.ts +19 -0
  40. package/dist/types/FormItem/Feedback.d.ts +6 -0
  41. package/dist/types/FormItem/Label/DSLabel.d.ts +23 -0
  42. package/dist/types/FormItem/Suffix/Suffix.d.ts +5 -0
  43. package/dist/types/FormItem/ValidationFieldWrapper.d.ts +19 -0
  44. package/dist/types/FormItem/defaultProps.d.ts +51 -0
  45. package/dist/types/FormItem/index.d.ts +2 -0
  46. package/dist/types/FormItem/props.d.ts +80 -0
  47. package/dist/types/FormItem/tests/DSFormItem.events.test.d.ts +1 -0
  48. package/dist/types/FormItem/variants.d.ts +8 -0
  49. package/dist/types/Input/DSInput.d.ts +0 -0
  50. package/dist/types/Input/InputAddonWrapper.d.ts +0 -0
  51. package/dist/types/Input/InputImpl.d.ts +0 -0
  52. package/dist/types/Input/index.d.ts +1 -0
  53. package/dist/types/Input/tests/Input.test.d.ts +0 -0
  54. package/dist/types/InputGroup/AddonWrapper.d.ts +8 -0
  55. package/dist/types/InputGroup/DSInputGroup.d.ts +40 -0
  56. package/dist/types/InputGroup/defaultProps.d.ts +8 -0
  57. package/dist/types/InputGroup/index.d.ts +1 -0
  58. package/dist/types/InputGroup/props.d.ts +24 -0
  59. package/dist/types/InputGroup/tests/DSInputGroup.events.test.d.ts +1 -0
  60. package/dist/types/InputMask/DSInputMask.d.ts +85 -0
  61. package/dist/types/InputMask/DSInputMaskDeprecated.d.ts +18 -0
  62. package/dist/types/InputMask/InputMaskContext.d.ts +18 -0
  63. package/dist/types/InputMask/MaskPipes.d.ts +18 -0
  64. package/dist/types/InputMask/MaskTypes.d.ts +15 -0
  65. package/dist/types/InputMask/addons/AutoCorrectedDatePipe.d.ts +8 -0
  66. package/dist/types/InputMask/defaultProps.d.ts +28 -0
  67. package/dist/types/InputMask/index.d.ts +1 -0
  68. package/dist/types/InputMask/mask_types/DateInputMask.d.ts +36 -0
  69. package/dist/types/InputMask/mask_types/DateTimeInputMask.d.ts +36 -0
  70. package/dist/types/InputMask/mask_types/DictionaryInputMask.d.ts +39 -0
  71. package/dist/types/InputMask/mask_types/NumberInputMask.d.ts +48 -0
  72. package/dist/types/InputMask/mask_types/PhoneInputMask.d.ts +36 -0
  73. package/dist/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +36 -0
  74. package/dist/types/InputMask/mask_types/SsnInputMask.d.ts +36 -0
  75. package/dist/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +36 -0
  76. package/dist/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +36 -0
  77. package/dist/types/InputMask/mask_types/index.d.ts +41 -0
  78. package/dist/types/InputMask/props.d.ts +112 -0
  79. package/dist/types/InputMask/tests/DSInputMask.test.d.ts +1 -0
  80. package/dist/types/InputMask/tests/NumberInputMask.test.d.ts +1 -0
  81. package/dist/types/InputMask/tests/events/DateInputMask.events.test.d.ts +1 -0
  82. package/dist/types/InputMask/tests/events/DateTimeInputMask.events.test.d.ts +1 -0
  83. package/dist/types/InputMask/tests/events/NumberInputMask.events.test.d.ts +1 -0
  84. package/dist/types/InputMask/tests/events/PercentInputMask.events.test.d.ts +1 -0
  85. package/dist/types/InputMask/tests/events/PhoneInputMask.events.test.d.ts +1 -0
  86. package/dist/types/InputMask/tests/events/PhoneInternationalInputMask.events.test.d.ts +1 -0
  87. package/dist/types/InputMask/tests/events/SsnInputMask.events.test.d.ts +1 -0
  88. package/dist/types/InputMask/tests/events/UsZipCodeInputMask.events.test.d.ts +1 -0
  89. package/dist/types/InputMask/tests/events/ZipCodeSearchInputMask.events.test.d.ts +1 -0
  90. package/dist/types/InputMask/types/index.d.ts +5 -0
  91. package/dist/types/InputMask/utils/setCaretPosition.d.ts +3 -0
  92. package/dist/types/InputProtected/DSInputProtected.d.ts +41 -0
  93. package/dist/types/InputProtected/defaultProps.d.ts +4 -0
  94. package/dist/types/InputProtected/index.d.ts +2 -0
  95. package/dist/types/InputProtected/options.d.ts +8 -0
  96. package/dist/types/InputProtected/props.d.ts +14 -0
  97. package/dist/types/InputProtected/tests/DSInputProtected.events.test.d.ts +1 -0
  98. package/dist/types/InputProtected/tests/DSInputProtected.test.d.ts +1 -0
  99. package/dist/types/LargeInputText/DSLargeInputText.d.ts +127 -0
  100. package/dist/types/LargeInputText/defaultProps.d.ts +31 -0
  101. package/dist/types/LargeInputText/index.d.ts +1 -0
  102. package/dist/types/LargeInputText/props.d.ts +95 -0
  103. package/dist/types/LargeInputText/tests/DSLargeInputText.events.test.d.ts +1 -0
  104. package/dist/types/LargeInputText/tests/DSLargeInputText.test.d.ts +1 -0
  105. package/dist/types/MenuItem/components/MenuItem/index.d.ts +0 -0
  106. package/dist/types/MenuItem/components/MenuItem/styled.d.ts +0 -0
  107. package/dist/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +0 -0
  108. package/dist/types/MenuItem/components/MultiMenuItem/styled.d.ts +0 -0
  109. package/dist/types/MenuItem/components/Section/index.d.ts +0 -0
  110. package/dist/types/MenuItem/components/Section/props.d.ts +0 -0
  111. package/dist/types/MenuItem/components/Section/styled.d.ts +0 -0
  112. package/dist/types/MenuItem/components/Separator/index.d.ts +0 -0
  113. package/dist/types/MenuItem/components/Separator/styled.d.ts +0 -0
  114. package/dist/types/MenuItem/components/SingleMenuItem/SingleMenuItem.d.ts +0 -0
  115. package/dist/types/MenuItem/components/SubmenuItem/index.d.ts +0 -0
  116. package/dist/types/MenuItem/components/SubmenuItem/styled.d.ts +0 -0
  117. package/dist/types/MenuItem/components/index.d.ts +0 -0
  118. package/dist/types/MenuItem/components/styled.d.ts +0 -0
  119. package/dist/types/MenuItem/index.d.ts +0 -0
  120. package/dist/types/MenuItem/props.d.ts +0 -0
  121. package/dist/types/Radio/Circle.d.ts +8 -0
  122. package/dist/types/Radio/DSRadio.d.ts +87 -0
  123. package/dist/types/Radio/index.d.ts +1 -0
  124. package/dist/types/RadioGroup/DSRadioGroup.d.ts +46 -0
  125. package/dist/types/RadioGroup/defaultProps.d.ts +12 -0
  126. package/dist/types/RadioGroup/index.d.ts +1 -0
  127. package/dist/types/RadioGroup/props.d.ts +25 -0
  128. package/dist/types/RadioGroup/tests/DSRadioGroup.events.test.d.ts +1 -0
  129. package/dist/types/RequiredMark/RequiredMark.d.ts +6 -0
  130. package/dist/types/RequiredMark/index.d.ts +1 -0
  131. package/dist/types/SearchBox/index.d.ts +1 -0
  132. package/dist/types/TextBox/index.d.ts +1 -0
  133. package/dist/types/TimeInput/DSTimeInput.d.ts +71 -0
  134. package/dist/types/TimeInput/TimeInputImpl.d.ts +55 -0
  135. package/dist/types/TimeInput/TimeInputs.d.ts +17 -0
  136. package/dist/types/TimeInput/index.d.ts +1 -0
  137. package/dist/types/TimeInput/utils.d.ts +39 -0
  138. package/dist/types/Toggle/DSToggle.d.ts +86 -0
  139. package/dist/types/Toggle/DSToggleImpl.d.ts +61 -0
  140. package/dist/types/Toggle/DSToggleRender.d.ts +32 -0
  141. package/dist/types/Toggle/index.d.ts +1 -0
  142. package/dist/types/Toggle/props.d.ts +47 -0
  143. package/dist/types/Toggle/toggleHelper.d.ts +24 -0
  144. package/dist/types/index.d.ts +21 -0
  145. package/package.json +15 -15
@@ -0,0 +1,8 @@
1
+ export declare const defaultProps: {
2
+ containerProps: {};
3
+ innerRef: null;
4
+ className: string;
5
+ style: {};
6
+ leftAddon: null;
7
+ rightAddon: null;
8
+ };
@@ -0,0 +1 @@
1
+ export { default, DSInputGroupWithSchema, DSInputGroup } from './DSInputGroup.js';
@@ -0,0 +1,24 @@
1
+ export declare const props: {
2
+ /** props injected to wrapper of page header */
3
+ containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
4
+ /** inner ref for input group wrapper */
5
+ innerRef: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
6
+ /** class for input group wrapper */
7
+ className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
8
+ /**
9
+ * Set style for the input group
10
+ */
11
+ style: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
12
+ /**
13
+ * Component to be added at the left side of the input
14
+ */
15
+ leftAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
16
+ /**
17
+ * Component to be added at the right side of the input
18
+ */
19
+ rightAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
20
+ /**
21
+ * Input components to show
22
+ */
23
+ children: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
24
+ };
@@ -0,0 +1,85 @@
1
+ import { MASK_TYPES } from './MaskTypes.js';
2
+ import { MASK_PIPES } from './MaskPipes.js';
3
+ declare const DSInputMask: {
4
+ ({ "aria-label": ariaLabel, autoFocus, innerRef, mask, pipe, value: valueOrEvent, ...rest }: {
5
+ [x: string]: any;
6
+ "aria-label"?: string | undefined;
7
+ autoFocus: any;
8
+ innerRef: any;
9
+ mask: any;
10
+ pipe: any;
11
+ value: any;
12
+ }): any;
13
+ propTypes: {
14
+ autoFocus: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
15
+ style: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
16
+ disabled: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
17
+ disableTooltip: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
18
+ className: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
19
+ name: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
20
+ maxLength: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
21
+ minLength: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
22
+ fluidWidth: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
23
+ isShowElipsisActive: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
24
+ placeholder: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
25
+ onKeyDown: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
26
+ onClick: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
27
+ onChange: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
28
+ onFocus: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
29
+ onBlur: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
30
+ onPaste: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
31
+ onKeyUp: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
32
+ value: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
33
+ hasError: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
34
+ readOnly: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
35
+ innerRef: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
36
+ type: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
37
+ clearable: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
38
+ leftComponent: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
39
+ rightComponent: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
40
+ mask: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
41
+ pipe: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
42
+ useSubfix: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
43
+ placeholderChar: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
44
+ };
45
+ defaultProps: {
46
+ autoFocus: boolean;
47
+ style: {};
48
+ disabled: boolean;
49
+ className: string;
50
+ name: string;
51
+ maxLength: number;
52
+ minLength: number;
53
+ fluidWidth: boolean;
54
+ onKeyDown: () => null;
55
+ onClick: () => null;
56
+ onChange: () => null;
57
+ onFocus: () => null;
58
+ onBlur: () => null;
59
+ onPaste: () => null;
60
+ onKeyUp: () => null;
61
+ value: string;
62
+ hasError: boolean;
63
+ readOnly: boolean;
64
+ innerRef: null;
65
+ type: string;
66
+ clearable: boolean;
67
+ leftComponent: null;
68
+ rightComponent: null;
69
+ mask: string;
70
+ pipe: null;
71
+ useSubfix: string;
72
+ };
73
+ displayName: string;
74
+ };
75
+ declare const DSInputMaskWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
76
+ [x: string]: any;
77
+ "aria-label"?: string | undefined;
78
+ autoFocus: any;
79
+ innerRef: any;
80
+ mask: any;
81
+ pipe: any;
82
+ value: any;
83
+ }>;
84
+ export { MASK_TYPES, MASK_PIPES, DSInputMaskWithSchema, DSInputMask };
85
+ export default DSInputMask;
@@ -0,0 +1,18 @@
1
+ import { Component } from 'react';
2
+ declare class DSInputMaskDeprecated extends Component {
3
+ lastkey: null;
4
+ lastkeycode: null;
5
+ constructor(props: any);
6
+ conformValue: (rawValueOrEvent: any, currentCaretPosition: any, { skipCaretPositioning, skipOnChangeCallback }?: {
7
+ skipCaretPositioning?: boolean | undefined;
8
+ skipOnChangeCallback?: boolean | undefined;
9
+ }) => void;
10
+ handleOnChange: (e: any) => void;
11
+ handleKeyDown: (e: any) => void;
12
+ handleBlur: (e: any) => void;
13
+ componentDidMount(): void;
14
+ componentDidUpdate(prevProps: any): void;
15
+ render(): import("react/jsx-runtime.js").JSX.Element;
16
+ }
17
+ export { DSInputMaskDeprecated };
18
+ export default DSInputMaskDeprecated;
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ import type { TLastkey } from './types/index.js';
3
+ export declare const InputMaskContext: React.Context<{
4
+ rawValue: string;
5
+ setRawValue: React.Dispatch<string>;
6
+ rawMask: any;
7
+ setRawMask: React.Dispatch<any>;
8
+ focus: boolean;
9
+ setFocus: React.Dispatch<boolean>;
10
+ lastkey: TLastkey;
11
+ setLastkey: React.Dispatch<TLastkey>;
12
+ cursorPosition: {
13
+ current: number;
14
+ };
15
+ setCursorPosition: React.Dispatch<{
16
+ current: number;
17
+ }>;
18
+ }>;
@@ -0,0 +1,18 @@
1
+ export declare const MASK_PIPES: {
2
+ AUTO_CORRECT_DATE: (dateFormat?: string, { minYear, maxYear }?: {
3
+ minYear?: number | undefined;
4
+ maxYear?: number | undefined;
5
+ }) => (conformedValue: any) => {
6
+ value: any;
7
+ valid: boolean;
8
+ indexesOfPipedChars: any[];
9
+ };
10
+ };
11
+ export declare const maskPipes: ((dateFormat?: string, { minYear, maxYear }?: {
12
+ minYear?: number | undefined;
13
+ maxYear?: number | undefined;
14
+ }) => (conformedValue: any) => {
15
+ value: any;
16
+ valid: boolean;
17
+ indexesOfPipedChars: any[];
18
+ })[];
@@ -0,0 +1,15 @@
1
+ export declare const MASK_TYPES: {
2
+ DATE: string;
3
+ DATE_DEPRECATED: (string | RegExp)[];
4
+ DATE_TIME: string;
5
+ DATE_TIME_DEPRECATED: (string | RegExp)[];
6
+ DICTIONARY: (props: any) => any;
7
+ PHONE: string;
8
+ PHONE_INTENATIONAL: string;
9
+ SSN: string;
10
+ US_ZIP_CODE: string;
11
+ ZIP_CODE_SEARCH: string;
12
+ NUMBER: (props: any) => (_number: any) => any;
13
+ PERCENT: (props: any) => (_number: any) => any;
14
+ };
15
+ export declare const maskTypes: (string | (string | RegExp)[] | ((props: any) => (_number: any) => any))[];
@@ -0,0 +1,8 @@
1
+ export declare const autoCorrectedDatePipe: (dateFormat?: string, { minYear, maxYear }?: {
2
+ minYear?: number | undefined;
3
+ maxYear?: number | undefined;
4
+ }) => (conformedValue: any) => {
5
+ value: any;
6
+ valid: boolean;
7
+ indexesOfPipedChars: any[];
8
+ };
@@ -0,0 +1,28 @@
1
+ export declare const defaultProps: {
2
+ autoFocus: boolean;
3
+ style: {};
4
+ disabled: boolean;
5
+ className: string;
6
+ name: string;
7
+ maxLength: number;
8
+ minLength: number;
9
+ fluidWidth: boolean;
10
+ onKeyDown: () => null;
11
+ onClick: () => null;
12
+ onChange: () => null;
13
+ onFocus: () => null;
14
+ onBlur: () => null;
15
+ onPaste: () => null;
16
+ onKeyUp: () => null;
17
+ value: string;
18
+ hasError: boolean;
19
+ readOnly: boolean;
20
+ innerRef: null;
21
+ type: string;
22
+ clearable: boolean;
23
+ leftComponent: null;
24
+ rightComponent: null;
25
+ mask: string;
26
+ pipe: null;
27
+ useSubfix: string;
28
+ };
@@ -0,0 +1 @@
1
+ export * from './DSInputMask.js';
@@ -0,0 +1,36 @@
1
+ declare const DateInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ style: any;
12
+ disabled: any;
13
+ className: any;
14
+ name: any;
15
+ maxLength: any;
16
+ minLength: any;
17
+ fluidWidth: any;
18
+ placeholder: any;
19
+ onKeyDown: any;
20
+ onClick: any;
21
+ onChange: any;
22
+ onFocus: any;
23
+ onBlur: any;
24
+ onPaste: any;
25
+ onKeyUp: any;
26
+ hasError: any;
27
+ readOnly: any;
28
+ type: any;
29
+ innerRef: any;
30
+ clearable?: boolean | undefined;
31
+ leftComponent: any;
32
+ rightComponent: any;
33
+ value: any;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
35
+ export { DateInputMask };
36
+ export default DateInputMask;
@@ -0,0 +1,36 @@
1
+ declare const DateTimeInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ style: any;
12
+ disabled: any;
13
+ className: any;
14
+ name: any;
15
+ maxLength: any;
16
+ minLength: any;
17
+ fluidWidth: any;
18
+ placeholder: any;
19
+ onKeyDown: any;
20
+ onClick: any;
21
+ onChange: any;
22
+ onFocus: any;
23
+ onBlur: any;
24
+ onPaste: any;
25
+ onKeyUp: any;
26
+ hasError: any;
27
+ readOnly: any;
28
+ type: any;
29
+ innerRef: any;
30
+ clearable?: boolean | undefined;
31
+ leftComponent: any;
32
+ rightComponent: any;
33
+ value: any;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
35
+ export { DateTimeInputMask };
36
+ export default DateTimeInputMask;
@@ -0,0 +1,39 @@
1
+ declare const DictionaryInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, allowedWords, ignoreCase, autoFocus, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ allowedWords: any;
12
+ ignoreCase?: boolean | undefined;
13
+ autoFocus: any;
14
+ style: any;
15
+ disabled: any;
16
+ className: any;
17
+ name: any;
18
+ maxLength: any;
19
+ minLength: any;
20
+ fluidWidth: any;
21
+ placeholder: any;
22
+ onKeyDown: any;
23
+ onClick: any;
24
+ onChange: any;
25
+ onFocus: any;
26
+ onBlur: any;
27
+ onPaste: any;
28
+ onKeyUp: any;
29
+ hasError: any;
30
+ readOnly: any;
31
+ type: any;
32
+ innerRef: any;
33
+ clearable?: boolean | undefined;
34
+ leftComponent: any;
35
+ rightComponent: any;
36
+ value: any;
37
+ }) => import("react/jsx-runtime.js").JSX.Element;
38
+ export { DictionaryInputMask };
39
+ export default DictionaryInputMask;
@@ -0,0 +1,48 @@
1
+ declare const NumberInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, allowDecimal, allowLeadingZeroes, allowNegative, autoFocus, className, clearable, decimalLimit, decimalSymbol, disabled, fluidWidth, hasError, includeThousandsSeparator, innerRef, integerLimit, leftComponent, maxLength, minLength, name, onBlur, onChange, onClick, onFocus, onKeyDown, onKeyUp, onPaste, placeholder, prefix, readOnly, requireDecimal, rightComponent, style, suffix, thousandsSeparatorSymbol, type, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ allowDecimal: any;
12
+ allowLeadingZeroes: any;
13
+ allowNegative: any;
14
+ autoFocus: any;
15
+ className: any;
16
+ clearable?: boolean | undefined;
17
+ decimalLimit: any;
18
+ decimalSymbol: any;
19
+ disabled: any;
20
+ fluidWidth: any;
21
+ hasError: any;
22
+ includeThousandsSeparator: any;
23
+ innerRef: any;
24
+ integerLimit: any;
25
+ leftComponent: any;
26
+ maxLength: any;
27
+ minLength: any;
28
+ name: any;
29
+ onBlur: any;
30
+ onChange: any;
31
+ onClick: any;
32
+ onFocus: any;
33
+ onKeyDown: any;
34
+ onKeyUp: any;
35
+ onPaste: any;
36
+ placeholder: any;
37
+ prefix: any;
38
+ readOnly: any;
39
+ requireDecimal: any;
40
+ rightComponent: any;
41
+ style: any;
42
+ suffix: any;
43
+ thousandsSeparatorSymbol: any;
44
+ type: any;
45
+ value: any;
46
+ }) => import("react/jsx-runtime.js").JSX.Element;
47
+ export { NumberInputMask };
48
+ export default NumberInputMask;
@@ -0,0 +1,36 @@
1
+ declare const PhoneInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ style: any;
12
+ disabled: any;
13
+ className: any;
14
+ name: any;
15
+ maxLength: any;
16
+ minLength: any;
17
+ fluidWidth: any;
18
+ placeholder: any;
19
+ onKeyDown: any;
20
+ onClick: any;
21
+ onChange: any;
22
+ onFocus: any;
23
+ onBlur: any;
24
+ onPaste: any;
25
+ onKeyUp: any;
26
+ hasError: any;
27
+ readOnly: any;
28
+ type: any;
29
+ innerRef: any;
30
+ clearable?: boolean | undefined;
31
+ leftComponent: any;
32
+ rightComponent: any;
33
+ value: any;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
35
+ export { PhoneInputMask };
36
+ export default PhoneInputMask;
@@ -0,0 +1,36 @@
1
+ declare const PhoneInternationalInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ style: any;
12
+ disabled: any;
13
+ className: any;
14
+ name: any;
15
+ maxLength: any;
16
+ minLength: any;
17
+ fluidWidth: any;
18
+ placeholder: any;
19
+ onKeyDown: any;
20
+ onClick: any;
21
+ onChange: any;
22
+ onFocus: any;
23
+ onBlur: any;
24
+ onPaste: any;
25
+ onKeyUp: any;
26
+ hasError: any;
27
+ readOnly: any;
28
+ type: any;
29
+ innerRef: any;
30
+ clearable?: boolean | undefined;
31
+ leftComponent: any;
32
+ rightComponent: any;
33
+ value: any;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
35
+ export { PhoneInternationalInputMask };
36
+ export default PhoneInternationalInputMask;
@@ -0,0 +1,36 @@
1
+ declare const SsnInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ style: any;
12
+ disabled: any;
13
+ className: any;
14
+ name: any;
15
+ maxLength: any;
16
+ minLength: any;
17
+ fluidWidth: any;
18
+ placeholder: any;
19
+ onKeyDown: any;
20
+ onClick: any;
21
+ onChange: any;
22
+ onFocus: any;
23
+ onBlur: any;
24
+ onPaste: any;
25
+ onKeyUp: any;
26
+ hasError: any;
27
+ readOnly: any;
28
+ type: any;
29
+ innerRef: any;
30
+ clearable?: boolean | undefined;
31
+ leftComponent: any;
32
+ rightComponent: any;
33
+ value: any;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
35
+ export { SsnInputMask };
36
+ export default SsnInputMask;
@@ -0,0 +1,36 @@
1
+ declare const UsZipCodeInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ style: any;
12
+ disabled: any;
13
+ className: any;
14
+ name: any;
15
+ maxLength: any;
16
+ minLength: any;
17
+ fluidWidth: any;
18
+ placeholder: any;
19
+ onKeyDown: any;
20
+ onClick: any;
21
+ onChange: any;
22
+ onFocus: any;
23
+ onBlur: any;
24
+ onPaste: any;
25
+ onKeyUp: any;
26
+ hasError: any;
27
+ readOnly: any;
28
+ type: any;
29
+ innerRef: any;
30
+ clearable?: boolean | undefined;
31
+ leftComponent: any;
32
+ rightComponent: any;
33
+ value: any;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
35
+ export { UsZipCodeInputMask };
36
+ export default UsZipCodeInputMask;
@@ -0,0 +1,36 @@
1
+ declare const ZipCodeSearchInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setCursorPosition, lastkey, setLastkey, setRawValue, style, disabled, className, name, maxLength, minLength, fluidWidth, placeholder, onKeyDown, onClick, onChange, onFocus, onBlur, onPaste, onKeyUp, hasError, readOnly, type, innerRef, clearable, leftComponent, rightComponent, value, ...rest }: {
2
+ [x: string]: any;
3
+ focus: any;
4
+ setFocus: any;
5
+ setRawMask: any;
6
+ cursorPosition: any;
7
+ setCursorPosition: any;
8
+ lastkey: any;
9
+ setLastkey: any;
10
+ setRawValue: any;
11
+ style: any;
12
+ disabled: any;
13
+ className: any;
14
+ name: any;
15
+ maxLength: any;
16
+ minLength: any;
17
+ fluidWidth: any;
18
+ placeholder: any;
19
+ onKeyDown: any;
20
+ onClick: any;
21
+ onChange: any;
22
+ onFocus: any;
23
+ onBlur: any;
24
+ onPaste: any;
25
+ onKeyUp: any;
26
+ hasError: any;
27
+ readOnly: any;
28
+ type: any;
29
+ innerRef: any;
30
+ clearable?: boolean | undefined;
31
+ leftComponent: any;
32
+ rightComponent: any;
33
+ value: any;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
35
+ export { ZipCodeSearchInputMask };
36
+ export default ZipCodeSearchInputMask;
@@ -0,0 +1,41 @@
1
+ export declare const OutOfTheBoxMaskTypes: {
2
+ 'ds-mask-date': (props: any) => import("react/jsx-runtime.js").JSX.Element;
3
+ 'ds-mask-date-time': (props: any) => import("react/jsx-runtime.js").JSX.Element;
4
+ 'ds-mask-dictionary': ({ ignoreCase, ...rest }: {
5
+ [x: string]: any;
6
+ ignoreCase?: boolean | undefined;
7
+ }) => import("react/jsx-runtime.js").JSX.Element;
8
+ 'ds-mask-number': ({ prefix, suffix, includeThousandsSeparator, thousandsSeparatorSymbol, allowDecimal, decimalSymbol, decimalLimit, requireDecimal, allowNegative, allowLeadingZeroes, integerLimit, ...rest }: {
9
+ [x: string]: any;
10
+ prefix?: string | undefined;
11
+ suffix?: string | undefined;
12
+ includeThousandsSeparator?: boolean | undefined;
13
+ thousandsSeparatorSymbol?: string | undefined;
14
+ allowDecimal?: boolean | undefined;
15
+ decimalSymbol?: string | undefined;
16
+ decimalLimit?: number | undefined;
17
+ requireDecimal?: boolean | undefined;
18
+ allowNegative?: boolean | undefined;
19
+ allowLeadingZeroes?: boolean | undefined;
20
+ integerLimit?: null | undefined;
21
+ }) => import("react/jsx-runtime.js").JSX.Element;
22
+ 'ds-mask-percent': ({ prefix, suffix, includeThousandsSeparator, thousandsSeparatorSymbol, allowDecimal, decimalSymbol, decimalLimit, requireDecimal, allowNegative, allowLeadingZeroes, integerLimit, ...rest }: {
23
+ [x: string]: any;
24
+ prefix?: string | undefined;
25
+ suffix?: string | undefined;
26
+ includeThousandsSeparator?: boolean | undefined;
27
+ thousandsSeparatorSymbol?: string | undefined;
28
+ allowDecimal?: boolean | undefined;
29
+ decimalSymbol?: string | undefined;
30
+ decimalLimit?: number | undefined;
31
+ requireDecimal?: boolean | undefined;
32
+ allowNegative?: boolean | undefined;
33
+ allowLeadingZeroes?: boolean | undefined;
34
+ integerLimit?: null | undefined;
35
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
+ 'ds-mask-phone': (props: any) => import("react/jsx-runtime.js").JSX.Element;
37
+ 'ds-mask-phone-international': (props: any) => import("react/jsx-runtime.js").JSX.Element;
38
+ 'ds-mask-ssn': (props: any) => import("react/jsx-runtime.js").JSX.Element;
39
+ 'ds-mask-us-zip-code': (props: any) => import("react/jsx-runtime.js").JSX.Element;
40
+ 'ds-mask-zip-code-search': (props: any) => import("react/jsx-runtime.js").JSX.Element;
41
+ };