@rebilly/revel 12.11.1 → 12.12.1

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.11.1](https://github.com/Rebilly/rebilly/compare/revel-v12.11.0...revel-v12.11.1) (2025-12-23)
1
+ ## [12.12.1](https://github.com/Rebilly/rebilly/compare/revel-v12.12.0...revel-v12.12.1) (2026-01-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **revel:** Value disappears from the autocomplete field when clicking out ([#17684](https://github.com/Rebilly/rebilly/issues/17684)) ([6fcda9b](https://github.com/Rebilly/rebilly/commit/6fcda9b9ec488a59fde2e599dc06d34accf202f7))
@@ -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 = {} & {
@@ -353,6 +353,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
353
353
  isAbove(): boolean;
354
354
  isComplexOptions(): boolean;
355
355
  isPlaceholderVisible(): boolean;
356
+ shouldShowPlaceholder(): boolean;
356
357
  isSingleLabelVisible(): boolean;
357
358
  optionKeys(): string[];
358
359
  pointerPosition(): number;