@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 CHANGED
@@ -1,6 +1,6 @@
1
- ## [12.48.0](https://github.com/Rebilly/rebilly/compare/revel-v12.47.3...revel-v12.48.0) (2026-07-16)
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, revel:** Restrict payout transition time to on-the-hour and show last executed at ([#23537](https://github.com/Rebilly/rebilly/issues/23537)) ([f648c30](https://github.com/Rebilly/rebilly/commit/f648c3068058a68a5cb90ba49a1de1fa7284cabc))
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>;