@allurereport/plugin-awesome 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.
@@ -242,7 +242,7 @@ export const generateQualityGateResults = async (writer, qualityGateResults = []
242
242
  await writer.writeWidget("quality-gate.json", qualityGateResults);
243
243
  };
244
244
  export const generateStaticFiles = async (payload) => {
245
- const { id, reportName = "Allure Report", reportLanguage = "en", singleFile, logo = "", theme = "light", groupBy, reportFiles, reportDataFiles, reportUuid, allureVersion, layout = "base", charts = [], defaultSection = "", ci, } = payload;
245
+ const { id, reportName = "Allure Report", reportLanguage = "en", singleFile, logo = "", theme = "auto", groupBy, reportFiles, reportDataFiles, reportUuid, allureVersion, layout = "base", charts = [], defaultSection = "", ci, } = payload;
246
246
  const compile = Handlebars.compile(template);
247
247
  const manifest = await readTemplateManifest(payload.singleFile);
248
248
  const headTags = [];
package/dist/model.d.ts CHANGED
@@ -4,8 +4,8 @@ export type AwesomeOptions = {
4
4
  reportName?: string;
5
5
  singleFile?: boolean;
6
6
  logo?: string;
7
- theme?: "light" | "dark";
8
- reportLanguage?: "en" | "ru";
7
+ theme?: "light" | "dark" | "auto";
8
+ reportLanguage?: "en";
9
9
  groupBy?: string[];
10
10
  layout?: "base" | "split";
11
11
  environments?: Record<string, EnvironmentsConfig>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/plugin-awesome",
3
- "version": "3.0.0-beta.22",
3
+ "version": "3.0.0-beta.23",
4
4
  "description": "Allure Awesome Plugin – brand new HTML report with modern design and new features",
5
5
  "keywords": [
6
6
  "allure",
@@ -30,11 +30,11 @@
30
30
  "test": "rimraf ./out && vitest run"
31
31
  },
32
32
  "dependencies": {
33
- "@allurereport/charts-api": "3.0.0-beta.22",
34
- "@allurereport/core-api": "3.0.0-beta.22",
35
- "@allurereport/plugin-api": "3.0.0-beta.22",
36
- "@allurereport/web-awesome": "3.0.0-beta.22",
37
- "@allurereport/web-commons": "3.0.0-beta.22",
33
+ "@allurereport/charts-api": "3.0.0-beta.23",
34
+ "@allurereport/core-api": "3.0.0-beta.23",
35
+ "@allurereport/plugin-api": "3.0.0-beta.23",
36
+ "@allurereport/web-awesome": "3.0.0-beta.23",
37
+ "@allurereport/web-commons": "3.0.0-beta.23",
38
38
  "d3-shape": "^3.2.0",
39
39
  "handlebars": "^4.7.8"
40
40
  },