playbook-ui 16.9.0 → 16.10.0-alpha.PLAY3053advancedtablebottompinnedrowsreact17469

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 (58) hide show
  1. package/dist/.vite/manifest.json +32 -32
  2. package/dist/ai/all-schemas.json +378 -87
  3. package/dist/ai/global-props.schema.json +98 -0
  4. package/dist/ai/index.json +3 -2
  5. package/dist/ai/kits/advanced_table.schema.json +0 -12
  6. package/dist/ai/kits/badge.schema.json +1 -1
  7. package/dist/ai/kits/button_toolbar.schema.json +1 -1
  8. package/dist/ai/kits/card.schema.json +2 -0
  9. package/dist/ai/kits/checkbox.schema.json +2 -2
  10. package/dist/ai/kits/circle_icon_button.schema.json +2 -2
  11. package/dist/ai/kits/date_picker.schema.json +9 -1
  12. package/dist/ai/kits/date_time.schema.json +1 -1
  13. package/dist/ai/kits/date_time_stacked.schema.json +1 -1
  14. package/dist/ai/kits/dropdown.schema.json +8 -0
  15. package/dist/ai/kits/file_upload.schema.json +3 -3
  16. package/dist/ai/kits/filter.schema.json +94 -29
  17. package/dist/ai/kits/fixed_confirmation_toast.schema.json +1 -1
  18. package/dist/ai/kits/form_pill.schema.json +1 -1
  19. package/dist/ai/kits/full_screen.schema.json +89 -0
  20. package/dist/ai/kits/icon.schema.json +3 -5
  21. package/dist/ai/kits/icon_button.schema.json +1 -1
  22. package/dist/ai/kits/loading_inline.schema.json +18 -2
  23. package/dist/ai/kits/passphrase.schema.json +13 -0
  24. package/dist/ai/kits/pb_bar_graph.schema.json +1 -1
  25. package/dist/ai/kits/pb_circle_chart.schema.json +1 -1
  26. package/dist/ai/kits/pb_gauge_chart.schema.json +1 -1
  27. package/dist/ai/kits/pb_line_graph.schema.json +1 -1
  28. package/dist/ai/kits/phone_number_input.schema.json +2 -2
  29. package/dist/ai/kits/radio.schema.json +1 -1
  30. package/dist/ai/kits/select.schema.json +2 -2
  31. package/dist/ai/kits/selectable_card.schema.json +2 -2
  32. package/dist/ai/kits/selectable_card_icon.schema.json +2 -2
  33. package/dist/ai/kits/selectable_icon.schema.json +1 -1
  34. package/dist/ai/kits/star_rating.schema.json +1 -1
  35. package/dist/ai/kits/stat_value.schema.json +1 -1
  36. package/dist/ai/kits/text_input.schema.json +3 -3
  37. package/dist/ai/kits/textarea.schema.json +1 -1
  38. package/dist/ai/kits/toggle.schema.json +2 -2
  39. package/dist/ai/kits/typeahead.schema.json +8 -2
  40. package/dist/charts.js +1 -1
  41. package/dist/chunks/{_pb_line_graph-B870s9g1.js → _pb_line_graph-C2H9vs_8.js} +1 -1
  42. package/dist/chunks/_typeahead-Du8dRYaM.js +5 -0
  43. package/dist/chunks/globalProps-DIAZ03-L.js +6 -0
  44. package/dist/chunks/lib-ZHDedNfP.js +29 -0
  45. package/dist/chunks/time_picker_helper-CVMV9ync.js +1 -0
  46. package/dist/chunks/vendor.js +5 -5
  47. package/dist/playbook-charts.js +1 -1
  48. package/dist/playbook-rails-charts-bindings.js +1 -1
  49. package/dist/playbook-rails-react-bindings.js +1 -1
  50. package/dist/playbook-rails.js +1 -1
  51. package/dist/playbook.css +1 -1
  52. package/dist/playbook.js +1 -1
  53. package/dist/tokens/colors.scss +5 -1
  54. package/package.json +1 -1
  55. package/dist/chunks/_typeahead-jMN-A0_C.js +0 -5
  56. package/dist/chunks/globalProps-BInmh-C7.js +0 -6
  57. package/dist/chunks/lib-CVYIIiwI.js +0 -29
  58. package/dist/chunks/time_picker_helper-Bx8nzyM8.js +0 -1
