@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 +6 -1
- package/dist/components/r-button-group/r-button-group.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-popper/r-popper.vue.d.ts +2 -4
- package/dist/components/r-radio/r-radio.vue.d.ts +1 -1
- package/dist/components/r-select/r-select.vue.d.ts +1 -0
- package/dist/revel.mjs +31 -22
- package/dist/revel.umd.js +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
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))
|
|
@@ -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 =
|
|
5
|
-
type Positions =
|
|
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 {
|
|
@@ -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;
|