@rebilly/revel 12.45.0 → 12.46.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 -2
- package/dist/components/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/revel.mjs +821 -819
- package/dist/revel.umd.js +9 -9
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.46.0](https://github.com/Rebilly/rebilly/compare/revel-v12.45.1...revel-v12.46.0) (2026-07-14)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **revel:** export public types from package root ([#23410](https://github.com/Rebilly/rebilly/issues/23410)) ([07cc987](https://github.com/Rebilly/rebilly/commit/07cc987026990df219b1b6a5ecf0ef409b5c1ecb))
|
|
@@ -28,6 +28,7 @@ export { default as RPopper } from './r-popper/r-popper.vue';
|
|
|
28
28
|
export { default as RRadio } from './r-radio/r-radio.vue';
|
|
29
29
|
export { default as RRepeater } from './r-repeater/r-repeater.vue';
|
|
30
30
|
export { default as RSelect } from './r-select/r-select.vue';
|
|
31
|
+
export type { OptionItem, ComplexOptionItem, Options } from './r-select/types';
|
|
31
32
|
export { default as RTab } from './r-tabs/r-tab.vue';
|
|
32
33
|
export { default as RTabs } from './r-tabs/r-tabs.vue';
|
|
33
34
|
export { default as RTile } from './r-tile/r-tile.vue';
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './directives';
|
|
|
7
7
|
export { createRToastManager };
|
|
8
8
|
export { tokens, icons };
|
|
9
9
|
export type { IconNames } from './components/r-icon/r-icon-sprites';
|
|
10
|
+
export type { ApiError, ValidationState, ErrorObject } from './types';
|
|
10
11
|
/**
|
|
11
12
|
* This plugin registers all revel components and directives
|
|
12
13
|
* install can be imported and called as a named import or as a default import (for plugin mode)
|