@@ -61,6 +61,97 @@
61
61
  "description": "Align items.",
62
62
  "example": "alignItems=\"start\" or alignItems={{ default: \"start\", md: \"end\" }}"
63
63
  },
64
+ "border": {
65
+ "type": "enum",
66
+ "values": [
67
+ "none",
68
+ "default",
69
+ "active",
70
+ "default_thick",
71
+ "default_thicker",
72
+ "active_thick",
73
+ "active_thicker"
74
+ ],
75
+ "description": "Border."
76
+ },
77
+ "borderTop": {
78
+ "type": "enum",
79
+ "values": [
80
+ "none",
81
+ "default",
82
+ "active",
83
+ "default_thick",
84
+ "default_thicker",
85
+ "active_thick",
86
+ "active_thicker"
87
+ ],
88
+ "description": "Top border."
89
+ },
90
+ "borderBottom": {
91
+ "type": "enum",
92
+ "values": [
93
+ "none",
94
+ "default",
95
+ "active",
96
+ "default_thick",
97
+ "default_thicker",
98
+ "active_thick",
99
+ "active_thicker"
100
+ ],
101
+ "description": "Bottom border."
102
+ },
103
+ "borderLeft": {
104
+ "type": "enum",
105
+ "values": [
106
+ "none",
107
+ "default",
108
+ "active",
109
+ "default_thick",
110
+ "default_thicker",
111
+ "active_thick",
112
+ "active_thicker"
113
+ ],
114
+ "description": "Left border."
115
+ },
116
+ "borderRight": {
117
+ "type": "enum",
118
+ "values": [
119
+ "none",
120
+ "default",
121
+ "active",
122
+ "default_thick",
123
+ "default_thicker",
124
+ "active_thick",
125
+ "active_thicker"
126
+ ],
127
+ "description": "Right border."
128
+ },
129
+ "borderX": {
130
+ "type": "enum",
131
+ "values": [
132
+ "none",
133
+ "default",
134
+ "active",
135
+ "default_thick",
136
+ "default_thicker",
137
+ "active_thick",
138
+ "active_thicker"
139
+ ],
140
+ "description": "Horizontal border (left + right)."
141
+ },
142
+ "borderY": {
143
+ "type": "enum",
144
+ "values": [
145
+ "none",
146
+ "default",
147
+ "active",
148
+ "default_thick",
149
+ "default_thicker",
150
+ "active_thick",
151
+ "active_thicker"
152
+ ],
153
+ "description": "Vertical border (top + bottom)."
154
+ },
64
155
  "borderRadius": {
65
156
  "type": "enum",
66
157
  "values": [
@@ -751,6 +842,13 @@
751
842
  "paddingX",
752
843
  "paddingY",
753
844
  "padding",
845
+ "border",
846
+ "borderTop",
847
+ "borderBottom",
848
+ "borderLeft",
849
+ "borderRight",
850
+ "borderX",
851
+ "borderY",
754
852
  "dark",
755
853
  "enableDrag",
756
854
  "requiredIndicator"
@@ -1035,18 +1133,6 @@
1035
1133
  "react"
1036
1134
  ]
1037
1135
  },
1038
- "allowFullScreen": {
1039
- "type": "boolean",
1040
- "platforms": [
1041
- "react"
1042
- ]
1043
- },
1044
- "fullScreenControl": {
1045
- "type": "function",
1046
- "platforms": [
1047
- "react"
1048
- ]
1049
- },
1050
1136
  "enableSorting": {
1051
1137
  "type": "boolean",
1052
1138
  "platforms": [
@@ -1422,7 +1508,7 @@
1422
1508
  ]
1423
1509
  },
