@elliemae/ds-form 3.17.0-next.12 → 3.17.0-next.15

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 (45) hide show
  1. package/dist/types/CheckboxGroup/DSCheckboxGroup.d.ts +1 -2
  2. package/dist/types/ComboBoxFreeSolo/ComboBoxFreeSolo.d.ts +1 -2
  3. package/dist/types/ComboBoxFreeSolo/components/MultiValueLabel.d.ts +1 -2
  4. package/dist/types/ComboBoxFreeSolo/components/MultiValueRemove.d.ts +1 -2
  5. package/dist/types/ComboBoxFreeSolo/components/SingleValue.d.ts +1 -2
  6. package/dist/types/ComboBoxFreeSolo/components/SingleValueRemove.d.ts +1 -2
  7. package/dist/types/DateInput/DSDateInput.d.ts +1 -2
  8. package/dist/types/DateInput/components/DateInputImpl.d.ts +1 -2
  9. package/dist/types/DateInput/components/DateInputs.d.ts +1 -2
  10. package/dist/types/DateInputV2/components/DSDateInput.d.ts +1 -2
  11. package/dist/types/DateInputV2/components/DateInputs.d.ts +1 -2
  12. package/dist/types/ExpandableInput/DSExpandableInput.d.ts +1 -2
  13. package/dist/types/ExpandableInput/ExpandableInputImpl.d.ts +1 -1
  14. package/dist/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +2 -3
  15. package/dist/types/FloatingLabelInput/FloatingLabelInputImpl.d.ts +1 -1
  16. package/dist/types/FormItem/DSFormItemLayout.d.ts +3 -4
  17. package/dist/types/FormItem/Error/DSError.d.ts +1 -2
  18. package/dist/types/FormItem/Feedback.d.ts +1 -2
  19. package/dist/types/FormItem/Label/DSLabel.d.ts +1 -2
  20. package/dist/types/FormItem/defaultProps.d.ts +2 -3
  21. package/dist/types/InputGroup/AddonWrapper.d.ts +1 -1
  22. package/dist/types/InputGroup/DSInputGroup.d.ts +1 -2
  23. package/dist/types/InputMask/DSInputMaskDeprecated.d.ts +1 -1
  24. package/dist/types/InputMask/mask_types/DateInputMask.d.ts +1 -2
  25. package/dist/types/InputMask/mask_types/DateTimeInputMask.d.ts +1 -2
  26. package/dist/types/InputMask/mask_types/DictionaryInputMask.d.ts +1 -2
  27. package/dist/types/InputMask/mask_types/NumberInputMask.d.ts +1 -2
  28. package/dist/types/InputMask/mask_types/PhoneInputMask.d.ts +1 -2
  29. package/dist/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +1 -2
  30. package/dist/types/InputMask/mask_types/SsnInputMask.d.ts +1 -2
  31. package/dist/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +1 -2
  32. package/dist/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +1 -2
  33. package/dist/types/InputMask/mask_types/index.d.ts +10 -11
  34. package/dist/types/InputProtected/DSInputProtected.d.ts +1 -2
  35. package/dist/types/LargeInputText/DSLargeInputText.d.ts +1 -2
  36. package/dist/types/Radio/DSRadio.d.ts +1 -1
  37. package/dist/types/RadioGroup/DSRadioGroup.d.ts +1 -2
  38. package/dist/types/RequiredMark/RequiredMark.d.ts +1 -2
  39. package/dist/types/TimeInput/DSTimeInput.d.ts +1 -2
  40. package/dist/types/TimeInput/TimeInputImpl.d.ts +1 -2
  41. package/dist/types/TimeInput/TimeInputs.d.ts +1 -2
  42. package/dist/types/Toggle/DSToggle.d.ts +1 -2
  43. package/dist/types/Toggle/DSToggleImpl.d.ts +1 -1
  44. package/dist/types/Toggle/DSToggleRender.d.ts +1 -2
  45. package/package.json +13 -13
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSCheckboxGroup: {
3
2
  ({ onChange, activeValue, children, disabled, orientation, truncateText, labelProps, containerProps, }: {
4
3
  onChange: any;
@@ -9,7 +8,7 @@ declare const DSCheckboxGroup: {
9
8
  truncateText: any;
10
9
  labelProps: any;
11
10
  containerProps: any;
12
- }): JSX.Element;
11
+ }): import("react/jsx-runtime.js").JSX.Element;
13
12
  propTypes: {
14
13
  onChange: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
15
14
  activeValue: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare const ComboBoxFreeSolo: {
4
3
  ({ isMulti, options, value, onChange, onChangeV2, onInputChange, onFocus, onBlur, containerProps, disabled, menuIsOpen, placeholder, formatCreateLabel, maxOptions, ...rest }: {
@@ -17,7 +16,7 @@ declare const ComboBoxFreeSolo: {
17
16
  placeholder?: string | undefined;
18
17
  formatCreateLabel?: ((val: any) => string) | undefined;
19
18
  maxOptions?: undefined;
20
- }): JSX.Element;
19
+ }): import("react/jsx-runtime.js").JSX.Element;
21
20
  propTypes: {
22
21
  containerProps: PropTypes.Requireable<object>;
23
22
  /**
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  declare const MultiValueLabel: ({ children, clear }: {
3
2
  children: any;
4
3
  clear: any;
5
- }) => JSX.Element;
4
+ }) => import("react/jsx-runtime").JSX.Element;
6
5
  export { MultiValueLabel };
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  declare const MultiValueRemove: {
3
- (props: any): JSX.Element;
2
+ (props: any): import("react/jsx-runtime").JSX.Element;
4
3
  style(base: any): any;
5
4
  };
6
5
  export { MultiValueRemove };
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
- declare const SingleValue: (props: any) => JSX.Element;
1
+ declare const SingleValue: (props: any) => import("react/jsx-runtime.js").JSX.Element;
3
2
  export { SingleValue };
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  declare const SingleValueRemove: {
3
- (props: any): JSX.Element;
2
+ (props: any): import("react/jsx-runtime").JSX.Element;
4
3
  style(base: any): any;
5
4
  };
6
5
  export { SingleValueRemove };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { DateInputImpl } from './components/DateInputImpl.js';
3
2
  declare const DSDateInput: {
4
3
  ({ innerRef, className, style, onFocus, onBlur, onClear, onChange, onKeyDown, onError, format, value, clearable, disabled, yearMaxRange, yearMinRange, containerProps, INTERNAL_V2_NO_MUTATION, }: {
@@ -19,7 +18,7 @@ declare const DSDateInput: {
19
18
  yearMinRange: any;
20
19
  containerProps: any;
21
20
  INTERNAL_V2_NO_MUTATION: any;
22
- }): JSX.Element;
21
+ }): import("react/jsx-runtime.js").JSX.Element;
23
22
  propTypes: {
24
23
  containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
25
24
  innerRef: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare const DateInputImpl: {
4
3
  ({ format, innerRef, onBlur, onChange, onKeyDown, onError, className, value, disabled, yearMaxRange, yearMinRange, onFocus, INTERNAL_V2_NO_MUTATION, }: {
@@ -15,7 +14,7 @@ declare const DateInputImpl: {
15
14
  yearMinRange: any;
16
15
  onFocus: any;
17
16
  INTERNAL_V2_NO_MUTATION: any;
18
- }): JSX.Element;
17
+ }): import("react/jsx-runtime.js").JSX.Element;
19
18
  propTypes: {
20
19
  innerRef: PropTypes.Requireable<NonNullable<((...args: any[]) => any) | PropTypes.InferProps<{
21
20
  current: PropTypes.Requireable<any>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare const DateInputs: {
4
3
  ({ innerRef, onBlur, onChange, onCustomKeyDown, onError, format, showMonth, showDay, showYear, step, yearMaxRange, disabled, yearMinRange, time, INTERNAL_V2_NO_MUTATION, }: {
@@ -17,7 +16,7 @@ declare const DateInputs: {
17
16
  yearMinRange: any;
18
17
  time: any;
19
18
  INTERNAL_V2_NO_MUTATION: any;
20
- }): JSX.Element;
19
+ }): import("react/jsx-runtime.js").JSX.Element;
21
20
  propTypes: {
22
21
  innerRef: PropTypes.Requireable<NonNullable<((...args: any[]) => any) | PropTypes.InferProps<{
23
22
  current: PropTypes.Requireable<any>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSDateInputV2: {
3
2
  ({ onFocus, onBlur, onChange, onDateChange, onKeyDown, onError, value, disabled, containerProps, tabIndex, innerRef, }: {
4
3
  onFocus: any;
@@ -12,7 +11,7 @@ declare const DSDateInputV2: {
12
11
  containerProps: any;
13
12
  tabIndex: any;
14
13
  innerRef: any;
15
- }): JSX.Element;
14
+ }): import("react/jsx-runtime.js").JSX.Element;
16
15
  defaultProps: {
17
16
  onFocus: (...args: any[]) => void;
18
17
  onBlur: (...args: any[]) => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const DateInputs: {
3
2
  ({ onBlur, onChange, onDateChange, disabled, onCustomKeyDown, time, tabIndex, innerRef }: {
4
3
  onBlur: any;
@@ -9,7 +8,7 @@ export declare const DateInputs: {
9
8
  time: any;
10
9
  tabIndex: any;
11
10
  innerRef: any;
12
- }): JSX.Element;
11
+ }): import("react/jsx-runtime.js").JSX.Element;
13
12
  propTypes: {
14
13
  innerRef: import("prop-types").Requireable<NonNullable<((...args: any[]) => any) | import("prop-types").InferProps<{
15
14
  current: import("prop-types").Requireable<any>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSExpandableInput: ({ containerProps, innerRef, className, style, triggerComponent, children, isOpen, onOpen, onClose, onBlur, width, }: {
3
2
  containerProps?: {} | undefined;
4
3
  innerRef: any;
@@ -11,6 +10,6 @@ declare const DSExpandableInput: ({ containerProps, innerRef, className, style,
11
10
  onClose?: (() => null) | undefined;
12
11
  onBlur?: (() => null) | undefined;
13
12
  width?: undefined;
14
- }) => JSX.Element;
13
+ }) => import("react/jsx-runtime.js").JSX.Element;
15
14
  export { DSExpandableInput };
16
15
  export default DSExpandableInput;
@@ -1,7 +1,7 @@
1
1
  import { Component } from 'react';
2
2
  declare class ExpandableInputImpl extends Component {
3
3
  componentDidUpdate(prevProps: any): void;
4
- render(): JSX.Element;
4
+ render(): import("react/jsx-runtime.js").JSX.Element;
5
5
  }
6
6
  export { ExpandableInputImpl };
7
7
  export default ExpandableInputImpl;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSFloatingLabelInput: ({ containerProps, arialLabel, innerRef, className, extraInputProps, inputComponent, value, labelComponent, labelText, onChange, onBlur, onFocus, isOpen, hasError, readOnly, disabled, required, optional, mask, useSubfix, }: {
3
2
  containerProps?: {} | undefined;
4
3
  arialLabel?: string | undefined;
@@ -16,7 +15,7 @@ declare const DSFloatingLabelInput: ({ containerProps, arialLabel, innerRef, cla
16
15
  optional: any;
17
16
  truncateText?: boolean | undefined;
18
17
  isGroup?: boolean | undefined;
19
- }): JSX.Element;
18
+ }): import("react/jsx-runtime.js").JSX.Element;
20
19
  propTypes: {
21
20
  children: import("prop-types").Requireable<string>;
22
21
  label: import("prop-types").Requireable<string>;
@@ -39,6 +38,6 @@ declare const DSFloatingLabelInput: ({ containerProps, arialLabel, innerRef, cla
39
38
  optional?: boolean | undefined;
40
39
  mask?: null | undefined;
41
40
  useSubfix?: string | undefined;
42
- }) => JSX.Element;
41
+ }) => import("react/jsx-runtime.js").JSX.Element;
43
42
  export { DSFloatingLabelInput };
44
43
  export default DSFloatingLabelInput;
@@ -21,7 +21,7 @@ declare class FloatingLabelInputImpl extends Component {
21
21
  get isOpened(): any;
22
22
  getValue(value: any): any;
23
23
  updatePath(): void;
24
- render(): JSX.Element;
24
+ render(): import("react/jsx-runtime.js").JSX.Element;
25
25
  }
26
26
  export { FloatingLabelInputImpl };
27
27
  export default FloatingLabelInputImpl;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { DSError } from './Error/DSError.js';
3
2
  import { FORMITEM_LAYOUT_VARIANTS } from './variants.js';
4
3
  export { DSError, FORMITEM_LAYOUT_VARIANTS };
@@ -42,7 +41,7 @@ declare const DSFormItemLayout: {
42
41
  fitContent: any;
43
42
  withHighlight: any;
44
43
  containerProps: any;
45
- }): JSX.Element;
44
+ }): import("react/jsx-runtime.js").JSX.Element;
46
45
  propTypes: {
47
46
  containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
48
47
  disableTooltip: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
@@ -97,7 +96,7 @@ declare const DSFormItemLayout: {
97
96
  optional: any;
98
97
  truncateText?: boolean | undefined;
99
98
  isGroup?: boolean | undefined;
100
- }): JSX.Element;
99
+ }): import("react/jsx-runtime.js").JSX.Element;
101
100
  propTypes: {
102
101
  children: import("prop-types").Requireable<string>;
103
102
  label: import("prop-types").Requireable<string>;
@@ -111,7 +110,7 @@ declare const DSFormItemLayout: {
111
110
  feedbackComponent: ({ text, hasError }: {
112
111
  text: any;
113
112
  hasError: any;
114
- }) => JSX.Element | null;
113
+ }) => import("react/jsx-runtime.js").JSX.Element | null;
115
114
  hasError: boolean;
116
115
  validationMessage: string;
117
116
  feedbackMessage: string;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  declare const DSError: {
3
2
  ({ hasError, errorText }: {
4
3
  hasError?: boolean | undefined;
5
4
  errorText?: string | undefined;
6
- }): JSX.Element | null;
5
+ }): import("react/jsx-runtime").JSX.Element | null;
7
6
  propTypes: {
8
7
  /** error state */
9
8
  hasError: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
@@ -1,7 +1,6 @@
1
- /// <reference types="react" />
2
1
  declare const Feedback: ({ text, hasError }: {
3
2
  text: any;
4
3
  hasError: any;
5
- }) => JSX.Element | null;
4
+ }) => import("react/jsx-runtime").JSX.Element | null;
6
5
  export { Feedback };
