@sproutsocial/seeds-dataviz 0.5.10 → 0.6.1
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 +19 -0
- package/dist/seeds-dataviz.d.ts +47 -0
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.1](https://github.com/sproutsocial/seeds-packets/compare/@sproutsocial/seeds-dataviz@0.6.0...@sproutsocial/seeds-dataviz@0.6.1) (2022-09-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @sproutsocial/seeds-dataviz
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [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)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* add typescript support ([24e718a](https://github.com/sproutsocial/seeds-packets/commit/24e718a26955f40b5645ba86600ff8aa8ba941fa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [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)
|
|
7
26
|
|
|
8
27
|
**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.1",
|
|
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.1"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": "^14.15.0 || >=16.0.0"
|
|
15
20
|
},
|
|
16
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "8767b9ec28724580e65af8da883044ff6b8928b2"
|
|
17
22
|
}
|