@allurereport/web-components 3.0.0-beta.21 → 3.0.0-beta.22

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.d.ts CHANGED
@@ -199,7 +199,7 @@ declare const Loadable: <T, K = T>(props: LoadableProps<T, K>) => JSX.Element |
199
199
 
200
200
  declare const PageLoader: () => preact.JSX.Element;
201
201
 
202
- type Props$3 = {
202
+ type Props$4 = {
203
203
  placeholder?: string;
204
204
  invalid?: string;
205
205
  error?: string;
@@ -207,7 +207,7 @@ type Props$3 = {
207
207
  onChange: (value: string) => void;
208
208
  changeDebounce?: number;
209
209
  };
210
- declare const SearchBox: (props: Props$3) => preact.JSX.Element;
210
+ declare const SearchBox: (props: Props$4) => preact.JSX.Element;
211
211
 
212
212
  declare const Menu: {
213
213
  (props: {
@@ -381,28 +381,28 @@ declare const CodeViewer: FunctionalComponent<{
381
381
  className?: string;
382
382
  }>;
383
383
 
384
- type Props$2 = {
384
+ type Props$3 = {
385
385
  size?: "s" | "m" | "l";
386
386
  count: number;
387
387
  truncateCount?: boolean;
388
388
  status?: TestStatus;
389
389
  };
390
- declare const Counter: (props: Props$2) => preact.JSX.Element;
390
+ declare const Counter: (props: Props$3) => preact.JSX.Element;
391
391
 
392
- type Props$1 = {
392
+ type Props$2 = {
393
393
  value: boolean;
394
394
  label: string;
395
395
  onChange: (value: boolean) => void;
396
396
  focusable?: boolean;
397
397
  };
398
- declare const Toggle: (props: Props$1) => preact.JSX.Element;
398
+ declare const Toggle: (props: Props$2) => preact.JSX.Element;
399
399
 
400
- type Props = {
400
+ type Props$1 = {
401
401
  href?: string;
402
402
  children: ComponentChildren;
403
403
  onClick?: (e: MouseEvent) => void;
404
404
  };
405
- declare const Link: (props: Props) => preact.JSX.Element;
405
+ declare const Link: (props: Props$1) => preact.JSX.Element;
406
406
 
407
407
  declare const Label: FunctionComponent;
408
408
 
@@ -701,5 +701,19 @@ interface StabilityRateDistributionWidgetProps {
701
701
 
702
702
  declare const StabilityRateDistributionWidget: FunctionalComponent<StabilityRateDistributionWidgetProps>;
703
703
 
704
- export { ArrowButton, Attachment, AttachmentCode, AttachmentEmpty, AttachmentImage, AttachmentVideo, BarChart, BarChartWidget, Button, Code, CodeViewer, ComingSoonChartWidget, Counter, DEFAULT_HEAT_MAP_EMPTY_ARIA_LABEL, DEFAULT_HEAT_MAP_EMPTY_COLOR, DEFAULT_HEAT_MAP_EMPTY_LABEL, DEFAULT_HEAT_MAP_FORCE_SQUARE, DEFAULT_HEAT_MAP_HEIGHT, DEFAULT_HEAT_MAP_VALUE_FORMAT, DEFAULT_HEAT_MAP_WIDTH, DEFAULT_HEAT_MAP_X_INNER_PADDING, DEFAULT_HEAT_MAP_Y_INNER_PADDING, DropdownButton, Grid, GridItem, Heading, HeatMap, HeatMapWidget, HtmlPreview, IconButton, Label, LanguagePicker, Link, Loadable, Menu, Modal, PageLoader, ReportLogo, ReportLogoFull, SearchBox, Spinner, StabilityRateDistributionWidget, StatusLabel, SuccessRatePieChart, SvgIcon, Tag, Text, ThemeButton, Toggle, TooltipWrapper, Tree, TreeHeader, TreeItem, TreeItemIcon, TreeMapChart, TreeMapChartWidget, TreeSection, TreeStatusBar, TrendChart, TrendChartKind, TrendChartWidget, Widget, allureIcons, defaultBarChartAxisBottomConfig, defaultBarChartAxisLeftConfig, defaultBarChartConfig, defaultBarChartLegendsConfig, defaultBarChartMarginConfig, defaultHeatMapAxisLeftConfig, defaultHeatMapAxisTopConfig, defaultHeatMapLegendConfig, defaultHeatMapMarginConfig, defaultTreeChartConfig, defaultTrendChartAxisBottomConfig, defaultTrendChartAxisLeftConfig, defaultTrendChartConfig, defaultTrendChartLegendConfig, defaultTrendChartMarginConfig, defaultTrendChartXScaleConfig, defaultTrendChartYScaleConfig, makeSymlogScale, makeSymlogScaleBySeries };
704
+ type Props = {
705
+ data: {
706
+ layer: string;
707
+ testCount: number;
708
+ successRate: number;
709
+ percentage: number;
710
+ }[];
711
+ title: string;
712
+ translations: Record<string, string>;
713
+ width?: JSX.CSSProperties["width"];
714
+ height?: JSX.CSSProperties["height"];
715
+ };
716
+ declare const TestingPyramidWidget: (props: Props) => JSX.Element;
717
+
718
+ export { ArrowButton, Attachment, AttachmentCode, AttachmentEmpty, AttachmentImage, AttachmentVideo, BarChart, BarChartWidget, Button, Code, CodeViewer, ComingSoonChartWidget, Counter, DEFAULT_HEAT_MAP_EMPTY_ARIA_LABEL, DEFAULT_HEAT_MAP_EMPTY_COLOR, DEFAULT_HEAT_MAP_EMPTY_LABEL, DEFAULT_HEAT_MAP_FORCE_SQUARE, DEFAULT_HEAT_MAP_HEIGHT, DEFAULT_HEAT_MAP_VALUE_FORMAT, DEFAULT_HEAT_MAP_WIDTH, DEFAULT_HEAT_MAP_X_INNER_PADDING, DEFAULT_HEAT_MAP_Y_INNER_PADDING, DropdownButton, Grid, GridItem, Heading, HeatMap, HeatMapWidget, HtmlPreview, IconButton, Label, LanguagePicker, Link, Loadable, Menu, Modal, PageLoader, ReportLogo, ReportLogoFull, SearchBox, Spinner, StabilityRateDistributionWidget, StatusLabel, SuccessRatePieChart, SvgIcon, Tag, TestingPyramidWidget, Text, ThemeButton, Toggle, TooltipWrapper, Tree, TreeHeader, TreeItem, TreeItemIcon, TreeMapChart, TreeMapChartWidget, TreeSection, TreeStatusBar, TrendChart, TrendChartKind, TrendChartWidget, Widget, allureIcons, defaultBarChartAxisBottomConfig, defaultBarChartAxisLeftConfig, defaultBarChartConfig, defaultBarChartLegendsConfig, defaultBarChartMarginConfig, defaultHeatMapAxisLeftConfig, defaultHeatMapAxisTopConfig, defaultHeatMapLegendConfig, defaultHeatMapMarginConfig, defaultTreeChartConfig, defaultTrendChartAxisBottomConfig, defaultTrendChartAxisLeftConfig, defaultTrendChartConfig, defaultTrendChartLegendConfig, defaultTrendChartMarginConfig, defaultTrendChartXScaleConfig, defaultTrendChartYScaleConfig, makeSymlogScale, makeSymlogScaleBySeries };
705
719
  export type { BarChartProps, BarChartWidgetProps, ComingSoonChartWidgetProps, Datum, GridItemProps, GridProps, HeatMapProps, HeatMapWidgetProps, LanguagePickerProps, MeshTrendChartProps, ModalDataProps, ModalGalleryProps, ModalTranslations, ModalTranslationsProps, ParentLabelControlOptions, ResponsiveTreeChartProps, Serie, Slice, SlicesTrendChartProps, StabilityRateDistributionWidgetProps, SymlogScaleOptions, TagProps, TagSkin, Theme, ThemeButtonProps, TreeMapChartNode, TreeMapChartProps, TreeMapChartWidgetProps, TrendChartKindConfig, TrendChartProps, TrendChartSliceClickHandler, TrendChartSliceTouchHandler };