@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.
- package/dist/.tsbuildinfo +1 -1
- package/dist/react-aria.esm.js +4 -2
- package/dist/react-aria.esm.js.map +1 -1
- package/dist/react-aria.js +4 -2
- package/dist/react-aria.js.map +1 -1
- package/package.json +2 -2
- package/skinny/registerListBoxItem.cjs.js +4 -2
- package/skinny/registerListBoxItem.cjs.js.map +1 -1
- package/skinny/registerListBoxItem.esm.js +4 -2
- package/skinny/registerListBoxItem.esm.js.map +1 -1
package/dist/react-aria.esm.js
CHANGED
|
@@ -1666,8 +1666,9 @@ function registerListBoxItem(loader, overrides) {
|
|
|
1666
1666
|
props: {
|
|
1667
1667
|
id: {
|
|
1668
1668
|
type: "string",
|
|
1669
|
-
description: "
|
|
1669
|
+
description: "A unique key for tracking the selected item in state",
|
|
1670
1670
|
required: true,
|
|
1671
|
+
displayName: "Value",
|
|
1671
1672
|
validator: (_value, _props, ctx) => {
|
|
1672
1673
|
if (ctx == null ? void 0 : ctx.idError) {
|
|
1673
1674
|
return ctx.idError;
|
|
@@ -1677,7 +1678,8 @@ function registerListBoxItem(loader, overrides) {
|
|
|
1677
1678
|
},
|
|
1678
1679
|
textValue: {
|
|
1679
1680
|
type: "string",
|
|
1680
|
-
|
|
1681
|
+
displayName: "Label",
|
|
1682
|
+
description: "A user-friendly text representation of the item's contents, used for features like typeahead."
|
|
1681
1683
|
},
|
|
1682
1684
|
children: {
|
|
1683
1685
|
type: "slot",
|