@allurereport/web-components 3.0.0-beta.22 → 3.0.0-beta.23
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 +16 -15
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -19,22 +19,22 @@ import { DefaultTreeMapDatum, TreeMapSvgProps } from '@nivo/treemap';
|
|
|
19
19
|
import { HeatMapDatum, DefaultHeatMapDatum, HeatMapSvgProps } from '@nivo/heatmap';
|
|
20
20
|
|
|
21
21
|
declare const allureIcons: {
|
|
22
|
-
arrowsChevronDown: string;
|
|
23
|
-
environment: string;
|
|
24
22
|
amazon: string;
|
|
23
|
+
arrowsChevronDown: string;
|
|
25
24
|
azure: string;
|
|
26
25
|
bitbucket: string;
|
|
27
26
|
circleci: string;
|
|
27
|
+
draggable: string;
|
|
28
28
|
drone: string;
|
|
29
|
-
|
|
29
|
+
environment: string;
|
|
30
30
|
github: string;
|
|
31
|
+
gitlab: string;
|
|
31
32
|
jenkins: string;
|
|
32
|
-
draggable: string;
|
|
33
33
|
lineAlertsAlertCircle: string;
|
|
34
|
-
lineAlertsNotificationBox: string;
|
|
35
|
-
lineAlertsNew: string;
|
|
36
|
-
lineAlertsMalfunctioned: string;
|
|
37
34
|
lineAlertsFixed: string;
|
|
35
|
+
lineAlertsMalfunctioned: string;
|
|
36
|
+
lineAlertsNew: string;
|
|
37
|
+
lineAlertsNotificationBox: string;
|
|
38
38
|
lineAlertsRegressed: string;
|
|
39
39
|
lineArrowsChevronDown: string;
|
|
40
40
|
lineArrowsChevronDownDouble: string;
|
|
@@ -56,16 +56,21 @@ declare const allureIcons: {
|
|
|
56
56
|
lineFilesFileAttachment2: string;
|
|
57
57
|
lineFilesFolder: string;
|
|
58
58
|
lineGeneralCheck: string;
|
|
59
|
+
lineGeneralCheckCircle: string;
|
|
59
60
|
lineGeneralChecklist3: string;
|
|
60
61
|
lineGeneralCopy3: string;
|
|
61
62
|
lineGeneralDownloadCloud: string;
|
|
62
63
|
lineGeneralEqual: string;
|
|
63
64
|
lineGeneralEye: string;
|
|
65
|
+
lineGeneralHelpCircle: string;
|
|
64
66
|
lineGeneralHomeLine: string;
|
|
67
|
+
lineGeneralInfoCircle: string;
|
|
65
68
|
lineGeneralLink1: string;
|
|
66
69
|
lineGeneralLinkExternal: string;
|
|
70
|
+
lineGeneralMinusCircle: string;
|
|
67
71
|
lineGeneralSearchMd: string;
|
|
68
72
|
lineGeneralSettings1: string;
|
|
73
|
+
lineGeneralXCircle: string;
|
|
69
74
|
lineGeneralXClose: string;
|
|
70
75
|
lineGeneralZap: string;
|
|
71
76
|
lineHelpersFlag: string;
|
|
@@ -80,6 +85,7 @@ declare const allureIcons: {
|
|
|
80
85
|
lineShapesDotCircle: string;
|
|
81
86
|
lineShapesMoon: string;
|
|
82
87
|
lineShapesSun: string;
|
|
88
|
+
lineShapesThemeAuto: string;
|
|
83
89
|
lineTimeClockStopwatch: string;
|
|
84
90
|
playwrightLogo: string;
|
|
85
91
|
reportLogo: string;
|
|
@@ -87,17 +93,12 @@ declare const allureIcons: {
|
|
|
87
93
|
solidCheckCircle: string;
|
|
88
94
|
solidHelpCircle: string;
|
|
89
95
|
solidMinusCircle: string;
|
|
90
|
-
solidXCircle: string;
|
|
91
96
|
solidPlusCircle: string;
|
|
97
|
+
solidXCircle: string;
|
|
92
98
|
spinner: string;
|
|
99
|
+
testNew: string;
|
|
93
100
|
view: string;
|
|
94
101
|
viewOff: string;
|
|
95
|
-
lineGeneralCheckCircle: string;
|
|
96
|
-
lineGeneralHelpCircle: string;
|
|
97
|
-
lineGeneralInfoCircle: string;
|
|
98
|
-
lineGeneralMinusCircle: string;
|
|
99
|
-
lineGeneralXCircle: string;
|
|
100
|
-
testNew: string;
|
|
101
102
|
};
|
|
102
103
|
type SvgIconProps = Omit<JSX.HTMLAttributes<SVGElement>, "className" | "id" | "size" | "inline"> & {
|
|
103
104
|
"size"?: "xs" | "s" | "m";
|
|
@@ -455,7 +456,7 @@ interface LanguagePickerProps {
|
|
|
455
456
|
}
|
|
456
457
|
declare const LanguagePicker: ({ locale, setLocale, availableLocales }: LanguagePickerProps) => preact.JSX.Element;
|
|
457
458
|
|
|
458
|
-
type Theme = "light" | "dark";
|
|
459
|
+
type Theme = "light" | "dark" | "auto";
|
|
459
460
|
interface ThemeButtonProps {
|
|
460
461
|
theme: Theme;
|
|
461
462
|
getTheme: () => void;
|