@rebilly/revel 6.22.7 → 6.22.8
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 +7 -0
- package/dist/components/index.d.ts +0 -1
- package/dist/revel.mjs +983 -1090
- package/dist/revel.umd.js +5 -5
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/r-icon-button/r-icon-button.vue.d.ts +0 -133
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.22.8](https://github.com/Rebilly/rebilly/compare/revel-v6.22.7...revel-v6.22.8) (2024-04-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **revel:** Remove `r-icon-button` component ([#4482](https://github.com/Rebilly/rebilly/issues/4482)) ([d699ec5](https://github.com/Rebilly/rebilly/commit/d699ec5f1e82fc9f92aefe8e771635a35cf74ebb))
|
|
7
|
+
|
|
1
8
|
## [6.22.7](https://github.com/Rebilly/rebilly/compare/revel-v6.22.6...revel-v6.22.7) (2024-04-04)
|
|
2
9
|
|
|
3
10
|
## [6.22.6](https://github.com/Rebilly/rebilly/compare/revel-v6.22.5...revel-v6.22.6) (2024-04-03)
|
|
@@ -8,7 +8,6 @@ export { default as RDateInput } from './r-date-input/r-date-input.vue';
|
|
|
8
8
|
export { default as RFileUpload } from './r-file-upload/r-file-upload.vue';
|
|
9
9
|
export { default as RGrid } from './r-grid/r-grid.vue';
|
|
10
10
|
export { default as RIcon } from './r-icon/r-icon.vue';
|
|
11
|
-
export { default as RIconButton } from './r-icon-button/r-icon-button.vue';
|
|
12
11
|
export { default as RImg } from './r-img/r-img.vue';
|
|
13
12
|
export { default as RInput } from './r-input/r-input.vue';
|
|
14
13
|
export { default as RLoader } from './r-loader/r-loader.vue';
|