@occmundial/occ-atomic 2.0.0-beta.8 → 2.0.0-beta.9

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [2.0.0-beta.9](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.8...v2.0.0-beta.9) (2024-04-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add exception for the provider in the babel plugin ([4383e87](https://github.com/occmundial/occ-atomic/commit/4383e876ef28bb773dca3ff9149dfe1ad7cc53a1))
7
+
1
8
  # [2.0.0-beta.8](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.7...v2.0.0-beta.8) (2024-04-25)
2
9
 
3
10
 
@@ -37,6 +37,8 @@ function importModule(path) {
37
37
  return importDeclaration(specifier, '@occmundial/occ-atomic/build/Toaster/functions');
38
38
  } else if (importName === 'Nav' || importName === 'Menu') {
39
39
  return importDeclaration(specifier, "@occmundial/occ-atomic/build/Header/".concat(importName));
40
+ } else if (importName === 'AtomicProvider') {
41
+ return importDeclaration(specifier, '@occmundial/occ-atomic/build/Provider');
40
42
  } else if (subatomic.includes(importName)) {
41
43
  return importDeclaration(types.importDefaultSpecifier(types.identifier(importName)), "@occmundial/occ-atomic/build/subatomic/".concat(importName));
42
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occmundial/occ-atomic",
3
- "version": "2.0.0-beta.8",
3
+ "version": "2.0.0-beta.9",
4
4
  "description": "Collection of shareable styled React components for OCC applications.",
5
5
  "homepage": "http://occmundial.github.io/occ-atomic",
6
6
  "main": "build/index.js",