@allurereport/web-classic 3.0.0-beta.13 → 3.0.0-beta.15

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.
Files changed (39) hide show
  1. package/dist/multi/app-619bb067.js +2 -0
  2. package/dist/multi/manifest.json +22 -22
  3. package/dist/multi/{styles-d209098a.css → styles-619bb067.css} +1 -1
  4. package/dist/single/app-2a24ff3c.js +2 -0
  5. package/dist/single/manifest.json +1 -1
  6. package/package.json +4 -4
  7. package/src/stores/behaviors.ts +1 -1
  8. package/src/stores/categories.ts +1 -1
  9. package/src/stores/chart.ts +1 -1
  10. package/src/stores/envInfo.ts +1 -1
  11. package/src/stores/packages.ts +1 -1
  12. package/src/stores/stats.ts +1 -1
  13. package/src/stores/testResults.ts +1 -1
  14. package/src/stores/tree.ts +1 -1
  15. package/src/stores/trend.ts +1 -1
  16. package/dist/multi/app-d209098a.js +0 -2
  17. package/dist/single/app-d388c5b7.js +0 -2
  18. /package/dist/multi/{10.app-d209098a.js → 10.app-619bb067.js} +0 -0
  19. /package/dist/multi/{222.app-d209098a.js → 222.app-619bb067.js} +0 -0
  20. /package/dist/multi/{26.app-d209098a.js → 26.app-619bb067.js} +0 -0
  21. /package/dist/multi/{302.app-d209098a.js → 302.app-619bb067.js} +0 -0
  22. /package/dist/multi/{304.app-d209098a.js → 304.app-619bb067.js} +0 -0
  23. /package/dist/multi/{369.app-d209098a.js → 369.app-619bb067.js} +0 -0
  24. /package/dist/multi/{389.app-d209098a.js → 389.app-619bb067.js} +0 -0
  25. /package/dist/multi/{498.app-d209098a.js → 498.app-619bb067.js} +0 -0
  26. /package/dist/multi/{60.app-d209098a.js → 60.app-619bb067.js} +0 -0
  27. /package/dist/multi/{643.app-d209098a.js → 643.app-619bb067.js} +0 -0
  28. /package/dist/multi/{671.app-d209098a.js → 671.app-619bb067.js} +0 -0
  29. /package/dist/multi/{725.app-d209098a.js → 725.app-619bb067.js} +0 -0
  30. /package/dist/multi/{770.app-d209098a.js → 770.app-619bb067.js} +0 -0
  31. /package/dist/multi/{848.app-d209098a.js → 848.app-619bb067.js} +0 -0
  32. /package/dist/multi/{853.app-d209098a.js → 853.app-619bb067.js} +0 -0
  33. /package/dist/multi/{872.app-d209098a.js → 872.app-619bb067.js} +0 -0
  34. /package/dist/multi/{895.app-d209098a.js → 895.app-619bb067.js} +0 -0
  35. /package/dist/multi/{920.app-d209098a.js → 920.app-619bb067.js} +0 -0
  36. /package/dist/multi/{979.app-d209098a.js → 979.app-619bb067.js} +0 -0
  37. /package/dist/multi/{991.app-d209098a.js → 991.app-619bb067.js} +0 -0
  38. /package/dist/multi/{app-d209098a.js.LICENSE.txt → app-619bb067.js.LICENSE.txt} +0 -0
  39. /package/dist/single/{app-d388c5b7.js.LICENSE.txt → app-2a24ff3c.js.LICENSE.txt} +0 -0
