@secondstaxorg/sscomp 1.9.26 → 1.9.28
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/dist/index.es.js +289 -266
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1917 -1816
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +287 -264
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/BarChart/type.d.ts +2 -0
- package/types/components/DoughnutChart/DoughnutChart.d.ts +4 -0
- package/types/components/DoughnutChart/style.d.ts +1 -0
- package/types/components/DoughnutChart/type.d.ts +11 -0
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ChartArea: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -79,3 +79,4 @@ export { default as LanguageSwitcher } from './LanguageSwitcher/LanguageSwitcher
|
|
|
79
79
|
export { default as BarChart } from './BarChart/BarChart';
|
|
80
80
|
export { default as LineChart } from './LineChart/LineChart';
|
|
81
81
|
export { default as ProgressBar } from './ProgressBar/ProgressBar';
|
|
82
|
+
export { default as DoughnutChart } from './DoughnutChart/DoughnutChart';
|