7
6
  export default Feedback;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare const DSLabel: {
4
3
  ({ children, label, htmlFor, required, optional, truncateText, isGroup }: {
@@ -9,7 +8,7 @@ declare const DSLabel: {
9
8
  optional: any;
10
9
  truncateText?: boolean | undefined;
11
10
  isGroup?: boolean | undefined;
12
- }): JSX.Element;
11
+ }): import("react/jsx-runtime.js").JSX.Element;
13
12
  propTypes: {
14
13
  children: PropTypes.Requireable<string>;
15
14
  label: PropTypes.Requireable<string>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const defaultProps: {
3
2
  leftLabel: boolean;
4
3
  floatingLabel: boolean;
@@ -12,7 +11,7 @@ export declare const defaultProps: {
12
11
  optional: any;
13
12
  truncateText?: boolean | undefined;
14
13
  isGroup?: boolean | undefined;
15
- }): JSX.Element;
14
+ }): import("react/jsx-runtime.js").JSX.Element;
16
15
  propTypes: {
17
16
  children: import("prop-types").Requireable<string>;
18
17
  label: import("prop-types").Requireable<string>;
@@ -26,7 +25,7 @@ export declare const defaultProps: {
26
25
  feedbackComponent: ({ text, hasError }: {
27
26
  text: any;
28
27
  hasError: any;
29
- }) => JSX.Element | null;
28
+ }) => import("react/jsx-runtime.js").JSX.Element | null;
30
29
  hasError: boolean;
