@rebilly/revel 12.18.2 → 12.19.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.19.0](https://github.com/Rebilly/rebilly/compare/revel-v12.18.2...revel-v12.19.0) (2026-02-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **revel:** Add r-input-errors component ([#18821](https://github.com/Rebilly/rebilly/issues/18821)) ([3a6de61](https://github.com/Rebilly/rebilly/commit/3a6de61921804b8bfa0428245b8146e976b9ca1b))
|
|
@@ -8,6 +8,7 @@ export { default as RCheckbox } from './r-checkbox/r-checkbox.vue';
|
|
|
8
8
|
export { default as RDateInput } from './r-date-input/r-date-input.vue';
|
|
9
9
|
export { default as RDateRange } from './r-date-range/r-date-range.vue';
|
|
10
10
|
export type { DateRange } from './r-date-range/types';
|
|
11
|
+
export { default as RInputErrors } from './r-input-errors/r-input-errors.vue';
|
|
11
12
|
export { default as RFileUpload } from './r-file-upload/r-file-upload.vue';
|
|
12
13
|
export { default as RFlex } from './r-flex/r-flex.vue';
|
|
13
14
|
export { default as RFlexItem } from './r-flex/r-flex-item.vue';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ValidationState } from '../../types';
|
|
2
|
+
export interface Props {
|
|
3
|
+
validate?: Nullable<ValidationState>;
|
|
4
|
+
showValidateMessages?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
7
|
+
validate: Nullable<ValidationState>;
|
|
8
|
+
showValidateMessages: boolean;
|
|
9
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
export default _default;
|
|
@@ -327,7 +327,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
327
327
|
searchElement: import("vue").Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
328
328
|
tagsElement: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
329
329
|
listElement: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
330
|
-
validateErrorMessages: import("vue").ComputedRef<string[]>;
|
|
331
330
|
isInvalid: import("vue").ComputedRef<boolean>;
|
|
332
331
|
}, State, {
|
|
333
332
|
computedLabel(): string;
|
|
@@ -763,6 +762,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
763
762
|
asyncValuePropsKey: string;
|
|
764
763
|
trackAsyncUpdatesByObject: boolean;
|
|
765
764
|
}, {}, {
|
|
765
|
+
RInputErrors: import("vue").DefineComponent<import("../r-input-errors/r-input-errors.vue").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../r-input-errors/r-input-errors.vue").Props> & Readonly<{}>, {
|
|
766
|
+
validate: Nullable<ValidationState>;
|
|
767
|
+
showValidateMessages: boolean;
|
|
768
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
766
769
|
RIcon: import("vue").DefineComponent<import("../r-icon/r-icon.vue").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
767
770
|
click: (event: MouseEvent) => any;
|
|
768
771
|
}, string, import("vue").PublicProps, Readonly<import("../r-icon/r-icon.vue").Props> & Readonly<{
|