1424
1510
  "removeOnClick": {
1425
- "type": "ReactNode",
1511
+ "type": "function",
1426
1512
  "platforms": [
1427
1513
  "react"
1428
1514
  ]
@@ -1831,7 +1917,7 @@
1831
1917
  ],
1832
1918
  "props": {
1833
1919
  "onClick": {
1834
- "type": "ReactNode",
1920
+ "type": "function",
1835
1921
  "platforms": [
1836
1922
  "react"
1837
1923
  ]
@@ -2017,6 +2103,8 @@
2017
2103
  "product_9_highlight",
2018
2104
  "product_10_background",
2019
2105
  "product_10_highlight",
2106
+ "product_11_background",
2107
+ "product_11_highlight",
2020
2108
  "windows",
2021
2109
  "siding",
2022
2110
  "doors",
@@ -2221,7 +2309,7 @@
2221
2309
  ]
2222
2310
  },
2223
2311
  "onChange": {
2224
- "type": "ReactNode",
2312
+ "type": "function",
2225
2313
  "platforms": [
2226
2314
  "react"
2227
2315
  ]
@@ -2276,7 +2364,7 @@
2276
2364
  "platforms": [
2277
2365
  "rails"
2278
2366
  ],
2279
- "type": "string"
2367
+ "type": "GenericObject"
2280
2368
  },
2281
2369
  "required": {
2282
2370
  "platforms": [
@@ -2363,7 +2451,7 @@
2363
2451
  "default": false
2364
2452
  },
2365
2453
  "onClick": {
2366
- "type": "ReactNode",
2454
+ "type": "function",
2367
2455
  "platforms": [
2368
2456
  "react"
2369
2457
  ]
@@ -2425,7 +2513,7 @@
2425
2513
  "platforms": [
2426
2514
  "rails"
2427
2515
  ],
2428
- "type": "string"
2516
+ "type": "GenericObject"
2429
2517
  }
2430
2518
  },
2431
2519
  "globalProps": true,
@@ -3144,7 +3232,7 @@
3144
3232
  ]
3145
3233
  },
3146
3234
  "inputOnChange": {
3147
- "type": "ReactNode",
3235
+ "type": "function",
3148
3236
  "platforms": [
3149
3237
  "react"
3150
3238
  ]
@@ -3270,6 +3358,14 @@
3270
3358
  "react"
3271
3359
  ]
3272
3360
  },