31
30
  validationMessage: string;
32
31
  feedbackMessage: string;
@@ -2,7 +2,7 @@ import { Component } from 'react';
2
2
  declare class AddonWrapper extends Component {
3
3
  static defaultProps: {};
4
4
  state: {};
5
- render(): JSX.Element;
5
+ render(): import("react/jsx-runtime").JSX.Element;
6
6
  }
7
7
  export { AddonWrapper };
8
8
  export default AddonWrapper;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSInputGroup: {
3
2
  ({ containerProps, innerRef, className, style, leftAddon, rightAddon, children: InputComponents, }: {
4
3
  containerProps: any;
@@ -8,7 +7,7 @@ declare const DSInputGroup: {
8
7
  leftAddon: any;
9
8
  rightAddon: any;
10
9
  children: any;
11
- }): JSX.Element;
10
+ }): import("react/jsx-runtime.js").JSX.Element;
12
11
  propTypes: {
13
12
  containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
14
13
  innerRef: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
@@ -12,7 +12,7 @@ declare class DSInputMaskDeprecated extends Component {
12
12
  handleBlur: (e: any) => void;
13
13
  componentDidMount(): void;
14
14
  componentDidUpdate(prevProps: any): void;
15
- render(): JSX.Element;
15
+ render(): import("react/jsx-runtime.js").JSX.Element;
16
16
  }
17
17
  export { DSInputMaskDeprecated };
18
18
  export default DSInputMaskDeprecated;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -32,6 +31,6 @@ declare const DateInputMask: ({ focus, setFocus, setRawMask, cursorPosition, set
32
31
  leftComponent: any;
33
32
  rightComponent: any;
34
33
  value: any;
35
- }) => JSX.Element;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
35
  export { DateInputMask };
37
36
  export default DateInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -32,6 +31,6 @@ declare const DateTimeInputMask: ({ focus, setFocus, setRawMask, cursorPosition,
32
31
  leftComponent: any;
33
32
  rightComponent: any;
34
33
  value: any;
35
- }) => JSX.Element;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
35
  export { DateTimeInputMask };
37
36
  export default DateTimeInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -35,6 +34,6 @@ declare const DictionaryInputMask: ({ focus, setFocus, setRawMask, cursorPositio
35
34
  leftComponent: any;
36
35
  rightComponent: any;
37
36
  value: any;
38
- }) => JSX.Element;
37
+ }) => import("react/jsx-runtime.js").JSX.Element;
39
38
  export { DictionaryInputMask };
