@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.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.15.
|
|
3
|
+
* @license @wistia/ui v0.15.12
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -14591,6 +14591,10 @@ var EditableTextInput = (props) => {
|
|
|
14591
14591
|
id,
|
|
14592
14592
|
onBlur: handleBlur2,
|
|
14593
14593
|
onChange: handleChange,
|
|
14594
|
+
onFocus: (event) => {
|
|
14595
|
+
const { length } = event.currentTarget.value;
|
|
14596
|
+
event.currentTarget.setSelectionRange(length, length);
|
|
14597
|
+
},
|
|
14594
14598
|
onKeyDown: handleKeyDown,
|
|
14595
14599
|
placeholder,
|
|
14596
14600
|
type: "multiline",
|