@helpscout/ui-kit-react 0.1.1 → 0.1.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.
Files changed (50) hide show
  1. package/dist/lib/components/badge/badge.d.ts +1 -0
  2. package/dist/lib/components/badge/badge.d.ts.map +1 -1
  3. package/dist/lib/components/button/button.d.ts +1 -0
  4. package/dist/lib/components/button/button.d.ts.map +1 -1
  5. package/dist/lib/components/icon/icon.d.ts +18 -0
  6. package/dist/lib/components/icon/icon.d.ts.map +1 -0
  7. package/dist/lib/components/icon/icon.test.d.ts +2 -0
  8. package/dist/lib/components/icon/icon.test.d.ts.map +1 -0
  9. package/dist/lib/components/input/input.d.ts +1 -0
  10. package/dist/lib/components/input/input.d.ts.map +1 -1
  11. package/dist/lib/components/label/label.d.ts +1 -0
  12. package/dist/lib/components/label/label.d.ts.map +1 -1
  13. package/dist/lib/components/link/link.d.ts +1 -0
  14. package/dist/lib/components/link/link.d.ts.map +1 -1
  15. package/dist/lib/components/list/list.d.ts +21 -0
  16. package/dist/lib/components/list/list.d.ts.map +1 -0
  17. package/dist/lib/components/list/list.test.d.ts +2 -0
  18. package/dist/lib/components/list/list.test.d.ts.map +1 -0
  19. package/dist/lib/components/{numberfield/numberfield.d.ts → number-field/number-field.d.ts} +2 -1
  20. package/dist/lib/components/number-field/number-field.d.ts.map +1 -0
  21. package/dist/lib/components/number-field/number-field.test.d.ts +2 -0
  22. package/dist/lib/components/number-field/number-field.test.d.ts.map +1 -0
  23. package/dist/lib/components/text/text.d.ts +1 -0
  24. package/dist/lib/components/text/text.d.ts.map +1 -1
  25. package/dist/lib/components/text-area/text-area.d.ts +14 -0
  26. package/dist/lib/components/text-area/text-area.d.ts.map +1 -0
  27. package/dist/lib/components/text-area/text-area.test.d.ts +2 -0
  28. package/dist/lib/components/text-area/text-area.test.d.ts.map +1 -0
  29. package/dist/lib/components/text-area-field/text-area-field.d.ts +23 -0
  30. package/dist/lib/components/text-area-field/text-area-field.d.ts.map +1 -0
  31. package/dist/lib/components/text-area-field/text-area-field.test.d.ts +2 -0
  32. package/dist/lib/components/text-area-field/text-area-field.test.d.ts.map +1 -0
  33. package/dist/lib/components/text-field/text-field.d.ts +1 -0
  34. package/dist/lib/components/text-field/text-field.d.ts.map +1 -1
  35. package/dist/lib/components/theme/theme.d.ts +1 -0
  36. package/dist/lib/components/theme/theme.d.ts.map +1 -1
  37. package/dist/lib/components/thumbnail/thumbnail.d.ts +2 -1
  38. package/dist/lib/components/thumbnail/thumbnail.d.ts.map +1 -1
  39. package/dist/lib/components/validation-alert/validation-alert.d.ts +1 -0
  40. package/dist/lib/components/validation-alert/validation-alert.d.ts.map +1 -1
  41. package/dist/lib/ui-kit-react.d.ts +5 -1
  42. package/dist/lib/ui-kit-react.d.ts.map +1 -1
  43. package/dist/prop-types.json +1118 -0
  44. package/dist/ui-kit-react.css +1 -1
  45. package/dist/ui-kit-react.js +7578 -7401
  46. package/dist/ui-kit-react.umd.cjs +42 -42
  47. package/package.json +3 -2
  48. package/dist/lib/components/numberfield/numberfield.d.ts.map +0 -1
  49. package/dist/lib/components/numberfield/numberfield.test.d.ts +0 -2
  50. package/dist/lib/components/numberfield/numberfield.test.d.ts.map +0 -1
@@ -809,6 +809,48 @@
809
809
  }
810
810
  }
811
811
  },