40
39
  export default DictionaryInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -44,6 +43,6 @@ declare const NumberInputMask: ({ focus, setFocus, setRawMask, cursorPosition, s
44
43
  thousandsSeparatorSymbol: any;
45
44
  type: any;
46
45
  value: any;
47
- }) => JSX.Element;
46
+ }) => import("react/jsx-runtime.js").JSX.Element;
48
47
  export { NumberInputMask };
49
48
  export default NumberInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -32,6 +31,6 @@ declare const PhoneInputMask: ({ focus, setFocus, setRawMask, cursorPosition, se
32
31
  leftComponent: any;
33
32
  rightComponent: any;
34
33
  value: any;
35
- }) => JSX.Element;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
35
  export { PhoneInputMask };
37
36
  export default PhoneInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -32,6 +31,6 @@ declare const PhoneInternationalInputMask: ({ focus, setFocus, setRawMask, curso
32
31
  leftComponent: any;
33
32
  rightComponent: any;
34
33
  value: any;
35
- }) => JSX.Element;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
35
  export { PhoneInternationalInputMask };
37
36
  export default PhoneInternationalInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -32,6 +31,6 @@ declare const SsnInputMask: ({ focus, setFocus, setRawMask, cursorPosition, setC
32
31
  leftComponent: any;
33
32
  rightComponent: any;
34
33
  value: any;
35
- }) => JSX.Element;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
35
  export { SsnInputMask };
