@rebilly/revel 12.11.0 → 12.12.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,11 +1,6 @@
1
- ## [12.11.0](https://github.com/Rebilly/rebilly/compare/revel-v12.10.1...revel-v12.11.0) (2025-12-22)
1
+ ## [12.12.0](https://github.com/Rebilly/rebilly/compare/revel-v12.11.1...revel-v12.12.0) (2026-01-08)
2
2
 
3
3
 
4
4
  ### Features
5
5
 
6
- * **revel:** Add r-tabs displaying information about validation errors ([#17395](https://github.com/Rebilly/rebilly/issues/17395)) ([b25ce8d](https://github.com/Rebilly/rebilly/commit/b25ce8d1303c7bab26d43731c26c354db6d9b038))
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * **revel:** form input with error class calendar component button color is incorrect ([#17432](https://github.com/Rebilly/rebilly/issues/17432)) ([24cde76](https://github.com/Rebilly/rebilly/commit/24cde769c14194301ea5888ddf4ef0f1439a7d4b))
6
+ * Upgrade ESLint and Prettier ([#17793](https://github.com/Rebilly/rebilly/issues/17793)) ([8883216](https://github.com/Rebilly/rebilly/commit/88832162761efa08569e6dcc03366f727eebd96a))
@@ -2,7 +2,7 @@ interface Props {
2
2
  /**
3
3
  * Makes the button group full width.
4
4
  */
5
- fluid: boolean;
5
+ fluid?: boolean;
6
6
  }
7
7
  declare var __VLS_1: {};
8
8
  type __VLS_Slots = {} & {
@@ -7,7 +7,7 @@ interface Props {
7
7
  /**
8
8
  * Function to toggle the calendar
9
9
  */
10
- calendarToggle: () => void;
10
+ calendarToggle?: () => void;
11
11
  /**
12
12
  * Specify if the date range picker is disabled
13
13
  */
@@ -1,8 +1,6 @@
1
- declare const allDirections: readonly ["horizontal", "vertical"];
2
- declare const allPositions: readonly ["bottomStart", "bottomEnd", "topStart", "topEnd"];
3
1
  type MarginsOffset = [number, number, number, number];
4
- type Directions = (typeof allDirections)[number];
5
- type Positions = (typeof allPositions)[number];
2
+ type Directions = 'horizontal' | 'vertical';
3
+ type Positions = 'bottomStart' | 'bottomEnd' | 'topStart' | 'topEnd';
6
4
  type SlideFrom = 'fade' | 'top' | 'bottom' | 'left' | 'right';
7
5
  type Strategy = 'absolute' | 'fixed';
8
6
  interface Props {
@@ -32,7 +32,7 @@ interface Props {
32
32
  /**
33
33
  * Radio input model value
34
34
  */
35
- modelValue: Nullable<Value>;
35
+ modelValue?: Nullable<Value>;
36
36
  }
37
37
  declare var __VLS_1: {};
38
38
  type __VLS_Slots = {} & {