@rebilly/revel 11.2.0 → 11.3.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
|
-
## [11.
|
|
1
|
+
## [11.3.0](https://github.com/Rebilly/rebilly/compare/revel-v11.2.0...revel-v11.3.0) (2025-09-25)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **revel:** Add
|
|
6
|
+
* **revel:** Add "Today" button to `<r-date-input>` component ([#15239](https://github.com/Rebilly/rebilly/issues/15239)) ([e14137d](https://github.com/Rebilly/rebilly/commit/e14137df9396558e5f015ec8b3459425ce34ddd0))
|
|
@@ -28,6 +28,10 @@ interface Props {
|
|
|
28
28
|
* Whether the value can be null
|
|
29
29
|
*/
|
|
30
30
|
allowEmpty?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Hide select today button
|
|
33
|
+
*/
|
|
34
|
+
hideSelectToday?: boolean;
|
|
31
35
|
}
|
|
32
36
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
33
37
|
"update:modelValue": (value: string | Date | null) => any;
|
|
@@ -40,5 +44,6 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
40
44
|
timezone: string;
|
|
41
45
|
modelConfig: object;
|
|
42
46
|
masks: object;
|
|
47
|
+
hideSelectToday: boolean;
|
|
43
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
44
49
|
export default _default;
|
|
@@ -80,13 +80,17 @@ interface Props {
|
|
|
80
80
|
*/
|
|
81
81
|
locale?: string;
|
|
82
82
|
/**
|
|
83
|
-
* Masks are used to properly format and parse different sections of the calendar and date picker components
|
|
83
|
+
* Masks are used to properly format and parse different sections of the calendar and date picker components
|
|
84
84
|
*/
|
|
85
85
|
masks?: object;
|
|
86
86
|
/**
|
|
87
87
|
* Whether the value can be null for single date inputs
|
|
88
88
|
*/
|
|
89
89
|
allowEmpty?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* Hide select today button
|
|
92
|
+
*/
|
|
93
|
+
hideSelectToday?: boolean;
|
|
90
94
|
}
|
|
91
95
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
92
96
|
"update:modelValue": (value: string | Date | DateRange | null) => any;
|
|
@@ -104,6 +108,7 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
104
108
|
placement: string;
|
|
105
109
|
timezone: string;
|
|
106
110
|
masks: object;
|
|
111
|
+
hideSelectToday: boolean;
|
|
107
112
|
is24hr: boolean;
|
|
108
113
|
hideTimeHeader: boolean;
|
|
109
114
|
locale: string;
|