@elliemae/ds-controlled-form 2.3.0-next.13 → 2.3.0-next.17

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 (69) hide show
  1. package/cjs/controlled-checkbox/ControlledCheckbox.js +8 -4
  2. package/cjs/controlled-mask-hook/hooks/index.js +10 -0
  3. package/cjs/controlled-mask-hook/hooks/usePhoneMask.js +72 -0
  4. package/cjs/controlled-mask-hook/index.js +10 -0
  5. package/cjs/controlled-mask-hook/react-desc-prop-types.js +19 -0
  6. package/cjs/controlled-mask-hook/utils/addSpecialCharacters.js +50 -0
  7. package/cjs/controlled-mask-hook/utils/getPartialMaskedPos.js +15 -0
  8. package/cjs/controlled-mask-hook/utils/index.js +13 -0
  9. package/cjs/controlled-mask-hook/utils/setCursorPosition.js +9 -0
  10. package/cjs/controlled-text-input/DSInputText.js +89 -0
  11. package/cjs/controlled-text-input/config/useInputText.js +54 -0
  12. package/cjs/controlled-text-input/exported-related/data-test-ids.js +10 -0
  13. package/cjs/controlled-text-input/exported-related/index.js +12 -0
  14. package/cjs/controlled-text-input/exported-related/theming.js +13 -0
  15. package/cjs/controlled-text-input/index.js +15 -0
  16. package/cjs/controlled-text-input/react-desc-prop-types.js +45 -0
  17. package/cjs/controlled-text-input/styled/borders.js +33 -0
  18. package/cjs/controlled-text-input/styled/components.js +38 -0
  19. package/cjs/index.js +17 -6
  20. package/esm/controlled-checkbox/ControlledCheckbox.js +8 -4
  21. package/esm/controlled-mask-hook/hooks/index.js +1 -0
  22. package/esm/controlled-mask-hook/hooks/usePhoneMask.js +67 -0
  23. package/esm/controlled-mask-hook/index.js +1 -0
  24. package/esm/controlled-mask-hook/react-desc-prop-types.js +14 -0
  25. package/esm/controlled-mask-hook/utils/addSpecialCharacters.js +46 -0
  26. package/esm/controlled-mask-hook/utils/getPartialMaskedPos.js +11 -0
  27. package/esm/controlled-mask-hook/utils/index.js +3 -0
  28. package/esm/controlled-mask-hook/utils/setCursorPosition.js +5 -0
  29. package/esm/controlled-text-input/DSInputText.js +78 -0
  30. package/esm/controlled-text-input/config/useInputText.js +50 -0
  31. package/esm/controlled-text-input/exported-related/data-test-ids.js +6 -0
  32. package/esm/controlled-text-input/exported-related/index.js +2 -0
  33. package/esm/controlled-text-input/exported-related/theming.js +8 -0
  34. package/esm/controlled-text-input/index.js +3 -0
  35. package/esm/controlled-text-input/react-desc-prop-types.js +36 -0
  36. package/esm/controlled-text-input/styled/borders.js +24 -0
  37. package/esm/controlled-text-input/styled/components.js +28 -0
  38. package/esm/index.js +6 -2
  39. package/package.json +79 -10
  40. package/types/controlled-autocomplete/parts/controls/styled.d.ts +1 -1
  41. package/types/controlled-checkbox/react-desc-prop-types.d.ts +1 -0
  42. package/types/controlled-combobox/parts/controls/styled.d.ts +2 -2
  43. package/types/controlled-combobox/parts/dropdown-indicator/styled.d.ts +1 -1
  44. package/types/controlled-date-time-picker/parts/Pickers/Calendar/Styleds.d.ts +4 -4
  45. package/types/controlled-date-time-picker/parts/Pickers/CalendarWithTimeWheel/Styleds.d.ts +1 -1
  46. package/types/controlled-date-time-picker/parts/Pickers/TimeWheel/Styleds.d.ts +4 -4
  47. package/types/controlled-date-time-picker/parts/Styleds.d.ts +6 -6
  48. package/types/controlled-mask-hook/hooks/index.d.ts +1 -0
  49. package/types/controlled-mask-hook/hooks/usePhoneMask.d.ts +3 -0
  50. package/types/controlled-mask-hook/index.d.ts +2 -0
  51. package/types/controlled-mask-hook/react-desc-prop-types.d.ts +17 -0
  52. package/types/controlled-mask-hook/tests/usePhoneMask.test.d.ts +1 -0
  53. package/types/controlled-mask-hook/utils/addSpecialCharacters.d.ts +9 -0
  54. package/types/controlled-mask-hook/utils/getPartialMaskedPos.d.ts +1 -0
  55. package/types/controlled-mask-hook/utils/index.d.ts +3 -0
  56. package/types/controlled-mask-hook/utils/setCursorPosition.d.ts +1 -0
  57. package/types/controlled-text-input/DSInputText.d.ts +4 -0
  58. package/types/controlled-text-input/config/useInputText.d.ts +434 -0
  59. package/types/controlled-text-input/exported-related/data-test-ids.d.ts +4 -0
  60. package/types/controlled-text-input/exported-related/index.d.ts +2 -0
  61. package/types/controlled-text-input/exported-related/theming.d.ts +6 -0
  62. package/types/controlled-text-input/index.d.ts +2 -0
  63. package/types/controlled-text-input/react-desc-prop-types.d.ts +20 -0
  64. package/types/controlled-text-input/styled/borders.d.ts +10 -0
  65. package/types/controlled-text-input/styled/components.d.ts +3 -0
  66. package/types/controlled-text-input/tests/DSInput.events.test.d.ts +1 -0
  67. package/types/controlled-text-input/tests/DSInput.keyboard.test.d.ts +1 -0
  68. package/types/controlled-text-input/tests/DSInput.test.d.ts +1 -0
  69. package/types/index.d.ts +4 -2
