@rebilly/revel 12.48.0 → 12.49.1

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.1](https://github.com/Rebilly/rebilly/compare/revel-v12.49.0...revel-v12.49.1) (2026-07-28)
2
2
 
3
3
 
4
- ### Features
4
+ ### Bug Fixes
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
+ * **revel:** Add new icons `expand` and `reduce` ([#24098](https://github.com/Rebilly/rebilly/issues/24098)) ([a1a81fc](https://github.com/Rebilly/rebilly/commit/a1a81fcc5b2a0a0b59fbc11db0471564f0d8d0f6))
@@ -128,6 +128,8 @@ export declare const RIconNames: {
128
128
  trophy: string;
129
129
  'data-tables': string;
130
130
  comments: string;
131
+ expand: string;
132
+ reduce: string;
131
133
  };
132
134
  export declare const RIconColors: {
133
135
  default: string;
@@ -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>;