@occmundial/occ-atomic 2.0.0-beta.11 → 2.0.0-beta.13
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +14 -0
- package/build/plugin/babel.js +1 -1
- package/build/subatomic/mappedIcons.js +2 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
# [2.0.0-beta.13](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.12...v2.0.0-beta.13) (2024-04-29)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* Map arrow down to chevron down ([9bd47fa](https://github.com/occmundial/occ-atomic/commit/9bd47fab659f3f7743d6f0b6a48dc9ecf599022d))
|
7
|
+
|
8
|
+
# [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)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* Change name of the import for AtomicProvider in babel ([d0157de](https://github.com/occmundial/occ-atomic/commit/d0157de2321bce412dc0662a98f89a6196dbc917))
|
14
|
+
|
1
15
|
# [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
16
|
|
3
17
|
|
package/build/plugin/babel.js
CHANGED
@@ -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('
|
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
|
}
|
@@ -22,7 +22,6 @@ var oldToNewIcon = {
|
|
22
22
|
cart: 'cart',
|
23
23
|
cartSolid: 'cart',
|
24
24
|
cash: 'cash-coin',
|
25
|
-
check: 'check-circle',
|
26
25
|
checkSolid: 'check-circle',
|
27
26
|
company: 'building',
|
28
27
|
companySolid: 'building',
|
@@ -115,8 +114,8 @@ var oldToNewIcon = {
|
|
115
114
|
moreOptions: 'three-dots-vertical',
|
116
115
|
money: 'coin',
|
117
116
|
go: 'arrow-right-circle',
|
118
|
-
arrowDown: '
|
119
|
-
arrowDownFilled: '
|
117
|
+
arrowDown: 'chevron-down',
|
118
|
+
arrowDownFilled: 'chevron-down',
|
120
119
|
label: 'tag',
|
121
120
|
unlock: 'unlock',
|
122
121
|
bill: 'cash',
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@occmundial/occ-atomic",
|
3
|
-
"version": "2.0.0-beta.
|
3
|
+
"version": "2.0.0-beta.13",
|
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",
|