@rebilly/revel 6.2.0 → 6.2.1
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/r-icon/r-icon-sprites.d.ts +2 -2
- package/dist/index.d.ts +2 -1
- package/dist/revel.mjs +1806 -1792
- package/dist/revel.umd.js +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.2.1](https://github.com/Rebilly/rebilly/compare/revel-v6.2.0...revel-v6.2.1) (2023-11-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **revel:** Expose Revel icon sheet to access them and be able to inject them on shadow doms ([#2463](https://github.com/Rebilly/rebilly/issues/2463)) ([339a555](https://github.com/Rebilly/rebilly/commit/339a555dd43db5849720d77d38bba4c1d6e77101))
|
|
7
|
+
|
|
1
8
|
## [6.2.0](https://github.com/Rebilly/rebilly/compare/revel-v6.1.2...revel-v6.2.0) (2023-11-30)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const RIconNames: {
|
|
2
2
|
fingerprint: string;
|
|
3
3
|
dashboard: string;
|
|
4
4
|
lists: string;
|
|
@@ -117,7 +117,7 @@ export declare const iconNames: {
|
|
|
117
117
|
reports: string;
|
|
118
118
|
allowlists: string;
|
|
119
119
|
};
|
|
120
|
-
export declare const
|
|
120
|
+
export declare const RIconColors: {
|
|
121
121
|
default: null;
|
|
122
122
|
'on-surface': string;
|
|
123
123
|
primary: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { App } from 'vue';
|
|
2
2
|
import { createRToastManager } from './components/r-toast/r-toast-manager';
|
|
3
3
|
import * as tokens from './styles/tokens';
|
|
4
|
+
import * as icons from './components/r-icon/r-icon-sprites';
|
|
4
5
|
export * from './components';
|
|
5
6
|
export { createRToastManager };
|
|
6
|
-
export { tokens };
|
|
7
|
+
export { tokens, icons };
|
|
7
8
|
/**
|
|
8
9
|
* This plugin registers all revel components and directives
|
|
9
10
|
* install can be imported and called as a named import or as a default import (for plugin mode)
|