intelliwaketssveltekitv25 0.1.107 → 0.1.109
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/Functions.d.ts +1 -1
- package/dist/Functions.js +1 -1
- package/package.json +1 -1
package/dist/Functions.d.ts
CHANGED
|
@@ -141,7 +141,7 @@ export declare function textAreaAltEnter(el: HTMLTextAreaElement): {
|
|
|
141
141
|
*
|
|
142
142
|
* @param el
|
|
143
143
|
*/
|
|
144
|
-
export declare function
|
|
144
|
+
export declare function textAreaEnterStopPropagation(el: HTMLTextAreaElement): {
|
|
145
145
|
destroy(): void;
|
|
146
146
|
};
|
|
147
147
|
export type TErrorMessageStack = {
|
package/dist/Functions.js
CHANGED
|
@@ -419,7 +419,7 @@ export function textAreaAltEnter(el) {
|
|
|
419
419
|
*
|
|
420
420
|
* @param el
|
|
421
421
|
*/
|
|
422
|
-
export function
|
|
422
|
+
export function textAreaEnterStopPropagation(el) {
|
|
423
423
|
const handleKeyDown = (e) => {
|
|
424
424
|
if (!!e.target && e.key === 'Enter') {
|
|
425
425
|
e.stopPropagation();
|