@@ -1,13 +1,13 @@
1
1
  /// <reference types="react" />
2
- export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
2
+ export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
3
3
  export declare const StyledShadowWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
4
4
  isControllerOnly: boolean;
5
5
  }, never>;
6
6
  export declare const StyledCalendarWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
7
7
  export declare const StyledHeader: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, {}, never>;
8
- export declare const StyledHeaderButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
8
+ export declare const StyledHeaderButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
9
9
  export declare const StyledBody: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, {}, never>;
10
- export declare const StyledDayBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
11
- export declare const StyledWeekDaysListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
10
+ export declare const StyledDayBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
11
+ export declare const StyledWeekDaysListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
12
12
  export declare const StyledWeekDaysHeaderItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
13
13
  export declare const CalendarFooterMessage: import("styled-components").StyledComponent<"footer", import("styled-components").DefaultTheme, {}, never>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
2
+ export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
3
3
  export declare const StyledCalendarWithTimeWheelWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
4
4
  isControllerOnly: boolean;
5
5
  }, never>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
2
+ export declare const StyledIconTriggerButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
3
3
  export declare const StyledWheelList: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
4
  interface StyledWheelListItemPropsT {
5
5
  isCurrentListItem?: boolean;
@@ -9,11 +9,11 @@ export declare const StyledTimePickerContainer: import("styled-components").Styl
9
9
  showShadow?: boolean | undefined;
10
10
  isControllerOnly: boolean;
11
11
  }, never>;
12
- export declare const StyledTimePickerHead: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
12
+ export declare const StyledTimePickerHead: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
13
13
  export declare const StyledTimePickerWheelsLegend: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
14
14
  export declare const StyledTimePickerWheelWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
15
- export declare const StyledTimeBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
15
+ export declare const StyledTimeBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
16
16
  export declare const StyledWheelListItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledWheelListItemPropsT, never>;
17
- export declare const StyledWheelChangeTimeBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
17
+ export declare const StyledWheelChangeTimeBtn: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
18
18
  export declare const TimeWheelFooterMessage: import("styled-components").StyledComponent<"footer", import("styled-components").DefaultTheme, {}, never>;
19
19
  export {};
@@ -1,13 +1,13 @@
1
1
  /// <reference types="react" />
2
- export declare const StyledSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
3
- export declare const StyledColonSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
2
+ export declare const StyledSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
3
+ export declare const StyledColonSeparator: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
4
4
  export declare const Styled2DigitsInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
5
5
  export declare const StyledMin4DigitsInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
6
- export declare const StyledInputsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
6
+ export declare const StyledInputsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
7
7
  export declare const StyledDateInputsWrapperGrid: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
8
8
  export declare const StyledTimeInputsWrapperGrid: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