3361
+ "yearAscending": {
3362
+ "type": "boolean",
3363
+ "platforms": [
3364
+ "react",
3365
+ "rails"
3366
+ ],
3367
+ "default": false
3368
+ },
3273
3369
  "yearRange": {
3274
3370
  "type": "array",
3275
3371
  "platforms": [
@@ -3674,7 +3770,7 @@
3674
3770
  "platforms": [
3675
3771
  "rails"
3676
3772
  ],
3677
- "type": "string"
3773
+ "type": "Date"
3678
3774
  },
3679
3775
  "timezone": {
3680
3776
  "platforms": [
@@ -3742,7 +3838,7 @@
3742
3838
  "platforms": [
3743
3839
  "rails"
3744
3840
  ],
3745
- "type": "string"
3841
+ "type": "Date"
3746
3842
  },
3747
3843
  "timezone": {
3748
3844
  "platforms": [
@@ -4249,6 +4345,14 @@
4249
4345
  "rails"
4250
4346
  ]
4251
4347
  },
4348
+ "disabled": {
4349
+ "type": "boolean",
4350
+ "platforms": [
4351
+ "react",
4352
+ "rails"
4353
+ ],
4354
+ "default": false
4355
+ },
4252
4356
  "formPillProps": {
4253
4357
  "type": "GenericObject",
4254
4358
  "platforms": [
@@ -4571,7 +4675,7 @@
4571
4675
  ],
4572
4676
  "props": {
4573
4677
  "accept": {
4574
- "type": "Record<string, string[]>",
4678
+ "type": "GenericObject",
4575
4679
  "platforms": [
4576
4680
  "react",
4577
4681
  "rails"
@@ -4603,7 +4707,7 @@
4603
4707
  ]
4604
4708
  },
4605
4709
  "onFilesAccepted": {
4606
- "type": "Callback<File, File>",
4710
+ "type": "function",
4607
4711
  "platforms": [
4608
4712
  "react"
4609
4713
  ]
@@ -4676,7 +4780,7 @@
4676
4780
  "platforms": [
4677
4781
  "rails"
4678
4782
  ],
4679
- "type": "string"
4783
+ "type": "GenericObject"
4680
4784
  }
4681
4785
  },
4682
4786
  "globalProps": true,
@@ -4700,49 +4804,63 @@
4700
4804
  "rails"
4701
4805
  ],
4702
4806
  "props": {
4703
- "filters": {
4807
+ "background": {
4808
+ "type": "boolean",
4704
4809
  "platforms": [
4810
+ "react",
4705
4811
  "rails"
4706
4812
  ],
4707
- "type": "array"
4813
+ "default": true
4708
4814
  },
4709
- "sortMenu": {
4815
+ "double": {
4816
+ "type": "boolean",
4710
4817
  "platforms": [
4711
- "rails"
4712
- ],
4713
- "type": "array"
4818
+ "react"
4819
+ ]
4714
4820
  },
4715
- "results": {
4821
+ "filters": {
4822
+ "type": "GenericObject",
4716
4823
  "platforms": [
4824
+ "react",
4717
4825
  "rails"
4718
- ],
4719
- "type": "string"
4826
+ ]
4720
4827
  },
4721
- "template": {
4828
+ "isCollapsed": {
4829
+ "type": "boolean",
4722
4830
  "platforms": [
4723
- "rails"
4724
- ],
4725
- "type": "enum",
4726
- "values": [
4727
- "default",
4728
- "single",
4729
- "filter_only",
4730
- "sort_only"
4731
- ],
4732
- "default": "default"
4831
+ "react"
4832
+ ]
4733
4833
  },
4734
- "background": {
4834
+ "maxHeight": {
4835
+ "type": "string",
4735
4836
  "platforms": [
4736
- "rails"
4737
- ],
4738
- "type": "boolean",
4739
- "default": true
4837
+ "react"
4838
+ ]
4839
+ },
4840
+ "minWidth": {
4841
+ "type": "string",
4842
+ "platforms": [
4843
+ "react"
4844
+ ]
4845
+ },
4846
+ "onCollapse": {
4847
+ "type": "function",
4848
+ "platforms": [
4849
+ "react"
4850
+ ]
4851
+ },
4852
+ "onSortChange": {
4853
+ "type": "function",
4854
+ "platforms": [
4855
+ "react"
4856
+ ]
4740
4857
  },
4741
4858
  "placement": {
4859
+ "type": "enum",
4742
4860
  "platforms": [
4861
+ "react",
4743
4862
  "rails"
4744
4863
  ],
4745
- "type": "enum",
4746
4864
  "values": [
4747
4865
  "top",
4748
4866
  "bottom",
@@ -4760,21 +4878,72 @@
4760
4878
  "default": "bottom-start"
4761
4879
  },
4762
4880
  "popoverProps": {
4881
+ "type": "GenericObject",
4882
+ "platforms": [
4883
+ "react",
4884
+ "rails"
4885
+ ]
4886
+ },
4887
+ "results": {
4888
+ "type": "number",
4889
+ "platforms": [
4890
+ "react",
4891
+ "rails"
4892
+ ]
4893
+ },
4894
+ "sortOptions": {
4895
+ "type": "GenericObject",
4896
+ "platforms": [
4897
+ "react"
4898
+ ]
4899
+ },
4900
+ "sortValue": {
4901
+ "type": "array",
4902
+ "platforms": [
4903
+ "react"
4904
+ ]
4905
+ },
4906
+ "variant": {
4907
+ "type": "string",
4908
+ "platforms": [
4909
+ "react"
4910
+ ]
4911
+ },
4912
+ "sortMenu": {
4763
4913
  "platforms": [
4764
4914
  "rails"
4765
4915
  ],
4766
- "type": "string"
4916
+ "type": "array"
4917
+ },
4918
+ "template": {
4919
+ "platforms": [
4920
+ "rails"
4921
+ ],
4922
+ "type": "enum",
4923
+ "values": [
4924
+ "default",
4925
+ "single",
4926
+ "filter_only",
4927
+ "sort_only"
4928
+ ],
4929
+ "default": "default"
4930
+ },
4931
+ "interactiveFilters": {
4932
+ "platforms": [
4933
+ "rails"
4934
+ ],
4935
+ "type": "array"
4767
4936
  }
4768
4937
  },
4769
4938
  "globalProps": true,
4770
4939
  "usage": {
4771
4940
  "react": {
4772
4941
  "import": "import { Filter } from 'playbook-ui'",
4773
- "example": "<Filter template=\"default\" placement=\"top\"></Filter>"
4942
+ "example": "<Filter placement=\"top\" template=\"default\"></Filter>"
4774
4943
  },
4775
4944
  "rails": {
4776
4945
  "import": null,
4777
- "example": "<%= pb_rails(\"filter\", props: { template: \"default\", placement: \"top\" }) %>"
4946
+ "example": "<%= pb_rails(\"filter\", props: { placement: \"top\", template: \"default\" }) %>"
4778
4947
  }
4779
4948
  }
4780
4949
  },
@@ -4839,7 +5008,7 @@
4839
5008
  "default": false
4840
5009
  },
4841
5010
  "onClose": {
4842
- "type": "VoidCallback",
5011
+ "type": "function",
4843
5012
  "platforms": [
4844
5013
  "react"
4845
5014
  ]
@@ -5178,7 +5347,7 @@
5178
5347
  ]
5179
5348
  },
5180
5349
  "onClick": {
5181
- "type": "ReactNode",
5350
+ "type": "function",
5182
5351
  "platforms": [
5183
5352
  "react"
5184
5353
  ]
@@ -5292,6 +5461,95 @@
5292
5461
  }
5293
5462
  }
