@servicetitan/anvil2-ext-charts 0.1.3 → 0.1.4
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 +6 -0
- package/dist/ThemeSemantic-CNjZwPLr.js.map +1 -1
- package/dist/am5/themes/ThemeCategorical.d.ts +2 -0
- package/dist/am5/themes/ThemeMonochrome.d.ts +2 -0
- package/dist/am5/themes/ThemeSemantic.d.ts +2 -0
- package/dist/am5/themes/internal/createTheme.d.ts +6 -0
- package/package.json +12 -12
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as am5 from "@amcharts/amcharts5";
|
|
2
|
+
export declare const createTheme: ({ fills: fillValues, strokes: strokeValues, fillPatterns: fillPatternTypes, }: {
|
|
3
|
+
fills: string[];
|
|
4
|
+
strokes: (string | undefined)[];
|
|
5
|
+
fillPatterns: (string | undefined)[];
|
|
6
|
+
}) => typeof am5.Theme;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@servicetitan/anvil2-ext-charts",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,18 +39,18 @@
|
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@amcharts/amcharts5": "^5",
|
|
42
|
-
"@types/react": "^18",
|
|
43
|
-
"@types/react-dom": "^18",
|
|
44
|
-
"react": "^18",
|
|
45
|
-
"react-dom": "^18"
|
|
42
|
+
"@types/react": "^18 || ^19",
|
|
43
|
+
"@types/react-dom": "^18 || ^19",
|
|
44
|
+
"react": "^18 || ^19",
|
|
45
|
+
"react-dom": "^18 || ^19"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@chromatic-com/storybook": "^4.1.1",
|
|
49
|
-
"@storybook/addon-a11y": "9.1.
|
|
50
|
-
"@storybook/addon-docs": "9.1.
|
|
51
|
-
"@storybook/addon-links": "9.1.
|
|
52
|
-
"@storybook/addon-vitest": "9.1.
|
|
53
|
-
"@storybook/react-vite": "9.1.
|
|
49
|
+
"@storybook/addon-a11y": "9.1.17",
|
|
50
|
+
"@storybook/addon-docs": "9.1.17",
|
|
51
|
+
"@storybook/addon-links": "9.1.17",
|
|
52
|
+
"@storybook/addon-vitest": "9.1.17",
|
|
53
|
+
"@storybook/react-vite": "9.1.17",
|
|
54
54
|
"@testing-library/jest-dom": "^5.17.0",
|
|
55
55
|
"@testing-library/react": "^16.1.0",
|
|
56
56
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -78,14 +78,14 @@
|
|
|
78
78
|
"remark-parse": "^11.0.0",
|
|
79
79
|
"remark-stringify": "^11.0.0",
|
|
80
80
|
"sass": "1.87.0",
|
|
81
|
-
"storybook": "9.1.
|
|
81
|
+
"storybook": "9.1.17",
|
|
82
82
|
"svgo": "^3.3.2",
|
|
83
83
|
"typescript": "~5.7.2",
|
|
84
84
|
"unified": "^11.0.5",
|
|
85
85
|
"vite": "6.4.1",
|
|
86
86
|
"vitest": "^3.2.4",
|
|
87
87
|
"vitest-axe": "^0.1.0",
|
|
88
|
-
"@servicetitan/anvil2": "
|
|
88
|
+
"@servicetitan/anvil2": "2.0.3"
|
|
89
89
|
},
|
|
90
90
|
"scripts": {
|
|
91
91
|
"dev": "vite",
|