812
+ "Icon": {
813
+ "icon": {
814
+ "defaultValue": null,
815
+ "description": "The icon component to render.",
816
+ "name": "icon",
817
+ "parent": {
818
+ "fileName": "ui-kit-react/lib/components/icon/icon.tsx",
819
+ "name": "IconProps"
820
+ },
821
+ "declarations": [
822
+ {
823
+ "fileName": "ui-kit-react/lib/components/icon/icon.tsx",
824
+ "name": "IconProps"
825
+ }
826
+ ],
827
+ "required": true,
828
+ "type": {
829
+ "name": "ComponentType<{}>"
830
+ }
831
+ },
832
+ "size": {
833
+ "defaultValue": {
834
+ "value": "md"
835
+ },
836
+ "description": "Optional size of the icon.",
837
+ "name": "size",
838
+ "parent": {
839
+ "fileName": "ui-kit-react/lib/components/icon/icon.tsx",
840
+ "name": "IconProps"
841
+ },
842
+ "declarations": [
843
+ {
844
+ "fileName": "ui-kit-react/lib/components/icon/icon.tsx",
845
+ "name": "IconProps"
846
+ }
847
+ ],
848
+ "required": false,
849
+ "type": {
850
+ "name": "\"xs\" | \"sm\" | \"md\" | \"lg\" | null"
851
+ }
852
+ }
853
+ },
812
854
  "Input": {
813
855
  "state": {
814
856
  "defaultValue": null,
@@ -1499,6 +1541,48 @@
1499
1541
  }
1500
1542
  }
1501
1543
  },
1544
+ "List": {
1545
+ "children": {
1546
+ "defaultValue": null,
1547
+ "description": "The list items to render",
1548
+ "name": "children",
1549
+ "parent": {
1550
+ "fileName": "ui-kit-react/lib/components/list/list.tsx",
1551
+ "name": "ListProps"
1552
+ },
1553
+ "declarations": [
1554
+ {
1555
+ "fileName": "ui-kit-react/lib/components/list/list.tsx",
1556
+ "name": "ListProps"
1557
+ }
1558
+ ],
1559
+ "required": true,
1560
+ "type": {
1561
+ "name": "ReactNode"
1562
+ }
1563
+ },
1564
+ "decoration": {
1565
+ "defaultValue": {
1566
+ "value": "none"
1567
+ },
1568
+ "description": "Optional decoration for each list item",
1569
+ "name": "decoration",
1570
+ "parent": {
1571
+ "fileName": "ui-kit-react/lib/components/list/list.tsx",
1572
+ "name": "ListProps"
1573
+ },
1574
+ "declarations": [
1575
+ {
1576
+ "fileName": "ui-kit-react/lib/components/list/list.tsx",
1577
+ "name": "ListProps"
1578
+ }
1579
+ ],
1580
+ "required": false,
1581
+ "type": {
1582
+ "name": "\"none\" | \"bullet\" | \"numbered\" | null"
1583
+ }
1584
+ }
1585
+ },
1502
1586
  "NumberField": {
1503
1587
  "decrementAriaLabel": {
1504
1588
  "defaultValue": null,
@@ -2421,6 +2505,1040 @@
2421
2505
  }
2422
2506
  }
2423
2507
  },
