testio-tailwind 3.2.0 → 3.4.0
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/package.json +1 -1
- package/src/_includes/header.njk +2 -2
- package/src/assets/images/assets_agenticqa/agenticqa_email_header.png +0 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black.png +0 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black.svg +32 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black_1000px.png +0 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_black_3000px.png +0 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white.png +0 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white.svg +33 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white_1000px.png +0 -0
- package/src/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white_3000px.png +0 -0
- package/src/assets/scripts/app.js +23 -17
- package/src/assets/scripts/modules/colors.js +10 -2
- package/src/assets/scripts/modules/echarts_area.js +10 -6
- package/src/assets/scripts/modules/echarts_donut.js +20 -4
- package/src/assets/scripts/modules/echarts_exampledata.js +2 -2
- package/src/assets/scripts/modules/echarts_gauge.js +5 -5
- package/src/assets/scripts/modules/echarts_horizontal.js +18 -3
- package/src/assets/scripts/modules/echarts_line.js +84 -0
- package/src/assets/scripts/modules/echarts_vertical.js +5 -3
- package/src/assets/stylesheets/components/customer/customer_productcards.css +2 -2
- package/src/assets/stylesheets/components/list_item.css +4 -0
- package/src/assets/stylesheets/tailwind_config.css +2 -2
- package/src/pages/agenticqa/assets.haml +10 -0
- package/src/pages/{testinator → agenticqa}/email.njk +3 -3
- package/src/pages/agenticqa/index.njk +7 -0
- package/src/pages/agenticqa/logo.haml +18 -0
- package/src/pages/charts/area.haml +21 -17
- package/src/pages/charts/bar_horizontal.haml +369 -220
- package/src/pages/charts/bar_vertical.haml +373 -367
- package/src/pages/charts/colors.haml +28 -0
- package/src/pages/charts/donut.haml +81 -16
- package/src/pages/charts/gauge.haml +40 -1
- package/src/pages/charts/legend.haml +22 -0
- package/src/pages/charts/line.haml +205 -0
- package/src/pages/colors.pug +2 -2
- package/src/pages/email-templates/{email_testinator.pug → email_agenticqa.pug} +14 -14
- package/src/static/app.bundled.js +19 -8
- package/index.html +0 -405
- package/src/assets/images/assets_testinator/testinator_email_header.png +0 -0
- package/src/assets/images/logo_testinator/testinator_logo_purpleteal_black.png +0 -0
- package/src/assets/images/logo_testinator/testinator_logo_purpleteal_black.svg +0 -33
- package/src/assets/images/logo_testinator/testinator_logo_purpleteal_black_1000px.png +0 -0
- package/src/assets/images/logo_testinator/testinator_logo_purpleteal_white.png +0 -0
- package/src/assets/images/logo_testinator/testinator_logo_purpleteal_white.svg +0 -33
- package/src/assets/images/logo_testinator/testinator_logo_purpleteal_white_1000px.png +0 -0
- package/src/pages/testinator/assets.haml +0 -10
- package/src/pages/testinator/index.njk +0 -7
- package/src/pages/testinator/logo.haml +0 -18
|
@@ -5,7 +5,7 @@ title: Area
|
|
|
5
5
|
|
|
6
6
|
%details.listitem.mb-md
|
|
7
7
|
%summary.listitem-header
|
|
8
|
-
.listitem-title
|
|
8
|
+
.listitem-title.flex.items-center
|
|
9
9
|
%span.icon.icon-format-code.mr-xs
|
|
10
10
|
Initialize area chart
|
|
11
11
|
.listitem-metrics
|
|
@@ -20,13 +20,13 @@ title: Area
|
|
|
20
20
|
%pre.code.break-spaces
|
|
21
21
|
:plain
|
|
22
22
|
import { createChartArea } from './modules/echarts_area';
|
|
23
|
-
createChartArea (target, targetDataX, targetDataY, chartColor)
|
|
23
|
+
createChartArea (target, targetDataX, targetDataY, chartColor, labelColor, valueColor, borderColor)
|
|
24
24
|
.listitem-subheadline echarts_area.js
|
|
25
25
|
.listitem-card
|
|
26
26
|
%pre.code.break-spaces
|
|
27
27
|
:plain
|
|
28
28
|
import * as echarts from 'echarts';
|
|
29
|
-
export function createChartArea (target, targetDataX, targetDataY, chartColor) {
|
|
29
|
+
export function createChartArea (target, targetDataX, targetDataY, chartColor, labelColor, valueColor, borderColor) {
|
|
30
30
|
var chartHeight = 190;
|
|
31
31
|
var dom = document.getElementById(target);
|
|
32
32
|
var myChartArea = echarts.init(dom, null, {
|
|
@@ -53,7 +53,8 @@ title: Area
|
|
|
53
53
|
},
|
|
54
54
|
axisLabel: {
|
|
55
55
|
show: true,
|
|
56
|
-
margin: 15
|
|
56
|
+
margin: 15,
|
|
57
|
+
color: labelColor,
|
|
57
58
|
},
|
|
58
59
|
axisTick: {
|
|
59
60
|
show: false
|
|
@@ -61,7 +62,8 @@ title: Area
|
|
|
61
62
|
splitLine: {
|
|
62
63
|
show: true,
|
|
63
64
|
lineStyle: {
|
|
64
|
-
type: 'dashed'
|
|
65
|
+
type: 'dashed',
|
|
66
|
+
color: borderColor
|
|
65
67
|
}
|
|
66
68
|
}
|
|
67
69
|
},
|
|
@@ -76,7 +78,8 @@ title: Area
|
|
|
76
78
|
type: 'line',
|
|
77
79
|
lineStyle: {
|
|
78
80
|
width: 1,
|
|
79
|
-
color: chartColor
|
|
81
|
+
color: chartColor,
|
|
82
|
+
borderColor: borderColor
|
|
80
83
|
},
|
|
81
84
|
areaStyle: {
|
|
82
85
|
opacity: 1,
|
|
@@ -95,10 +98,11 @@ title: Area
|
|
|
95
98
|
itemStyle: {
|
|
96
99
|
borderWidth: 2,
|
|
97
100
|
color: chartColor,
|
|
98
|
-
borderColor:
|
|
101
|
+
borderColor: borderColor
|
|
99
102
|
},
|
|
100
103
|
label: {
|
|
101
|
-
show: true
|
|
104
|
+
show: true,
|
|
105
|
+
color: valueColor,
|
|
102
106
|
},
|
|
103
107
|
areaStyle: {
|
|
104
108
|
opacity: 0
|
|
@@ -112,13 +116,13 @@ title: Area
|
|
|
112
116
|
}
|
|
113
117
|
window.addEventListener('resize', myChartArea.resize);
|
|
114
118
|
}
|
|
115
|
-
.
|
|
119
|
+
.grid.gap-spacing{class:"lg:grid-cols-2"}
|
|
116
120
|
.col-xl-6
|
|
117
121
|
.card.p-md.mb-xs
|
|
118
122
|
.echarts-container#echarts-area-1
|
|
119
|
-
%details.listitem
|
|
123
|
+
%details.listitem
|
|
120
124
|
%summary.listitem-header
|
|
121
|
-
.listitem-title
|
|
125
|
+
.listitem-title.flex.items-center
|
|
122
126
|
%span.icon.icon-format-code.mr-xs
|
|
123
127
|
Initialize area chart with blue light color
|
|
124
128
|
.listitem-metrics
|
|
@@ -133,7 +137,7 @@ title: Area
|
|
|
133
137
|
%pre.code.break-spaces
|
|
134
138
|
:plain
|
|
135
139
|
import { createChartArea } from './modules/echarts_area';
|
|
136
|
-
createChartArea("echarts-area-1", dataAreaMonths, dataAreaValues, colorBlueLight);
|
|
140
|
+
createChartArea("echarts-area-1", dataAreaMonths, dataAreaValues, colorBlueLight, colorLabelBright, colorValueBright, colorBorderBright);
|
|
137
141
|
.listitem-subheadline dataAreaMonths.js
|
|
138
142
|
.listitem-card
|
|
139
143
|
%pre.code.break-spaces
|
|
@@ -164,13 +168,13 @@ title: Area
|
|
|
164
168
|
:plain
|
|
165
169
|
export const colorBlueLight = '#21bef4';
|
|
166
170
|
.col-xl-6
|
|
167
|
-
.card.mb-xs.p-
|
|
171
|
+
.card.mb-xs.p-md.bg-gray-800
|
|
168
172
|
.echarts-container#echarts-area-2
|
|
169
|
-
%details.listitem
|
|
173
|
+
%details.listitem
|
|
170
174
|
%summary.listitem-header
|
|
171
|
-
.listitem-title
|
|
175
|
+
.listitem-title.flex.items-center
|
|
172
176
|
%span.icon.icon-format-code.mr-xs
|
|
173
|
-
Initialize area chart
|
|
177
|
+
Initialize darkmode area chart
|
|
174
178
|
.listitem-metrics
|
|
175
179
|
.listitem-actions
|
|
176
180
|
.btn.collapse-btn
|
|
@@ -183,7 +187,7 @@ title: Area
|
|
|
183
187
|
%pre.code.break-spaces
|
|
184
188
|
:plain
|
|
185
189
|
import { createChartArea } from './modules/echarts_area';
|
|
186
|
-
createChartArea("echarts-area-
|
|
190
|
+
createChartArea("echarts-area-2", dataAreaMonths, dataAreaValues, colorTealLight, colorLabelDark, colorValueDark, colorBorderDark);
|
|
187
191
|
.listitem-subheadline dataAreaMonths.js
|
|
188
192
|
.listitem-card
|
|
189
193
|
%pre.code.break-spaces
|