@sproutsocial/seeds-color 1.5.5 → 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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.6.0](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-color@1.5.5...@sproutsocial/seeds-color@1.6.0) (2022-09-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * add typescript support ([24e718a](https://github.com/sproutsocial/seeds-packets/commit/24e718a26955f40b5645ba86600ff8aa8ba941fa))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.5.5](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-color@1.5.4...@sproutsocial/seeds-color@1.5.5) (2022-06-13)
7
18
 
8
19
  **Note:** Version bump only for package @sproutsocial/seeds-color
package/config.json CHANGED
@@ -32,6 +32,18 @@
32
32
  }
33
33
  ]
34
34
  },
35
+ "web/ts": {
36
+ "transformGroup": "ts",
37
+ "transforms": ["name/cti/constant"],
38
+ "buildPath": "dist/",
39
+ "files": [
40
+ {
41
+ "destination": "seeds-color.d.ts",
42
+ "format": "template/ts-exports",
43
+ "options": { "showFileHeader": false }
44
+ }
45
+ ]
46
+ },
35
47
  "sketch": {
36
48
  "transforms": ["attribute/cti", "attribute/color", "attribute/tokens"],
37
49
  "buildPath": "dist/",
@@ -0,0 +1,138 @@
1
+ export const COLOR_GREEN_0: string;
2
+ export const COLOR_GREEN_100: string;
3
+ export const COLOR_GREEN_200: string;
4
+ export const COLOR_GREEN_300: string;
5
+ export const COLOR_GREEN_400: string;
6
+ export const COLOR_GREEN_500: string;
7
+ export const COLOR_GREEN_600: string;
8
+ export const COLOR_GREEN_700: string;
9
+ export const COLOR_GREEN_800: string;
10
+ export const COLOR_GREEN_900: string;
11
+ export const COLOR_GREEN_1000: string;
12
+ export const COLOR_GREEN_1100: string;
13
+ export const COLOR_TEAL_0: string;
14
+ export const COLOR_TEAL_100: string;
15
+ export const COLOR_TEAL_200: string;
16
+ export const COLOR_TEAL_300: string;
17
+ export const COLOR_TEAL_400: string;
18
+ export const COLOR_TEAL_500: string;
19
+ export const COLOR_TEAL_600: string;
20
+ export const COLOR_TEAL_700: string;
21
+ export const COLOR_TEAL_800: string;
22
+ export const COLOR_TEAL_900: string;
23
+ export const COLOR_TEAL_1000: string;
24
+ export const COLOR_TEAL_1100: string;
25
+ export const COLOR_AQUA_0: string;
26
+ export const COLOR_AQUA_100: string;
27
+ export const COLOR_AQUA_200: string;
28
+ export const COLOR_AQUA_300: string;
29
+ export const COLOR_AQUA_400: string;
30
+ export const COLOR_AQUA_500: string;
31
+ export const COLOR_AQUA_600: string;
32
+ export const COLOR_AQUA_700: string;
33
+ export const COLOR_AQUA_800: string;
34
+ export const COLOR_AQUA_900: string;
35
+ export const COLOR_AQUA_1000: string;
36
+ export const COLOR_AQUA_1100: string;
37
+ export const COLOR_BLUE_0: string;
38
+ export const COLOR_BLUE_100: string;
39
+ export const COLOR_BLUE_200: string;
40
+ export const COLOR_BLUE_300: string;
41
+ export const COLOR_BLUE_400: string;
42
+ export const COLOR_BLUE_500: string;
43
+ export const COLOR_BLUE_600: string;
44
+ export const COLOR_BLUE_700: string;
45
+ export const COLOR_BLUE_800: string;
46
+ export const COLOR_BLUE_900: string;
47
+ export const COLOR_BLUE_1000: string;
48
+ export const COLOR_BLUE_1100: string;
49
+ export const COLOR_PURPLE_0: string;
50
+ export const COLOR_PURPLE_100: string;
51
+ export const COLOR_PURPLE_200: string;
52
+ export const COLOR_PURPLE_300: string;
53
+ export const COLOR_PURPLE_400: string;
54
+ export const COLOR_PURPLE_500: string;
55
+ export const COLOR_PURPLE_600: string;
56
+ export const COLOR_PURPLE_700: string;
57
+ export const COLOR_PURPLE_800: string;
58
+ export const COLOR_PURPLE_900: string;
59
+ export const COLOR_PURPLE_1000: string;
60
+ export const COLOR_PURPLE_1100: string;
61
+ export const COLOR_MAGENTA_0: string;
62
+ export const COLOR_MAGENTA_100: string;
63
+ export const COLOR_MAGENTA_200: string;
64
+ export const COLOR_MAGENTA_300: string;
65
+ export const COLOR_MAGENTA_400: string;
66
+ export const COLOR_MAGENTA_500: string;
67
+ export const COLOR_MAGENTA_600: string;
68
+ export const COLOR_MAGENTA_700: string;
69
+ export const COLOR_MAGENTA_800: string;
70
+ export const COLOR_MAGENTA_900: string;
71
+ export const COLOR_MAGENTA_1000: string;
72
+ export const COLOR_MAGENTA_1100: string;
73
+ export const COLOR_PINK_0: string;
74
+ export const COLOR_PINK_100: string;
75
+ export const COLOR_PINK_200: string;
76
+ export const COLOR_PINK_300: string;
77
+ export const COLOR_PINK_400: string;
78
+ export const COLOR_PINK_500: string;
79
+ export const COLOR_PINK_600: string;
80
+ export const COLOR_PINK_700: string;
81
+ export const COLOR_PINK_800: string;
82
+ export const COLOR_PINK_900: string;
83
+ export const COLOR_PINK_1000: string;
84
+ export const COLOR_PINK_1100: string;
85
+ export const COLOR_RED_0: string;
86
+ export const COLOR_RED_100: string;
87
+ export const COLOR_RED_200: string;
88
+ export const COLOR_RED_300: string;
89
+ export const COLOR_RED_400: string;
90
+ export const COLOR_RED_500: string;
91
+ export const COLOR_RED_600: string;
92
+ export const COLOR_RED_700: string;
93
+ export const COLOR_RED_800: string;
94
+ export const COLOR_RED_900: string;
95
+ export const COLOR_RED_1000: string;
96
+ export const COLOR_RED_1100: string;
97
+ export const COLOR_ORANGE_0: string;
98
+ export const COLOR_ORANGE_100: string;
99
+ export const COLOR_ORANGE_200: string;
100
+ export const COLOR_ORANGE_300: string;
101
+ export const COLOR_ORANGE_400: string;
102
+ export const COLOR_ORANGE_500: string;
103
+ export const COLOR_ORANGE_600: string;
104
+ export const COLOR_ORANGE_700: string;
105
+ export const COLOR_ORANGE_800: string;
106
+ export const COLOR_ORANGE_900: string;
107
+ export const COLOR_ORANGE_1000: string;
108
+ export const COLOR_ORANGE_1100: string;
109
+ export const COLOR_NEUTRAL_0: string;
110
+ export const COLOR_NEUTRAL_100: string;
111
+ export const COLOR_NEUTRAL_200: string;
112
+ export const COLOR_NEUTRAL_300: string;
113
+ export const COLOR_NEUTRAL_400: string;
114
+ export const COLOR_NEUTRAL_500: string;
115
+ export const COLOR_NEUTRAL_600: string;
116
+ export const COLOR_NEUTRAL_700: string;
117
+ export const COLOR_NEUTRAL_800: string;
118
+ export const COLOR_NEUTRAL_900: string;
119
+ export const COLOR_NEUTRAL_1000: string;
120
+ export const COLOR_NEUTRAL_1100: string;
121
+ export const COLOR_YELLOW_0: string;
122
+ export const COLOR_YELLOW_100: string;
123
+ export const COLOR_YELLOW_200: string;
124
+ export const COLOR_YELLOW_300: string;
125
+ export const COLOR_YELLOW_400: string;
126
+ export const COLOR_YELLOW_500: string;
127
+ export const COLOR_YELLOW_600: string;
128
+ export const COLOR_YELLOW_700: string;
129
+ export const COLOR_YELLOW_800: string;
130
+ export const COLOR_YELLOW_900: string;
131
+ export const COLOR_YELLOW_1000: string;
132
+ export const COLOR_YELLOW_1100: string;
133
+ export const COLOR_BAMBU_TEAL_400: string;
134
+ export const COLOR_BAMBU_TEAL_500: string;
135
+ export const COLOR_BAMBU_TEAL_600: string;
136
+ export const COLOR_BAMBU_TEAL_700: string;
137
+ export const COLOR_BAMBU_YELLOW_500: string;
138
+ export const COLOR_BAMBU_YELLOW_600: string;
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-color",
3
- "version": "1.5.5",
3
+ "version": "1.6.0",
4
4
  "description": "Seeds Color Tokens",
5
5
  "main": "dist/seeds-color.js",
6
+ "types": "dist/seeds-color.d.ts",
6
7
  "repository": {
7
8
  "type": "git",
8
9
  "url": "git+ssh://git@github.com/sproutsocial/seeds-packets.git"
@@ -10,10 +11,14 @@
10
11
  "author": "Sprout Social, Inc.",
11
12
  "license": "MIT",
12
13
  "scripts": {
13
- "build": "node build.js"
14
+ "build": "node build.js",
15
+ "clean": "rm -rf dist && rm -rf node_modules"
14
16
  },
15
17
  "devDependencies": {
16
- "@sproutsocial/seeds-utils": "^1.2.2"
18
+ "@sproutsocial/seeds-utils": "^1.3.0"
17
19
  },
18
- "gitHead": "5b0931b90a65bd59059d1809ed7cd01dad6df5ef"
20
+ "engines": {
21
+ "node": "^14.15.0 || >=16.0.0"
22
+ },
23
+ "gitHead": "4f965ebd4c1f84e18fb858db667c45be7c27b83a"
19
24
  }