@cloudtower/eagle 0.27.3 → 0.27.5
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/components/Styled/Styled.stories.d.ts +11 -0
- package/dist/components/Styled/index.d.ts +14 -0
- package/dist/components/index.d.ts +10 -0
- package/dist/components.css +573 -422
- package/dist/coreX/BarChart/BarChart.stories.d.ts +6 -0
- package/dist/coreX/BarChart/index.d.ts +10 -0
- package/dist/coreX/ChartWithTooltip/ChartWithTooltip.stories.d.ts +7 -0
- package/dist/coreX/ChartWithTooltip/index.d.ts +40 -0
- package/dist/coreX/DonutChart/DonutChart.stories.d.ts +6 -0
- package/dist/coreX/DonutChart/index.d.ts +12 -0
- package/dist/coreX/UnitWithChart/UnitWithChart.stories.d.ts +7 -0
- package/dist/coreX/UnitWithChart/index.d.ts +30 -0
- package/dist/esm/index.js +1619 -1294
- package/dist/esm/stats1.html +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/spec/base.d.ts +7 -0
- package/dist/style.css +1369 -1218
- package/dist/umd/index.js +1620 -1289
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/tower.d.ts +1 -0
- package/package.json +5 -5
package/dist/utils/tower.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export declare function formatBps(input: number, decimals?: number): FormattedRe
|
|
|
49
49
|
export declare function formatBytes(bytes: number, decimals?: number): FormattedResult;
|
|
50
50
|
export declare function formatPercent(input: number, decimals?: number, saturated?: boolean): {
|
|
51
51
|
value: string;
|
|
52
|
+
numberValue: number;
|
|
52
53
|
unit: string;
|
|
53
54
|
};
|
|
54
55
|
export declare const KbE = 1000;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudtower/eagle",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.5",
|
|
4
4
|
"main": "dist/umd/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"build-storybook": "storybook build"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@cloudtower/icons-react": "0.27.
|
|
32
|
-
"@cloudtower/parrot": "0.27.
|
|
31
|
+
"@cloudtower/icons-react": "0.27.5",
|
|
32
|
+
"@cloudtower/parrot": "0.27.5",
|
|
33
33
|
"@cloudtower/rc-notification": "^4.6.1",
|
|
34
34
|
"@linaria/core": "^4.2.2",
|
|
35
35
|
"@linaria/react": "^4.3.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@babel/preset-env": "^7.22.15",
|
|
51
51
|
"@babel/preset-react": "^7.22.15",
|
|
52
52
|
"@babel/preset-typescript": "^7.22.15",
|
|
53
|
-
"@cloudtower/icons": "0.27.
|
|
53
|
+
"@cloudtower/icons": "0.27.5",
|
|
54
54
|
"@linaria/babel-preset": "4.4.1",
|
|
55
55
|
"@linaria/rollup": "^4.1.5",
|
|
56
56
|
"@linaria/vite": "^4.2.5",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"vite": "^3.1.7",
|
|
108
108
|
"vitest": "^0.24.1"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "67b7fd843d903b55afb59bef021460871e346411"
|
|
111
111
|
}
|