@rebilly/revel 12.1.0 → 12.2.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-date-input/r-date-input.vue.d.ts +1 -1
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +1 -1
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +1 -1
- package/dist/components/r-select/r-select.vue.d.ts +1 -1
- package/dist/revel.mjs +2333 -2338
- package/dist/revel.umd.js +120 -120
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.2.0](https://github.com/Rebilly/rebilly/compare/revel-v12.1.1...revel-v12.2.0) (2025-10-22)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **be,recomm:** Replace
|
|
6
|
+
* **be,recomm:** Replace Auth0 with Keycloak ([#15392](https://github.com/Rebilly/rebilly/issues/15392)) ([918e261](https://github.com/Rebilly/rebilly/commit/918e261155d91b0e7c2016e23e2794a9046c649e))
|
|
@@ -103,6 +103,7 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
103
103
|
label: string;
|
|
104
104
|
type: string;
|
|
105
105
|
disabled: boolean;
|
|
106
|
+
placeholder: string;
|
|
106
107
|
modelValue: Date | object | string | null;
|
|
107
108
|
validate: Nullable<ValidationState>;
|
|
108
109
|
placement: string;
|
|
@@ -114,7 +115,6 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
114
115
|
locale: string;
|
|
115
116
|
minDate: Date | string | object;
|
|
116
117
|
maxDate: Date | string | object;
|
|
117
|
-
placeholder: string;
|
|
118
118
|
timePicker: boolean;
|
|
119
119
|
showValidateMessages: boolean;
|
|
120
120
|
availableDates: object;
|
|
@@ -39,10 +39,10 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
39
39
|
"onPreset-select"?: ((value: DateRange) => any) | undefined;
|
|
40
40
|
}>, {
|
|
41
41
|
disabled: boolean;
|
|
42
|
+
placeholder: string;
|
|
42
43
|
modelValue: DateRange | string;
|
|
43
44
|
timezone: string;
|
|
44
45
|
is24hr: boolean;
|
|
45
|
-
placeholder: string;
|
|
46
46
|
calendarToggle: () => void;
|
|
47
47
|
timePicker: boolean;
|
|
48
48
|
showPresets: boolean;
|
|
@@ -34,10 +34,10 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
34
34
|
"onUpdate:modelValue"?: ((value: string | Date | DateRange<Date | moment.Moment>) => any) | undefined;
|
|
35
35
|
}>, {
|
|
36
36
|
disabled: boolean;
|
|
37
|
+
placeholder: string;
|
|
37
38
|
modelValue: Date | string | DateRange;
|
|
38
39
|
timezone: string;
|
|
39
40
|
is24hr: boolean;
|
|
40
|
-
placeholder: string;
|
|
41
41
|
timePicker: boolean;
|
|
42
42
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
43
43
|
export default _default;
|
|
@@ -721,10 +721,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
721
721
|
id: string;
|
|
722
722
|
label: string;
|
|
723
723
|
disabled: boolean;
|
|
724
|
+
placeholder: string;
|
|
724
725
|
modelValue: Nullable<OptionItem | Options>;
|
|
725
726
|
validate: ValidationState;
|
|
726
727
|
allowEmpty: boolean;
|
|
727
|
-
placeholder: string;
|
|
728
728
|
showValidateMessages: boolean;
|
|
729
729
|
name: string;
|
|
730
730
|
multiple: boolean;
|