@rebilly/revel 8.2.0 → 8.2.2
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 +3 -3
- package/dist/common/helpers/index.d.ts +2 -1
- package/dist/common/helpers/is-mobile.d.ts +1 -0
- package/dist/components/r-popper/r-popper.vue.d.ts +1 -1
- package/dist/components/r-select/r-select.vue.d.ts +3 -0
- package/dist/revel.mjs +2734 -2729
- package/dist/revel.umd.js +121 -121
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [8.2.
|
|
1
|
+
## [8.2.2](https://github.com/Rebilly/rebilly/compare/revel-v8.2.1...revel-v8.2.2) (2024-12-03)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **revel:** Improve Popper popover mobile placement ([#8989](https://github.com/Rebilly/rebilly/issues/8989)) ([8ef0a26](https://github.com/Rebilly/rebilly/commit/8ef0a264f713aec95f1b36f0f3f7c4421a3662b9))
|
|
@@ -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
|
-
|
|
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>;
|
|
@@ -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;
|