@teamturing/token-studio 1.4.0 → 1.5.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.d.ts +1 -0
- package/dist/index.js +17 -0
- package/esm/index.js +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -150,6 +150,22 @@ const palette = {
|
|
|
150
150
|
...mustardYellow
|
|
151
151
|
};
|
|
152
152
|
|
|
153
|
+
var index = /*#__PURE__*/Object.freeze({
|
|
154
|
+
__proto__: null,
|
|
155
|
+
blue: blue,
|
|
156
|
+
default: palette,
|
|
157
|
+
fuchsiaPink: fuchsiaPink,
|
|
158
|
+
gray: gray,
|
|
159
|
+
green: green,
|
|
160
|
+
indianRed: indianRed,
|
|
161
|
+
mustardYellow: mustardYellow,
|
|
162
|
+
red: red,
|
|
163
|
+
shade: shade,
|
|
164
|
+
skyBlue: skyBlue,
|
|
165
|
+
violet: violet,
|
|
166
|
+
yellow: yellow
|
|
167
|
+
});
|
|
168
|
+
|
|
153
169
|
const textColor = {
|
|
154
170
|
'text/primary': palette.violet500,
|
|
155
171
|
'text/accent/blue': palette.blue500,
|
|
@@ -768,6 +784,7 @@ exports.lineHeights = lineHeights;
|
|
|
768
784
|
exports.linkColor = linkColor;
|
|
769
785
|
exports.opacity = opacity;
|
|
770
786
|
exports.overlayGradient = overlayGradient;
|
|
787
|
+
exports.palette = index;
|
|
771
788
|
exports.radii = radii;
|
|
772
789
|
exports.scaleColor = scaleColor;
|
|
773
790
|
exports.shadowElevation = shadowElevation;
|
package/esm/index.js
CHANGED
|
@@ -6,6 +6,8 @@ export { accentOpacity, 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';
|
|
9
|
+
import * as index from './foundation/palette/index.js';
|
|
10
|
+
export { index as palette };
|
|
9
11
|
export { default as fontSizes } from './token/typography/fontSizes.js';
|
|
10
12
|
export { default as fontWeights } from './token/typography/fontWeights.js';
|
|
11
13
|
export { default as lineHeights } from './token/typography/lineHeights.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/token-studio",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.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": "
|
|
30
|
+
"gitHead": "b73a2410609a20b9a89b24cee7b2522e5e7eff6f"
|
|
31
31
|
}
|