mario-education 2.4.186-level → 2.4.188-level
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/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/AreaChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/OverallDonutChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/utils.d.ts +2 -2
- package/dist/index.css +36 -0
- package/dist/index.js +709 -166
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +709 -166
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
|
@@ -102,10 +102,10 @@ export declare const convertDataToSeriesBullderChart: (data: IReadinessToLearnin
|
|
|
102
102
|
name: string;
|
|
103
103
|
data: import("react").ReactText[][];
|
|
104
104
|
}[];
|
|
105
|
-
export declare const optionColumnChartAndPercents: (months: string[], activeData: boolean[], isRidgeCharts: boolean, colors: string[], dayOfWeek: string[]) => ApexOptions;
|
|
105
|
+
export declare const optionColumnChartAndPercents: (months: string[], activeData: boolean[], isRidgeCharts: boolean, colors: string[], maxSeries: number, dayOfWeek: string[], isCountSeries?: boolean | undefined) => ApexOptions;
|
|
106
106
|
export declare const optionLineChart: (months: string[], activeData: boolean[], colors: string[], dayOfWeek: string[]) => ApexOptions;
|
|
107
107
|
export declare const optionBarChartAndArea: (months: string[], activeData: boolean[], dayOfWeek: string[], newseries?: any) => ApexOptions;
|
|
108
|
-
export declare const overallDonutCHartOptions: (labelNames: string[], colors: string[], textColors?: string[] | undefined) => ApexOptions;
|
|
108
|
+
export declare const overallDonutCHartOptions: (labelNames: string[], colors: string[], isCountSeries?: boolean | undefined, textColors?: string[] | undefined) => ApexOptions;
|
|
109
109
|
export declare const convertDataToDataChart: (data: IOverviewQuestionChoice[]) => string[];
|
|
110
110
|
export declare const convertToSeriesColumnChartAndPercent: (dataCharts: string[], data: IOverviewQuestionChoice[]) => {
|
|
111
111
|
name: string;
|
package/dist/index.css
CHANGED
|
@@ -254,6 +254,42 @@ tbody._b-AXV tr {
|
|
|
254
254
|
._1Jrg_ {
|
|
255
255
|
padding: 15px 20px;
|
|
256
256
|
}
|
|
257
|
+
._2r0G1 {
|
|
258
|
+
-webkit-animation: _2fufb 0.6s infinite linear;
|
|
259
|
+
animation: _2fufb 0.6s infinite linear;
|
|
260
|
+
transform: rotate(0);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
@-webkit-keyframes _2fufb {
|
|
264
|
+
0% {
|
|
265
|
+
transform: rotate(0deg);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
100% {
|
|
269
|
+
transform: rotate(360deg);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
@keyframes _2fufb {
|
|
274
|
+
0% {
|
|
275
|
+
transform: rotate(0deg);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
100% {
|
|
279
|
+
transform: rotate(360deg);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
._3gvpw {
|
|
283
|
+
margin-left: 1.4rem;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
._u47jo {
|
|
287
|
+
margin-top: -12px;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
._3OiL8{
|
|
291
|
+
list-style-type: none;
|
|
292
|
+
}
|
|
257
293
|
._3DVMZ {
|
|
258
294
|
display: flex;
|
|
259
295
|
flex: 0 0 17%;
|