@rebilly/revel 12.48.0 → 12.49.0
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/CHANGELOG.md +2 -2
- package/dist/components/r-input/r-input.vue.d.ts +5 -0
- package/dist/revel.mjs +939 -933
- package/dist/revel.umd.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.49.0](https://github.com/Rebilly/rebilly/compare/revel-v12.48.0...revel-v12.49.0) (2026-07-22)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **recomm,
|
|
6
|
+
* **recomm,revel:** Escape reserver characters on paste in filter text ([#23854](https://github.com/Rebilly/rebilly/issues/23854)) ([3688302](https://github.com/Rebilly/rebilly/commit/368830228589da27de2fcf9c433812cf9628e22c))
|
|
@@ -111,6 +111,10 @@ interface Props {
|
|
|
111
111
|
* Enables or disables the autocomplete feature
|
|
112
112
|
*/
|
|
113
113
|
autoComplete?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Custom paste handler invoked alongside the default paste behavior
|
|
116
|
+
*/
|
|
117
|
+
onPaste?: Nullable<(event: ClipboardEvent) => void>;
|
|
114
118
|
}
|
|
115
119
|
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
116
120
|
focus: () => void;
|
|
@@ -139,6 +143,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props,
|
|
|
139
143
|
"onLeft-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
140
144
|
}>, {
|
|
141
145
|
label: Nullable<string>;
|
|
146
|
+
onPaste: Nullable<(event: ClipboardEvent) => void>;
|
|
142
147
|
name: string;
|
|
143
148
|
modelValue: Nullable<string | number | boolean>;
|
|
144
149
|
validate: Nullable<ValidationState>;
|