@occmundial/occ-atomic 2.0.0-beta.11 → 2.0.0-beta.12

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.12](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.11...v2.0.0-beta.12) (2024-04-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Change name of the import for AtomicProvider in babel ([d0157de](https://github.com/occmundial/occ-atomic/commit/d0157de2321bce412dc0662a98f89a6196dbc917))
7
+
1
8
  # [2.0.0-beta.11](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.10...v2.0.0-beta.11) (2024-04-25)
2
9
 
3
10
 
@@ -38,7 +38,7 @@ function importModule(path) {
38
38
  } else if (importName === 'Nav' || importName === 'Menu') {
39
39
  return importDeclaration(specifier, "@occmundial/occ-atomic/build/Header/".concat(importName));
40
40
  } else if (importName === 'AtomicProvider') {
41
- return importDeclaration(types.importDefaultSpecifier(types.identifier('Provider')), '@occmundial/occ-atomic/build/Provider');
41
+ return importDeclaration(types.importDefaultSpecifier(types.identifier('AtomicProvider')), '@occmundial/occ-atomic/build/Provider');
42
42
  } else if (subatomic.includes(importName)) {
43
43
  return importDeclaration(types.importDefaultSpecifier(types.identifier(importName)), "@occmundial/occ-atomic/build/subatomic/".concat(importName));
44
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occmundial/occ-atomic",
3
- "version": "2.0.0-beta.11",
3
+ "version": "2.0.0-beta.12",
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",