@ultraviolet/form 1.8.1 → 1.8.2
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/index.d.ts +53 -53
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -356,7 +356,7 @@ declare const TextInputField: react.ForwardRefExoticComponent<BaseFieldProps<Tex
|
|
|
356
356
|
autoFocus?: boolean | undefined;
|
|
357
357
|
id?: string | undefined;
|
|
358
358
|
onChange?: react.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
359
|
-
|
|
359
|
+
"aria-label"?: string | undefined;
|
|
360
360
|
size?: number | undefined;
|
|
361
361
|
checked?: boolean | undefined;
|
|
362
362
|
onSubmit?: react.FormEventHandler<HTMLInputElement> | undefined;
|
|
@@ -403,58 +403,58 @@ declare const TextInputField: react.ForwardRefExoticComponent<BaseFieldProps<Tex
|
|
|
403
403
|
unselectable?: "off" | "on" | undefined;
|
|
404
404
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
405
405
|
is?: string | undefined;
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
406
|
+
"aria-activedescendant"?: string | undefined;
|
|
407
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
408
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
409
|
+
"aria-braillelabel"?: string | undefined;
|
|
410
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
411
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
412
|
+
"aria-checked"?: boolean | "false" | "true" | "mixed" | undefined;
|
|
413
|
+
"aria-colcount"?: number | undefined;
|
|
414
|
+
"aria-colindex"?: number | undefined;
|
|
415
|
+
"aria-colindextext"?: string | undefined;
|
|
416
|
+
"aria-colspan"?: number | undefined;
|
|
417
|
+
"aria-controls"?: string | undefined;
|
|
418
|
+
"aria-current"?: boolean | "time" | "false" | "true" | "page" | "date" | "step" | "location" | undefined;
|
|
419
|
+
"aria-describedby"?: string | undefined;
|
|
420
|
+
"aria-description"?: string | undefined;
|
|
421
|
+
"aria-details"?: string | undefined;
|
|
422
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
423
|
+
"aria-dropeffect"?: "link" | "move" | "none" | "copy" | "execute" | "popup" | undefined;
|
|
424
|
+
"aria-errormessage"?: string | undefined;
|
|
425
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
426
|
+
"aria-flowto"?: string | undefined;
|
|
427
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
428
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "false" | "true" | "grid" | "listbox" | "tree" | undefined;
|
|
429
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
430
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
431
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
432
|
+
"aria-labelledby"?: string | undefined;
|
|
433
|
+
"aria-level"?: number | undefined;
|
|
434
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
435
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
436
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
437
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
438
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
439
|
+
"aria-owns"?: string | undefined;
|
|
440
|
+
"aria-placeholder"?: string | undefined;
|
|
441
|
+
"aria-posinset"?: number | undefined;
|
|
442
|
+
"aria-pressed"?: boolean | "false" | "true" | "mixed" | undefined;
|
|
443
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
444
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
445
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
446
|
+
"aria-roledescription"?: string | undefined;
|
|
447
|
+
"aria-rowcount"?: number | undefined;
|
|
448
|
+
"aria-rowindex"?: number | undefined;
|
|
449
|
+
"aria-rowindextext"?: string | undefined;
|
|
450
|
+
"aria-rowspan"?: number | undefined;
|
|
451
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
452
|
+
"aria-setsize"?: number | undefined;
|
|
453
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
454
|
+
"aria-valuemax"?: number | undefined;
|
|
455
|
+
"aria-valuemin"?: number | undefined;
|
|
456
|
+
"aria-valuenow"?: number | undefined;
|
|
457
|
+
"aria-valuetext"?: string | undefined;
|
|
458
458
|
dangerouslySetInnerHTML?: {
|
|
459
459
|
__html: string | TrustedHTML;
|
|
460
460
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/form",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "Ultraviolet Form",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"react-dom": "18.x"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@babel/core": "7.
|
|
41
|
+
"@babel/core": "7.23.0",
|
|
42
42
|
"@types/final-form-focus": "1.1.5",
|
|
43
|
-
"@types/react": "18.2.
|
|
44
|
-
"@types/react-dom": "18.2.
|
|
43
|
+
"@types/react": "18.2.25",
|
|
44
|
+
"@types/react-dom": "18.2.10",
|
|
45
45
|
"react": "18.2.0",
|
|
46
46
|
"react-dom": "18.2.0"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@babel/runtime": "7.
|
|
49
|
+
"@babel/runtime": "7.23.1",
|
|
50
50
|
"@emotion/babel-plugin": "11.11.0",
|
|
51
51
|
"@emotion/react": "11.11.1",
|
|
52
52
|
"@emotion/styled": "11.11.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"final-form-arrays": "3.0.2",
|
|
55
55
|
"react-final-form": "6.5.9",
|
|
56
56
|
"react-final-form-arrays": "3.1.4",
|
|
57
|
-
"react-select": "5.7.
|
|
58
|
-
"@ultraviolet/ui": "1.
|
|
57
|
+
"react-select": "5.7.7",
|
|
58
|
+
"@ultraviolet/ui": "1.18.0"
|
|
59
59
|
}
|
|
60
60
|
}
|