norma-library 0.4.2 → 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.
- package/dist/components/button/button.d.ts +3 -0
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/button/types.d.ts +18 -0
- package/dist/components/card/card-header.d.ts +3 -0
- package/dist/components/card/card.d.ts +3 -0
- package/dist/components/card/index.d.ts +1 -0
- package/dist/components/card/styles.d.ts +811 -0
- package/dist/components/card/types.d.ts +12 -0
- package/dist/components/checkbox/checkbox.d.ts +3 -0
- package/dist/components/checkbox/index.d.ts +1 -0
- package/dist/components/checkbox/types.d.ts +23 -0
- package/dist/components/icon/default.d.ts +210 -0
- package/dist/components/icon/defaultIcon.d.ts +5 -0
- package/dist/components/icon/icons-ia.d.ts +71 -0
- package/dist/components/icon/index.d.ts +234 -0
- package/dist/components/icon/norma.d.ts +30 -0
- package/dist/components/icon/normaIcon.d.ts +13 -0
- package/dist/components/icon/styles.d.ts +481 -0
- package/dist/components/icon/svg.d.ts +6 -0
- package/dist/components/icon/types.d.ts +12 -0
- package/dist/components/index.d.ts +8 -0
- package/dist/components/modal/index.d.ts +1 -0
- package/dist/components/modal/modal.d.ts +3 -0
- package/dist/components/modal/modalFooter.d.ts +3 -0
- package/dist/components/modal/modalHeader.d.ts +3 -0
- package/dist/components/modal/styles.d.ts +540 -0
- package/dist/components/modal/types.d.ts +27 -0
- package/dist/components/progress-bar/index.d.ts +1 -0
- package/dist/components/progress-bar/progress-bar.d.ts +7 -0
- package/dist/components/progress-bar/styles.d.ts +272 -0
- package/dist/components/progress-bar/types.d.ts +22 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/radio.d.ts +3 -0
- package/dist/components/radio/types.d.ts +16 -0
- package/dist/components/tag/index.d.ts +1 -0
- package/dist/components/tag/tag.d.ts +3 -0
- package/dist/components/tag/types.d.ts +25 -0
- package/dist/components/textfield/index.d.ts +1 -0
- package/dist/components/textfield/textfield.d.ts +3 -0
- package/dist/components/textfield/types.d.ts +42 -0
- package/dist/helpers/clients.d.ts +5 -0
- package/dist/helpers/colors.d.ts +174 -0
- package/dist/helpers/index.d.ts +3 -0
- package/dist/helpers/sizes.d.ts +6 -0
- package/dist/helpers/variants.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/norma-library.cjs.development.js +1286 -0
- package/dist/norma-library.cjs.development.js.map +1 -0
- package/dist/norma-library.cjs.production.min.js +2 -0
- package/dist/norma-library.cjs.production.min.js.map +1 -0
- package/dist/norma-library.esm.js +1274 -0
- package/dist/norma-library.esm.js.map +1 -0
- package/package.json +1 -1
- package/src/components/button/button.stories.tsx +44 -0
- package/src/components/button/button.tsx +18 -0
- package/src/components/button/index.ts +1 -0
- package/src/components/button/types.ts +48 -0
- package/src/components/card/card-header.tsx +8 -0
- package/src/components/card/card.stories.tsx +28 -0
- package/src/components/card/card.tsx +13 -0
- package/src/components/card/index.ts +1 -0
- package/src/components/card/styles.tsx +29 -0
- package/src/components/card/types.ts +14 -0
- package/src/components/checkbox/checkbox.stories.tsx +66 -0
- package/src/components/checkbox/checkbox.tsx +13 -0
- package/src/components/checkbox/index.ts +1 -0
- package/src/components/checkbox/types.ts +30 -0
- package/src/components/icon/default.tsx +1459 -0
- package/src/components/icon/defaultIcon.tsx +82 -0
- package/src/components/icon/icon.stories.tsx +44 -0
- package/src/components/icon/icons-ia.tsx +107 -0
- package/src/components/icon/index.ts +11 -0
- package/src/components/icon/norma.tsx +523 -0
- package/src/components/icon/normaIcon.tsx +94 -0
- package/src/components/icon/styles.ts +11 -0
- package/src/components/icon/svg.tsx +24 -0
- package/src/components/icon/types.ts +14 -0
- package/src/components/index.ts +8 -0
- package/src/components/modal/index.ts +1 -0
- package/src/components/modal/modal.stories.tsx +55 -0
- package/src/components/modal/modal.tsx +42 -0
- package/src/components/modal/modalFooter.tsx +32 -0
- package/src/components/modal/modalHeader.tsx +46 -0
- package/src/components/modal/styles.tsx +13 -0
- package/src/components/modal/types.ts +47 -0
- package/src/components/progress-bar/index.ts +1 -0
- package/src/components/progress-bar/progress-bar.stories.tsx +68 -0
- package/src/components/progress-bar/progress-bar.tsx +38 -0
- package/src/components/progress-bar/styles.tsx +27 -0
- package/src/components/progress-bar/types.ts +35 -0
- package/src/components/radio/index.ts +1 -0
- package/src/components/radio/radio.stories.tsx +150 -0
- package/src/components/radio/radio.tsx +13 -0
- package/src/components/radio/types.ts +27 -0
- package/src/components/tag/index.ts +1 -0
- package/src/components/tag/tag.stories.tsx +80 -0
- package/src/components/tag/tag.tsx +13 -0
- package/src/components/tag/types.ts +47 -0
- package/src/components/textfield/index.ts +1 -0
- package/src/components/textfield/textfield.stories.tsx +376 -0
- package/src/components/textfield/textfield.tsx +23 -0
- package/src/components/textfield/types.ts +93 -0
- package/src/helpers/clients.ts +6 -0
- package/src/helpers/colors.ts +209 -0
- package/src/helpers/index.ts +3 -0
- package/src/helpers/sizes.ts +26 -0
- package/src/helpers/variants.ts +3 -0
- package/src/index.tsx +1 -0
|
@@ -0,0 +1,481 @@
|
|
|
1
|
+
export declare const IconsContainer: import("styled-components").IStyledComponent<"web", {
|
|
2
|
+
suppressHydrationWarning?: any;
|
|
3
|
+
className?: any;
|
|
4
|
+
color?: any;
|
|
5
|
+
height?: any;
|
|
6
|
+
id?: any;
|
|
7
|
+
lang?: any;
|
|
8
|
+
max?: any;
|
|
9
|
+
media?: any;
|
|
10
|
+
method?: any;
|
|
11
|
+
min?: any;
|
|
12
|
+
name?: any;
|
|
13
|
+
style?: any;
|
|
14
|
+
target?: any;
|
|
15
|
+
type?: any;
|
|
16
|
+
width?: any;
|
|
17
|
+
role?: any;
|
|
18
|
+
tabIndex?: any;
|
|
19
|
+
crossOrigin?: any;
|
|
20
|
+
accentHeight?: any;
|
|
21
|
+
accumulate?: any;
|
|
22
|
+
additive?: any;
|
|
23
|
+
alignmentBaseline?: any;
|
|
24
|
+
allowReorder?: any;
|
|
25
|
+
alphabetic?: any;
|
|
26
|
+
amplitude?: any;
|
|
27
|
+
arabicForm?: any;
|
|
28
|
+
ascent?: any;
|
|
29
|
+
attributeName?: any;
|
|
30
|
+
attributeType?: any;
|
|
31
|
+
autoReverse?: any;
|
|
32
|
+
azimuth?: any;
|
|
33
|
+
baseFrequency?: any;
|
|
34
|
+
baselineShift?: any;
|
|
35
|
+
baseProfile?: any;
|
|
36
|
+
bbox?: any;
|
|
37
|
+
begin?: any;
|
|
38
|
+
bias?: any;
|
|
39
|
+
by?: any;
|
|
40
|
+
calcMode?: any;
|
|
41
|
+
capHeight?: any;
|
|
42
|
+
clip?: any;
|
|
43
|
+
clipPath?: any;
|
|
44
|
+
clipPathUnits?: any;
|
|
45
|
+
clipRule?: any;
|
|
46
|
+
colorInterpolation?: any;
|
|
47
|
+
colorInterpolationFilters?: any;
|
|
48
|
+
colorProfile?: any;
|
|
49
|
+
colorRendering?: any;
|
|
50
|
+
contentScriptType?: any;
|
|
51
|
+
contentStyleType?: any;
|
|
52
|
+
cursor?: any;
|
|
53
|
+
cx?: any;
|
|
54
|
+
cy?: any;
|
|
55
|
+
d?: any;
|
|
56
|
+
decelerate?: any;
|
|
57
|
+
descent?: any;
|
|
58
|
+
diffuseConstant?: any;
|
|
59
|
+
direction?: any;
|
|
60
|
+
display?: any;
|
|
61
|
+
divisor?: any;
|
|
62
|
+
dominantBaseline?: any;
|
|
63
|
+
dur?: any;
|
|
64
|
+
dx?: any;
|
|
65
|
+
dy?: any;
|
|
66
|
+
edgeMode?: any;
|
|
67
|
+
elevation?: any;
|
|
68
|
+
enableBackground?: any;
|
|
69
|
+
end?: any;
|
|
70
|
+
exponent?: any;
|
|
71
|
+
externalResourcesRequired?: any;
|
|
72
|
+
fill?: any;
|
|
73
|
+
fillOpacity?: any;
|
|
74
|
+
fillRule?: any;
|
|
75
|
+
filter?: any;
|
|
76
|
+
filterRes?: any;
|
|
77
|
+
filterUnits?: any;
|
|
78
|
+
floodColor?: any;
|
|
79
|
+
floodOpacity?: any;
|
|
80
|
+
focusable?: any;
|
|
81
|
+
fontFamily?: any;
|
|
82
|
+
fontSize?: any;
|
|
83
|
+
fontSizeAdjust?: any;
|
|
84
|
+
fontStretch?: any;
|
|
85
|
+
fontStyle?: any;
|
|
86
|
+
fontVariant?: any;
|
|
87
|
+
fontWeight?: any;
|
|
88
|
+
format?: any;
|
|
89
|
+
fr?: any;
|
|
90
|
+
from?: any;
|
|
91
|
+
fx?: any;
|
|
92
|
+
fy?: any;
|
|
93
|
+
g1?: any;
|
|
94
|
+
g2?: any;
|
|
95
|
+
glyphName?: any;
|
|
96
|
+
glyphOrientationHorizontal?: any;
|
|
97
|
+
glyphOrientationVertical?: any;
|
|
98
|
+
glyphRef?: any;
|
|
99
|
+
gradientTransform?: any;
|
|
100
|
+
gradientUnits?: any;
|
|
101
|
+
hanging?: any;
|
|
102
|
+
horizAdvX?: any;
|
|
103
|
+
horizOriginX?: any;
|
|
104
|
+
href?: any;
|
|
105
|
+
ideographic?: any;
|
|
106
|
+
imageRendering?: any;
|
|
107
|
+
in2?: any;
|
|
108
|
+
in?: any;
|
|
109
|
+
intercept?: any;
|
|
110
|
+
k1?: any;
|
|
111
|
+
k2?: any;
|
|
112
|
+
k3?: any;
|
|
113
|
+
k4?: any;
|
|
114
|
+
k?: any;
|
|
115
|
+
kernelMatrix?: any;
|
|
116
|
+
kernelUnitLength?: any;
|
|
117
|
+
kerning?: any;
|
|
118
|
+
keyPoints?: any;
|
|
119
|
+
keySplines?: any;
|
|
120
|
+
keyTimes?: any;
|
|
121
|
+
lengthAdjust?: any;
|
|
122
|
+
letterSpacing?: any;
|
|
123
|
+
lightingColor?: any;
|
|
124
|
+
limitingConeAngle?: any;
|
|
125
|
+
local?: any;
|
|
126
|
+
markerEnd?: any;
|
|
127
|
+
markerHeight?: any;
|
|
128
|
+
markerMid?: any;
|
|
129
|
+
markerStart?: any;
|
|
130
|
+
markerUnits?: any;
|
|
131
|
+
markerWidth?: any;
|
|
132
|
+
mask?: any;
|
|
133
|
+
maskContentUnits?: any;
|
|
134
|
+
maskUnits?: any;
|
|
135
|
+
mathematical?: any;
|
|
136
|
+
mode?: any;
|
|
137
|
+
numOctaves?: any;
|
|
138
|
+
offset?: any;
|
|
139
|
+
opacity?: any;
|
|
140
|
+
operator?: any;
|
|
141
|
+
order?: any;
|
|
142
|
+
orient?: any;
|
|
143
|
+
orientation?: any;
|
|
144
|
+
origin?: any;
|
|
145
|
+
overflow?: any;
|
|
146
|
+
overlinePosition?: any;
|
|
147
|
+
overlineThickness?: any;
|
|
148
|
+
paintOrder?: any;
|
|
149
|
+
panose1?: any;
|
|
150
|
+
path?: any;
|
|
151
|
+
pathLength?: any;
|
|
152
|
+
patternContentUnits?: any;
|
|
153
|
+
patternTransform?: any;
|
|
154
|
+
patternUnits?: any;
|
|
155
|
+
pointerEvents?: any;
|
|
156
|
+
points?: any;
|
|
157
|
+
pointsAtX?: any;
|
|
158
|
+
pointsAtY?: any;
|
|
159
|
+
pointsAtZ?: any;
|
|
160
|
+
preserveAlpha?: any;
|
|
161
|
+
preserveAspectRatio?: any;
|
|
162
|
+
primitiveUnits?: any;
|
|
163
|
+
r?: any;
|
|
164
|
+
radius?: any;
|
|
165
|
+
refX?: any;
|
|
166
|
+
refY?: any;
|
|
167
|
+
renderingIntent?: any;
|
|
168
|
+
repeatCount?: any;
|
|
169
|
+
repeatDur?: any;
|
|
170
|
+
requiredExtensions?: any;
|
|
171
|
+
requiredFeatures?: any;
|
|
172
|
+
restart?: any;
|
|
173
|
+
result?: any;
|
|
174
|
+
rotate?: any;
|
|
175
|
+
rx?: any;
|
|
176
|
+
ry?: any;
|
|
177
|
+
scale?: any;
|
|
178
|
+
seed?: any;
|
|
179
|
+
shapeRendering?: any;
|
|
180
|
+
slope?: any;
|
|
181
|
+
spacing?: any;
|
|
182
|
+
specularConstant?: any;
|
|
183
|
+
specularExponent?: any;
|
|
184
|
+
speed?: any;
|
|
185
|
+
spreadMethod?: any;
|
|
186
|
+
startOffset?: any;
|
|
187
|
+
stdDeviation?: any;
|
|
188
|
+
stemh?: any;
|
|
189
|
+
stemv?: any;
|
|
190
|
+
stitchTiles?: any;
|
|
191
|
+
stopColor?: any;
|
|
192
|
+
stopOpacity?: any;
|
|
193
|
+
strikethroughPosition?: any;
|
|
194
|
+
strikethroughThickness?: any;
|
|
195
|
+
string?: any;
|
|
196
|
+
stroke?: any;
|
|
197
|
+
strokeDasharray?: any;
|
|
198
|
+
strokeDashoffset?: any;
|
|
199
|
+
strokeLinecap?: any;
|
|
200
|
+
strokeLinejoin?: any;
|
|
201
|
+
strokeMiterlimit?: any;
|
|
202
|
+
strokeOpacity?: any;
|
|
203
|
+
strokeWidth?: any;
|
|
204
|
+
surfaceScale?: any;
|
|
205
|
+
systemLanguage?: any;
|
|
206
|
+
tableValues?: any;
|
|
207
|
+
targetX?: any;
|
|
208
|
+
targetY?: any;
|
|
209
|
+
textAnchor?: any;
|
|
210
|
+
textDecoration?: any;
|
|
211
|
+
textLength?: any;
|
|
212
|
+
textRendering?: any;
|
|
213
|
+
to?: any;
|
|
214
|
+
transform?: any;
|
|
215
|
+
u1?: any;
|
|
216
|
+
u2?: any;
|
|
217
|
+
underlinePosition?: any;
|
|
218
|
+
underlineThickness?: any;
|
|
219
|
+
unicode?: any;
|
|
220
|
+
unicodeBidi?: any;
|
|
221
|
+
unicodeRange?: any;
|
|
222
|
+
unitsPerEm?: any;
|
|
223
|
+
vAlphabetic?: any;
|
|
224
|
+
values?: any;
|
|
225
|
+
vectorEffect?: any;
|
|
226
|
+
version?: any;
|
|
227
|
+
vertAdvY?: any;
|
|
228
|
+
vertOriginX?: any;
|
|
229
|
+
vertOriginY?: any;
|
|
230
|
+
vHanging?: any;
|
|
231
|
+
vIdeographic?: any;
|
|
232
|
+
viewBox?: any;
|
|
233
|
+
viewTarget?: any;
|
|
234
|
+
visibility?: any;
|
|
235
|
+
vMathematical?: any;
|
|
236
|
+
widths?: any;
|
|
237
|
+
wordSpacing?: any;
|
|
238
|
+
writingMode?: any;
|
|
239
|
+
x1?: any;
|
|
240
|
+
x2?: any;
|
|
241
|
+
x?: any;
|
|
242
|
+
xChannelSelector?: any;
|
|
243
|
+
xHeight?: any;
|
|
244
|
+
xlinkActuate?: any;
|
|
245
|
+
xlinkArcrole?: any;
|
|
246
|
+
xlinkHref?: any;
|
|
247
|
+
xlinkRole?: any;
|
|
248
|
+
xlinkShow?: any;
|
|
249
|
+
xlinkTitle?: any;
|
|
250
|
+
xlinkType?: any;
|
|
251
|
+
xmlBase?: any;
|
|
252
|
+
xmlLang?: any;
|
|
253
|
+
xmlns?: any;
|
|
254
|
+
xmlnsXlink?: any;
|
|
255
|
+
xmlSpace?: any;
|
|
256
|
+
y1?: any;
|
|
257
|
+
y2?: any;
|
|
258
|
+
y?: any;
|
|
259
|
+
yChannelSelector?: any;
|
|
260
|
+
z?: any;
|
|
261
|
+
zoomAndPan?: any;
|
|
262
|
+
'aria-activedescendant'?: any;
|
|
263
|
+
'aria-atomic'?: any;
|
|
264
|
+
'aria-autocomplete'?: any;
|
|
265
|
+
'aria-braillelabel'?: any;
|
|
266
|
+
'aria-brailleroledescription'?: any;
|
|
267
|
+
'aria-busy'?: any;
|
|
268
|
+
'aria-checked'?: any;
|
|
269
|
+
'aria-colcount'?: any;
|
|
270
|
+
'aria-colindex'?: any;
|
|
271
|
+
'aria-colindextext'?: any;
|
|
272
|
+
'aria-colspan'?: any;
|
|
273
|
+
'aria-controls'?: any;
|
|
274
|
+
'aria-current'?: any;
|
|
275
|
+
'aria-describedby'?: any;
|
|
276
|
+
'aria-description'?: any;
|
|
277
|
+
'aria-details'?: any;
|
|
278
|
+
'aria-disabled'?: any;
|
|
279
|
+
'aria-dropeffect'?: any;
|
|
280
|
+
'aria-errormessage'?: any;
|
|
281
|
+
'aria-expanded'?: any;
|
|
282
|
+
'aria-flowto'?: any;
|
|
283
|
+
'aria-grabbed'?: any;
|
|
284
|
+
'aria-haspopup'?: any;
|
|
285
|
+
'aria-hidden'?: any;
|
|
286
|
+
'aria-invalid'?: any;
|
|
287
|
+
'aria-keyshortcuts'?: any;
|
|
288
|
+
'aria-label'?: any;
|
|
289
|
+
'aria-labelledby'?: any;
|
|
290
|
+
'aria-level'?: any;
|
|
291
|
+
'aria-live'?: any;
|
|
292
|
+
'aria-modal'?: any;
|
|
293
|
+
'aria-multiline'?: any;
|
|
294
|
+
'aria-multiselectable'?: any;
|
|
295
|
+
'aria-orientation'?: any;
|
|
296
|
+
'aria-owns'?: any;
|
|
297
|
+
'aria-placeholder'?: any;
|
|
298
|
+
'aria-posinset'?: any;
|
|
299
|
+
'aria-pressed'?: any;
|
|
300
|
+
'aria-readonly'?: any;
|
|
301
|
+
'aria-relevant'?: any;
|
|
302
|
+
'aria-required'?: any;
|
|
303
|
+
'aria-roledescription'?: any;
|
|
304
|
+
'aria-rowcount'?: any;
|
|
305
|
+
'aria-rowindex'?: any;
|
|
306
|
+
'aria-rowindextext'?: any;
|
|
307
|
+
'aria-rowspan'?: any;
|
|
308
|
+
'aria-selected'?: any;
|
|
309
|
+
'aria-setsize'?: any;
|
|
310
|
+
'aria-sort'?: any;
|
|
311
|
+
'aria-valuemax'?: any;
|
|
312
|
+
'aria-valuemin'?: any;
|
|
313
|
+
'aria-valuenow'?: any;
|
|
314
|
+
'aria-valuetext'?: any;
|
|
315
|
+
children?: any;
|
|
316
|
+
dangerouslySetInnerHTML?: any;
|
|
317
|
+
onCopy?: any;
|
|
318
|
+
onCopyCapture?: any;
|
|
319
|
+
onCut?: any;
|
|
320
|
+
onCutCapture?: any;
|
|
321
|
+
onPaste?: any;
|
|
322
|
+
onPasteCapture?: any;
|
|
323
|
+
onCompositionEnd?: any;
|
|
324
|
+
onCompositionEndCapture?: any;
|
|
325
|
+
onCompositionStart?: any;
|
|
326
|
+
onCompositionStartCapture?: any;
|
|
327
|
+
onCompositionUpdate?: any;
|
|
328
|
+
onCompositionUpdateCapture?: any;
|
|
329
|
+
onFocus?: any;
|
|
330
|
+
onFocusCapture?: any;
|
|
331
|
+
onBlur?: any;
|
|
332
|
+
onBlurCapture?: any;
|
|
333
|
+
onChange?: any;
|
|
334
|
+
onChangeCapture?: any;
|
|
335
|
+
onBeforeInput?: any;
|
|
336
|
+
onBeforeInputCapture?: any;
|
|
337
|
+
onInput?: any;
|
|
338
|
+
onInputCapture?: any;
|
|
339
|
+
onReset?: any;
|
|
340
|
+
onResetCapture?: any;
|
|
341
|
+
onSubmit?: any;
|
|
342
|
+
onSubmitCapture?: any;
|
|
343
|
+
onInvalid?: any;
|
|
344
|
+
onInvalidCapture?: any;
|
|
345
|
+
onLoad?: any;
|
|
346
|
+
onLoadCapture?: any;
|
|
347
|
+
onError?: any;
|
|
348
|
+
onErrorCapture?: any;
|
|
349
|
+
onKeyDown?: any;
|
|
350
|
+
onKeyDownCapture?: any;
|
|
351
|
+
onKeyPress?: any;
|
|
352
|
+
onKeyPressCapture?: any;
|
|
353
|
+
onKeyUp?: any;
|
|
354
|
+
onKeyUpCapture?: any;
|
|
355
|
+
onAbort?: any;
|
|
356
|
+
onAbortCapture?: any;
|
|
357
|
+
onCanPlay?: any;
|
|
358
|
+
onCanPlayCapture?: any;
|
|
359
|
+
onCanPlayThrough?: any;
|
|
360
|
+
onCanPlayThroughCapture?: any;
|
|
361
|
+
onDurationChange?: any;
|
|
362
|
+
onDurationChangeCapture?: any;
|
|
363
|
+
onEmptied?: any;
|
|
364
|
+
onEmptiedCapture?: any;
|
|
365
|
+
onEncrypted?: any;
|
|
366
|
+
onEncryptedCapture?: any;
|
|
367
|
+
onEnded?: any;
|
|
368
|
+
onEndedCapture?: any;
|
|
369
|
+
onLoadedData?: any;
|
|
370
|
+
onLoadedDataCapture?: any;
|
|
371
|
+
onLoadedMetadata?: any;
|
|
372
|
+
onLoadedMetadataCapture?: any;
|
|
373
|
+
onLoadStart?: any;
|
|
374
|
+
onLoadStartCapture?: any;
|
|
375
|
+
onPause?: any;
|
|
376
|
+
onPauseCapture?: any;
|
|
377
|
+
onPlay?: any;
|
|
378
|
+
onPlayCapture?: any;
|
|
379
|
+
onPlaying?: any;
|
|
380
|
+
onPlayingCapture?: any;
|
|
381
|
+
onProgress?: any;
|
|
382
|
+
onProgressCapture?: any;
|
|
383
|
+
onRateChange?: any;
|
|
384
|
+
onRateChangeCapture?: any;
|
|
385
|
+
onResize?: any;
|
|
386
|
+
onResizeCapture?: any;
|
|
387
|
+
onSeeked?: any;
|
|
388
|
+
onSeekedCapture?: any;
|
|
389
|
+
onSeeking?: any;
|
|
390
|
+
onSeekingCapture?: any;
|
|
391
|
+
onStalled?: any;
|
|
392
|
+
onStalledCapture?: any;
|
|
393
|
+
onSuspend?: any;
|
|
394
|
+
onSuspendCapture?: any;
|
|
395
|
+
onTimeUpdate?: any;
|
|
396
|
+
onTimeUpdateCapture?: any;
|
|
397
|
+
onVolumeChange?: any;
|
|
398
|
+
onVolumeChangeCapture?: any;
|
|
399
|
+
onWaiting?: any;
|
|
400
|
+
onWaitingCapture?: any;
|
|
401
|
+
onAuxClick?: any;
|
|
402
|
+
onAuxClickCapture?: any;
|
|
403
|
+
onClick?: any;
|
|
404
|
+
onClickCapture?: any;
|
|
405
|
+
onContextMenu?: any;
|
|
406
|
+
onContextMenuCapture?: any;
|
|
407
|
+
onDoubleClick?: any;
|
|
408
|
+
onDoubleClickCapture?: any;
|
|
409
|
+
onDrag?: any;
|
|
410
|
+
onDragCapture?: any;
|
|
411
|
+
onDragEnd?: any;
|
|
412
|
+
onDragEndCapture?: any;
|
|
413
|
+
onDragEnter?: any;
|
|
414
|
+
onDragEnterCapture?: any;
|
|
415
|
+
onDragExit?: any;
|
|
416
|
+
onDragExitCapture?: any;
|
|
417
|
+
onDragLeave?: any;
|
|
418
|
+
onDragLeaveCapture?: any;
|
|
419
|
+
onDragOver?: any;
|
|
420
|
+
onDragOverCapture?: any;
|
|
421
|
+
onDragStart?: any;
|
|
422
|
+
onDragStartCapture?: any;
|
|
423
|
+
onDrop?: any;
|
|
424
|
+
onDropCapture?: any;
|
|
425
|
+
onMouseDown?: any;
|
|
426
|
+
onMouseDownCapture?: any;
|
|
427
|
+
onMouseEnter?: any;
|
|
428
|
+
onMouseLeave?: any;
|
|
429
|
+
onMouseMove?: any;
|
|
430
|
+
onMouseMoveCapture?: any;
|
|
431
|
+
onMouseOut?: any;
|
|
432
|
+
onMouseOutCapture?: any;
|
|
433
|
+
onMouseOver?: any;
|
|
434
|
+
onMouseOverCapture?: any;
|
|
435
|
+
onMouseUp?: any;
|
|
436
|
+
onMouseUpCapture?: any;
|
|
437
|
+
onSelect?: any;
|
|
438
|
+
onSelectCapture?: any;
|
|
439
|
+
onTouchCancel?: any;
|
|
440
|
+
onTouchCancelCapture?: any;
|
|
441
|
+
onTouchEnd?: any;
|
|
442
|
+
onTouchEndCapture?: any;
|
|
443
|
+
onTouchMove?: any;
|
|
444
|
+
onTouchMoveCapture?: any;
|
|
445
|
+
onTouchStart?: any;
|
|
446
|
+
onTouchStartCapture?: any;
|
|
447
|
+
onPointerDown?: any;
|
|
448
|
+
onPointerDownCapture?: any;
|
|
449
|
+
onPointerMove?: any;
|
|
450
|
+
onPointerMoveCapture?: any;
|
|
451
|
+
onPointerUp?: any;
|
|
452
|
+
onPointerUpCapture?: any;
|
|
453
|
+
onPointerCancel?: any;
|
|
454
|
+
onPointerCancelCapture?: any;
|
|
455
|
+
onPointerEnter?: any;
|
|
456
|
+
onPointerEnterCapture?: any;
|
|
457
|
+
onPointerLeave?: any;
|
|
458
|
+
onPointerLeaveCapture?: any;
|
|
459
|
+
onPointerOver?: any;
|
|
460
|
+
onPointerOverCapture?: any;
|
|
461
|
+
onPointerOut?: any;
|
|
462
|
+
onPointerOutCapture?: any;
|
|
463
|
+
onGotPointerCapture?: any;
|
|
464
|
+
onGotPointerCaptureCapture?: any;
|
|
465
|
+
onLostPointerCapture?: any;
|
|
466
|
+
onLostPointerCaptureCapture?: any;
|
|
467
|
+
onScroll?: any;
|
|
468
|
+
onScrollCapture?: any;
|
|
469
|
+
onWheel?: any;
|
|
470
|
+
onWheelCapture?: any;
|
|
471
|
+
onAnimationStart?: any;
|
|
472
|
+
onAnimationStartCapture?: any;
|
|
473
|
+
onAnimationEnd?: any;
|
|
474
|
+
onAnimationEndCapture?: any;
|
|
475
|
+
onAnimationIteration?: any;
|
|
476
|
+
onAnimationIterationCapture?: any;
|
|
477
|
+
onTransitionEnd?: any;
|
|
478
|
+
onTransitionEndCapture?: any;
|
|
479
|
+
ref?: any;
|
|
480
|
+
key?: any;
|
|
481
|
+
}>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface SvgProps {
|
|
3
|
+
inline?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const Svg: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGSVGElement>, SvgProps>>;
|
|
6
|
+
export { Svg };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { defaultIcons } from './default';
|
|
2
|
+
import { IconsColors as Colors } from '../../helpers/colors';
|
|
3
|
+
import { IconsSizes as Sizes } from '../../helpers/sizes';
|
|
4
|
+
export interface IconsProps {
|
|
5
|
+
icon: IconType;
|
|
6
|
+
scale?: Sizes;
|
|
7
|
+
color?: Colors;
|
|
8
|
+
width?: number;
|
|
9
|
+
height?: number;
|
|
10
|
+
fill?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare type IconType = keyof typeof defaultIcons;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './modal';
|