@teamturing/token-studio 1.1.0 → 1.1.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/README.md CHANGED
@@ -1 +1,3 @@
1
1
  # `@teamturing/token-studio`
2
+
3
+ color, spacing, typography 등 튜링 서비스의 디자인 시스템을 위한 토큰들을 모아둔 패키지입니다.
@@ -1,15 +1,15 @@
1
1
  export { default as breakpoints, baseBreakpoints } from './breakpoints';
2
2
  export { default as color, bgColor, borderColor, dimColor, iconColor, linkColor, scaleColor, textColor } from './color';
3
- export type { BgColorKey, BorderColorKey, ColorKey, DimColorKey, IconColorKey, LinkColorKey, ScaleColorKey, TextColorKey, } from './color';
3
+ export type { ColorKey, BgColorKey, BorderColorKey, DimColorKey, IconColorKey, LinkColorKey, ScaleColorKey, TextColorKey, } from './color';
4
4
  export { default as elevation, shadowElevation, surfaceElevation } from './elevation';
5
5
  export type { ElevationKey, ShadowElevationKey, SurfaceElevationKey } from './elevation';
6
6
  export { default as gradient, bgGradient, borderGradient, overlayGradient, textGradient } from './gradient';
7
- export type { BgGradientKey, BorderGradientKey, GradientKey, OverlayGradientKey, TextGradientKey } from './gradient';
7
+ export type { GradientKey, BgGradientKey, BorderGradientKey, OverlayGradientKey, TextGradientKey } from './gradient';
8
8
  export { default as opacity, accentOpacity } from './opacity';
9
- export type { AccentOpacityKey, OpacityKey } from './opacity';
9
+ export type { OpacityKey, AccentOpacityKey } 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';
13
13
  export type { SpaceKey } from './space';
14
14
  export { default as typography, fontSizes, fontWeights, lineHeights } from './typography';
15
- export type { FontSizeKey, FontWeightKey, LineHeightKey, TypographyKey } from './typography';
15
+ export type { TypographyKey, FontSizeKey, FontWeightKey, LineHeightKey } from './typography';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/token-studio",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
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",
@@ -22,11 +22,10 @@
22
22
  "scripts": {
23
23
  "check:lint": "eslint ./src --cache",
24
24
  "check:type": "tsc --noEmit",
25
- "test": "jest --config ./jest.config.js",
26
25
  "build": "rm -rf dist esm && tsc --project tsconfig.cjs.json --declaration --emitDeclarationOnly --declarationDir dist && rollup --config rollup.config.js"
27
26
  },
28
27
  "bugs": {
29
28
  "url": "https://github.com/weareteamturing/bombe/issues"
30
29
  },
31
- "gitHead": "7b73854d51bba4e8d0c6e6a11f583110476f7507"
30
+ "gitHead": "26a6e3cde5a4a1962c492c984d31f98ac3a757c9"
32
31
  }