pixel-react 1.14.33 → 1.14.34
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/lib/assets/icons/copy_icon_filled.svg.js +6 -0
- package/lib/assets/icons/copy_icon_filled.svg.js.map +1 -0
- package/lib/assets/icons/generate_command_logo.svg.js +6 -0
- package/lib/assets/icons/generate_command_logo.svg.js.map +1 -0
- package/lib/components/Icon/iconList.js +4 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/StepResultStats.d.ts +3 -2
- package/lib/components/StepsLandingTable/Components/StepResultStats.js +68 -25
- package/lib/components/StepsLandingTable/Components/StepResultStats.js.map +1 -1
- package/lib/components/StepsLandingTable/Components/Types.d.ts +9 -0
- package/lib/index.cjs +71 -24
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +6 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -5475,7 +5475,12 @@ declare const convertToGB: (value: string) => number;
|
|
5475
5475
|
|
5476
5476
|
declare const convertToBytes: (value: string) => number;
|
5477
5477
|
|
5478
|
-
|
5478
|
+
interface StepResultStatsProps {
|
5479
|
+
metaData: any;
|
5480
|
+
width?: number;
|
5481
|
+
}
|
5482
|
+
|
5483
|
+
declare const StepResultStats: React.FC<StepResultStatsProps>;
|
5479
5484
|
|
5480
5485
|
interface Action {
|
5481
5486
|
text?: string;
|