5294
5463
  },
5464
+ "full_screen": {
5465
+ "$schema": "https://playbook.powerapp.cloud/schemas/kit-schema.json",
5466
+ "name": "FullScreen",
5467
+ "description": "FullScreen component",
5468
+ "platforms": [
5469
+ "react",
5470
+ "rails"
5471
+ ],
5472
+ "props": {
5473
+ "contentPadding": {
5474
+ "type": "enum",
5475
+ "platforms": [
5476
+ "react"
5477
+ ],
5478
+ "values": [
5479
+ "none",
5480
+ "xxs",
5481
+ "xs",
5482
+ "sm",
5483
+ "md",
5484
+ "lg",
5485
+ "xl"
5486
+ ]
5487
+ },
5488
+ "headerText": {
5489
+ "type": "string",
5490
+ "platforms": [
5491
+ "react"
5492
+ ]
5493
+ },
5494
+ "headerTextStyling": {
5495
+ "type": "enum",
5496
+ "platforms": [
5497
+ "react"
5498
+ ],
5499
+ "values": [
5500
+ "title_4",
5501
+ "body"
5502
+ ]
5503
+ },
5504
+ "isFullscreen": {
5505
+ "type": "boolean",
5506
+ "platforms": [
5507
+ "react"
5508
+ ]
5509
+ },
5510
+ "onOpen": {
5511
+ "type": "function",
5512
+ "platforms": [
5513
+ "react"
5514
+ ]
5515
+ },
5516
+ "onClose": {
5517
+ "type": "function",
5518
+ "platforms": [
5519
+ "react"
5520
+ ]
5521
+ },
5522
+ "stickyHeader": {
5523
+ "type": "boolean",
5524
+ "platforms": [
5525
+ "react"
5526
+ ]
5527
+ },
5528
+ "trigger": {
5529
+ "type": "function",
5530
+ "platforms": [
5531
+ "react"
5532
+ ]
5533
+ },
5534
+ "escToExit": {
5535
+ "type": "boolean",
5536
+ "platforms": [
5537
+ "react"
5538
+ ]
5539
+ }
5540
+ },
5541
+ "globalProps": true,
5542
+ "usage": {
5543
+ "react": {
5544
+ "import": "import { FullScreen } from 'playbook-ui'",
5545
+ "example": "<FullScreen contentPadding=\"none\" headerTextStyling=\"title_4\"></FullScreen>"
5546
+ },
5547
+ "rails": {
5548
+ "import": null,
5549
+ "example": "<%= pb_rails(\"full_screen\", props: { content_padding: \"none\", header_text_styling: \"title_4\" }) %>"
5550
+ }
5551
+ }
5552
+ },
5295
5553
  "hashtag": {
5296
5554
  "$schema": "https://playbook.powerapp.cloud/schemas/kit-schema.json",
5297
5555
  "name": "Hashtag",
@@ -5541,12 +5799,10 @@
5541
5799
  ],
