@occmundial/occ-atomic 2.0.0-beta.4 → 2.0.0-beta.5
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.
- package/CHANGELOG.md +15 -0
- package/build/Button/__snapshots__/Button.test.js.snap +3 -11
- package/build/Text/Text.js +429 -112
- package/build/Text/Text.test.js +5 -5
- package/build/Text/__snapshots__/Text.test.js.snap +144 -86
- package/build/Text/styles.js +165 -81
- package/build/Toaster/__snapshots__/Toaster.test.js.snap +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [2.0.0-beta.5](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.4...v2.0.0-beta.5) (2024-04-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Changed font variable to the old one ([75dc28b](https://github.com/occmundial/occ-atomic/commit/75dc28bc0bd174057449c45d4ebe79366ffc8433))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Changed some examples with tables ([3efe252](https://github.com/occmundial/occ-atomic/commit/3efe252c3d8651976f28e951081c717861c0ad56))
|
|
12
|
+
* Updated Text component documentation ([73e4b21](https://github.com/occmundial/occ-atomic/commit/73e4b21d488ba012df82d2e4fb85c18689c5d586))
|
|
13
|
+
* Updated text component with new tokens ([b5f75ee](https://github.com/occmundial/occ-atomic/commit/b5f75eec430126b36c06dcd60bb320ccdf7eee0f))
|
|
14
|
+
* Upgrade font tokens ([069bf92](https://github.com/occmundial/occ-atomic/commit/069bf9237f5b52492961f96f0a6f4a79469f4448))
|
|
15
|
+
|
|
1
16
|
# [2.0.0-beta.4](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.3...v2.0.0-beta.4) (2024-04-19)
|
|
2
17
|
|
|
3
18
|
|
|
@@ -4,14 +4,6 @@ exports[`Button matches the snapshot 1`] = `ShallowWrapper {}`;
|
|
|
4
4
|
|
|
5
5
|
exports[`Button styles matches the snapshot 1`] = `
|
|
6
6
|
Object {
|
|
7
|
-
"@keyframes iconRotate": Object {
|
|
8
|
-
"from": Object {
|
|
9
|
-
"transform": "rotate(0deg)",
|
|
10
|
-
},
|
|
11
|
-
"to": Object {
|
|
12
|
-
"transform": "rotate(360deg)",
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
7
|
"block": Object {
|
|
16
8
|
"display": "block",
|
|
17
9
|
"width": "100%",
|
|
@@ -28,7 +20,7 @@ Object {
|
|
|
28
20
|
"boxSizing": "border-box",
|
|
29
21
|
"cursor": "pointer",
|
|
30
22
|
"display": "inline-block",
|
|
31
|
-
"font": "400 14px/1.5 '
|
|
23
|
+
"font": "400 14px/1.5 'OccText', sans-serif",
|
|
32
24
|
"marginBottom": 0,
|
|
33
25
|
"maxWidth": "100%",
|
|
34
26
|
"padding": Array [
|
|
@@ -165,7 +157,7 @@ Object {
|
|
|
165
157
|
"12px",
|
|
166
158
|
],
|
|
167
159
|
},
|
|
168
|
-
"font": "400 18px/1.5 '
|
|
160
|
+
"font": "400 18px/1.5 'OccText', sans-serif",
|
|
169
161
|
"padding": Array [
|
|
170
162
|
"12px",
|
|
171
163
|
"32px",
|
|
@@ -204,7 +196,7 @@ Object {
|
|
|
204
196
|
"8px",
|
|
205
197
|
],
|
|
206
198
|
},
|
|
207
|
-
"font": "400 16px/1.5 '
|
|
199
|
+
"font": "400 16px/1.5 'OccText', sans-serif",
|
|
208
200
|
"padding": Array [
|
|
209
201
|
"12px",
|
|
210
202
|
"24px",
|