@elliemae/ds-controlled-form 2.3.0-next.16 → 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.
- package/cjs/controlled-mask-hook/hooks/index.js +10 -0
- package/cjs/controlled-mask-hook/hooks/usePhoneMask.js +72 -0
- package/cjs/controlled-mask-hook/index.js +10 -0
- package/cjs/controlled-mask-hook/react-desc-prop-types.js +19 -0
- package/cjs/controlled-mask-hook/utils/addSpecialCharacters.js +50 -0
- package/cjs/controlled-mask-hook/utils/getPartialMaskedPos.js +15 -0
- package/cjs/controlled-mask-hook/utils/index.js +13 -0
- package/cjs/controlled-mask-hook/utils/setCursorPosition.js +9 -0
- package/cjs/controlled-text-input/DSInputText.js +89 -0
- package/cjs/controlled-text-input/config/useInputText.js +54 -0
- package/cjs/controlled-text-input/exported-related/data-test-ids.js +10 -0
- package/cjs/controlled-text-input/exported-related/index.js +12 -0
- package/cjs/controlled-text-input/exported-related/theming.js +13 -0
- package/cjs/controlled-text-input/index.js +15 -0
- package/cjs/controlled-text-input/react-desc-prop-types.js +45 -0
- package/cjs/controlled-text-input/styled/borders.js +33 -0
- package/cjs/controlled-text-input/styled/components.js +38 -0
- package/cjs/index.js +17 -6
- package/esm/controlled-mask-hook/hooks/index.js +1 -0
- package/esm/controlled-mask-hook/hooks/usePhoneMask.js +67 -0
- package/esm/controlled-mask-hook/index.js +1 -0
- package/esm/controlled-mask-hook/react-desc-prop-types.js +14 -0
- package/esm/controlled-mask-hook/utils/addSpecialCharacters.js +46 -0
- package/esm/controlled-mask-hook/utils/getPartialMaskedPos.js +11 -0
- package/esm/controlled-mask-hook/utils/index.js +3 -0
- package/esm/controlled-mask-hook/utils/setCursorPosition.js +5 -0
- package/esm/controlled-text-input/DSInputText.js +78 -0
- package/esm/controlled-text-input/config/useInputText.js +50 -0
- package/esm/controlled-text-input/exported-related/data-test-ids.js +6 -0
- package/esm/controlled-text-input/exported-related/index.js +2 -0
- package/esm/controlled-text-input/exported-related/theming.js +8 -0
- package/esm/controlled-text-input/index.js +3 -0
- package/esm/controlled-text-input/react-desc-prop-types.js +36 -0
- package/esm/controlled-text-input/styled/borders.js +24 -0
- package/esm/controlled-text-input/styled/components.js +28 -0
- package/esm/index.js +6 -2
- package/package.json +79 -10
- package/types/controlled-autocomplete/parts/controls/styled.d.ts +1 -1
- package/types/controlled-combobox/parts/controls/styled.d.ts +2 -2
- package/types/controlled-combobox/parts/dropdown-indicator/styled.d.ts +1 -1
- package/types/controlled-date-time-picker/parts/Pickers/Calendar/Styleds.d.ts +4 -4
- package/types/controlled-date-time-picker/parts/Pickers/CalendarWithTimeWheel/Styleds.d.ts +1 -1
- package/types/controlled-date-time-picker/parts/Pickers/TimeWheel/Styleds.d.ts +4 -4
- package/types/controlled-date-time-picker/parts/Styleds.d.ts +6 -6
- package/types/controlled-mask-hook/hooks/index.d.ts +1 -0
- package/types/controlled-mask-hook/hooks/usePhoneMask.d.ts +3 -0
- package/types/controlled-mask-hook/index.d.ts +2 -0
- package/types/controlled-mask-hook/react-desc-prop-types.d.ts +17 -0
- package/types/controlled-mask-hook/tests/usePhoneMask.test.d.ts +1 -0
- package/types/controlled-mask-hook/utils/addSpecialCharacters.d.ts +9 -0
- package/types/controlled-mask-hook/utils/getPartialMaskedPos.d.ts +1 -0
- package/types/controlled-mask-hook/utils/index.d.ts +3 -0
- package/types/controlled-mask-hook/utils/setCursorPosition.d.ts +1 -0
- package/types/controlled-text-input/DSInputText.d.ts +4 -0
- package/types/controlled-text-input/config/useInputText.d.ts +434 -0
- package/types/controlled-text-input/exported-related/data-test-ids.d.ts +4 -0
- package/types/controlled-text-input/exported-related/index.d.ts +2 -0
- package/types/controlled-text-input/exported-related/theming.d.ts +6 -0
- package/types/controlled-text-input/index.d.ts +2 -0
- package/types/controlled-text-input/react-desc-prop-types.d.ts +20 -0
- package/types/controlled-text-input/styled/borders.d.ts +10 -0
- package/types/controlled-text-input/styled/components.d.ts +3 -0
- package/types/controlled-text-input/tests/DSInput.events.test.d.ts +1 -0
- package/types/controlled-text-input/tests/DSInput.keyboard.test.d.ts +1 -0
- package/types/controlled-text-input/tests/DSInput.test.d.ts +1 -0
- package/types/index.d.ts +4 -2
|
@@ -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 @@
|
|
|
1
|
+
export declare const setCursorPosition: (input: HTMLInputElement, position: number) => void;
|
|
@@ -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,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { GlobalAttributesT, XstyledProps } from '@elliemae/ds-props-helpers';
|
|
3
|
+
export declare namespace DSInputTextT {
|
|
4
|
+
interface IProps {
|
|
5
|
+
value?: string | number;
|
|
6
|
+
onValueChange?: (nextValue: string | number, e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
7
|
+
onClear?: () => void;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
innerRef?: React.RefObject<HTMLInputElement> | ((_ref: HTMLInputElement) => void);
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
readOnly?: boolean;
|
|
12
|
+
hasError?: boolean;
|
|
13
|
+
inputSize?: 's' | 'm';
|
|
14
|
+
clearable?: boolean;
|
|
15
|
+
}
|
|
16
|
+
interface Props extends IProps, Omit<GlobalAttributesT<HTMLInputElement>, keyof IProps>, XstyledProps {
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export declare const defaultProps: DSInputTextT.Props;
|
|
20
|
+
export declare const DSInputTextPropTypes: React.WeakValidationMap<unknown>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DSInputTextT } from '../react-desc-prop-types';
|
|
2
|
+
interface BorderNecessaryProps {
|
|
3
|
+
isDisabled: DSInputTextT.Props['disabled'];
|
|
4
|
+
hasError: DSInputTextT.Props['hasError'];
|
|
5
|
+
isReadOnly: DSInputTextT.Props['readOnly'];
|
|
6
|
+
hasFocus: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const getBorderCss: (props: BorderNecessaryProps) => any;
|
|
9
|
+
export declare const getHoverBorderCss: (props: BorderNecessaryProps) => any;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/types/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
export * from './controlled-autocomplete';
|
|
1
2
|
export * from './controlled-checkbox';
|
|
3
|
+
export * from './controlled-combobox';
|
|
2
4
|
export * from './controlled-date-range-picker';
|
|
3
5
|
export * from './controlled-date-time-picker';
|
|
6
|
+
export * from './controlled-mask-hook';
|
|
7
|
+
export * from './controlled-text-input';
|
|
4
8
|
export * from './controlled-toggle';
|
|
5
|
-
export * from './controlled-autocomplete';
|
|
6
|
-
export * from './controlled-combobox';
|