5542
5800
  "props": {
5543
5801
  "border": {
5544
- "type": "string",
5802
+ "type": "boolean | BorderPropValue",
5545
5803
  "platforms": [
5546
- "react",
5547
- "rails"
5548
- ],
5549
- "default": false
5804
+ "react"
5805
+ ]
5550
5806
  },
5551
5807
  "color": {
5552
5808
  "type": "string",
@@ -5755,7 +6011,7 @@
5755
6011
  "default": false
5756
6012
  },
5757
6013
  "onClick": {
5758
- "type": "ReactNode",
6014
+ "type": "function",
5759
6015
  "platforms": [
5760
6016
  "react"
5761
6017
  ]
@@ -6705,6 +6961,22 @@
6705
6961
  ],
6706
6962
  "default": "left"
6707
6963
  },
6964
+ "color": {
6965
+ "type": "enum",
6966
+ "platforms": [
6967
+ "react",
6968
+ "rails"
6969
+ ],
6970
+ "values": [
6971
+ "default",
6972
+ "light",
6973
+ "lighter",
6974
+ "link",
6975
+ "error",
6976
+ "success"
6977
+ ],
6978
+ "default": "light"
6979
+ },
6708
6980
  "dark": {
6709
6981
  "type": "boolean",
6710
6982
  "platforms": [
@@ -6736,11 +7008,11 @@
6736
7008
  "usage": {
6737
7009
  "react": {
6738
7010
  "import": "import { LoadingInline } from 'playbook-ui'",
6739
- "example": "<LoadingInline align=\"left\" variant=\"dotted\"></LoadingInline>"
7011
+ "example": "<LoadingInline align=\"left\" color=\"default\"></LoadingInline>"
6740
7012
  },
6741
7013
  "rails": {
6742
7014
  "import": null,
6743
- "example": "<%= pb_rails(\"loading_inline\", props: { align: \"left\", variant: \"dotted\" }) %>"
7015
+ "example": "<%= pb_rails(\"loading_inline\", props: { align: \"left\", color: \"default\" }) %>"
6744
7016
  }
6745
7017
  }
6746
7018
  },
@@ -7642,6 +7914,19 @@
7642
7914
  "react",
7643
7915
  "rails"
7644
7916
  ]
