@douglasneuroinformatics/libui 3.1.0 → 3.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.
@@ -2241,7 +2241,7 @@ var NumberFieldSelect = ({
2241
2241
  ),
2242
2242
  /* @__PURE__ */ jsx107(Select.Content, { "data-cy": `${name}-select-content`, "data-testid": `${name}-select-content`, children: Object.keys(options).map((option) => {
2243
2243
  const text = (disableAutoPrefix ? "" : `${option} - `) + options[option];
2244
- return /* @__PURE__ */ jsx107(Select.Item, { value: option, children: text }, option);
2244
+ return /* @__PURE__ */ jsx107(Select.Item, { "data-cy": `${name}-select-item-${option}`, value: option, children: text }, option);
2245
2245
  }) })
2246
2246
  ] }),
2247
2247
  /* @__PURE__ */ jsx107(FieldGroup.Error, { error })
@@ -2841,7 +2841,7 @@ var StringFieldSelect = ({
2841
2841
  children: /* @__PURE__ */ jsx123(Select.Value, {})
2842
2842
  }
2843
2843
  ),
2844
- /* @__PURE__ */ jsx123(Select.Content, { "data-cy": `${name}-select-content`, "data-testid": `${name}-select-content`, children: Object.keys(options).map((option) => /* @__PURE__ */ jsx123(Select.Item, { value: option, children: options[option] }, option)) })
2844
+ /* @__PURE__ */ jsx123(Select.Content, { "data-cy": `${name}-select-content`, "data-testid": `${name}-select-content`, children: Object.keys(options).map((option) => /* @__PURE__ */ jsx123(Select.Item, { "data-cy": `${name}-select-item-${option}`, value: option, children: options[option] }, option)) })
2845
2845
  ] }),
2846
2846
  /* @__PURE__ */ jsx123(FieldGroup.Error, { error })
2847
2847
  ] });