@wistia/ui 0.15.11 → 0.15.12

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/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.15.11
3
+ * @license @wistia/ui v0.15.12
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -14441,6 +14441,10 @@ var EditableTextInput = (props) => {
14441
14441
  id,
14442
14442
  onBlur: handleBlur2,
14443
14443
  onChange: handleChange,
14444
+ onFocus: (event) => {
14445
+ const { length } = event.currentTarget.value;
14446
+ event.currentTarget.setSelectionRange(length, length);
14447
+ },
14444
14448
  onKeyDown: handleKeyDown,
14445
14449
  placeholder,
14446
14450
  type: "multiline",