analytica-frontend-lib 1.3.21 → 1.3.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/ActivityDetails/index.js +1 -1
- package/dist/ActivityDetails/index.js.map +1 -1
- package/dist/ActivityDetails/index.mjs +1 -1
- package/dist/ActivityDetails/index.mjs.map +1 -1
- package/dist/ActivityFilters/index.d.ts.map +1 -1
- package/dist/ActivityFilters/index.js.map +1 -1
- package/dist/ActivityFilters/index.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/auth.d.ts +1 -0
- package/dist/types/auth.d.ts.map +1 -1
- package/dist/utils/activityDetailsUtils.d.ts +2 -2
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/index.mjs +1 -1
- package/dist/utils/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1142,7 +1142,7 @@ var formatTimeSpent = (seconds) => {
|
|
|
1142
1142
|
};
|
|
1143
1143
|
var formatQuestionNumbers = (numbers) => {
|
|
1144
1144
|
if (numbers.length === 0) return "-";
|
|
1145
|
-
return numbers.map((n) => String(n
|
|
1145
|
+
return numbers.map((n) => String(n).padStart(2, "0")).join(", ");
|
|
1146
1146
|
};
|
|
1147
1147
|
var formatDateToBrazilian = (dateString) => {
|
|
1148
1148
|
const date = new Date(dateString);
|