@rebilly/revel 6.1.2 → 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 CHANGED
@@ -1,3 +1,17 @@
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
+
8
+ ## [6.2.0](https://github.com/Rebilly/rebilly/compare/revel-v6.1.2...revel-v6.2.0) (2023-11-30)
9
+
10
+
11
+ ### Features
12
+
13
+ * **billing-portal:** Basic style setup ([#2452](https://github.com/Rebilly/rebilly/issues/2452)) ([b72d8af](https://github.com/Rebilly/rebilly/commit/b72d8af6fd183c25b95e69b7cf438a7c67fe5ff1))
14
+
1
15
  ## [6.1.2](https://github.com/Rebilly/rebilly/compare/revel-v6.1.1...revel-v6.1.2) (2023-11-29)
2
16
 
3
17
 
@@ -1,4 +1,4 @@
1
- export declare const iconNames: {
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 iconColors: {
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)