@teamturing/token-studio 1.5.0 → 1.6.0

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/dist/index.js CHANGED
@@ -441,11 +441,8 @@ const opacity$1 = {
441
441
  opacity50: 0.5
442
442
  };
443
443
 
444
- const accentOpacity = {
445
- accent: opacity$1.opacity50
446
- };
447
444
  const opacity = {
448
- ...accentOpacity
445
+ disabled: opacity$1.opacity50
449
446
  };
450
447
 
451
448
  const rounding = {
@@ -766,7 +763,6 @@ const typography = {
766
763
  }
767
764
  };
768
765
 
769
- exports.accentOpacity = accentOpacity;
770
766
  exports.baseBreakpoints = baseBreakpoints;
771
767
  exports.bgColor = bgColor;
772
768
  exports.bgGradient = bgGradient;
@@ -5,8 +5,8 @@ export { default as elevation, shadowElevation, surfaceElevation } from './eleva
5
5
  export type { ElevationKey, ShadowElevationKey, SurfaceElevationKey } from './elevation';
6
6
  export { default as gradient, bgGradient, borderGradient, overlayGradient, textGradient } from './gradient';
7
7
  export type { GradientKey, BgGradientKey, BorderGradientKey, OverlayGradientKey, TextGradientKey } from './gradient';
8
- export { default as opacity, accentOpacity } from './opacity';
9
- export type { OpacityKey, AccentOpacityKey } from './opacity';
8
+ export { default as opacity } from './opacity';
9
+ export type { OpacityKey } from './opacity';
10
10
  export { default as radii } from './radii';
11
11
  export type { RadiiKey } from './radii';
12
12
  export { default as space } from './space';
@@ -1,11 +1,6 @@
1
- declare const accentOpacity: {
2
- readonly accent: number;
3
- };
4
1
  declare const opacity: {
5
- readonly accent: number;
2
+ readonly disabled: number;
6
3
  };
7
- type AccentOpacityKey = keyof typeof accentOpacity;
8
4
  type OpacityKey = keyof typeof opacity;
9
5
  export default opacity;
10
- export { accentOpacity };
11
- export type { AccentOpacityKey, OpacityKey };
6
+ export type { OpacityKey };
package/esm/index.js CHANGED
@@ -2,7 +2,7 @@ export { baseBreakpoints, default as breakpoints } from './token/breakpoints/ind
2
2
  export { bgColor, borderColor, default as color, dimColor, iconColor, linkColor, scaleColor, textColor } from './token/color/index.js';
3
3
  export { default as elevation, shadowElevation, surfaceElevation } from './token/elevation/index.js';
4
4
  export { bgGradient, borderGradient, default as gradient, overlayGradient, textGradient } from './token/gradient/index.js';
5
- export { accentOpacity, default as opacity } from './token/opacity/index.js';
5
+ export { default as opacity } from './token/opacity/index.js';
6
6
  export { default as radii } from './token/radii/index.js';
7
7
  export { default as space } from './token/space/index.js';
8
8
  export { default as typography } from './token/typography/index.js';
@@ -1,10 +1,7 @@
1
1
  import opacity$1 from '../../foundation/opacity/index.js';
2
2
 
3
- const accentOpacity = {
4
- accent: opacity$1.opacity50
5
- };
6
3
  const opacity = {
7
- ...accentOpacity
4
+ disabled: opacity$1.opacity50
8
5
  };
9
6
 
10
- export { accentOpacity, opacity as default };
7
+ export { opacity as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/token-studio",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Foundations, tokens for Mathking design system",
5
5
  "author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
6
6
  "homepage": "https://github.com/weareteamturing/bombe#readme",
@@ -27,5 +27,5 @@
27
27
  "bugs": {
28
28
  "url": "https://github.com/weareteamturing/bombe/issues"
29
29
  },
30
- "gitHead": "b73a2410609a20b9a89b24cee7b2522e5e7eff6f"
30
+ "gitHead": "e4a25a048924cae1a86734841f1df13e779eaa91"
31
31
  }