9
- export declare const StyledPickersIconsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {
9
+ export declare const StyledPickersIconsWrapperGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {
10
10
  isControllerOnly: boolean;
11
11
  }, never>;
12
- export declare const StyledFocusWithIn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/types").GridPropsT & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
13
- export declare const StyledClearButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/propTypes").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
12
+ export declare const StyledFocusWithIn: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
13
+ export declare const StyledClearButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button/types/v2/react-desc-prop-types").DSButtonT.Props>, import("styled-components").DefaultTheme, {}, never>;
@@ -0,0 +1 @@
1
+ export * from './usePhoneMask';
@@ -0,0 +1,3 @@
1
+ import { DSMaskT } from '../react-desc-prop-types';
2
+ export declare const usePhoneMask: DSMaskT.Hook;
3
+ export declare const UsePhoneMaskWithSchema: any;
@@ -0,0 +1,2 @@
1
+ export * from './hooks';
2
+ export type { DSMaskT } from './react-desc-prop-types';
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ export declare namespace DSMaskT {
3
+ interface HookArgs {
4
+ valueSetter: React.Dispatch<React.SetStateAction<string>>;
5
+ onChange?: (e: React.ChangeEvent<HTMLInputElement>, mask?: string) => void;
6
+ onKeyDown?: React.KeyboardEventHandler<HTMLInputElement>;
7
+ onBlur?: React.FocusEventHandler<HTMLInputElement>;
8
+ }
9
+ interface HookReturn {
10
+ onChange: React.ChangeEventHandler<HTMLInputElement>;
11
+ onKeyDown: React.KeyboardEventHandler<HTMLInputElement>;
12
+ onBlur?: React.FocusEventHandler<HTMLInputElement>;
13
+ }
14
+ type Hook = (args: HookArgs) => HookReturn;
15
+ }
16
+ export declare const DSMaskHookDefaultProps: Partial<DSMaskT.HookArgs>;
17
+ export declare const DSMaskHookPropsTypes: React.WeakValidationMap<unknown>;
@@ -0,0 +1,9 @@
1
+ /**
2
+ *
3
+ * @param {string[]} maskWithoutSpecialChars An array of characters with the unfinished mask
4
+ * @param {[string, number][]} specialCharsDescr An array of tuples. Each tuple contains a string and a position (What string to add in a particular position)
5
+ * @param {number} maskedPos Current masked position
6
+ * @param {string} lastKeyCode Last key code of the user
7
+ * @returns {[string, number]} A tuple containing the final mask and the final masked position
8
+ */
9
+ export declare const addSpecialCharacters: (maskWithoutSpecialChars: string[], specialCharsDescr: [string, number][], maskedPos: number, lastKeyCode: string) => [string, number];
@@ -0,0 +1 @@
1
+ export declare const getPartialMaskedPos: (rawValue: string, maskWithoutSpecialChars: string[], cursorPos: number) => number;
@@ -0,0 +1,3 @@
1
+ export * from './addSpecialCharacters';
2
+ export * from './getPartialMaskedPos';
3
+ export * from './setCursorPosition';
@@ -0,0 +1 @@
1
+ export declare const setCursorPosition: (input: HTMLInputElement, position: number) => void;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { DSInputTextT } from './react-desc-prop-types';
3
+ export declare const DSInputText: React.ComponentType<DSInputTextT.Props>;
4
+ export declare const DSInputTextWithSchema: any;
@@ -0,0 +1,434 @@
1
+ import React from 'react';
2
+ import { DSInputTextT } from '../react-desc-prop-types';
3
+ export declare const useInputText: (props: DSInputTextT.Props) => {
4
+ globalAttributes: import("@elliemae/ds-props-helpers").GlobalAttributesT<Element>;
5
+ hasFocus: boolean;
6
+ handlers: {
7
+ onChange: React.ChangeEventHandler<HTMLInputElement>;
8
+ onFocus: React.FocusEventHandler<HTMLInputElement>;
9
+ onBlur: React.FocusEventHandler<HTMLInputElement>;
10
+ };
11
+ propsWithDefault: {
12
+ value: string | number;
13
+ onValueChange: (nextValue: string | number, e: React.ChangeEvent<HTMLInputElement>) => void;
14
+ onClear: () => void;
15
+ placeholder: string;
16
+ innerRef: React.RefObject<HTMLInputElement> | ((_ref: HTMLInputElement) => void);
17
+ disabled: boolean;
18
+ readOnly: boolean;
19
+ hasError: boolean;
20
+ inputSize: "s" | "m";
21
+ clearable: boolean;
22
+ autoFocus: boolean;
23
+ onKeyDown: React.KeyboardEventHandler<HTMLInputElement>;
24
+ onChange: React.FormEventHandler<HTMLInputElement>;
25
+ media: string;
26
+ cite: string;
27
+ data: string;
28
+ form: string;
29
+ label: string;
30
+ slot: string;
31
+ span: number;
32
+ style: React.CSSProperties;
33
+ summary: string;
34
+ title: string;
35
+ pattern: string;
36
+ default: boolean;
37
+ type: string;
38
+ children: string | number | boolean | {} | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | React.ReactPortal | null;
39
+ name: string;
40
+ accept: string;
41
+ acceptCharset: string;
42
+ action: string;
43
+ allowFullScreen: boolean;
44
+ allowTransparency: boolean;
45
+ alt: string;
46
+ async: boolean;
47
+ autoComplete: string;
48
+ autoPlay: boolean;
49
+ capture: boolean | "user" | "environment";
50
+ cellPadding: string | number;
51
+ cellSpacing: string | number;
52
+ charSet: string;
53
+ challenge: string;
54
+ checked: boolean;
55
+ classID: string;
56
+ cols: number;
57
+ colSpan: number;
58
+ content: string;
59
+ controls: boolean;
60
+ coords: string;
61
+ crossOrigin: string;
62
+ dateTime: string;
63
+ defer: boolean;
64
+ download: any;
65
+ encType: string;
66
+ formAction: string;
67
+ formEncType: string;
68
+ formMethod: string;
69
+ formNoValidate: boolean;
70
+ formTarget: string;
71
+ frameBorder: string | number;
72
+ headers: string;
73
+ height: string | number;
74
+ high: number;
75
+ href: string;
76
+ hrefLang: string;
77
+ htmlFor: string;
78
+ httpEquiv: string;
79
+ integrity: string;
80
+ keyParams: string;
81
+ keyType: string;
82
+ kind: string;
83
+ list: string;
84
+ loop: boolean;
85
+ low: number;
86
+ manifest: string;
87
+ marginHeight: number;
88
+ marginWidth: number;
89
+ max: string | number;
90
+ maxLength: number;
91
+ mediaGroup: string;
92
+ method: string;
93
+ min: string | number;
94
+ minLength: number;
95
+ multiple: boolean;
96
+ muted: boolean;
97
+ nonce: string;
98
+ noValidate: boolean;
99
+ open: boolean;
100
+ optimum: number;
101
+ playsInline: boolean;
102
+ poster: string;
103
+ preload: string;
104
+ rel: string;
105
+ required: boolean;
106
+ reversed: boolean;
107
+ rows: number;
108
+ rowSpan: number;
109
+ sandbox: string;
110
+ scope: string;
111
+ scoped: boolean;
112
+ scrolling: string;
113
+ seamless: boolean;
114
+ selected: boolean;
115
+ shape: string;
116
+ size: number;
117
+ sizes: string;
118
+ src: string;
119
+ srcDoc: string;
120
+ srcLang: string;
121
+ srcSet: string;
122
+ start: number;
123
+ step: string | number;
124
+ target: string;
125
+ useMap: string;
126
+ width: string | number;
127
+ wmode: string;
128
+ wrap: string;
129
+ defaultChecked: boolean;
130
+ defaultValue: string | number | readonly string[];
131
+ suppressContentEditableWarning: boolean;
132
+ suppressHydrationWarning: boolean;
133
+ accessKey: string;
134
+ className: string;
135
+ contentEditable: boolean | "true" | "false" | "inherit";
136
+ contextMenu: string;
137
+ dir: string;
138
+ draggable: boolean | "true" | "false";
139
+ hidden: boolean;
140
+ id: string;
141
+ lang: string;
142
+ spellCheck: boolean | "true" | "false";
143
+ tabIndex: number;
144
+ translate: "yes" | "no";
145
+ radioGroup: string;
146
+ role: "article" | "button" | "dialog" | "figure" | "form" | "img" | "link" | "main" | "menu" | "menuitem" | "option" | "table" | "switch" | "search" | "separator" | "list" | "none" | "listbox" | "tree" | "grid" | "alert" | "alertdialog" | "application" | "banner" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "gridcell" | "group" | "heading" | "listitem" | "log" | "marquee" | "math" | "menubar" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "note" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "slider" | "spinbutton" | "status" | "tab" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "treegrid" | "treeitem" | (string & {});
147
+ about: string;
148
+ datatype: string;
149
+ inlist: any;
150
+ prefix: string;
151
+ property: string;
152
+ resource: string;
153
+ typeof: string;
154
+ vocab: string;
155
+ autoCapitalize: string;
156
+ autoCorrect: string;
157
+ autoSave: string;
158
+ color: string;
159
+ itemProp: string;
160
+ itemScope: boolean;
161
+ itemType: string;
162
+ itemID: string;
163
+ itemRef: string;
164
+ results: number;
165
+ security: string;
166
+ unselectable: "off" | "on";
167
+ inputMode: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
168
+ is: string;
169
+ 'aria-activedescendant': string;
170
+ 'aria-atomic': boolean | "true" | "false";
171
+ 'aria-autocomplete': "list" | "none" | "inline" | "both";
172
+ 'aria-busy': boolean | "true" | "false";
173
+ 'aria-checked': boolean | "true" | "false" | "mixed";
174
+ 'aria-colcount': number;
175
+ 'aria-colindex': number;
176
+ 'aria-colspan': number;
177
+ 'aria-controls': string;
178
+ 'aria-current': boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date";
179
+ 'aria-describedby': string;
180
+ 'aria-details': string;
181
+ 'aria-disabled': boolean | "true" | "false";
182
+ 'aria-dropeffect': "link" | "none" | "copy" | "execute" | "move" | "popup";
183
+ 'aria-errormessage': string;
184
+ 'aria-expanded': boolean | "true" | "false";
185
+ 'aria-flowto': string;
186
+ 'aria-grabbed': boolean | "true" | "false";
187
+ 'aria-haspopup': boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | "grid";
188
+ 'aria-hidden': boolean | "true" | "false";
189
+ 'aria-invalid': boolean | "true" | "false" | "grammar" | "spelling";
190
+ 'aria-keyshortcuts': string;
191
+ 'aria-label': string;
192
+ 'aria-labelledby': string;
193
+ 'aria-level': number;
194
+ 'aria-live': "off" | "assertive" | "polite";
195
+ 'aria-modal': boolean | "true" | "false";
196
+ 'aria-multiline': boolean | "true" | "false";
197
+ 'aria-multiselectable': boolean | "true" | "false";
198
+ 'aria-orientation': "horizontal" | "vertical";
199
+ 'aria-owns': string;
200
+ 'aria-placeholder': string;
201
+ 'aria-posinset': number;
202
+ 'aria-pressed': boolean | "true" | "false" | "mixed";
203
+ 'aria-readonly': boolean | "true" | "false";
204
+ 'aria-relevant': "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
205
+ 'aria-required': boolean | "true" | "false";
206
+ 'aria-roledescription': string;
207
+ 'aria-rowcount': number;
208
+ 'aria-rowindex': number;
209
+ 'aria-rowspan': number;
210
+ 'aria-selected': boolean | "true" | "false";
211
+ 'aria-setsize': number;
212
+ 'aria-sort': "none" | "ascending" | "descending" | "other";
213
+ 'aria-valuemax': number;
214
+ 'aria-valuemin': number;
215
+ 'aria-valuenow': number;
216
+ 'aria-valuetext': string;
217
+ dangerouslySetInnerHTML: {
218
+ __html: string;
219
+ };
220
+ onCopy: React.ClipboardEventHandler<HTMLInputElement>;
221
+ onCopyCapture: React.ClipboardEventHandler<HTMLInputElement>;
222
+ onCut: React.ClipboardEventHandler<HTMLInputElement>;
223
+ onCutCapture: React.ClipboardEventHandler<HTMLInputElement>;
224
+ onPaste: React.ClipboardEventHandler<HTMLInputElement>;
225
+ onPasteCapture: React.ClipboardEventHandler<HTMLInputElement>;
226
+ onCompositionEnd: React.CompositionEventHandler<HTMLInputElement>;
227
+ onCompositionEndCapture: React.CompositionEventHandler<HTMLInputElement>;
228
+ onCompositionStart: React.CompositionEventHandler<HTMLInputElement>;
229
+ onCompositionStartCapture: React.CompositionEventHandler<HTMLInputElement>;
230
+ onCompositionUpdate: React.CompositionEventHandler<HTMLInputElement>;
231
+ onCompositionUpdateCapture: React.CompositionEventHandler<HTMLInputElement>;
232
+ onFocus: React.FocusEventHandler<HTMLInputElement>;
233
+ onFocusCapture: React.FocusEventHandler<HTMLInputElement>;
234
+ onBlur: React.FocusEventHandler<HTMLInputElement>;
235
+ onBlurCapture: React.FocusEventHandler<HTMLInputElement>;
236
+ onChangeCapture: React.FormEventHandler<HTMLInputElement>;
237
+ onBeforeInput: React.FormEventHandler<HTMLInputElement>;
238
+ onBeforeInputCapture: React.FormEventHandler<HTMLInputElement>;
239
+ onInput: React.FormEventHandler<HTMLInputElement>;
240
+ onInputCapture: React.FormEventHandler<HTMLInputElement>;
241
+ onReset: React.FormEventHandler<HTMLInputElement>;
242
+ onResetCapture: React.FormEventHandler<HTMLInputElement>;
243
+ onSubmit: React.FormEventHandler<HTMLInputElement>;
244
+ onSubmitCapture: React.FormEventHandler<HTMLInputElement>;
245
+ onInvalid: React.FormEventHandler<HTMLInputElement>;
246
+ onInvalidCapture: React.FormEventHandler<HTMLInputElement>;
247
+ onLoad: React.ReactEventHandler<HTMLInputElement>;
248
+ onLoadCapture: React.ReactEventHandler<HTMLInputElement>;
249
+ onError: React.ReactEventHandler<HTMLInputElement>;
250
+ onErrorCapture: React.ReactEventHandler<HTMLInputElement>;
251
+ onKeyDownCapture: React.KeyboardEventHandler<HTMLInputElement>;
252
+ onKeyPress: React.KeyboardEventHandler<HTMLInputElement>;
253
+ onKeyPressCapture: React.KeyboardEventHandler<HTMLInputElement>;
254
+ onKeyUp: React.KeyboardEventHandler<HTMLInputElement>;
255
+ onKeyUpCapture: React.KeyboardEventHandler<HTMLInputElement>;
256
+ onAbort: React.ReactEventHandler<HTMLInputElement>;
257
+ onAbortCapture: React.ReactEventHandler<HTMLInputElement>;
258
+ onCanPlay: React.ReactEventHandler<HTMLInputElement>;
259
+ onCanPlayCapture: React.ReactEventHandler<HTMLInputElement>;
260
+ onCanPlayThrough: React.ReactEventHandler<HTMLInputElement>;
261
+ onCanPlayThroughCapture: React.ReactEventHandler<HTMLInputElement>;
262
+ onDurationChange: React.ReactEventHandler<HTMLInputElement>;
263
+ onDurationChangeCapture: React.ReactEventHandler<HTMLInputElement>;
264
+ onEmptied: React.ReactEventHandler<HTMLInputElement>;
265
+ onEmptiedCapture: React.ReactEventHandler<HTMLInputElement>;
266
+ onEncrypted: React.ReactEventHandler<HTMLInputElement>;
267
+ onEncryptedCapture: React.ReactEventHandler<HTMLInputElement>;
268
+ onEnded: React.ReactEventHandler<HTMLInputElement>;
269
+ onEndedCapture: React.ReactEventHandler<HTMLInputElement>;
270
+ onLoadedData: React.ReactEventHandler<HTMLInputElement>;
271
+ onLoadedDataCapture: React.ReactEventHandler<HTMLInputElement>;
272
+ onLoadedMetadata: React.ReactEventHandler<HTMLInputElement>;
273
+ onLoadedMetadataCapture: React.ReactEventHandler<HTMLInputElement>;
274
+ onLoadStart: React.ReactEventHandler<HTMLInputElement>;
275
+ onLoadStartCapture: React.ReactEventHandler<HTMLInputElement>;
276
+ onPause: React.ReactEventHandler<HTMLInputElement>;
277
+ onPauseCapture: React.ReactEventHandler<HTMLInputElement>;
278
+ onPlay: React.ReactEventHandler<HTMLInputElement>;
279
+ onPlayCapture: React.ReactEventHandler<HTMLInputElement>;
280
+ onPlaying: React.ReactEventHandler<HTMLInputElement>;
281
+ onPlayingCapture: React.ReactEventHandler<HTMLInputElement>;
282
+ onProgress: React.ReactEventHandler<HTMLInputElement>;
283
+ onProgressCapture: React.ReactEventHandler<HTMLInputElement>;
284
+ onRateChange: React.ReactEventHandler<HTMLInputElement>;
285
+ onRateChangeCapture: React.ReactEventHandler<HTMLInputElement>;
286
+ onSeeked: React.ReactEventHandler<HTMLInputElement>;
287
+ onSeekedCapture: React.ReactEventHandler<HTMLInputElement>;
288
+ onSeeking: React.ReactEventHandler<HTMLInputElement>;
289
+ onSeekingCapture: React.ReactEventHandler<HTMLInputElement>;
290
+ onStalled: React.ReactEventHandler<HTMLInputElement>;
291
+ onStalledCapture: React.ReactEventHandler<HTMLInputElement>;
292
+ onSuspend: React.ReactEventHandler<HTMLInputElement>;
293
+ onSuspendCapture: React.ReactEventHandler<HTMLInputElement>;
294
+ onTimeUpdate: React.ReactEventHandler<HTMLInputElement>;
295
+ onTimeUpdateCapture: React.ReactEventHandler<HTMLInputElement>;
296
+ onVolumeChange: React.ReactEventHandler<HTMLInputElement>;
297
+ onVolumeChangeCapture: React.ReactEventHandler<HTMLInputElement>;
298
+ onWaiting: React.ReactEventHandler<HTMLInputElement>;
299
+ onWaitingCapture: React.ReactEventHandler<HTMLInputElement>;
300
+ onAuxClick: React.MouseEventHandler<HTMLInputElement>;
301
+ onAuxClickCapture: React.MouseEventHandler<HTMLInputElement>;
302
+ onClick: React.MouseEventHandler<HTMLInputElement>;
303
+ onClickCapture: React.MouseEventHandler<HTMLInputElement>;
304
+ onContextMenu: React.MouseEventHandler<HTMLInputElement>;
305
+ onContextMenuCapture: React.MouseEventHandler<HTMLInputElement>;
306
+ onDoubleClick: React.MouseEventHandler<HTMLInputElement>;
307
+ onDoubleClickCapture: React.MouseEventHandler<HTMLInputElement>;
308
+ onDrag: React.DragEventHandler<HTMLInputElement>;
309
+ onDragCapture: React.DragEventHandler<HTMLInputElement>;
310
+ onDragEnd: React.DragEventHandler<HTMLInputElement>;
311
+ onDragEndCapture: React.DragEventHandler<HTMLInputElement>;
312
+ onDragEnter: React.DragEventHandler<HTMLInputElement>;
313
+ onDragEnterCapture: React.DragEventHandler<HTMLInputElement>;
314
+ onDragExit: React.DragEventHandler<HTMLInputElement>;
315
+ onDragExitCapture: React.DragEventHandler<HTMLInputElement>;
316
+ onDragLeave: React.DragEventHandler<HTMLInputElement>;
317
+ onDragLeaveCapture: React.DragEventHandler<HTMLInputElement>;
318
+ onDragOver: React.DragEventHandler<HTMLInputElement>;
319
+ onDragOverCapture: React.DragEventHandler<HTMLInputElement>;
320
+ onDragStart: React.DragEventHandler<HTMLInputElement>;
321
+ onDragStartCapture: React.DragEventHandler<HTMLInputElement>;
322
+ onDrop: React.DragEventHandler<HTMLInputElement>;
323
+ onDropCapture: React.DragEventHandler<HTMLInputElement>;
324
+ onMouseDown: React.MouseEventHandler<HTMLInputElement>;
325
+ onMouseDownCapture: React.MouseEventHandler<HTMLInputElement>;
326
+ onMouseEnter: React.MouseEventHandler<HTMLInputElement>;
327
+ onMouseLeave: React.MouseEventHandler<HTMLInputElement>;
328
+ onMouseMove: React.MouseEventHandler<HTMLInputElement>;
329
+ onMouseMoveCapture: React.MouseEventHandler<HTMLInputElement>;
330
+ onMouseOut: React.MouseEventHandler<HTMLInputElement>;
331
+ onMouseOutCapture: React.MouseEventHandler<HTMLInputElement>;
332
+ onMouseOver: React.MouseEventHandler<HTMLInputElement>;
333
+ onMouseOverCapture: React.MouseEventHandler<HTMLInputElement>;
334
+ onMouseUp: React.MouseEventHandler<HTMLInputElement>;
335
+ onMouseUpCapture: React.MouseEventHandler<HTMLInputElement>;
336
+ onSelect: React.ReactEventHandler<HTMLInputElement>;
337
+ onSelectCapture: React.ReactEventHandler<HTMLInputElement>;
338
+ onTouchCancel: React.TouchEventHandler<HTMLInputElement>;
339
+ onTouchCancelCapture: React.TouchEventHandler<HTMLInputElement>;
340
+ onTouchEnd: React.TouchEventHandler<HTMLInputElement>;
341
+ onTouchEndCapture: React.TouchEventHandler<HTMLInputElement>;
342
+ onTouchMove: React.TouchEventHandler<HTMLInputElement>;
343
+ onTouchMoveCapture: React.TouchEventHandler<HTMLInputElement>;
344
+ onTouchStart: React.TouchEventHandler<HTMLInputElement>;
345
+ onTouchStartCapture: React.TouchEventHandler<HTMLInputElement>;
346
+ onPointerDown: React.PointerEventHandler<HTMLInputElement>;
347
+ onPointerDownCapture: React.PointerEventHandler<HTMLInputElement>;
348
+ onPointerMove: React.PointerEventHandler<HTMLInputElement>;
349
+ onPointerMoveCapture: React.PointerEventHandler<HTMLInputElement>;
350
+ onPointerUp: React.PointerEventHandler<HTMLInputElement>;
351
+ onPointerUpCapture: React.PointerEventHandler<HTMLInputElement>;
352
+ onPointerCancel: React.PointerEventHandler<HTMLInputElement>;
353
+ onPointerCancelCapture: React.PointerEventHandler<HTMLInputElement>;
354
+ onPointerEnter: React.PointerEventHandler<HTMLInputElement>;
355
+ onPointerEnterCapture: React.PointerEventHandler<HTMLInputElement>;
356
+ onPointerLeave: React.PointerEventHandler<HTMLInputElement>;
357
+ onPointerLeaveCapture: React.PointerEventHandler<HTMLInputElement>;
358
+ onPointerOver: React.PointerEventHandler<HTMLInputElement>;
359
+ onPointerOverCapture: React.PointerEventHandler<HTMLInputElement>;
360
+ onPointerOut: React.PointerEventHandler<HTMLInputElement>;
361
+ onPointerOutCapture: React.PointerEventHandler<HTMLInputElement>;
362
+ onGotPointerCapture: React.PointerEventHandler<HTMLInputElement>;
363
+ onGotPointerCaptureCapture: React.PointerEventHandler<HTMLInputElement>;
364
+ onLostPointerCapture: React.PointerEventHandler<HTMLInputElement>;
365
+ onLostPointerCaptureCapture: React.PointerEventHandler<HTMLInputElement>;
366
+ onScroll: React.UIEventHandler<HTMLInputElement>;
367
+ onScrollCapture: React.UIEventHandler<HTMLInputElement>;
368
+ onWheel: React.WheelEventHandler<HTMLInputElement>;
369
+ onWheelCapture: React.WheelEventHandler<HTMLInputElement>;
370
+ onAnimationStart: React.AnimationEventHandler<HTMLInputElement>;
371
+ onAnimationStartCapture: React.AnimationEventHandler<HTMLInputElement>;
372
+ onAnimationEnd: React.AnimationEventHandler<HTMLInputElement>;
373
+ onAnimationEndCapture: React.AnimationEventHandler<HTMLInputElement>;
374
+ onAnimationIteration: React.AnimationEventHandler<HTMLInputElement>;
375
+ onAnimationIterationCapture: React.AnimationEventHandler<HTMLInputElement>;
376
+ onTransitionEnd: React.TransitionEventHandler<HTMLInputElement>;
377
+ onTransitionEndCapture: React.TransitionEventHandler<HTMLInputElement>;
378
+ margin: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
379
+ m: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
380
+ marginTop: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
381
+ mt: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
382
+ marginRight: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
383
+ mr: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
384
+ marginBottom: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
385
+ mb: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
386
+ marginLeft: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
387
+ ml: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
388
+ mx: string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ({} & "auto") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}) | ("auto" & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ({} & "auto") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}) | ("auto" & {}), import("@xstyled/system").Theme>;
389
+ my: string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ({} & "auto") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}) | ("auto" & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ({} & "auto") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}) | ("auto" & {}), import("@xstyled/system").Theme>;
390
+ padding: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
391
+ p: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
392
+ paddingTop: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
393
+ pt: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
394
+ paddingRight: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
395
+ pr: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
396
+ paddingBottom: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
397
+ pb: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
398
+ paddingLeft: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
399
+ pl: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
400
+ px: string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}), import("@xstyled/system").Theme>;
401
+ py: string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}) | ("inherit" & {}) | ({} & "inherit") | ({} & "-moz-initial") | ({} & "initial") | ({} & "revert") | ({} & "unset") | ("-moz-initial" & {}) | ("initial" & {}) | ("revert" & {}) | ("unset" & {}), import("@xstyled/system").Theme>;
402
+ spaceX: string | import("@xstyled/system").ThemeProp<string, import("@xstyled/system").Theme>;
403
+ spaceY: string | import("@xstyled/system").ThemeProp<string, import("@xstyled/system").Theme>;
404
+ spaceXReverse: boolean | import("@xstyled/system").ThemeProp<boolean, import("@xstyled/system").Theme>;
405
+ spaceYReverse: boolean | import("@xstyled/system").ThemeProp<boolean, import("@xstyled/system").Theme>;
406
+ w: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
407
+ h: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
408
+ maxWidth: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
409
+ maxW: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
410
+ maxHeight: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
411
+ maxH: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
412
+ minWidth: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
413
+ minHeight: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
414
+ minH: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
415
+ maskSize: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
416
+ display: "ruby" | "table" | "none" | "inline" | "grid" | "inherit" | (string & {}) | "-moz-initial" | "initial" | "revert" | "unset" | "block" | "run-in" | "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "ruby-base" | "ruby-base-container" | "ruby-text" | "ruby-text-container" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row" | "table-row-group" | "-ms-inline-flexbox" | "-ms-inline-grid" | "-webkit-inline-flex" | "inline-block" | "inline-flex" | "inline-grid" | "inline-list-item" | "inline-table" | "contents" | "list-item" | import("@xstyled/system").ThemeProp<import("csstype").Property.Display, import("@xstyled/system").Theme>;
417
+ float: "none" | "inherit" | "right" | "left" | "-moz-initial" | "initial" | "revert" | "unset" | "inline-end" | "inline-start" | import("@xstyled/system").ThemeProp<import("csstype").Property.Float, import("@xstyled/system").Theme>;
418
+ boxSizing: "inherit" | "-moz-initial" | "initial" | "revert" | "unset" | "border-box" | "content-box" | import("@xstyled/system").ThemeProp<import("csstype").Property.BoxSizing, import("@xstyled/system").Theme>;
419
+ container: boolean | import("@xstyled/system").ThemeProp<boolean, import("@xstyled/system").Theme>;
420
+ overflow: "hidden" | "inherit" | (string & {}) | "-moz-initial" | "initial" | "revert" | "unset" | "auto" | "-moz-hidden-unscrollable" | "clip" | "scroll" | "visible" | import("@xstyled/system").ThemeProp<import("csstype").Property.Overflow, import("@xstyled/system").Theme>;
421
+ overflowX: "hidden" | "inherit" | "-moz-initial" | "initial" | "revert" | "unset" | "auto" | "-moz-hidden-unscrollable" | "clip" | "scroll" | "visible" | import("@xstyled/system").ThemeProp<import("csstype").Property.OverflowX, import("@xstyled/system").Theme>;
422
+ overflowY: "hidden" | "inherit" | "-moz-initial" | "initial" | "revert" | "unset" | "auto" | "-moz-hidden-unscrollable" | "clip" | "scroll" | "visible" | import("@xstyled/system").ThemeProp<import("csstype").Property.OverflowY, import("@xstyled/system").Theme>;
423
+ position: "fixed" | "inherit" | "-moz-initial" | "initial" | "revert" | "unset" | "-webkit-sticky" | "absolute" | "relative" | "static" | "sticky" | import("@xstyled/system").ThemeProp<import("csstype").Property.Position, import("@xstyled/system").Theme>;
424
+ zIndex: string | (string & {}) | (number & {}) | import("@xstyled/system").ThemeProp<string | (string & {}) | (number & {}), import("@xstyled/system").Theme>;
425
+ top: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
426
+ right: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
427
+ bottom: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
428
+ left: string | 0 | (string & {}) | import("@xstyled/system").ThemeProp<string | 0 | (string & {}), import("@xstyled/system").Theme>;
429
+ visibility: "hidden" | "inherit" | "-moz-initial" | "initial" | "revert" | "unset" | "visible" | "collapse" | import("@xstyled/system").ThemeProp<import("csstype").Property.Visibility, import("@xstyled/system").Theme>;
430
+ overscrollBehavior: "none" | "inherit" | (string & {}) | "-moz-initial" | "initial" | "revert" | "unset" | "auto" | "contain" | import("@xstyled/system").ThemeProp<import("csstype").Property.OverscrollBehavior, import("@xstyled/system").Theme>;
431
+ objectFit: "none" | "inherit" | "-moz-initial" | "initial" | "revert" | "unset" | "contain" | "cover" | "fill" | "scale-down" | import("@xstyled/system").ThemeProp<import("csstype").Property.ObjectFit, import("@xstyled/system").Theme>;
432
+ };
433
+ xstyledProps: import("@elliemae/ds-props-helpers").XstyledProps;
434
+ };
@@ -0,0 +1,4 @@
1
+ export declare const DSInputTextDataTestIds: {
2
+ INPUT: string;
3
+ CLEAR_BUTTON: string;
4
+ };
@@ -0,0 +1,2 @@
1
+ export * from './data-test-ids';
2
+ export * from './theming';
@@ -0,0 +1,6 @@
1
+ export declare const DSInputTextName = "ds-input-text";
2
+ export declare const DSInputTextSlots: {
3
+ INPUT_WRAPPER: string;
4
+ INPUT: string;
5
+ CLEAR_BUTTON: string;
6
+ };
@@ -0,0 +1,2 @@
1
+ export * from './DSInputText';
2
+ export * from './exported-related';