@rebilly/revel 8.1.1 → 8.2.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-select/r-select.vue.d.ts +3 -0
- package/dist/revel.mjs +128 -123
- package/dist/revel.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [8.
|
|
1
|
+
## [8.2.1](https://github.com/Rebilly/rebilly/compare/revel-v8.2.0...revel-v8.2.1) (2024-12-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **revel:** Add select overlay to prevent unexpected dropdown opening ([#8907](https://github.com/Rebilly/rebilly/issues/8907)) ([6559fe6](https://github.com/Rebilly/rebilly/commit/6559fe660353832fdec7d23bb673f1d978e65b2f))
|
|
@@ -332,6 +332,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
332
332
|
classes(): {
|
|
333
333
|
'r-is-error': boolean;
|
|
334
334
|
};
|
|
335
|
+
labelClasses(): {
|
|
336
|
+
'r-select-block-pointer-events': boolean;
|
|
337
|
+
};
|
|
335
338
|
isInvalid(): boolean;
|
|
336
339
|
inputStyle(): StyleValue;
|
|
337
340
|
internalValue(): Options;
|