norma-library 0.4.1 → 0.4.3

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 (138) hide show
  1. package/dist/components/button/button.d.ts +3 -0
  2. package/dist/components/button/index.d.ts +1 -0
  3. package/dist/components/{Button → button}/types.d.ts +18 -18
  4. package/dist/components/card/card-header.d.ts +3 -0
  5. package/dist/components/card/card.d.ts +3 -0
  6. package/dist/components/card/index.d.ts +1 -0
  7. package/dist/components/card/styles.d.ts +811 -0
  8. package/dist/components/{Card → card}/types.d.ts +12 -12
  9. package/dist/components/checkbox/checkbox.d.ts +3 -0
  10. package/dist/components/checkbox/index.d.ts +1 -0
  11. package/dist/components/{Checkbox → checkbox}/types.d.ts +23 -23
  12. package/dist/components/icon/default.d.ts +210 -0
  13. package/dist/components/icon/defaultIcon.d.ts +5 -0
  14. package/dist/components/icon/icons-ia.d.ts +71 -0
  15. package/dist/components/icon/index.d.ts +234 -0
  16. package/dist/components/icon/norma.d.ts +30 -0
  17. package/dist/components/{Icon/NormaIcon.d.ts → icon/normaIcon.d.ts} +13 -13
  18. package/dist/components/icon/styles.d.ts +481 -0
  19. package/dist/components/{Icon → icon}/svg.d.ts +6 -6
  20. package/dist/components/{Icon → icon}/types.d.ts +12 -12
  21. package/dist/components/index.d.ts +8 -19
  22. package/dist/components/modal/index.d.ts +1 -0
  23. package/dist/components/{Modal/Modal.d.ts → modal/modal.d.ts} +3 -4
  24. package/dist/components/modal/modalFooter.d.ts +3 -0
  25. package/dist/components/modal/modalHeader.d.ts +3 -0
  26. package/dist/components/modal/styles.d.ts +540 -0
  27. package/dist/components/{Modal → modal}/types.d.ts +27 -24
  28. package/dist/components/progress-bar/index.d.ts +1 -0
  29. package/dist/components/{ProgressBar/ProgressBar.d.ts → progress-bar/progress-bar.d.ts} +7 -8
  30. package/dist/components/progress-bar/styles.d.ts +272 -0
  31. package/dist/components/{ProgressBar → progress-bar}/types.d.ts +22 -22
  32. package/dist/components/radio/index.d.ts +1 -0
  33. package/dist/components/radio/radio.d.ts +3 -0
  34. package/dist/components/{Radio → radio}/types.d.ts +16 -16
  35. package/dist/components/tag/index.d.ts +1 -0
  36. package/dist/components/{Tag/Tag.d.ts → tag/tag.d.ts} +3 -4
  37. package/dist/components/{Tag → tag}/types.d.ts +25 -25
  38. package/dist/components/textfield/index.d.ts +1 -0
  39. package/dist/components/textfield/textfield.d.ts +3 -0
  40. package/dist/components/{TextField → textfield}/types.d.ts +42 -42
  41. package/dist/helpers/clients.d.ts +5 -0
  42. package/dist/helpers/colors.d.ts +174 -0
  43. package/dist/helpers/index.d.ts +3 -0
  44. package/dist/helpers/sizes.d.ts +6 -0
  45. package/dist/helpers/variants.d.ts +2 -0
  46. package/dist/index.d.ts +1 -1
  47. package/dist/index.js +8 -0
  48. package/dist/norma-library.cjs.development.js +1286 -0
  49. package/dist/norma-library.cjs.development.js.map +1 -0
  50. package/dist/norma-library.cjs.production.min.js +2 -0
  51. package/dist/norma-library.cjs.production.min.js.map +1 -0
  52. package/dist/norma-library.esm.js +1274 -0
  53. package/dist/norma-library.esm.js.map +1 -0
  54. package/package.json +55 -86
  55. package/src/components/button/button.stories.tsx +44 -0
  56. package/src/components/button/button.tsx +18 -0
  57. package/src/components/button/index.ts +1 -0
  58. package/src/components/button/types.ts +48 -0
  59. package/src/components/card/card-header.tsx +8 -0
  60. package/src/components/card/card.stories.tsx +28 -0
  61. package/src/components/card/card.tsx +13 -0
  62. package/src/components/card/index.ts +1 -0
  63. package/src/components/card/styles.tsx +29 -0
  64. package/src/components/card/types.ts +14 -0
  65. package/src/components/checkbox/checkbox.stories.tsx +66 -0
  66. package/src/components/checkbox/checkbox.tsx +13 -0
  67. package/src/components/checkbox/index.ts +1 -0
  68. package/src/components/checkbox/types.ts +30 -0
  69. package/src/components/icon/default.tsx +1459 -0
  70. package/src/components/icon/defaultIcon.tsx +82 -0
  71. package/src/components/icon/icon.stories.tsx +44 -0
  72. package/src/components/icon/icons-ia.tsx +107 -0
  73. package/src/components/icon/index.ts +11 -0
  74. package/src/components/icon/norma.tsx +523 -0
  75. package/src/components/icon/normaIcon.tsx +94 -0
  76. package/src/components/icon/styles.ts +11 -0
  77. package/src/components/icon/svg.tsx +24 -0
  78. package/src/components/icon/types.ts +14 -0
  79. package/src/components/index.ts +8 -0
  80. package/src/components/modal/index.ts +1 -0
  81. package/src/components/modal/modal.stories.tsx +55 -0
  82. package/src/components/modal/modal.tsx +42 -0
  83. package/src/components/modal/modalFooter.tsx +32 -0
  84. package/src/components/modal/modalHeader.tsx +46 -0
  85. package/src/components/modal/styles.tsx +13 -0
  86. package/src/components/modal/types.ts +47 -0
  87. package/src/components/progress-bar/index.ts +1 -0
  88. package/src/components/progress-bar/progress-bar.stories.tsx +68 -0
  89. package/src/components/progress-bar/progress-bar.tsx +38 -0
  90. package/src/components/progress-bar/styles.tsx +27 -0
  91. package/src/components/progress-bar/types.ts +35 -0
  92. package/src/components/radio/index.ts +1 -0
  93. package/src/components/radio/radio.stories.tsx +150 -0
  94. package/src/components/radio/radio.tsx +13 -0
  95. package/src/components/radio/types.ts +27 -0
  96. package/src/components/tag/index.ts +1 -0
  97. package/src/components/tag/tag.stories.tsx +80 -0
  98. package/src/components/tag/tag.tsx +13 -0
  99. package/src/components/tag/types.ts +47 -0
  100. package/src/components/textfield/index.ts +1 -0
  101. package/src/components/textfield/textfield.stories.tsx +376 -0
  102. package/src/components/textfield/textfield.tsx +23 -0
  103. package/src/components/textfield/types.ts +93 -0
  104. package/src/helpers/clients.ts +6 -0
  105. package/src/helpers/colors.ts +209 -0
  106. package/src/helpers/index.ts +3 -0
  107. package/src/helpers/sizes.ts +26 -0
  108. package/src/helpers/variants.ts +3 -0
  109. package/src/index.tsx +1 -0
  110. package/dist/components/Button/Button.d.ts +0 -4
  111. package/dist/components/Button/index.d.ts +0 -2
  112. package/dist/components/Card/Card.d.ts +0 -4
  113. package/dist/components/Card/CardHeader.d.ts +0 -4
  114. package/dist/components/Card/index.d.ts +0 -4
  115. package/dist/components/Card/styles.d.ts +0 -818
  116. package/dist/components/Checkbox/Checkbox.d.ts +0 -4
  117. package/dist/components/Checkbox/index.d.ts +0 -2
  118. package/dist/components/Icon/DefaultIcon.d.ts +0 -5
  119. package/dist/components/Icon/default.d.ts +0 -209
  120. package/dist/components/Icon/index.d.ts +0 -233
  121. package/dist/components/Icon/norma.d.ts +0 -29
  122. package/dist/components/Icon/styles.d.ts +0 -485
  123. package/dist/components/Modal/ModalFooter.d.ts +0 -4
  124. package/dist/components/Modal/ModalHeader.d.ts +0 -4
  125. package/dist/components/Modal/index.d.ts +0 -2
  126. package/dist/components/Modal/styles.d.ts +0 -274
  127. package/dist/components/ProgressBar/index.d.ts +0 -2
  128. package/dist/components/ProgressBar/styles.d.ts +0 -276
  129. package/dist/components/Radio/Radio.d.ts +0 -4
  130. package/dist/components/Radio/index.d.ts +0 -2
  131. package/dist/components/Tag/index.d.ts +0 -2
  132. package/dist/components/TextField/TextField.d.ts +0 -4
  133. package/dist/components/TextField/index.d.ts +0 -2
  134. package/dist/index.es.js +0 -15023
  135. package/dist/index.es.js.map +0 -1
  136. package/dist/index.umd.js +0 -419
  137. package/dist/index.umd.js.map +0 -1
  138. package/dist/vite.svg +0 -1