37
36
  export default SsnInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -32,6 +31,6 @@ declare const UsZipCodeInputMask: ({ focus, setFocus, setRawMask, cursorPosition
32
31
  leftComponent: any;
33
32
  rightComponent: any;
34
33
  value: any;
35
- }) => JSX.Element;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
35
  export { UsZipCodeInputMask };
37
36
  export default UsZipCodeInputMask;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
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 }: {
3
2
  [x: string]: any;
4
3
  focus: any;
@@ -32,6 +31,6 @@ declare const ZipCodeSearchInputMask: ({ focus, setFocus, setRawMask, cursorPosi
32
31
  leftComponent: any;
33
32
  rightComponent: any;
34
33
  value: any;
35
- }) => JSX.Element;
34
+ }) => import("react/jsx-runtime.js").JSX.Element;
36
35
  export { ZipCodeSearchInputMask };
37
36
  export default ZipCodeSearchInputMask;
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  export declare const OutOfTheBoxMaskTypes: {
3
- 'ds-mask-date': (props: any) => JSX.Element;
4
- 'ds-mask-date-time': (props: any) => JSX.Element;
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;
5
4
  'ds-mask-dictionary': ({ ignoreCase, ...rest }: {
6
5
  [x: string]: any;
7
6
  ignoreCase?: boolean | undefined;
8
- }) => JSX.Element;
7
+ }) => import("react/jsx-runtime.js").JSX.Element;
9
8
  'ds-mask-number': ({ prefix, suffix, includeThousandsSeparator, thousandsSeparatorSymbol, allowDecimal, decimalSymbol, decimalLimit, requireDecimal, allowNegative, allowLeadingZeroes, integerLimit, ...rest }: {
10
9
  [x: string]: any;
11
10
  prefix?: string | undefined;
@@ -19,7 +18,7 @@ export declare const OutOfTheBoxMaskTypes: {
19
18
  allowNegative?: boolean | undefined;
20
19
  allowLeadingZeroes?: boolean | undefined;
21
20
  integerLimit?: null | undefined;
22
- }) => JSX.Element;
21
+ }) => import("react/jsx-runtime.js").JSX.Element;
23
22
  'ds-mask-percent': ({ prefix, suffix, includeThousandsSeparator, thousandsSeparatorSymbol, allowDecimal, decimalSymbol, decimalLimit, requireDecimal, allowNegative, allowLeadingZeroes, integerLimit, ...rest }: {
24
23
  [x: string]: any;
25
24
  prefix?: string | undefined;
@@ -33,10 +32,10 @@ export declare const OutOfTheBoxMaskTypes: {
33
32
  allowNegative?: boolean | undefined;
34
33
  allowLeadingZeroes?: boolean | undefined;
35
34
  integerLimit?: null | undefined;
36
- }) => JSX.Element;
37
- 'ds-mask-phone': (props: any) => JSX.Element;
38
- 'ds-mask-phone-international': (props: any) => JSX.Element;
39
- 'ds-mask-ssn': (props: any) => JSX.Element;
40
- 'ds-mask-us-zip-code': (props: any) => JSX.Element;
41
- 'ds-mask-zip-code-search': (props: any) => JSX.Element;
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;
42
41
  };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSInputProtected: {
3
2
  ({ leftAddon, rightAddon, onChange, value, readOnly, mask, type, placeholderChar, ...rest }: {
4
3
  [x: string]: any;
@@ -10,7 +9,7 @@ declare const DSInputProtected: {
10
9
  mask: any;
11
10
  type: any;
12
11
  placeholderChar?: undefined;
13
- }): JSX.Element;
12
+ }): import("react/jsx-runtime.js").JSX.Element;
14
13
  propTypes: {
15
14
  leftAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
16
15
  rightAddon: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSLargeInputText: {
3
2
  ({ containerProps, autoFocus, className, disabled, name, id, maxLength, minLength, placeholder, onClick, onChange, onFocus, onBlur, onKeyUp, onKeyDown, onPaste, value, hasError, required, readOnly, resize, innerRef, ariaLabel, ariaAutocomplete, role, characterLimitCounter, rows, errorLimit, tabIndex, }: {
4
3
  containerProps: any;
@@ -30,7 +29,7 @@ declare const DSLargeInputText: {
30
29
  rows: any;
31
30
  errorLimit: any;
32
31
  tabIndex: any;
33
- }): JSX.Element;
32
+ }): import("react/jsx-runtime.js").JSX.Element;
34
33
  propTypes: {
35
34
  containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
36
35
  autoFocus: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
@@ -21,7 +21,7 @@ interface DSRadioT {
21
21
  tabIndex?: number;
22
22
  }
23
23
  declare const DSRadio: {
24
- ({ containerProps, className, style, labelText, htmlFor, hasError, readOnly, disabled, checked, value, name, onChange, children, tabIndex, innerRef, ...otherProps }: DSRadioT): JSX.Element;
24
+ ({ containerProps, className, style, labelText, htmlFor, hasError, readOnly, disabled, checked, value, name, onChange, children, tabIndex, innerRef, ...otherProps }: DSRadioT): import("react/jsx-runtime.js").JSX.Element;
25
25
  defaultProps: {
26
26
  containerProps: {};
27
27
  className: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSRadioGroup: {
3
2
  ({ containerProps, onChange, activeValue, children, orientation, disabled, truncateText, labelProps, }: {
4
3
  containerProps: any;
@@ -9,7 +8,7 @@ declare const DSRadioGroup: {
9
8
  disabled: any;
10
9
  truncateText: any;
11
10
  labelProps: any;
12
- }): JSX.Element;
11
+ }): import("react/jsx-runtime.js").JSX.Element;
13
12
  propTypes: {
14
13
  containerProps: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
15
14
  onChange: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
@@ -1,7 +1,6 @@
1
- /// <reference types="react" />
2
1
  declare const RequiredMark: ({ required, optional }: {
3
2
  required?: boolean | undefined;
4
3
  optional?: boolean | undefined;
5
- }) => JSX.Element | null;
4
+ }) => import("react/jsx-runtime").JSX.Element | null;
6
5
  export { RequiredMark, RequiredMark as DSRequiredMark };
7
6
  export default RequiredMark;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { TimeInputImpl } from './TimeInputImpl.js';
3
2
  declare const DSTimeInput: {
4
3
  ({ containerProps, innerRef, className, style, onChange, format, value, clearable, disabled, ariaLabel, }: {
@@ -12,7 +11,7 @@ declare const DSTimeInput: {
12
11
  clearable?: boolean | undefined;
13
12
  disabled?: boolean | undefined;
14
13
  ariaLabel?: string | undefined;
15
- }): JSX.Element;
14
+ }): import("react/jsx-runtime.js").JSX.Element;
16
15
  defaultProps: {
17
16
  format: string;
18
17
  disabled: boolean;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import PropTypes from 'prop-types';
3
2
  declare const TimeInputImpl: {
4
3
  ({ format, innerRef, onChange, className, value, disabled, clearable, "arial-label": ariaLabel, }: {
@@ -10,7 +9,7 @@ declare const TimeInputImpl: {
10
9
  disabled: any;
11
10
  clearable: any;
12
11
  "arial-label": any;
13
- }): JSX.Element;
12
+ }): import("react/jsx-runtime.js").JSX.Element;
14
13
  propTypes: {
15
14
  containerProps: PropTypes.Requireable<PropTypes.InferProps<{}>>;
16
15
  /**
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const TimeInputs: ({ time, format, use12Hours, step, showHours, showMinutes, showSeconds, onChange, disabled, innerRef, clearable, "arial-label": ariaLabel, "aria-label": ariaLabel2, }: {
3
2
  time: any;
4
3
  format: any;
@@ -13,6 +12,6 @@ declare const TimeInputs: ({ time, format, use12Hours, step, showHours, showMinu
13
12
  clearable: any;
14
13
  "arial-label": any;
15
14
  "aria-label": any;
16
- }) => JSX.Element;
15
+ }) => import("react/jsx-runtime.js").JSX.Element;
17
16
  export { TimeInputs };
18
17
  export default TimeInputs;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSToggle: {
3
2
  ({ containerProps, hasError, readOnly, disabled, checked, labelOn, labelOff, name, value, size, ...otherProps }: {
4
3
  [x: string]: any;
@@ -12,7 +11,7 @@ declare const DSToggle: {
12
11
  name: any;
13
12
  value: any;
14
13
  size: any;
15
- }): JSX.Element;
14
+ }): import("react/jsx-runtime.js").JSX.Element;
16
15
  defaultProps: {
17
16
  labelOn: string;
18
17
  labelOff: string;
@@ -55,7 +55,7 @@ declare class DSToggleImpl extends Component {
55
55
  */
56
56
  setDragOnChange(currentCheckState: any): void;
57
57
  verifyElements(): void;
58
- render(): JSX.Element;
58
+ render(): import("react/jsx-runtime.js").JSX.Element;
59
59
  }
60
60
  export { DSToggleImpl };
61
61
  export default DSToggleImpl;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const DSToggleRender: ({ containerProps, id, className, style, hasError, hide, readOnly, disabled, checked, onBlur, onFocus, onChange, onMouseDown, onMouseEnter, onMouseLeave, onTouchCancel, onTouchEnd, onTouchMove, onTouchStart, labelOn, labelOff, dragStyle, containerRef, handRef, name, value, size, defaultState, }: {
3
2
  containerProps: any;
4
3
  id: any;
@@ -28,6 +27,6 @@ declare const DSToggleRender: ({ containerProps, id, className, style, hasError,
28
27
  value?: string | undefined;
29
28
  size?: string | undefined;
30
29
  defaultState: any;
31
- }) => JSX.Element;
30
+ }) => import("react/jsx-runtime").JSX.Element;
32
31
  export { DSToggleRender };
33
32
  export default DSToggleRender;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form",
3
- "version": "3.17.0-next.12",
3
+ "version": "3.17.0-next.15",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Form",
6
6
  "files": [
@@ -481,18 +481,18 @@
481
481
  "react-select": "~4.3.1",
482
482
  "resize-observer": "~1.0.4",
483
483
  "text-mask-core": "5.1.2",
484
- "@elliemae/ds-button": "3.17.0-next.12",
485
- "@elliemae/ds-classnames": "3.17.0-next.12",
486
- "@elliemae/ds-common": "3.17.0-next.12",
487
- "@elliemae/ds-grid": "3.17.0-next.12",
488
- "@elliemae/ds-props-helpers": "3.17.0-next.12",
489
- "@elliemae/ds-icons": "3.17.0-next.12",
490
- "@elliemae/ds-shared": "3.17.0-next.12",
491
- "@elliemae/ds-system": "3.17.0-next.12",
492
- "@elliemae/ds-text-wrapper": "3.17.0-next.12",
493
- "@elliemae/ds-tooltip": "3.17.0-next.12",
494
- "@elliemae/ds-truncated-tooltip-text": "3.17.0-next.12",
495
- "@elliemae/ds-utilities": "3.17.0-next.12"
484
+ "@elliemae/ds-button": "3.17.0-next.15",
485
+ "@elliemae/ds-icons": "3.17.0-next.15",
486
+ "@elliemae/ds-classnames": "3.17.0-next.15",
487
+ "@elliemae/ds-common": "3.17.0-next.15",
488
+ "@elliemae/ds-props-helpers": "3.17.0-next.15",
489
+ "@elliemae/ds-system": "3.17.0-next.15",
490
+ "@elliemae/ds-tooltip": "3.17.0-next.15",
491
+ "@elliemae/ds-text-wrapper": "3.17.0-next.15",
492
+ "@elliemae/ds-truncated-tooltip-text": "3.17.0-next.15",
493
+ "@elliemae/ds-grid": "3.17.0-next.15",
494
+ "@elliemae/ds-utilities": "3.17.0-next.15",
495
+ "@elliemae/ds-shared": "3.17.0-next.15"
496
496
  },
497
497
  "devDependencies": {
498
498
  "@testing-library/dom": "~8.19.0",