2508
+ "TextArea": {
2509
+ "state": {
2510
+ "defaultValue": null,
2511
+ "description": "Changes the appearance of the textarea to indicate an error, success, or warning state.",
2512
+ "name": "state",
2513
+ "parent": {
2514
+ "fileName": "ui-kit-react/lib/components/text-area/text-area.tsx",
2515
+ "name": "TextAreaProps"
2516
+ },
2517
+ "declarations": [
2518
+ {
2519
+ "fileName": "ui-kit-react/lib/components/text-area/text-area.tsx",
2520
+ "name": "TextAreaProps"
2521
+ }
2522
+ ],
2523
+ "required": false,
2524
+ "type": {
2525
+ "name": "\"error\" | \"success\" | \"warning\" | null"
2526
+ }
2527
+ },
2528
+ "onHoverStart": {
2529
+ "defaultValue": null,
2530
+ "description": "Handler that is called when a hover interaction starts.",
2531
+ "name": "onHoverStart",
2532
+ "parent": {
2533
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2534
+ "name": "HoverEvents"
2535
+ },
2536
+ "declarations": [
2537
+ {
2538
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2539
+ "name": "HoverEvents"
2540
+ }
2541
+ ],
2542
+ "required": false,
2543
+ "type": {
2544
+ "name": "(e: HoverEvent) => void"
2545
+ }
2546
+ },
2547
+ "onHoverEnd": {
2548
+ "defaultValue": null,
2549
+ "description": "Handler that is called when a hover interaction ends.",
2550
+ "name": "onHoverEnd",
2551
+ "parent": {
2552
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2553
+ "name": "HoverEvents"
2554
+ },
2555
+ "declarations": [
2556
+ {
2557
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2558
+ "name": "HoverEvents"
2559
+ }
2560
+ ],
2561
+ "required": false,
2562
+ "type": {
2563
+ "name": "(e: HoverEvent) => void"
2564
+ }
2565
+ },
2566
+ "onHoverChange": {
2567
+ "defaultValue": null,
2568
+ "description": "Handler that is called when the hover state changes.",
2569
+ "name": "onHoverChange",
2570
+ "parent": {
2571
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2572
+ "name": "HoverEvents"
2573
+ },
2574
+ "declarations": [
2575
+ {
2576
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2577
+ "name": "HoverEvents"
2578
+ }
2579
+ ],
2580
+ "required": false,
2581
+ "type": {
2582
+ "name": "(isHovering: boolean) => void"
2583
+ }
2584
+ },
2585
+ "className": {
2586
+ "defaultValue": null,
2587
+ "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.",
2588
+ "name": "className",
2589
+ "parent": {
2590
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
2591
+ "name": "StyleRenderProps"
2592
+ },
2593
+ "declarations": [
2594
+ {
2595
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
2596
+ "name": "StyleRenderProps"
2597
+ }
2598
+ ],
2599
+ "required": false,
2600
+ "type": {
2601
+ "name": "(values: InputRenderProps) => string"
2602
+ }
2603
+ },
2604
+ "style": {
2605
+ "defaultValue": null,
2606
+ "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.",
2607
+ "name": "style",
2608
+ "parent": {
2609
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
2610
+ "name": "StyleRenderProps"
2611
+ },
2612
+ "declarations": [
2613
+ {
2614
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
2615
+ "name": "StyleRenderProps"
2616
+ }
2617
+ ],
2618
+ "required": false,
2619
+ "type": {
2620
+ "name": "(values: InputRenderProps) => CSSProperties"
2621
+ }
2622
+ }
2623
+ },
2624
+ "TextAreaField": {
2625
+ "label": {
2626
+ "defaultValue": null,
2627
+ "description": "The label for the textarea.",
2628
+ "name": "label",
2629
+ "parent": {
2630
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2631
+ "name": "TextAreaFieldProps"
2632
+ },
2633
+ "declarations": [
2634
+ {
2635
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2636
+ "name": "TextAreaFieldProps"
2637
+ }
2638
+ ],
2639
+ "required": false,
2640
+ "type": {
2641
+ "name": "string"
2642
+ }
2643
+ },
2644
+ "description": {
2645
+ "defaultValue": null,
2646
+ "description": "Shows a description under the label.",
2647
+ "name": "description",
2648
+ "parent": {
2649
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2650
+ "name": "TextAreaFieldProps"
2651
+ },
2652
+ "declarations": [
2653
+ {
2654
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2655
+ "name": "TextAreaFieldProps"
2656
+ }
2657
+ ],
2658
+ "required": false,
2659
+ "type": {
2660
+ "name": "string"
2661
+ }
2662
+ },
2663
+ "isDisabled": {
2664
+ "defaultValue": null,
2665
+ "description": "Controls if the textarea is disabled.",
2666
+ "name": "isDisabled",
2667
+ "parent": {
2668
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2669
+ "name": "TextAreaFieldProps"
2670
+ },
2671
+ "declarations": [
2672
+ {
2673
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2674
+ "name": "TextAreaFieldProps"
2675
+ }
2676
+ ],
2677
+ "required": false,
2678
+ "type": {
2679
+ "name": "boolean"
2680
+ }
2681
+ },
2682
+ "placeholder": {
2683
+ "defaultValue": null,
2684
+ "description": "Shows a placeholder in the textarea.",
2685
+ "name": "placeholder",
2686
+ "parent": {
2687
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2688
+ "name": "TextAreaFieldProps"
2689
+ },
2690
+ "declarations": [
2691
+ {
2692
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2693
+ "name": "TextAreaFieldProps"
2694
+ }
2695
+ ],
2696
+ "required": false,
2697
+ "type": {
2698
+ "name": "string"
2699
+ }
2700
+ },
2701
+ "rows": {
2702
+ "defaultValue": {
2703
+ "value": 2
2704
+ },
2705
+ "description": "Height of textarea based on number of visible rows.",
2706
+ "name": "rows",
2707
+ "parent": {
2708
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2709
+ "name": "TextAreaFieldProps"
2710
+ },
2711
+ "declarations": [
2712
+ {
2713
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2714
+ "name": "TextAreaFieldProps"
2715
+ }
2716
+ ],
2717
+ "required": false,
2718
+ "type": {
2719
+ "name": "number"
2720
+ }
2721
+ },
2722
+ "validationMessage": {
2723
+ "defaultValue": null,
2724
+ "description": "Show a validation message under the textarea.",
2725
+ "name": "validationMessage",
2726
+ "parent": {
2727
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2728
+ "name": "TextAreaFieldProps"
2729
+ },
2730
+ "declarations": [
2731
+ {
2732
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2733
+ "name": "TextAreaFieldProps"
2734
+ }
2735
+ ],
2736
+ "required": false,
2737
+ "type": {
2738
+ "name": "string"
2739
+ }
2740
+ },
2741
+ "validationState": {
2742
+ "defaultValue": null,
2743
+ "description": "Changes the appearance of the textarea.",
2744
+ "name": "validationState",
2745
+ "parent": {
2746
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2747
+ "name": "TextAreaFieldProps"
2748
+ },
2749
+ "declarations": [
2750
+ {
2751
+ "fileName": "ui-kit-react/lib/components/text-area-field/text-area-field.tsx",
2752
+ "name": "TextAreaFieldProps"
2753
+ }
2754
+ ],
2755
+ "required": false,
2756
+ "type": {
2757
+ "name": "\"error\" | \"success\" | \"warning\""
2758
+ }
2759
+ },
2760
+ "validationBehavior": {
2761
+ "defaultValue": {
2762
+ "value": "'native'"
2763
+ },
2764
+ "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.",
2765
+ "name": "validationBehavior",
2766
+ "parent": {
2767
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
2768
+ "name": "RACValidation"
2769
+ },
2770
+ "declarations": [
2771
+ {
2772
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
2773
+ "name": "RACValidation"
2774
+ }
2775
+ ],
2776
+ "required": false,
2777
+ "type": {
2778
+ "name": "\"native\" | \"aria\""
2779
+ }
2780
+ },
2781
+ "aria-activedescendant": {
2782
+ "defaultValue": null,
2783
+ "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
2784
+ "name": "aria-activedescendant",
2785
+ "parent": {
2786
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+textfield@3.9.1_react@18.2.0/node_modules/@react-types/textfield/src/index.d.ts",
2787
+ "name": "AriaTextFieldProps"
2788
+ },
2789
+ "declarations": [
2790
+ {
2791
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+textfield@3.9.1_react@18.2.0/node_modules/@react-types/textfield/src/index.d.ts",
2792
+ "name": "AriaTextFieldProps"
2793
+ }
2794
+ ],
2795
+ "required": false,
2796
+ "type": {
2797
+ "name": "string"
2798
+ }
2799
+ },
2800
+ "aria-autocomplete": {
2801
+ "defaultValue": null,
2802
+ "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.",
2803
+ "name": "aria-autocomplete",
2804
+ "parent": {
2805
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+textfield@3.9.1_react@18.2.0/node_modules/@react-types/textfield/src/index.d.ts",
2806
+ "name": "AriaTextFieldProps"
2807
+ },
2808
+ "declarations": [
2809
+ {
2810
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+textfield@3.9.1_react@18.2.0/node_modules/@react-types/textfield/src/index.d.ts",
2811
+ "name": "AriaTextFieldProps"
2812
+ }
2813
+ ],
2814
+ "required": false,
2815
+ "type": {
2816
+ "name": "\"none\" | \"inline\" | \"list\" | \"both\""
2817
+ }
2818
+ },
2819
+ "aria-haspopup": {
2820
+ "defaultValue": null,
2821
+ "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
2822
+ "name": "aria-haspopup",
2823
+ "parent": {
2824
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+textfield@3.9.1_react@18.2.0/node_modules/@react-types/textfield/src/index.d.ts",
2825
+ "name": "AriaTextFieldProps"
2826
+ },
2827
+ "declarations": [
2828
+ {
2829
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+textfield@3.9.1_react@18.2.0/node_modules/@react-types/textfield/src/index.d.ts",
2830
+ "name": "AriaTextFieldProps"
2831
+ }
2832
+ ],
2833
+ "required": false,
2834
+ "type": {
2835
+ "name": "boolean | \"false\" | \"true\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\""
2836
+ }
2837
+ },
2838
+ "isReadOnly": {
2839
+ "defaultValue": null,
2840
+ "description": "Whether the input can be selected but not changed by the user.",
2841
+ "name": "isReadOnly",
2842
+ "parent": {
2843
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
2844
+ "name": "InputBase"
2845
+ },
2846
+ "declarations": [
2847
+ {
2848
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
2849
+ "name": "InputBase"
2850
+ }
2851
+ ],
2852
+ "required": false,
2853
+ "type": {
2854
+ "name": "boolean"
2855
+ }
2856
+ },
2857
+ "isRequired": {
2858
+ "defaultValue": null,
2859
+ "description": "Whether user input is required on the input before form submission.",
2860
+ "name": "isRequired",
2861
+ "parent": {
2862
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
2863
+ "name": "Validation"
2864
+ },
2865
+ "declarations": [
2866
+ {
2867
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
2868
+ "name": "Validation"
2869
+ }
2870
+ ],
2871
+ "required": false,
2872
+ "type": {
2873
+ "name": "boolean"
2874
+ }
2875
+ },
2876
+ "validate": {
2877
+ "defaultValue": null,
2878
+ "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.",
2879
+ "name": "validate",
2880
+ "parent": {
2881
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
2882
+ "name": "Validation"
2883
+ },
2884
+ "declarations": [
2885
+ {
2886
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
2887
+ "name": "Validation"
2888
+ }
2889
+ ],
2890
+ "required": false,
2891
+ "type": {
2892
+ "name": "(value: string) => true | ValidationError | null"
2893
+ }
2894
+ },
2895
+ "autoFocus": {
2896
+ "defaultValue": null,
2897
+ "description": "Whether the element should receive focus on render.",
2898
+ "name": "autoFocus",
2899
+ "parent": {
2900
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2901
+ "name": "FocusableProps"
2902
+ },
2903
+ "declarations": [
2904
+ {
2905
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2906
+ "name": "FocusableProps"
2907
+ }
2908
+ ],
2909
+ "required": false,
2910
+ "type": {
2911
+ "name": "boolean"
2912
+ }
2913
+ },
2914
+ "onFocus": {
2915
+ "defaultValue": null,
2916
+ "description": "Handler that is called when the element receives focus.",
2917
+ "name": "onFocus",
2918
+ "parent": {
2919
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2920
+ "name": "FocusEvents"
2921
+ },
2922
+ "declarations": [
2923
+ {
2924
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2925
+ "name": "FocusEvents"
2926
+ }
2927
+ ],
2928
+ "required": false,
2929
+ "type": {
2930
+ "name": "(e: FocusEvent<Element, Element>) => void"
2931
+ }
2932
+ },
2933
+ "onBlur": {
2934
+ "defaultValue": null,
2935
+ "description": "Handler that is called when the element loses focus.",
2936
+ "name": "onBlur",
2937
+ "parent": {
2938
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2939
+ "name": "FocusEvents"
2940
+ },
2941
+ "declarations": [
2942
+ {
2943
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2944
+ "name": "FocusEvents"
2945
+ }
2946
+ ],
2947
+ "required": false,
2948
+ "type": {
2949
+ "name": "(e: FocusEvent<Element, Element>) => void"
2950
+ }
2951
+ },
2952
+ "onFocusChange": {
2953
+ "defaultValue": null,
2954
+ "description": "Handler that is called when the element's focus status changes.",
2955
+ "name": "onFocusChange",
2956
+ "parent": {
2957
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2958
+ "name": "FocusEvents"
2959
+ },
2960
+ "declarations": [
2961
+ {
2962
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2963
+ "name": "FocusEvents"
2964
+ }
2965
+ ],
2966
+ "required": false,
2967
+ "type": {
2968
+ "name": "(isFocused: boolean) => void"
2969
+ }
2970
+ },
2971
+ "onKeyDown": {
2972
+ "defaultValue": null,
2973
+ "description": "Handler that is called when a key is pressed.",
2974
+ "name": "onKeyDown",
2975
+ "parent": {
2976
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2977
+ "name": "KeyboardEvents"
2978
+ },
2979
+ "declarations": [
2980
+ {
2981
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2982
+ "name": "KeyboardEvents"
2983
+ }
2984
+ ],
2985
+ "required": false,
2986
+ "type": {
2987
+ "name": "(e: KeyboardEvent) => void"
2988
+ }
2989
+ },
2990
+ "onKeyUp": {
2991
+ "defaultValue": null,
2992
+ "description": "Handler that is called when a key is released.",
2993
+ "name": "onKeyUp",
2994
+ "parent": {
2995
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
2996
+ "name": "KeyboardEvents"
2997
+ },
2998
+ "declarations": [
2999
+ {
3000
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/events.d.ts",
3001
+ "name": "KeyboardEvents"
3002
+ }
3003
+ ],
3004
+ "required": false,
3005
+ "type": {
3006
+ "name": "(e: KeyboardEvent) => void"
3007
+ }
3008
+ },
3009
+ "value": {
3010
+ "defaultValue": null,
3011
+ "description": "The current value (controlled).",
3012
+ "name": "value",
3013
+ "parent": {
3014
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
3015
+ "name": "ValueBase"
3016
+ },
3017
+ "declarations": [
3018
+ {
3019
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
3020
+ "name": "ValueBase"
3021
+ }
3022
+ ],
3023
+ "required": false,
3024
+ "type": {
3025
+ "name": "string"
3026
+ }
3027
+ },
3028
+ "defaultValue": {
3029
+ "defaultValue": null,
3030
+ "description": "The default value (uncontrolled).",
3031
+ "name": "defaultValue",
3032
+ "parent": {
3033
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
3034
+ "name": "ValueBase"
3035
+ },
3036
+ "declarations": [
3037
+ {
3038
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
3039
+ "name": "ValueBase"
3040
+ }
3041
+ ],
3042
+ "required": false,
3043
+ "type": {
3044
+ "name": "string"
3045
+ }
3046
+ },
3047
+ "onChange": {
3048
+ "defaultValue": null,
3049
+ "description": "Handler that is called when the value changes.",
3050
+ "name": "onChange",
3051
+ "parent": {
3052
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
3053
+ "name": "ValueBase"
3054
+ },
3055
+ "declarations": [
3056
+ {
3057
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/inputs.d.ts",
3058
+ "name": "ValueBase"
3059
+ }
3060
+ ],
3061
+ "required": false,
3062
+ "type": {
3063
+ "name": "(value: string) => void"
3064
+ }
3065
+ },
3066
+ "aria-label": {
3067
+ "defaultValue": null,
3068
+ "description": "Defines a string value that labels the current element.",
3069
+ "name": "aria-label",
3070
+ "parent": {
3071
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3072
+ "name": "AriaLabelingProps"
3073
+ },
3074
+ "declarations": [
3075
+ {
3076
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3077
+ "name": "AriaLabelingProps"
3078
+ }
3079
+ ],
3080
+ "required": false,
3081
+ "type": {
3082
+ "name": "string"
3083
+ }
3084
+ },
3085
+ "aria-labelledby": {
3086
+ "defaultValue": null,
3087
+ "description": "Identifies the element (or elements) that labels the current element.",
3088
+ "name": "aria-labelledby",
3089
+ "parent": {
3090
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3091
+ "name": "AriaLabelingProps"
3092
+ },
3093
+ "declarations": [
3094
+ {
3095
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3096
+ "name": "AriaLabelingProps"
3097
+ }
3098
+ ],
3099
+ "required": false,
3100
+ "type": {
3101
+ "name": "string"
3102
+ }
3103
+ },
3104
+ "aria-describedby": {
3105
+ "defaultValue": null,
3106
+ "description": "Identifies the element (or elements) that describes the object.",
3107
+ "name": "aria-describedby",
3108
+ "parent": {
3109
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3110
+ "name": "AriaLabelingProps"
3111
+ },
3112
+ "declarations": [
3113
+ {
3114
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3115
+ "name": "AriaLabelingProps"
3116
+ }
3117
+ ],
3118
+ "required": false,
3119
+ "type": {
3120
+ "name": "string"
3121
+ }
3122
+ },
3123
+ "aria-details": {
3124
+ "defaultValue": null,
3125
+ "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.",
3126
+ "name": "aria-details",
3127
+ "parent": {
3128
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3129
+ "name": "AriaLabelingProps"
3130
+ },
3131
+ "declarations": [
3132
+ {
3133
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3134
+ "name": "AriaLabelingProps"
3135
+ }
3136
+ ],
3137
+ "required": false,
3138
+ "type": {
3139
+ "name": "string"
3140
+ }
3141
+ },
3142
+ "excludeFromTabOrder": {
3143
+ "defaultValue": null,
3144
+ "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.",
3145
+ "name": "excludeFromTabOrder",
3146
+ "parent": {
3147
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3148
+ "name": "FocusableDOMProps"
3149
+ },
3150
+ "declarations": [
3151
+ {
3152
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3153
+ "name": "FocusableDOMProps"
3154
+ }
3155
+ ],
3156
+ "required": false,
3157
+ "type": {
3158
+ "name": "boolean"
3159
+ }
3160
+ },
3161
+ "id": {
3162
+ "defaultValue": null,
3163
+ "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).",
3164
+ "name": "id",
3165
+ "parent": {
3166
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3167
+ "name": "DOMProps"
3168
+ },
3169
+ "declarations": [
3170
+ {
3171
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3172
+ "name": "DOMProps"
3173
+ }
3174
+ ],
3175
+ "required": false,
3176
+ "type": {
3177
+ "name": "string"
3178
+ }
3179
+ },
3180
+ "autoComplete": {
3181
+ "defaultValue": null,
3182
+ "description": "Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).",
3183
+ "name": "autoComplete",
3184
+ "parent": {
3185
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3186
+ "name": "TextInputDOMProps"
3187
+ },
3188
+ "declarations": [
3189
+ {
3190
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3191
+ "name": "TextInputDOMProps"
3192
+ }
3193
+ ],
3194
+ "required": false,
3195
+ "type": {
3196
+ "name": "string"
3197
+ }
3198
+ },
3199
+ "maxLength": {
3200
+ "defaultValue": null,
3201
+ "description": "The maximum number of characters supported by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefmaxlength).",
3202
+ "name": "maxLength",
3203
+ "parent": {
3204
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3205
+ "name": "TextInputDOMProps"
3206
+ },
3207
+ "declarations": [
3208
+ {
3209
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3210
+ "name": "TextInputDOMProps"
3211
+ }
3212
+ ],
3213
+ "required": false,
3214
+ "type": {
3215
+ "name": "number"
3216
+ }
3217
+ },
3218
+ "minLength": {
3219
+ "defaultValue": null,
3220
+ "description": "The minimum number of characters required by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefminlength).",
3221
+ "name": "minLength",
3222
+ "parent": {
3223
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3224
+ "name": "TextInputDOMProps"
3225
+ },
3226
+ "declarations": [
3227
+ {
3228
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3229
+ "name": "TextInputDOMProps"
3230
+ }
3231
+ ],
3232
+ "required": false,
3233
+ "type": {
3234
+ "name": "number"
3235
+ }
3236
+ },
3237
+ "pattern": {
3238
+ "defaultValue": null,
3239
+ "description": "Regex pattern that the value of the input must match to be valid. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefpattern).",
3240
+ "name": "pattern",
3241
+ "parent": {
3242
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3243
+ "name": "TextInputDOMProps"
3244
+ },
3245
+ "declarations": [
3246
+ {
3247
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3248
+ "name": "TextInputDOMProps"
3249
+ }
3250
+ ],
3251
+ "required": false,
3252
+ "type": {
3253
+ "name": "string"
3254
+ }
3255
+ },
3256
+ "name": {
3257
+ "defaultValue": null,
3258
+ "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).",
3259
+ "name": "name",
3260
+ "parent": {
3261
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3262
+ "name": "InputDOMProps"
3263
+ },
3264
+ "declarations": [
3265
+ {
3266
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3267
+ "name": "InputDOMProps"
3268
+ }
3269
+ ],
3270
+ "required": false,
3271
+ "type": {
3272
+ "name": "string"
3273
+ }
3274
+ },
3275
+ "onCopy": {
3276
+ "defaultValue": null,
3277
+ "description": "Handler that is called when the user copies text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncopy).",
3278
+ "name": "onCopy",
3279
+ "parent": {
3280
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3281
+ "name": "TextInputDOMEvents"
3282
+ },
3283
+ "declarations": [
3284
+ {
3285
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3286
+ "name": "TextInputDOMEvents"
3287
+ }
3288
+ ],
3289
+ "required": false,
3290
+ "type": {
3291
+ "name": "ClipboardEventHandler<HTMLInputElement>"
3292
+ }
3293
+ },
3294
+ "onCut": {
3295
+ "defaultValue": null,
3296
+ "description": "Handler that is called when the user cuts text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncut).",
3297
+ "name": "onCut",
3298
+ "parent": {
3299
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3300
+ "name": "TextInputDOMEvents"
3301
+ },
3302
+ "declarations": [
3303
+ {
3304
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3305
+ "name": "TextInputDOMEvents"
3306
+ }
3307
+ ],
3308
+ "required": false,
3309
+ "type": {
3310
+ "name": "ClipboardEventHandler<HTMLInputElement>"
3311
+ }
3312
+ },
3313
+ "onPaste": {
3314
+ "defaultValue": null,
3315
+ "description": "Handler that is called when the user pastes text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/onpaste).",
3316
+ "name": "onPaste",
3317
+ "parent": {
3318
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3319
+ "name": "TextInputDOMEvents"
3320
+ },
3321
+ "declarations": [
3322
+ {
3323
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3324
+ "name": "TextInputDOMEvents"
3325
+ }
3326
+ ],
3327
+ "required": false,
3328
+ "type": {
3329
+ "name": "ClipboardEventHandler<HTMLInputElement>"
3330
+ }
3331
+ },
3332
+ "onCompositionStart": {
3333
+ "defaultValue": null,
3334
+ "description": "Handler that is called when a text composition system starts a new text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionstart_event).",
3335
+ "name": "onCompositionStart",
3336
+ "parent": {
3337
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3338
+ "name": "TextInputDOMEvents"
3339
+ },
3340
+ "declarations": [
3341
+ {
3342
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3343
+ "name": "TextInputDOMEvents"
3344
+ }
3345
+ ],
3346
+ "required": false,
3347
+ "type": {
3348
+ "name": "CompositionEventHandler<HTMLInputElement>"
3349
+ }
3350
+ },
3351
+ "onCompositionEnd": {
3352
+ "defaultValue": null,
3353
+ "description": "Handler that is called when a text composition system completes or cancels the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionend_event).",
3354
+ "name": "onCompositionEnd",
3355
+ "parent": {
3356
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3357
+ "name": "TextInputDOMEvents"
3358
+ },
3359
+ "declarations": [
3360
+ {
3361
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3362
+ "name": "TextInputDOMEvents"
3363
+ }
3364
+ ],
3365
+ "required": false,
3366
+ "type": {
3367
+ "name": "CompositionEventHandler<HTMLInputElement>"
3368
+ }
3369
+ },
3370
+ "onCompositionUpdate": {
3371
+ "defaultValue": null,
3372
+ "description": "Handler that is called when a new character is received in the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionupdate_event).",
3373
+ "name": "onCompositionUpdate",
3374
+ "parent": {
3375
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3376
+ "name": "TextInputDOMEvents"
3377
+ },
3378
+ "declarations": [
3379
+ {
3380
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3381
+ "name": "TextInputDOMEvents"
3382
+ }
3383
+ ],
3384
+ "required": false,
3385
+ "type": {
3386
+ "name": "CompositionEventHandler<HTMLInputElement>"
3387
+ }
3388
+ },
3389
+ "onSelect": {
3390
+ "defaultValue": null,
3391
+ "description": "Handler that is called when text in the input is selected. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/select_event).",
3392
+ "name": "onSelect",
3393
+ "parent": {
3394
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3395
+ "name": "TextInputDOMEvents"
3396
+ },
3397
+ "declarations": [
3398
+ {
3399
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3400
+ "name": "TextInputDOMEvents"
3401
+ }
3402
+ ],
3403
+ "required": false,
3404
+ "type": {
3405
+ "name": "ReactEventHandler<HTMLInputElement>"
3406
+ }
3407
+ },
3408
+ "onBeforeInput": {
3409
+ "defaultValue": null,
3410
+ "description": "Handler that is called when the input value is about to be modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event).",
3411
+ "name": "onBeforeInput",
3412
+ "parent": {
3413
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3414
+ "name": "TextInputDOMEvents"
3415
+ },
3416
+ "declarations": [
3417
+ {
3418
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3419
+ "name": "TextInputDOMEvents"
3420
+ }
3421
+ ],
3422
+ "required": false,
3423
+ "type": {
3424
+ "name": "FormEventHandler<HTMLInputElement>"
3425
+ }
3426
+ },
3427
+ "onInput": {
3428
+ "defaultValue": null,
3429
+ "description": "Handler that is called when the input value is modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event).",
3430
+ "name": "onInput",
3431
+ "parent": {
3432
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3433
+ "name": "TextInputDOMEvents"
3434
+ },
3435
+ "declarations": [
3436
+ {
3437
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3438
+ "name": "TextInputDOMEvents"
3439
+ }
3440
+ ],
3441
+ "required": false,
3442
+ "type": {
3443
+ "name": "FormEventHandler<HTMLInputElement>"
3444
+ }
3445
+ },
3446
+ "aria-errormessage": {
3447
+ "defaultValue": null,
3448
+ "description": "Identifies the element that provides an error message for the object.",
3449
+ "name": "aria-errormessage",
3450
+ "parent": {
3451
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3452
+ "name": "AriaValidationProps"
3453
+ },
3454
+ "declarations": [
3455
+ {
3456
+ "fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
3457
+ "name": "AriaValidationProps"
3458
+ }
3459
+ ],
3460
+ "required": false,
3461
+ "type": {
3462
+ "name": "string"
3463
+ }
3464
+ },
3465
+ "style": {
3466
+ "defaultValue": null,
3467
+ "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.",
3468
+ "name": "style",
3469
+ "parent": {
3470
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3471
+ "name": "StyleRenderProps"
3472
+ },
3473
+ "declarations": [
3474
+ {
3475
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3476
+ "name": "StyleRenderProps"
3477
+ }
3478
+ ],
3479
+ "required": false,
3480
+ "type": {
3481
+ "name": "(values: TextFieldRenderProps) => CSSProperties"
3482
+ }
3483
+ },
3484
+ "className": {
3485
+ "defaultValue": null,
3486
+ "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.",
3487
+ "name": "className",
3488
+ "parent": {
3489
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3490
+ "name": "StyleRenderProps"
3491
+ },
3492
+ "declarations": [
3493
+ {
3494
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3495
+ "name": "StyleRenderProps"
3496
+ }
3497
+ ],
3498
+ "required": false,
3499
+ "type": {
3500
+ "name": "(values: TextFieldRenderProps) => string"
3501
+ }
3502
+ },
3503
+ "children": {
3504
+ "defaultValue": null,
3505
+ "description": "The children of the component. A function may be provided to alter the children based on component state.",
3506
+ "name": "children",
3507
+ "parent": {
3508
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3509
+ "name": "RenderProps"
3510
+ },
3511
+ "declarations": [
3512
+ {
3513
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3514
+ "name": "RenderProps"
3515
+ }
3516
+ ],
3517
+ "required": false,
3518
+ "type": {
3519
+ "name": "(values: TextFieldRenderProps) => ReactNode"
3520
+ }
3521
+ },
3522
+ "slot": {
3523
+ "defaultValue": null,
3524
+ "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.",
3525
+ "name": "slot",
3526
+ "parent": {
3527
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3528
+ "name": "SlotProps"
3529
+ },
3530
+ "declarations": [
3531
+ {
3532
+ "fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
3533
+ "name": "SlotProps"
3534
+ }
3535
+ ],
3536
+ "required": false,
3537
+ "type": {
3538
+ "name": "string | null"
3539
+ }
3540
+ }
3541
+ },
2424
3542
  "TextField": {
2425
3543
  "label": {
2426
3544
  "defaultValue": null,