@@ -0,0 +1,540 @@
1
+ export declare const StyledModalBody: import("styled-components").IStyledComponent<"web", {
2
+ ref?: any;
3
+ key?: any;
4
+ defaultChecked?: any;
5
+ defaultValue?: any;
6
+ suppressContentEditableWarning?: any;
7
+ suppressHydrationWarning?: any;
8
+ accessKey?: any;
9
+ autoFocus?: any;
10
+ className?: any;
11
+ contentEditable?: any;
12
+ contextMenu?: any;
13
+ dir?: any;
14
+ draggable?: any;
15
+ hidden?: any;
16
+ id?: any;
17
+ lang?: any;
18
+ nonce?: any;
19
+ placeholder?: any;
20
+ slot?: any;
21
+ spellCheck?: any;
22
+ style?: any;
23
+ tabIndex?: any;
24
+ title?: any;
25
+ translate?: any;
26
+ radioGroup?: any;
27
+ role?: any;
28
+ about?: any;
29
+ content?: any;
30
+ datatype?: any;
31
+ inlist?: any;
32
+ prefix?: any;
33
+ property?: any;
34
+ rel?: any;
35
+ resource?: any;
36
+ rev?: any;
37
+ typeof?: any;
38
+ vocab?: any;
39
+ autoCapitalize?: any;
40
+ autoCorrect?: any;
41
+ autoSave?: any;
42
+ color?: any;
43
+ itemProp?: any;
44
+ itemScope?: any;
45
+ itemType?: any;
46
+ itemID?: any;
47
+ itemRef?: any;
48
+ results?: any;
49
+ security?: any;
50
+ unselectable?: any;
51
+ inputMode?: any;
52
+ is?: any;
53
+ 'aria-activedescendant'?: any;
54
+ 'aria-atomic'?: any;
55
+ 'aria-autocomplete'?: any;
56
+ 'aria-braillelabel'?: any;
57
+ 'aria-brailleroledescription'?: any;
58
+ 'aria-busy'?: any;
59
+ 'aria-checked'?: any;
60
+ 'aria-colcount'?: any;
61
+ 'aria-colindex'?: any;
62
+ 'aria-colindextext'?: any;
63
+ 'aria-colspan'?: any;
64
+ 'aria-controls'?: any;
65
+ 'aria-current'?: any;
66
+ 'aria-describedby'?: any;
67
+ 'aria-description'?: any;
68
+ 'aria-details'?: any;
69
+ 'aria-disabled'?: any;
70
+ 'aria-dropeffect'?: any;
71
+ 'aria-errormessage'?: any;
72
+ 'aria-expanded'?: any;
73
+ 'aria-flowto'?: any;
74
+ 'aria-grabbed'?: any;
75
+ 'aria-haspopup'?: any;
76
+ 'aria-hidden'?: any;
77
+ 'aria-invalid'?: any;
78
+ 'aria-keyshortcuts'?: any;
79
+ 'aria-label'?: any;
80
+ 'aria-labelledby'?: any;
81
+ 'aria-level'?: any;
82
+ 'aria-live'?: any;
83
+ 'aria-modal'?: any;
84
+ 'aria-multiline'?: any;
85
+ 'aria-multiselectable'?: any;
86
+ 'aria-orientation'?: any;
87
+ 'aria-owns'?: any;
88
+ 'aria-placeholder'?: any;
89
+ 'aria-posinset'?: any;
90
+ 'aria-pressed'?: any;
91
+ 'aria-readonly'?: any;
92
+ 'aria-relevant'?: any;
93
+ 'aria-required'?: any;
94
+ 'aria-roledescription'?: any;
95
+ 'aria-rowcount'?: any;
96
+ 'aria-rowindex'?: any;
97
+ 'aria-rowindextext'?: any;
98
+ 'aria-rowspan'?: any;
99
+ 'aria-selected'?: any;
100
+ 'aria-setsize'?: any;
101
+ 'aria-sort'?: any;
102
+ 'aria-valuemax'?: any;
103
+ 'aria-valuemin'?: any;
104
+ 'aria-valuenow'?: any;
105
+ 'aria-valuetext'?: any;
106
+ children?: any;
107
+ dangerouslySetInnerHTML?: any;
108
+ onCopy?: any;
109
+ onCopyCapture?: any;
110
+ onCut?: any;
111
+ onCutCapture?: any;
112
+ onPaste?: any;
113
+ onPasteCapture?: any;
114
+ onCompositionEnd?: any;
115
+ onCompositionEndCapture?: any;
116
+ onCompositionStart?: any;
117
+ onCompositionStartCapture?: any;
118
+ onCompositionUpdate?: any;
119
+ onCompositionUpdateCapture?: any;
120
+ onFocus?: any;
121
+ onFocusCapture?: any;
122
+ onBlur?: any;
123
+ onBlurCapture?: any;
124
+ onChange?: any;
125
+ onChangeCapture?: any;
126
+ onBeforeInput?: any;
127
+ onBeforeInputCapture?: any;
128
+ onInput?: any;
129
+ onInputCapture?: any;
130
+ onReset?: any;
131
+ onResetCapture?: any;
132
+ onSubmit?: any;
133
+ onSubmitCapture?: any;
134
+ onInvalid?: any;
135
+ onInvalidCapture?: any;
136
+ onLoad?: any;
137
+ onLoadCapture?: any;
138
+ onError?: any;
139
+ onErrorCapture?: any;
140
+ onKeyDown?: any;
141
+ onKeyDownCapture?: any;
142
+ onKeyPress?: any;
143
+ onKeyPressCapture?: any;
144
+ onKeyUp?: any;
145
+ onKeyUpCapture?: any;
146
+ onAbort?: any;
147
+ onAbortCapture?: any;
148
+ onCanPlay?: any;
149
+ onCanPlayCapture?: any;
150
+ onCanPlayThrough?: any;
151
+ onCanPlayThroughCapture?: any;
152
+ onDurationChange?: any;
153
+ onDurationChangeCapture?: any;
154
+ onEmptied?: any;
155
+ onEmptiedCapture?: any;
156
+ onEncrypted?: any;
157
+ onEncryptedCapture?: any;
158
+ onEnded?: any;
159
+ onEndedCapture?: any;
160
+ onLoadedData?: any;
161
+ onLoadedDataCapture?: any;
162
+ onLoadedMetadata?: any;
163
+ onLoadedMetadataCapture?: any;
164
+ onLoadStart?: any;
165
+ onLoadStartCapture?: any;
166
+ onPause?: any;
167
+ onPauseCapture?: any;
168
+ onPlay?: any;
169
+ onPlayCapture?: any;
170
+ onPlaying?: any;
171
+ onPlayingCapture?: any;
172
+ onProgress?: any;
173
+ onProgressCapture?: any;
174
+ onRateChange?: any;
175
+ onRateChangeCapture?: any;
176
+ onResize?: any;
177
+ onResizeCapture?: any;
178
+ onSeeked?: any;
179
+ onSeekedCapture?: any;
180
+ onSeeking?: any;
181
+ onSeekingCapture?: any;
182
+ onStalled?: any;
183
+ onStalledCapture?: any;
184
+ onSuspend?: any;
185
+ onSuspendCapture?: any;
186
+ onTimeUpdate?: any;
187
+ onTimeUpdateCapture?: any;
188
+ onVolumeChange?: any;
189
+ onVolumeChangeCapture?: any;
190
+ onWaiting?: any;
191
+ onWaitingCapture?: any;
192
+ onAuxClick?: any;
193
+ onAuxClickCapture?: any;
194
+ onClick?: any;
195
+ onClickCapture?: any;
196
+ onContextMenu?: any;
197
+ onContextMenuCapture?: any;
198
+ onDoubleClick?: any;
199
+ onDoubleClickCapture?: any;
200
+ onDrag?: any;
201
+ onDragCapture?: any;
202
+ onDragEnd?: any;
203
+ onDragEndCapture?: any;
204
+ onDragEnter?: any;
205
+ onDragEnterCapture?: any;
206
+ onDragExit?: any;
207
+ onDragExitCapture?: any;
208
+ onDragLeave?: any;
209
+ onDragLeaveCapture?: any;
210
+ onDragOver?: any;
211
+ onDragOverCapture?: any;
212
+ onDragStart?: any;
213
+ onDragStartCapture?: any;
214
+ onDrop?: any;
215
+ onDropCapture?: any;
216
+ onMouseDown?: any;
217
+ onMouseDownCapture?: any;
218
+ onMouseEnter?: any;
219
+ onMouseLeave?: any;
220
+ onMouseMove?: any;
221
+ onMouseMoveCapture?: any;
222
+ onMouseOut?: any;
223
+ onMouseOutCapture?: any;
224
+ onMouseOver?: any;
225
+ onMouseOverCapture?: any;
226
+ onMouseUp?: any;
227
+ onMouseUpCapture?: any;
228
+ onSelect?: any;
229
+ onSelectCapture?: any;
230
+ onTouchCancel?: any;
231
+ onTouchCancelCapture?: any;
232
+ onTouchEnd?: any;
233
+ onTouchEndCapture?: any;
234
+ onTouchMove?: any;
235
+ onTouchMoveCapture?: any;
236
+ onTouchStart?: any;
237
+ onTouchStartCapture?: any;
238
+ onPointerDown?: any;
239
+ onPointerDownCapture?: any;
240
+ onPointerMove?: any;
241
+ onPointerMoveCapture?: any;
242
+ onPointerUp?: any;
243
+ onPointerUpCapture?: any;
244
+ onPointerCancel?: any;
245
+ onPointerCancelCapture?: any;
246
+ onPointerEnter?: any;
247
+ onPointerEnterCapture?: any;
248
+ onPointerLeave?: any;
249
+ onPointerLeaveCapture?: any;
250
+ onPointerOver?: any;
251
+ onPointerOverCapture?: any;
252
+ onPointerOut?: any;
253
+ onPointerOutCapture?: any;
254
+ onGotPointerCapture?: any;
255
+ onGotPointerCaptureCapture?: any;
256
+ onLostPointerCapture?: any;
257
+ onLostPointerCaptureCapture?: any;
258
+ onScroll?: any;
259
+ onScrollCapture?: any;
260
+ onWheel?: any;
261
+ onWheelCapture?: any;
262
+ onAnimationStart?: any;
263
+ onAnimationStartCapture?: any;
264
+ onAnimationEnd?: any;
265
+ onAnimationEndCapture?: any;
266
+ onAnimationIteration?: any;
267
+ onAnimationIterationCapture?: any;
268
+ onTransitionEnd?: any;
269
+ onTransitionEndCapture?: any;
270
+ }>;
271
+ export declare const StyledBoxIcon: import("styled-components").IStyledComponent<"web", {
272
+ ref?: any;
273
+ key?: any;
274
+ defaultChecked?: any;
275
+ defaultValue?: any;
276
+ suppressContentEditableWarning?: any;
277
+ suppressHydrationWarning?: any;
278
+ accessKey?: any;
279
+ autoFocus?: any;
280
+ className?: any;
281
+ contentEditable?: any;
282
+ contextMenu?: any;
283
+ dir?: any;
284
+ draggable?: any;
285
+ hidden?: any;
286
+ id?: any;
287
+ lang?: any;
288
+ nonce?: any;
289
+ placeholder?: any;
290
+ slot?: any;
291
+ spellCheck?: any;
292
+ style?: any;
293
+ tabIndex?: any;
294
+ title?: any;
295
+ translate?: any;
296
+ radioGroup?: any;
297
+ role?: any;
298
+ about?: any;
299
+ content?: any;
300
+ datatype?: any;
301
+ inlist?: any;
302
+ prefix?: any;
303
+ property?: any;
304
+ rel?: any;
305
+ resource?: any;
306
+ rev?: any;
307
+ typeof?: any;
308
+ vocab?: any;
309
+ autoCapitalize?: any;
310
+ autoCorrect?: any;
311
+ autoSave?: any;
312
+ color?: any;
313
+ itemProp?: any;
314
+ itemScope?: any;
315
+ itemType?: any;
316
+ itemID?: any;
317
+ itemRef?: any;
318
+ results?: any;
319
+ security?: any;
320
+ unselectable?: any;
321
+ inputMode?: any;
322
+ is?: any;
323
+ 'aria-activedescendant'?: any;
324
+ 'aria-atomic'?: any;
325
+ 'aria-autocomplete'?: any;
326
+ 'aria-braillelabel'?: any;
327
+ 'aria-brailleroledescription'?: any;
328
+ 'aria-busy'?: any;
329
+ 'aria-checked'?: any;
330
+ 'aria-colcount'?: any;
331
+ 'aria-colindex'?: any;
332
+ 'aria-colindextext'?: any;
333
+ 'aria-colspan'?: any;
334
+ 'aria-controls'?: any;
335
+ 'aria-current'?: any;
336
+ 'aria-describedby'?: any;
337
+ 'aria-description'?: any;
338
+ 'aria-details'?: any;
339
+ 'aria-disabled'?: any;
340
+ 'aria-dropeffect'?: any;
341
+ 'aria-errormessage'?: any;
342
+ 'aria-expanded'?: any;
343
+ 'aria-flowto'?: any;
344
+ 'aria-grabbed'?: any;
345
+ 'aria-haspopup'?: any;
346
+ 'aria-hidden'?: any;
347
+ 'aria-invalid'?: any;
348
+ 'aria-keyshortcuts'?: any;
349
+ 'aria-label'?: any;
350
+ 'aria-labelledby'?: any;
351
+ 'aria-level'?: any;
352
+ 'aria-live'?: any;
353
+ 'aria-modal'?: any;
354
+ 'aria-multiline'?: any;
355
+ 'aria-multiselectable'?: any;
356
+ 'aria-orientation'?: any;
357
+ 'aria-owns'?: any;
358
+ 'aria-placeholder'?: any;
359
+ 'aria-posinset'?: any;
360
+ 'aria-pressed'?: any;
361
+ 'aria-readonly'?: any;
362
+ 'aria-relevant'?: any;
363
+ 'aria-required'?: any;
364
+ 'aria-roledescription'?: any;
365
+ 'aria-rowcount'?: any;
366
+ 'aria-rowindex'?: any;
367
+ 'aria-rowindextext'?: any;
368
+ 'aria-rowspan'?: any;
369
+ 'aria-selected'?: any;
370
+ 'aria-setsize'?: any;
371
+ 'aria-sort'?: any;
372
+ 'aria-valuemax'?: any;
373
+ 'aria-valuemin'?: any;
374
+ 'aria-valuenow'?: any;
375
+ 'aria-valuetext'?: any;
376
+ children?: any;
377
+ dangerouslySetInnerHTML?: any;
378
+ onCopy?: any;
379
+ onCopyCapture?: any;
380
+ onCut?: any;
381
+ onCutCapture?: any;
382
+ onPaste?: any;
383
+ onPasteCapture?: any;
384
+ onCompositionEnd?: any;
385
+ onCompositionEndCapture?: any;
386
+ onCompositionStart?: any;
387
+ onCompositionStartCapture?: any;
388
+ onCompositionUpdate?: any;
389
+ onCompositionUpdateCapture?: any;
390
+ onFocus?: any;
391
+ onFocusCapture?: any;
392
+ onBlur?: any;
393
+ onBlurCapture?: any;
394
+ onChange?: any;
395
+ onChangeCapture?: any;
396
+ onBeforeInput?: any;
397
+ onBeforeInputCapture?: any;
398
+ onInput?: any;
399
+ onInputCapture?: any;
400
+ onReset?: any;
401
+ onResetCapture?: any;
402
+ onSubmit?: any;
403
+ onSubmitCapture?: any;
404
+ onInvalid?: any;
405
+ onInvalidCapture?: any;
406
+ onLoad?: any;
407
+ onLoadCapture?: any;
408
+ onError?: any;
409
+ onErrorCapture?: any;
410
+ onKeyDown?: any;
411
+ onKeyDownCapture?: any;
412
+ onKeyPress?: any;
413
+ onKeyPressCapture?: any;
414
+ onKeyUp?: any;
415
+ onKeyUpCapture?: any;
416
+ onAbort?: any;
417
+ onAbortCapture?: any;
418
+ onCanPlay?: any;
419
+ onCanPlayCapture?: any;
420
+ onCanPlayThrough?: any;
421
+ onCanPlayThroughCapture?: any;
422
+ onDurationChange?: any;
423
+ onDurationChangeCapture?: any;
424
+ onEmptied?: any;
425
+ onEmptiedCapture?: any;
426
+ onEncrypted?: any;
427
+ onEncryptedCapture?: any;
428
+ onEnded?: any;
429
+ onEndedCapture?: any;
430
+ onLoadedData?: any;
431
+ onLoadedDataCapture?: any;
432
+ onLoadedMetadata?: any;
433
+ onLoadedMetadataCapture?: any;
434
+ onLoadStart?: any;
435
+ onLoadStartCapture?: any;
436
+ onPause?: any;
437
+ onPauseCapture?: any;
438
+ onPlay?: any;
439
+ onPlayCapture?: any;
440
+ onPlaying?: any;
441
+ onPlayingCapture?: any;
442
+ onProgress?: any;
443
+ onProgressCapture?: any;
444
+ onRateChange?: any;
445
+ onRateChangeCapture?: any;
446
+ onResize?: any;
447
+ onResizeCapture?: any;
448
+ onSeeked?: any;
449
+ onSeekedCapture?: any;
450
+ onSeeking?: any;
451
+ onSeekingCapture?: any;
452
+ onStalled?: any;
453
+ onStalledCapture?: any;
454
+ onSuspend?: any;
455
+ onSuspendCapture?: any;
456
+ onTimeUpdate?: any;
457
+ onTimeUpdateCapture?: any;
458
+ onVolumeChange?: any;
459
+ onVolumeChangeCapture?: any;
460
+ onWaiting?: any;
461
+ onWaitingCapture?: any;
462
+ onAuxClick?: any;
463
+ onAuxClickCapture?: any;
464
+ onClick?: any;
465
+ onClickCapture?: any;
466
+ onContextMenu?: any;
467
+ onContextMenuCapture?: any;
468
+ onDoubleClick?: any;
469
+ onDoubleClickCapture?: any;
470
+ onDrag?: any;
471
+ onDragCapture?: any;
472
+ onDragEnd?: any;
473
+ onDragEndCapture?: any;
474
+ onDragEnter?: any;
475
+ onDragEnterCapture?: any;
476
+ onDragExit?: any;
477
+ onDragExitCapture?: any;
478
+ onDragLeave?: any;
479
+ onDragLeaveCapture?: any;
480
+ onDragOver?: any;
481
+ onDragOverCapture?: any;
482
+ onDragStart?: any;
483
+ onDragStartCapture?: any;
484
+ onDrop?: any;
485
+ onDropCapture?: any;
486
+ onMouseDown?: any;
487
+ onMouseDownCapture?: any;
488
+ onMouseEnter?: any;
489
+ onMouseLeave?: any;
490
+ onMouseMove?: any;
491
+ onMouseMoveCapture?: any;
492
+ onMouseOut?: any;
493
+ onMouseOutCapture?: any;
494
+ onMouseOver?: any;
495
+ onMouseOverCapture?: any;
496
+ onMouseUp?: any;
497
+ onMouseUpCapture?: any;
498
+ onSelect?: any;
499
+ onSelectCapture?: any;
500
+ onTouchCancel?: any;
501
+ onTouchCancelCapture?: any;
502
+ onTouchEnd?: any;
503
+ onTouchEndCapture?: any;
504
+ onTouchMove?: any;
505
+ onTouchMoveCapture?: any;
506
+ onTouchStart?: any;
507
+ onTouchStartCapture?: any;
508
+ onPointerDown?: any;
509
+ onPointerDownCapture?: any;
510
+ onPointerMove?: any;
511
+ onPointerMoveCapture?: any;
512
+ onPointerUp?: any;
513
+ onPointerUpCapture?: any;
514
+ onPointerCancel?: any;
515
+ onPointerCancelCapture?: any;
516
+ onPointerEnter?: any;
517
+ onPointerEnterCapture?: any;
518
+ onPointerLeave?: any;
519
+ onPointerLeaveCapture?: any;
520
+ onPointerOver?: any;
521
+ onPointerOverCapture?: any;
522
+ onPointerOut?: any;
523
+ onPointerOutCapture?: any;
524
+ onGotPointerCapture?: any;
525
+ onGotPointerCaptureCapture?: any;
526
+ onLostPointerCapture?: any;
527
+ onLostPointerCaptureCapture?: any;
528
+ onScroll?: any;
529
+ onScrollCapture?: any;
530
+ onWheel?: any;
531
+ onWheelCapture?: any;
532
+ onAnimationStart?: any;
533
+ onAnimationStartCapture?: any;
534
+ onAnimationEnd?: any;
535
+ onAnimationEndCapture?: any;
536
+ onAnimationIteration?: any;
537
+ onAnimationIterationCapture?: any;
538
+ onTransitionEnd?: any;
539
+ onTransitionEndCapture?: any;
540
+ }>;
@@ -1,24 +1,27 @@
1
- /// <reference types="react" />
2
- import { Modal, ModalProps as MuiModalProps, SxProps } from '@mui/material';
3
- import { Theme } from '@emotion/react';
4
- type MuiModalBaseProps = Pick<MuiModalProps, 'sx'>;
5
- export interface ModalBaseProps extends MuiModalBaseProps {
6
- sx?: SxProps<Theme>;
7
- children?: React.ReactElement | React.ReactElement[];
8
- open?: boolean;
9
- onClose?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
10
- className?: string;
11
- title?: string;
12
- full?: boolean;
13
- onConfirm?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
14
- }
15
- export interface ModalHeaderProps {
16
- title?: string;
17
- onClose?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
18
- }
19
- export interface ModalFooterProps {
20
- onCancel?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
21
- onConfirm: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
22
- }
23
- export type ModalType = keyof typeof Modal;
24
- export {};
1
+ /// <reference types="react" />
2
+ import { Modal, ModalProps as MuiModalProps, SxProps } from '@mui/material';
3
+ import { Theme } from '@emotion/react';
4
+ declare type MuiModalBaseProps = Pick<MuiModalProps, 'sx' | 'children' | 'onClose'>;
5
+ export interface ModalBaseProps extends MuiModalBaseProps {
6
+ sx?: SxProps<Theme>;
7
+ title?: string;
8
+ open: boolean;
9
+ children: React.ReactElement;
10
+ onConfirm?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
11
+ onClose?: {
12
+ bivarianceHack(event: {}, reason: 'backdropClick' | 'escapeKeyDown'): void;
13
+ }['bivarianceHack'];
14
+ onCancel?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
15
+ }
16
+ export interface ModalHeaderProps {
17
+ title?: string;
18
+ onClose?: {
19
+ bivarianceHack(event: {}, reason: 'backdropClick' | 'escapeKeyDown'): void;
20
+ }['bivarianceHack'];
21
+ }
22
+ export interface ModalFooterProps {
23
+ onCancel?: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
24
+ onConfirm: (event?: React.MouseEvent | React.KeyboardEvent | React.TouchEvent, contextId?: string) => void;
25
+ }
26
+ export declare type ModalType = keyof typeof Modal;
27
+ export {};
@@ -0,0 +1 @@
1
+ export * from './progress-bar';
@@ -1,8 +1,7 @@
1
- import React from 'react';
2
- import { ProgressBarBaseProps } from './types';
3
- declare const ProgressBar: React.FC<ProgressBarBaseProps & {
4
- usage?: number;
5
- total?: number;
6
- colorCustom?: string;
7
- }>;
8
- export default ProgressBar;
1
+ import React from 'react';
2
+ import { ProgressBarBaseProps } from './types';
3
+ export declare const ProgressBar: React.FC<ProgressBarBaseProps & {
4
+ usage?: number;
5
+ total?: number;
6
+ colorCustom?: string;
7
+ }>;