@@ -1,3 +1,3 @@
1
1
  {
2
- "main.js": "app-d388c5b7.js"
2
+ "main.js": "app-2a24ff3c.js"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/web-classic",
3
- "version": "3.0.0-beta.13",
3
+ "version": "3.0.0-beta.15",
4
4
  "description": "The static files for Allure Classic Report",
5
5
  "keywords": [
6
6
  "allure",
@@ -31,9 +31,9 @@
31
31
  "IE 11"
32
32
  ],
33
33
  "dependencies": {
34
- "@allurereport/core-api": "3.0.0-beta.13",
35
- "@allurereport/web-commons": "3.0.0-beta.13",
36
- "@allurereport/web-components": "3.0.0-beta.13",
34
+ "@allurereport/core-api": "3.0.0-beta.15",
35
+ "@allurereport/web-commons": "3.0.0-beta.15",
36
+ "@allurereport/web-components": "3.0.0-beta.15",
37
37
  "@preact/signals": "^1.3.0",
38
38
  "clsx": "^2.1.1",
39
39
  "d3-shape": "^3.2.0",
@@ -110,7 +110,7 @@ export const fetchBehaviorsData = async () => {
110
110
  };
111
111
 
112
112
  try {
113
- const res = await fetchReportJsonData<AwesomeTree>("widgets/behaviors.json");
113
+ const res = await fetchReportJsonData<AwesomeTree>("widgets/behaviors.json", { bustCache: true });
114
114
 
115
115
  behaviorsStore.value = {
116
116
  data: res,
@@ -110,7 +110,7 @@ export const fetchCategoriesData = async () => {
110
110
  };
111
111
 
112
112
  try {
113
- const res = await fetchReportJsonData<AwesomeTree>("widgets/categories.json");
113
+ const res = await fetchReportJsonData<AwesomeTree>("widgets/categories.json", { bustCache: true });
114
114
 
115
115
  categoriesStore.value = {
116
116
  data: res,
@@ -16,7 +16,7 @@ export const fetchPieChartData = async () => {
16
16
  };
17
17
 
18
18
  try {
19
- const res = await fetchReportJsonData("widgets/allure_pie_chart.json");
19
+ const res = await fetchReportJsonData("widgets/allure_pie_chart.json", { bustCache: true });
20
20
 
21
21
  pieChartStore.value = {
22
22
  data: res,
@@ -17,7 +17,7 @@ export const fetchEnvInfo = async () => {
17
17
  };
18
18
 
19
19
  try {
20
- const res = await fetchReportJsonData<EnvironmentItem[]>("widgets/allure_environment.json");
20
+ const res = await fetchReportJsonData<EnvironmentItem[]>("widgets/allure_environment.json", { bustCache: true });
21
21
 
22
22
  envInfoStore.value = {
23
23
  data: res,
@@ -110,7 +110,7 @@ export const fetchPackagesData = async () => {
110
110
  };
111
111
 
112
112
  try {
113
- const res = await fetchReportJsonData<AwesomeTree>("widgets/packages.json");
113
+ const res = await fetchReportJsonData<AwesomeTree>("widgets/packages.json", { bustCache: true });
114
114
 
115
115
  packagesStore.value = {
116
116
  data: res,
@@ -19,7 +19,7 @@ export const fetchStats = async () => {
19
19
  };
20
20
 
21
21
  try {
22
- const res = await fetchReportJsonData<Statistic>("widgets/allure_statistic.json");
22
+ const res = await fetchReportJsonData<Statistic>("widgets/allure_statistic.json", { bustCache: true });
23
23
 
24
24
  statsStore.value = {
25
25
  data: res,
@@ -21,7 +21,7 @@ export const testResultNavStore = signal<StoreSignalState<TestResultNavStoreStat
21
21
 
22
22
  export const fetchTestResultNav = async () => {
23
23
  try {
24
- const data = await fetchReportJsonData<string[]>("widgets/nav.json");
24
+ const data = await fetchReportJsonData<string[]>("widgets/nav.json", { bustCache: true });
25
25
 
26
26
  testResultNavStore.value = {
27
27
  data,
@@ -110,7 +110,7 @@ export const fetchTreeData = async () => {
110
110
  };
111
111
 
112
112
  try {
113
- const res = await fetchReportJsonData<AwesomeTree>("widgets/tree.json");
113
+ const res = await fetchReportJsonData<AwesomeTree>("widgets/tree.json", { bustCache: true });
114
114
 
115
115
  treeStore.value = {
116
116
  data: res,
@@ -158,7 +158,7 @@ export const fetchTrendData = async () => {
158
158
  };
159
159
 
160
160
  try {
161
- const res = await fetchReportJsonData<TrendResponse>("widgets/history-trend.json");
161
+ const res = await fetchReportJsonData<TrendResponse>("widgets/history-trend.json", { bustCache: true });
162
162
 
163
163
  trendStore.value = {
164
164
  data: {