7917
+ },
7918
+ "required": {
7919
+ "platforms": [
7920
+ "rails"
7921
+ ],
7922
+ "type": "boolean",
7923
+ "default": false
7924
+ },
7925
+ "minLength": {
7926
+ "platforms": [
7927
+ "rails"
7928
+ ],
7929
+ "type": "number"
7645
7930
  }
7646
7931
  },
7647
7932
  "globalProps": true,
@@ -7666,7 +7951,7 @@
7666
7951
  ],
7667
7952
  "props": {
7668
7953
  "options": {
7669
- "type": "Record<string, unknown>",
7954
+ "type": "GenericObject",
7670
7955
  "platforms": [
7671
7956
  "react",
7672
7957
  "rails"
@@ -7695,7 +7980,7 @@
7695
7980
  ],
7696
7981
  "props": {
7697
7982
  "options": {
7698
- "type": "Record<string, unknown>",
7983
+ "type": "GenericObject",
7699
7984
  "platforms": [
7700
7985
  "react",
7701
7986
  "rails"
@@ -7724,7 +8009,7 @@
7724
8009
  ],
7725
8010
  "props": {
7726
8011
  "options": {
7727
- "type": "Record<string, unknown>",
8012
+ "type": "GenericObject",
7728
8013
  "platforms": [
7729
8014
  "react",
7730
8015
  "rails"
@@ -7753,7 +8038,7 @@
7753
8038
  ],
7754
8039
  "props": {
7755
8040
  "options": {
7756
- "type": "Record<string, unknown>",
8041
+ "type": "GenericObject",
7757
8042
  "platforms": [
7758
8043
  "react",
7759
8044
  "rails"
@@ -7921,13 +8206,13 @@
7921
8206
  "default": ""
7922
8207
  },
7923
8208
  "onChange": {
7924
- "type": "ReactNode",
8209
+ "type": "function",
7925
8210
  "platforms": [
7926
8211
  "react"
7927
8212
  ]
7928
8213
  },
7929
8214
  "onValidate": {
7930
- "type": "Callback<boolean, void>",
8215
+ "type": "function",
7931
8216
  "platforms": [
7932
8217
  "react"
7933
8218
  ]
@@ -8485,7 +8770,7 @@
8485
8770
  "platforms": [
8486
8771
  "rails"
8487
8772
  ],
8488
- "type": "string"
8773
+ "type": "GenericObject"
8489
8774
  }
8490
8775
  },
8491
8776
  "globalProps": true,
@@ -8845,7 +9130,7 @@
8845
9130
  ]
8846
9131
  },
8847
9132
  "onChange": {
8848
- "type": "ReactNode",
9133
+ "type": "function",
8849
9134
  "platforms": [
8850
9135
  "react"
8851
9136
  ]
@@ -8891,7 +9176,7 @@
8891
9176
  "platforms": [
8892
9177
  "rails"
8893
9178
  ],
8894
- "type": "string"
9179
+ "type": "GenericObject"
8895
9180
  },
8896
9181
  "onchange": {
8897
9182
  "platforms": [
@@ -8994,7 +9279,7 @@
8994
9279
  ]
8995
9280
  },
8996
9281
  "onChange": {
8997
- "type": "ReactNode",
9282
+ "type": "function",
8998
9283
  "platforms": [
8999
9284
  "react"
9000
9285
  ]
@@ -9025,7 +9310,7 @@
9025
9310
  "platforms": [
9026
9311
  "rails"
9027
9312
  ],
9028
- "type": "string"
9313
+ "type": "GenericObject"
9029
9314
  }
9030
9315
  },
9031
9316
  "globalProps": true,
@@ -9138,7 +9423,7 @@
9138
9423
  ]
9139
9424
  },
9140
9425
  "onChange": {
9141
- "type": "ReactNode",
9426
+ "type": "function",
9142
9427
  "platforms": [
9143
9428
  "react"
9144
9429
  ]
@@ -9147,7 +9432,7 @@
9147
9432
  "platforms": [
9148
9433
  "rails"
9149
9434
  ],
9150
- "type": "string"
9435
+ "type": "GenericObject"
9151
9436
  }
9152
9437
  },
9153
9438
  "globalProps": true,
@@ -9256,7 +9541,7 @@
9256
9541
  "platforms": [
9257
9542
  "rails"
9258
9543
  ],
9259
- "type": "string"
9544
+ "type": "GenericObject"
9260
9545
  }
