@rebilly/revel 8.2.1 → 8.2.3

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,6 +1 @@
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))
1
+ ## [8.2.3](https://github.com/Rebilly/rebilly/compare/revel-v8.2.2...revel-v8.2.3) (2024-12-04)
@@ -7,4 +7,5 @@ import { isObject } from './is-object';
7
7
  import { kebabCase } from './kebab-case';
8
8
  import { unCamelCase } from './un-camel-case';
9
9
  import { getShadowParent } from './get-shadow-parent';
10
- export { capitalizeFirstLetter, debounce, deepClone, formatDate, isKebabCase, isObject, kebabCase, unCamelCase, getShadowParent, };
10
+ import { isMobile } from './is-mobile';
11
+ export { capitalizeFirstLetter, debounce, deepClone, formatDate, isKebabCase, isObject, kebabCase, unCamelCase, getShadowParent, isMobile, };
@@ -0,0 +1 @@
1
+ export declare const isMobile: import("vue").ComputedRef<boolean>;
@@ -42,7 +42,7 @@ interface Props {
42
42
  */
43
43
  offset?: number;
44
44
  /**
45
- * Margin from the trigger element
45
+ * Margin from the trigger element (ignored on mobile)
46
46
  */
47
47
  margin?: MarginsOffset;
48
48
  /**