@plasmicpkgs/react-aria 0.0.64 → 0.0.65

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.
@@ -1674,8 +1674,9 @@ function registerListBoxItem(loader, overrides) {
1674
1674
  props: {
1675
1675
  id: {
1676
1676
  type: "string",
1677
- description: "The ID of the item",
1677
+ description: "A unique key for tracking the selected item in state",
1678
1678
  required: true,
1679
+ displayName: "Value",
1679
1680
  validator: (_value, _props, ctx) => {
1680
1681
  if (ctx == null ? void 0 : ctx.idError) {
1681
1682
  return ctx.idError;
@@ -1685,7 +1686,8 @@ function registerListBoxItem(loader, overrides) {
1685
1686
  },
1686
1687
  textValue: {
1687
1688
  type: "string",
1688
- description: "A text representation of the item's contents, used for features like typeahead."
1689
+ displayName: "Label",
1690
+ description: "A user-friendly text representation of the item's contents, used for features like typeahead."
1689
1691
  },
1690
1692
  children: {
1691
1693
  type: "slot",