@elliemae/ds-dialog 2.3.0-next.0 → 3.0.0-alpha.0
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/dist/cjs/DSDialog.js +99 -0
- package/dist/cjs/DSDialog.js.map +7 -0
- package/dist/cjs/DSDialogDatatestid.js +38 -0
- package/dist/cjs/DSDialogDatatestid.js.map +7 -0
- package/dist/cjs/DSDialogInternalTypes.js +27 -0
- package/dist/cjs/DSDialogInternalTypes.js.map +7 -0
- package/dist/cjs/DSDialogTypes.js +27 -0
- package/dist/cjs/DSDialogTypes.js.map +7 -0
- package/dist/cjs/defaultProps.js +45 -0
- package/dist/cjs/defaultProps.js.map +7 -0
- package/dist/cjs/index.js +94 -0
- package/dist/cjs/index.js.map +7 -0
- package/dist/cjs/propTypes.js +46 -0
- package/dist/cjs/propTypes.js.map +7 -0
- package/dist/cjs/styles.js +151 -0
- package/dist/cjs/styles.js.map +7 -0
- package/dist/cjs/utils.js +55 -0
- package/dist/cjs/utils.js.map +7 -0
- package/dist/esm/DSDialog.js +75 -0
- package/dist/esm/DSDialog.js.map +7 -0
- package/dist/esm/DSDialogDatatestid.js +9 -0
- package/dist/esm/DSDialogDatatestid.js.map +7 -0
- package/dist/esm/DSDialogInternalTypes.js +2 -0
- package/dist/esm/DSDialogInternalTypes.js.map +7 -0
- package/dist/esm/DSDialogTypes.js +2 -0
- package/dist/esm/DSDialogTypes.js.map +7 -0
- package/dist/esm/defaultProps.js +16 -0
- package/dist/esm/defaultProps.js.map +7 -0
- package/{esm → dist/esm}/index.js +48 -19
- package/dist/esm/index.js.map +7 -0
- package/dist/esm/propTypes.js +17 -0
- package/dist/esm/propTypes.js.map +7 -0
- package/dist/esm/styles.js +122 -0
- package/dist/esm/styles.js.map +7 -0
- package/dist/esm/utils.js +26 -0
- package/dist/esm/utils.js.map +7 -0
- package/dist/types/DSDialog.d.ts +5 -0
- package/{types → dist/types}/DSDialogDatatestid.d.ts +0 -0
- package/dist/types/DSDialogInternalTypes.d.ts +25 -0
- package/dist/types/DSDialogTypes.d.ts +11 -0
- package/dist/types/defaultProps.d.ts +2 -0
- package/{types → dist/types}/index.d.ts +0 -0
- package/dist/types/propTypes.d.ts +2 -0
- package/{types → dist/types}/styles.d.ts +2 -14
- package/{types → dist/types}/utils.d.ts +1 -2
- package/package.json +46 -34
- package/cjs/DSDialog.js +0 -124
- package/cjs/DSDialogDatatestid.js +0 -10
- package/cjs/defaultProps.js +0 -19
- package/cjs/index.js +0 -70
- package/cjs/propTypes.js +0 -32
- package/cjs/sharedTypes.js +0 -7
- package/cjs/styles.js +0 -145
- package/cjs/utils.js +0 -35
- package/esm/DSDialog.js +0 -112
- package/esm/DSDialogDatatestid.js +0 -6
- package/esm/defaultProps.js +0 -15
- package/esm/propTypes.js +0 -24
- package/esm/sharedTypes.js +0 -5
- package/esm/styles.js +0 -125
- package/esm/utils.js +0 -28
- package/types/DSDialog.d.ts +0 -376
- package/types/defaultProps.d.ts +0 -2
- package/types/propTypes.d.ts +0 -387
- package/types/sharedTypes.d.ts +0 -6
package/types/defaultProps.d.ts
DELETED
package/types/propTypes.d.ts
DELETED
|
@@ -1,387 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare namespace DSDialogT {
|
|
3
|
-
type Sizes = 'default' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large';
|
|
4
|
-
interface DefaultProps {
|
|
5
|
-
isOpen: boolean;
|
|
6
|
-
centered: boolean;
|
|
7
|
-
size: Sizes;
|
|
8
|
-
removeAutoFocus: boolean;
|
|
9
|
-
zIndex: number;
|
|
10
|
-
onClickOutside: () => void;
|
|
11
|
-
onClose: () => void;
|
|
12
|
-
}
|
|
13
|
-
interface PropsRequired {
|
|
14
|
-
children: React.ReactNode;
|
|
15
|
-
}
|
|
16
|
-
interface Props extends DefaultProps, PropsRequired {
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
export declare const propTypes: {
|
|
20
|
-
size: import("@elliemae/ds-props-helpers/types/propTypes/types").ReactDescT;
|
|
21
|
-
'aria-*': any;
|
|
22
|
-
'on-*': any;
|
|
23
|
-
'data-*': any;
|
|
24
|
-
'all HTML attributes': any;
|
|
25
|
-
about: any;
|
|
26
|
-
accept: any;
|
|
27
|
-
acceptCharset: any;
|
|
28
|
-
accessKey: any;
|
|
29
|
-
action: any;
|
|
30
|
-
allowFullScreen: any;
|
|
31
|
-
allowTransparency: any;
|
|
32
|
-
alt: any;
|
|
33
|
-
'aria-activedescendant': any;
|
|
34
|
-
'aria-atomic': any;
|
|
35
|
-
'aria-autocomplete': any;
|
|
36
|
-
'aria-busy': any;
|
|
37
|
-
'aria-checked': any;
|
|
38
|
-
'aria-colcount': any;
|
|
39
|
-
'aria-colindex': any;
|
|
40
|
-
'aria-colspan': any;
|
|
41
|
-
'aria-controls': any;
|
|
42
|
-
'aria-current': any;
|
|
43
|
-
'aria-describedby': any;
|
|
44
|
-
'aria-details': any;
|
|
45
|
-
'aria-disabled': any;
|
|
46
|
-
'aria-dropeffect': any;
|
|
47
|
-
'aria-errormessage': any;
|
|
48
|
-
'aria-expanded': any;
|
|
49
|
-
'aria-flowto': any;
|
|
50
|
-
'aria-grabbed': any;
|
|
51
|
-
'aria-haspopup': any;
|
|
52
|
-
'aria-hidden': any;
|
|
53
|
-
'aria-invalid': any;
|
|
54
|
-
'aria-keyshortcuts': any;
|
|
55
|
-
'aria-label': any;
|
|
56
|
-
'aria-labelledby': any;
|
|
57
|
-
'aria-level': any;
|
|
58
|
-
'aria-live': any;
|
|
59
|
-
'aria-modal': any;
|
|
60
|
-
'aria-multiline': any;
|
|
61
|
-
'aria-multiselectable': any;
|
|
62
|
-
'aria-orientation': any;
|
|
63
|
-
'aria-owns': any;
|
|
64
|
-
'aria-placeholder': any;
|
|
65
|
-
'aria-posinset': any;
|
|
66
|
-
'aria-pressed': any;
|
|
67
|
-
'aria-readonly': any;
|
|
68
|
-
'aria-relevant': any;
|
|
69
|
-
'aria-required': any;
|
|
70
|
-
'aria-roledescription': any;
|
|
71
|
-
'aria-rowcount': any;
|
|
72
|
-
'aria-rowindex': any;
|
|
73
|
-
'aria-rowspan': any;
|
|
74
|
-
'aria-selected': any;
|
|
75
|
-
'aria-setsize': any;
|
|
76
|
-
'aria-sort': any;
|
|
77
|
-
'aria-valuemax': any;
|
|
78
|
-
'aria-valuemin': any;
|
|
79
|
-
'aria-valuenow': any;
|
|
80
|
-
'aria-valuetext': any;
|
|
81
|
-
as: any;
|
|
82
|
-
async: any;
|
|
83
|
-
autoCapitalize: any;
|
|
84
|
-
autoComplete: any;
|
|
85
|
-
autoCorrect: any;
|
|
86
|
-
autoFocus: any;
|
|
87
|
-
autoPlay: any;
|
|
88
|
-
autoSave: any;
|
|
89
|
-
capture: any;
|
|
90
|
-
cellPadding: any;
|
|
91
|
-
cellSpacing: any;
|
|
92
|
-
challenge: any;
|
|
93
|
-
charSet: any;
|
|
94
|
-
checked: any;
|
|
95
|
-
cite: any;
|
|
96
|
-
classID: any;
|
|
97
|
-
className: any;
|
|
98
|
-
color: any;
|
|
99
|
-
cols: any;
|
|
100
|
-
colSpan: any;
|
|
101
|
-
content: any;
|
|
102
|
-
contentEditable: any;
|
|
103
|
-
contextMenu: any;
|
|
104
|
-
controls: any;
|
|
105
|
-
coords: any;
|
|
106
|
-
crossOrigin: any;
|
|
107
|
-
data: any;
|
|
108
|
-
datatype: any;
|
|
109
|
-
dateTime: any;
|
|
110
|
-
default: any;
|
|
111
|
-
defaultChecked: any;
|
|
112
|
-
defaultValue: any;
|
|
113
|
-
defer: any;
|
|
114
|
-
dir: any;
|
|
115
|
-
disabled: any;
|
|
116
|
-
download: any;
|
|
117
|
-
draggable: any;
|
|
118
|
-
encType: any;
|
|
119
|
-
form: any;
|
|
120
|
-
formAction: any;
|
|
121
|
-
formEncType: any;
|
|
122
|
-
formMethod: any;
|
|
123
|
-
formNoValidate: any;
|
|
124
|
-
formTarget: any;
|
|
125
|
-
frameBorder: any;
|
|
126
|
-
headers: any;
|
|
127
|
-
height: any;
|
|
128
|
-
hidden: any;
|
|
129
|
-
high: any;
|
|
130
|
-
href: any;
|
|
131
|
-
hrefLang: any;
|
|
132
|
-
htmlFor: any;
|
|
133
|
-
httpEquiv: any;
|
|
134
|
-
id: any;
|
|
135
|
-
inlist: any;
|
|
136
|
-
inputMode: any;
|
|
137
|
-
integrity: any;
|
|
138
|
-
is: any;
|
|
139
|
-
itemID: any;
|
|
140
|
-
itemProp: any;
|
|
141
|
-
itemRef: any;
|
|
142
|
-
itemScope: any;
|
|
143
|
-
itemType: any;
|
|
144
|
-
keyParams: any;
|
|
145
|
-
keyType: any;
|
|
146
|
-
kind: any;
|
|
147
|
-
label: any;
|
|
148
|
-
lang: any;
|
|
149
|
-
list: any;
|
|
150
|
-
loop: any;
|
|
151
|
-
low: any;
|
|
152
|
-
manifest: any;
|
|
153
|
-
marginHeight: any;
|
|
154
|
-
marginWidth: any;
|
|
155
|
-
max: any;
|
|
156
|
-
maxLength: any;
|
|
157
|
-
media: any;
|
|
158
|
-
mediaGroup: any;
|
|
159
|
-
method: any;
|
|
160
|
-
min: any;
|
|
161
|
-
minLength: any;
|
|
162
|
-
multiple: any;
|
|
163
|
-
muted: any;
|
|
164
|
-
name: any;
|
|
165
|
-
nonce: any;
|
|
166
|
-
noValidate: any;
|
|
167
|
-
onAbort: any;
|
|
168
|
-
onAbortCapture: any;
|
|
169
|
-
onAnimationEnd: any;
|
|
170
|
-
onAnimationEndCapture: any;
|
|
171
|
-
onAnimationIteration: any;
|
|
172
|
-
onAnimationIterationCapture: any;
|
|
173
|
-
onAnimationStart: any;
|
|
174
|
-
onAnimationStartCapture: any;
|
|
175
|
-
onAuxClick: any;
|
|
176
|
-
onAuxClickCapture: any;
|
|
177
|
-
onBeforeInput: any;
|
|
178
|
-
onBeforeInputCapture: any;
|
|
179
|
-
onBlur: any;
|
|
180
|
-
onBlurCapture: any;
|
|
181
|
-
onCanPlay: any;
|
|
182
|
-
onCanPlayCapture: any;
|
|
183
|
-
onCanPlayThrough: any;
|
|
184
|
-
onCanPlayThroughCapture: any;
|
|
185
|
-
onChange: any;
|
|
186
|
-
onChangeCapture: any;
|
|
187
|
-
onClick: any;
|
|
188
|
-
onClickCapture: any;
|
|
189
|
-
onCompositionEnd: any;
|
|
190
|
-
onCompositionEndCapture: any;
|
|
191
|
-
onCompositionStart: any;
|
|
192
|
-
onCompositionStartCapture: any;
|
|
193
|
-
onCompositionUpdate: any;
|
|
194
|
-
onCompositionUpdateCapture: any;
|
|
195
|
-
onContextMenu: any;
|
|
196
|
-
onContextMenuCapture: any;
|
|
197
|
-
onCopy: any;
|
|
198
|
-
onCopyCapture: any;
|
|
199
|
-
onCut: any;
|
|
200
|
-
onCutCapture: any;
|
|
201
|
-
onDoubleClick: any;
|
|
202
|
-
onDoubleClickCapture: any;
|
|
203
|
-
onDrag: any;
|
|
204
|
-
onDragCapture: any;
|
|
205
|
-
onDragEnd: any;
|
|
206
|
-
onDragEndCapture: any;
|
|
207
|
-
onDragEnter: any;
|
|
208
|
-
onDragEnterCapture: any;
|
|
209
|
-
onDragExit: any;
|
|
210
|
-
onDragExitCapture: any;
|
|
211
|
-
onDragLeave: any;
|
|
212
|
-
onDragLeaveCapture: any;
|
|
213
|
-
onDragOver: any;
|
|
214
|
-
onDragOverCapture: any;
|
|
215
|
-
onDragStart: any;
|
|
216
|
-
onDragStartCapture: any;
|
|
217
|
-
onDrop: any;
|
|
218
|
-
onDropCapture: any;
|
|
219
|
-
onDurationChange: any;
|
|
220
|
-
onDurationChangeCapture: any;
|
|
221
|
-
onEmptied: any;
|
|
222
|
-
onEmptiedCapture: any;
|
|
223
|
-
onEncrypted: any;
|
|
224
|
-
onEncryptedCapture: any;
|
|
225
|
-
onEnded: any;
|
|
226
|
-
onEndedCapture: any;
|
|
227
|
-
onError: any;
|
|
228
|
-
onErrorCapture: any;
|
|
229
|
-
onFocus: any;
|
|
230
|
-
onFocusCapture: any;
|
|
231
|
-
onGotPointerCapture: any;
|
|
232
|
-
onGotPointerCaptureCapture: any;
|
|
233
|
-
onInput: any;
|
|
234
|
-
onInputCapture: any;
|
|
235
|
-
onInvalid: any;
|
|
236
|
-
onInvalidCapture: any;
|
|
237
|
-
onKeyDown: any;
|
|
238
|
-
onKeyDownCapture: any;
|
|
239
|
-
onKeyPress: any;
|
|
240
|
-
onKeyPressCapture: any;
|
|
241
|
-
onKeyUp: any;
|
|
242
|
-
onKeyUpCapture: any;
|
|
243
|
-
onLoad: any;
|
|
244
|
-
onLoadCapture: any;
|
|
245
|
-
onLoadedData: any;
|
|
246
|
-
onLoadedDataCapture: any;
|
|
247
|
-
onLoadedMetadata: any;
|
|
248
|
-
onLoadedMetadataCapture: any;
|
|
249
|
-
onLoadStart: any;
|
|
250
|
-
onLoadStartCapture: any;
|
|
251
|
-
onLostPointerCapture: any;
|
|
252
|
-
onLostPointerCaptureCapture: any;
|
|
253
|
-
onMouseDown: any;
|
|
254
|
-
onMouseDownCapture: any;
|
|
255
|
-
onMouseEnter: any;
|
|
256
|
-
onMouseLeave: any;
|
|
257
|
-
onMouseMove: any;
|
|
258
|
-
onMouseMoveCapture: any;
|
|
259
|
-
onMouseOut: any;
|
|
260
|
-
onMouseOutCapture: any;
|
|
261
|
-
onMouseOver: any;
|
|
262
|
-
onMouseOverCapture: any;
|
|
263
|
-
onMouseUp: any;
|
|
264
|
-
onMouseUpCapture: any;
|
|
265
|
-
onPaste: any;
|
|
266
|
-
onPasteCapture: any;
|
|
267
|
-
onPause: any;
|
|
268
|
-
onPauseCapture: any;
|
|
269
|
-
onPlay: any;
|
|
270
|
-
onPlayCapture: any;
|
|
271
|
-
onPlaying: any;
|
|
272
|
-
onPlayingCapture: any;
|
|
273
|
-
onPointerCancel: any;
|
|
274
|
-
onPointerCancelCapture: any;
|
|
275
|
-
onPointerDown: any;
|
|
276
|
-
onPointerDownCapture: any;
|
|
277
|
-
onPointerEnter: any;
|
|
278
|
-
onPointerEnterCapture: any;
|
|
279
|
-
onPointerLeave: any;
|
|
280
|
-
onPointerLeaveCapture: any;
|
|
281
|
-
onPointerMove: any;
|
|
282
|
-
onPointerMoveCapture: any;
|
|
283
|
-
onPointerOut: any;
|
|
284
|
-
onPointerOutCapture: any;
|
|
285
|
-
onPointerOver: any;
|
|
286
|
-
onPointerOverCapture: any;
|
|
287
|
-
onPointerUp: any;
|
|
288
|
-
onPointerUpCapture: any;
|
|
289
|
-
onProgress: any;
|
|
290
|
-
onProgressCapture: any;
|
|
291
|
-
onRateChange: any;
|
|
292
|
-
onRateChangeCapture: any;
|
|
293
|
-
onReset: any;
|
|
294
|
-
onResetCapture: any;
|
|
295
|
-
onScroll: any;
|
|
296
|
-
onScrollCapture: any;
|
|
297
|
-
onSeeked: any;
|
|
298
|
-
onSeekedCapture: any;
|
|
299
|
-
onSeeking: any;
|
|
300
|
-
onSeekingCapture: any;
|
|
301
|
-
onSelect: any;
|
|
302
|
-
onSelectCapture: any;
|
|
303
|
-
onStalled: any;
|
|
304
|
-
onStalledCapture: any;
|
|
305
|
-
onSubmit: any;
|
|
306
|
-
onSubmitCapture: any;
|
|
307
|
-
onSuspend: any;
|
|
308
|
-
onSuspendCapture: any;
|
|
309
|
-
onTimeUpdate: any;
|
|
310
|
-
onTimeUpdateCapture: any;
|
|
311
|
-
onTouchCancel: any;
|
|
312
|
-
onTouchCancelCapture: any;
|
|
313
|
-
onTouchEnd: any;
|
|
314
|
-
onTouchEndCapture: any;
|
|
315
|
-
onTouchMove: any;
|
|
316
|
-
onTouchMoveCapture: any;
|
|
317
|
-
onTouchStart: any;
|
|
318
|
-
onTouchStartCapture: any;
|
|
319
|
-
onTransitionEnd: any;
|
|
320
|
-
onTransitionEndCapture: any;
|
|
321
|
-
onVolumeChange: any;
|
|
322
|
-
onVolumeChangeCapture: any;
|
|
323
|
-
onWaiting: any;
|
|
324
|
-
onWaitingCapture: any;
|
|
325
|
-
onWheel: any;
|
|
326
|
-
onWheelCapture: any;
|
|
327
|
-
open: any;
|
|
328
|
-
optimum: any;
|
|
329
|
-
pattern: any;
|
|
330
|
-
placeholder: any;
|
|
331
|
-
playsInline: any;
|
|
332
|
-
poster: any;
|
|
333
|
-
prefix: any;
|
|
334
|
-
preload: any;
|
|
335
|
-
property: any;
|
|
336
|
-
radioGroup: any;
|
|
337
|
-
readOnly: any;
|
|
338
|
-
rel: any;
|
|
339
|
-
required: any;
|
|
340
|
-
resource: any;
|
|
341
|
-
results: any;
|
|
342
|
-
reversed: any;
|
|
343
|
-
role: any;
|
|
344
|
-
rows: any;
|
|
345
|
-
rowSpan: any;
|
|
346
|
-
sandbox: any;
|
|
347
|
-
scope: any;
|
|
348
|
-
scoped: any;
|
|
349
|
-
scrolling: any;
|
|
350
|
-
seamless: any;
|
|
351
|
-
security: any;
|
|
352
|
-
selected: any;
|
|
353
|
-
shape: any;
|
|
354
|
-
sizes: any;
|
|
355
|
-
slot: any;
|
|
356
|
-
span: any;
|
|
357
|
-
spellCheck: any;
|
|
358
|
-
src: any;
|
|
359
|
-
srcDoc: any;
|
|
360
|
-
srcLang: any;
|
|
361
|
-
srcSet: any;
|
|
362
|
-
start: any;
|
|
363
|
-
step: any;
|
|
364
|
-
style: any;
|
|
365
|
-
summary: any;
|
|
366
|
-
suppressContentEditableWarning: any;
|
|
367
|
-
suppressHydrationWarning: any;
|
|
368
|
-
tabIndex: any;
|
|
369
|
-
target: any;
|
|
370
|
-
title: any;
|
|
371
|
-
translate: any;
|
|
372
|
-
type: any;
|
|
373
|
-
typeof: any;
|
|
374
|
-
unselectable: any;
|
|
375
|
-
useMap: any;
|
|
376
|
-
value: any;
|
|
377
|
-
vocab: any;
|
|
378
|
-
width: any;
|
|
379
|
-
wmode: any;
|
|
380
|
-
wrap: any;
|
|
381
|
-
isOpen: import("@elliemae/ds-props-helpers/types/propTypes/types").ReactDescT;
|
|
382
|
-
children: import("@elliemae/ds-props-helpers/types/propTypes/types").ReactDescT;
|
|
383
|
-
centered: import("@elliemae/ds-props-helpers/types/propTypes/types").ReactDescT;
|
|
384
|
-
removeAutoFocus: import("@elliemae/ds-props-helpers/types/propTypes/types").ReactDescT;
|
|
385
|
-
onClickOutside: import("@elliemae/ds-props-helpers/types/propTypes/types").ReactDescT;
|
|
386
|
-
onClose: import("@elliemae/ds-props-helpers/types/propTypes/types").ReactDescT;
|
|
387
|
-
};
|