@oxide/design-system 0.3.1 → 0.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxide/design-system",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Home of reusable design assets and token for oxide internal sites",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -932,13 +932,7 @@ module.exports.colorUtilities = {
932
932
  },
933
933
  }
934
934
 
935
- module.exports.borderRadiusTokens = {
936
- sm: 'var(--border-radius-sm)',
937
- DEFAULT: 'var(--border-radius)',
938
- full: 'var(--border-radius-full)',
939
- }
940
-
941
- module.exports.elevationTokens = {
935
+ module.exports.elevationUtilities = {
942
936
  '.elevation-0': {
943
937
  'box-shadow': 'none',
944
938
  },
@@ -955,3 +949,9 @@ module.exports.elevationTokens = {
955
949
  '0px 4.375px 4.625px #00000021, 0px 20px 13px #00000033, 0px 50.625px 34.875px #00000045, 0px 100px 80px #00000066',
956
950
  },
957
951
  }
952
+
953
+ module.exports.borderRadiusTokens = {
954
+ sm: 'var(--border-radius-sm)',
955
+ DEFAULT: 'var(--border-radius)',
956
+ full: 'var(--border-radius-full)',
957
+ }