@webitel/ui-sdk 0.1.1-vue3 → 0.1.2-vue3

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.
@@ -18524,9 +18524,9 @@ const Directives = {
18524
18524
  // // locale: this.$i18n.locale,
18525
18525
  // };
18526
18526
  Object.keys(globals).forEach(globalKey => {
18527
- app.inject(globalKey, globals[globalKey]);
18527
+ app.provide(globalKey, globals[globalKey]);
18528
18528
  });
18529
- app.inject('$eventBus', eventBus);
18529
+ app.provide('$eventBus', eventBus);
18530
18530
  if (router) app.use(router);
18531
18531
  app.use(floating_vue_es_plugin);
18532
18532
  }