@rebilly/revel 12.11.0 → 12.12.0
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 +2 -7
- 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/revel.mjs +17 -17
- package/dist/revel.umd.js +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.12.0](https://github.com/Rebilly/rebilly/compare/revel-v12.11.1...revel-v12.12.0) (2026-01-08)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* **revel:** form input with error class calendar component button color is incorrect ([#17432](https://github.com/Rebilly/rebilly/issues/17432)) ([24cde76](https://github.com/Rebilly/rebilly/commit/24cde769c14194301ea5888ddf4ef0f1439a7d4b))
|
|
6
|
+
* Upgrade ESLint and Prettier ([#17793](https://github.com/Rebilly/rebilly/issues/17793)) ([8883216](https://github.com/Rebilly/rebilly/commit/88832162761efa08569e6dcc03366f727eebd96a))
|
|
@@ -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 {
|