@webitel/ui-sdk 26.2.27 → 26.2.29

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/install.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "26.2.27",
3
+ "version": "26.2.29",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run biome:format:all || true) && npm run publish-lib",
package/src/install.ts CHANGED
@@ -10,6 +10,9 @@ import Components from './components'; // init all components
10
10
  import Directives from './directives'; // init all directives
11
11
  import initPrimevue from './plugins/primevue/primevue.plugin';
12
12
 
13
+ // Export fillIconsRepository so consumers can register icons in the bundled instance
14
+ // Note: This will create a separate Map instance in the bundle, but consumers
15
+ // can register icons in both the bundled and source instances if needed
13
16
  export { fillIconsRepository };
14
17
 
15
18
  export default {