@sproutsocial/seeds-dataviz 0.5.5 → 0.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 +44 -0
- package/dist/seeds-dataviz.d.ts +47 -0
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
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
|
+
# [0.6.0](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-dataviz@0.5.10...@sproutsocial/seeds-dataviz@0.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
|
+
|
|
17
|
+
## [0.5.10](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-dataviz@0.5.8...@sproutsocial/seeds-dataviz@0.5.10) (2022-06-22)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @sproutsocial/seeds-dataviz
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## 0.5.9 (2022-06-22)
|
|
27
|
+
|
|
28
|
+
This patch version adds no new features and is being published for testing purposes only.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## [0.5.8](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-dataviz@0.5.6...@sproutsocial/seeds-dataviz@0.5.8) (2022-06-22)
|
|
32
|
+
|
|
33
|
+
**Note:** Version bump only for package @sproutsocial/seeds-dataviz
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## 0.5.7 (2022-06-22)
|
|
37
|
+
|
|
38
|
+
This patch version adds no new features and is being published for testing purposes only.
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## [0.5.6](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-dataviz@0.5.5...@sproutsocial/seeds-dataviz@0.5.6) (2022-06-13)
|
|
43
|
+
|
|
44
|
+
**Note:** Version bump only for package @sproutsocial/seeds-dataviz
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
6
50
|
## [0.5.5](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-dataviz@0.5.4...@sproutsocial/seeds-dataviz@0.5.5) (2022-04-28)
|
|
7
51
|
|
|
8
52
|
**Note:** Version bump only for package @sproutsocial/seeds-dataviz
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare module '@sproutsocial/seeds-dataviz' {
|
|
2
|
+
export const DATAVIZ_COLORS_LIST: [
|
|
3
|
+
string,
|
|
4
|
+
string,
|
|
5
|
+
string,
|
|
6
|
+
string,
|
|
7
|
+
string,
|
|
8
|
+
string,
|
|
9
|
+
string,
|
|
10
|
+
string,
|
|
11
|
+
string,
|
|
12
|
+
string,
|
|
13
|
+
string,
|
|
14
|
+
string,
|
|
15
|
+
string,
|
|
16
|
+
string,
|
|
17
|
+
string,
|
|
18
|
+
string,
|
|
19
|
+
string,
|
|
20
|
+
string,
|
|
21
|
+
string,
|
|
22
|
+
string
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
export const DATAVIZ_COLORS_MAP: {
|
|
26
|
+
1: string,
|
|
27
|
+
2: string,
|
|
28
|
+
3: string,
|
|
29
|
+
4: string,
|
|
30
|
+
5: string,
|
|
31
|
+
6: string,
|
|
32
|
+
7: string,
|
|
33
|
+
8: string,
|
|
34
|
+
9: string,
|
|
35
|
+
10: string,
|
|
36
|
+
11: string,
|
|
37
|
+
12: string,
|
|
38
|
+
13: string,
|
|
39
|
+
14: string,
|
|
40
|
+
15: string,
|
|
41
|
+
16: string,
|
|
42
|
+
17: string,
|
|
43
|
+
18: string,
|
|
44
|
+
19: string,
|
|
45
|
+
20: string
|
|
46
|
+
}
|
|
47
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-dataviz",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Seeds Data Visualization Tokens",
|
|
5
5
|
"main": "dist/seeds-dataviz.js",
|
|
6
6
|
"repository": {
|
|
@@ -9,9 +9,14 @@
|
|
|
9
9
|
},
|
|
10
10
|
"author": "Sprout Social, Inc.",
|
|
11
11
|
"license": "MIT",
|
|
12
|
-
"scripts": {
|
|
12
|
+
"scripts": {
|
|
13
|
+
"clean": "rm -rf node_modules"
|
|
14
|
+
},
|
|
13
15
|
"dependencies": {
|
|
14
|
-
"@sproutsocial/seeds-color": "^1.
|
|
16
|
+
"@sproutsocial/seeds-color": "^1.6.0"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": "^14.15.0 || >=16.0.0"
|
|
15
20
|
},
|
|
16
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "4f965ebd4c1f84e18fb858db667c45be7c27b83a"
|
|
17
22
|
}
|