9261
9546
  },
9262
9547
  "globalProps": true,
@@ -9596,7 +9881,7 @@
9596
9881
  "platforms": [
9597
9882
  "rails"
9598
9883
  ],
9599
- "type": "string"
9884
+ "type": "GenericObject"
9600
9885
  },
9601
9886
  "defaultValue": {
9602
9887
  "platforms": [
@@ -9698,7 +9983,7 @@
9698
9983
  "platforms": [
9699
9984
  "rails"
9700
9985
  ],
9701
- "type": "string"
9986
+ "type": "number"
9702
9987
  }
9703
9988
  },
9704
9989
  "globalProps": true,
@@ -10032,7 +10317,7 @@
10032
10317
  "default": null
10033
10318
  },
10034
10319
  "onChange": {
10035
- "type": "ReactNode",
10320
+ "type": "function",
10036
10321
  "platforms": [
10037
10322
  "react"
10038
10323
  ]
@@ -10098,13 +10383,13 @@
10098
10383
  "platforms": [
10099
10384
  "rails"
10100
10385
  ],
10101
- "type": "string"
10386
+ "type": "GenericObject"
10102
10387
  },
10103
10388
  "validation": {
10104
10389
  "platforms": [
10105
10390
  "rails"
10106
10391
  ],
10107
- "type": "string"
10392
+ "type": "GenericObject"
10108
10393
  }
10109
10394
  },
10110
10395
  "globalProps": true,
@@ -10259,7 +10544,7 @@
10259
10544
  "default": "none"
10260
10545
  },
10261
10546
  "onChange": {
10262
- "type": "ReactNode",
10547
+ "type": "function",
10263
10548
  "platforms": [
10264
10549
  "react"
10265
10550
  ]
@@ -11124,7 +11409,7 @@
11124
11409
  ]
11125
11410
  },
11126
11411
  "onChange": {
11127
- "type": "ReactNode",
11412
+ "type": "function",
11128
11413
  "platforms": [
11129
11414
  "react"
11130
11415
  ]
@@ -11152,7 +11437,7 @@
11152
11437
  "platforms": [
11153
11438
  "rails"
11154
11439
  ],
11155
- "type": "string"
11440
+ "type": "GenericObject"
11156
11441
  }
11157
11442
  },
11158
11443
  "globalProps": true,
@@ -11452,7 +11737,7 @@
11452
11737
  ]
11453
11738
  },
11454
11739
  "optionsByContext": {
11455
- "type": "Record<string, Array<{label: string; value?: string}>>",
11740
+ "type": "GenericObject",
11456
11741
  "platforms": [
11457
11742
  "react",
11458
11743
  "rails"
@@ -11505,6 +11790,12 @@
11505
11790
  ],
11506
11791
  "default": false
11507
11792
  },
11793
+ "styles": {
11794
+ "type": "TypeaheadStylesConfig",
11795
+ "platforms": [
11796
+ "react"
11797
+ ]
11798
+ },
11508
11799
  "defaultOptions": {
11509
11800
  "platforms": [
11510
11801
  "rails"
@@ -11529,7 +11820,7 @@
11529
11820
  "platforms": [
11530
11821
  "rails"
11531
11822
  ],
11532
- "type": "string"
11823
+ "type": "GenericObject"
11533
11824
  },
11534
11825
  "isMulti": {
11535
11826
  "platforms": [