@rebilly/revel 12.47.3 → 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 +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
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
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))
|
|
@@ -91,6 +91,15 @@ interface Props {
|
|
|
91
91
|
* Hide select today button
|
|
92
92
|
*/
|
|
93
93
|
hideSelectToday?: boolean;
|
|
94
|
+
/**
|
|
95
|
+
* v-calendar time component rules
|
|
96
|
+
* @see https://vcalendar.io/datepicker/time-rules.html
|
|
97
|
+
*/
|
|
98
|
+
rules?: object;
|
|
99
|
+
/**
|
|
100
|
+
* v-calendar time picker precision (1 = hours, 2 = minutes, etc.)
|
|
101
|
+
*/
|
|
102
|
+
timeAccuracy?: number;
|
|
94
103
|
}
|
|
95
104
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
96
105
|
"update:modelValue": (value: string | Date | DateRange | null) => any;
|
|
@@ -98,6 +107,7 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
|
|
|
98
107
|
"onUpdate:modelValue"?: ((value: string | Date | DateRange | null) => any) | undefined;
|
|
99
108
|
}>, {
|
|
100
109
|
columns: number;
|
|
110
|
+
rules: object;
|
|
101
111
|
id: string;
|
|
102
112
|
placeholder: string;
|
|
103
113
|
caption: string;
|
|
@@ -112,6 +122,7 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
|
|
|
112
122
|
hideSelectToday: boolean;
|
|
113
123
|
is24hr: boolean;
|
|
114
124
|
hideTimeHeader: boolean;
|
|
125
|
+
timeAccuracy: number;
|
|
115
126
|
locale: string;
|
|
116
127
|
minDate: Date | string | object;
|
|
117
128
|
maxDate: Date | string | object;
|
|
@@ -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>;
|