@liner-fe/design-token 2.0.7 → 2.0.9
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/lib/assets/index.d.ts +9 -11
- package/lib/color.d.ts +12 -0
- package/lib/index.cjs +201 -217
- package/lib/index.cjs.map +4 -4
- package/lib/index.mjs +201 -217
- package/lib/index.mjs.map +4 -4
- package/lib/typography.d.ts +24 -24
- package/package.json +1 -1
- package/src/assets/index.ts +9 -11
- package/src/color.ts +12 -0
- package/src/typography.ts +24 -24
- package/lib/assets/ic-bold-16-quote-up.d.ts +0 -2
- package/lib/assets/ic-color-24-excel.d.ts +0 -2
package/lib/assets/index.d.ts
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { ICLine24SelectText } from './ic-line-24-select-text';
|
|
2
|
+
export { ICColor24Ppt } from './ic-color-24-ppt';
|
|
3
|
+
export { ICBold24Chat } from './ic-bold-24-chat';
|
|
4
|
+
export { ICLine16Mobile } from './ic-line-16-mobile';
|
|
3
5
|
export { ICBold16Android } from './ic-bold-16-android';
|
|
4
|
-
export {
|
|
6
|
+
export { ICColor24Word } from './ic-color-24-word';
|
|
7
|
+
export { ICColor24Html } from './ic-color-24-html';
|
|
5
8
|
export { ICBold16Apple } from './ic-bold-16-apple';
|
|
6
|
-
export { ICBold16QuoteUp } from './ic-bold-16-quote-up';
|
|
7
|
-
export { ICColor24Text } from './ic-color-24-text';
|
|
8
9
|
export { ICBold24Info } from './ic-bold-24-info';
|
|
9
10
|
export { ICBold24Image } from './ic-bold-24-image';
|
|
10
|
-
export {
|
|
11
|
+
export { ICBold24Caution } from './ic-bold-24-caution';
|
|
12
|
+
export { ICBold24Globe } from './ic-bold-24-globe';
|
|
11
13
|
export { ICBold16Chrome } from './ic-bold-16-chrome';
|
|
12
|
-
export { ICLine16Mobile } from './ic-line-16-mobile';
|
|
13
|
-
export { ICColor24Excel } from './ic-color-24-excel';
|
|
14
|
-
export { ICColor24Ppt } from './ic-color-24-ppt';
|
|
15
|
-
export { ICColor24Html } from './ic-color-24-html';
|
|
16
14
|
export { ICBold24File } from './ic-bold-24-file';
|
|
17
|
-
export { ICLine24SelectText } from './ic-line-24-select-text';
|
|
18
15
|
export { ICColor24Pdf } from './ic-color-24-pdf';
|
|
16
|
+
export { ICColor24Text } from './ic-color-24-text';
|
package/lib/color.d.ts
CHANGED
|
@@ -4,4 +4,16 @@ export declare const color: {
|
|
|
4
4
|
readonly blue95: "#048FDB";
|
|
5
5
|
readonly blue10: "#ECF5FF";
|
|
6
6
|
readonly blue15: "#E2F1FF";
|
|
7
|
+
readonly coolgray99: "#F7FAFD";
|
|
8
|
+
readonly coolgray97: "#F2F5F7";
|
|
9
|
+
readonly coolgray95: "#E9EDF2";
|
|
10
|
+
readonly coolgray90: "#D8DFE5";
|
|
11
|
+
readonly coolgray80: "#B8C2CC";
|
|
12
|
+
readonly coolgray70: "#9AA7B3";
|
|
13
|
+
readonly coolgray60: "#7D8B99";
|
|
14
|
+
readonly coolgray50: "#647280";
|
|
15
|
+
readonly coolgray40: "#4B5966";
|
|
16
|
+
readonly coolgray30: "#36424D";
|
|
17
|
+
readonly coolgray20: "#222A33";
|
|
18
|
+
readonly coolgray5: "#080A0D";
|
|
7
19
|
};
|