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
|
@@ -634,7 +634,7 @@ var formatTimeSpent = (seconds) => {
|
|
|
634
634
|
};
|
|
635
635
|
var formatQuestionNumbers = (numbers) => {
|
|
636
636
|
if (numbers.length === 0) return "-";
|
|
637
|
-
return numbers.map((n) => String(n
|
|
637
|
+
return numbers.map((n) => String(n).padStart(2, "0")).join(", ");
|
|
638
638
|
};
|
|
639
639
|
var formatDateToBrazilian = (dateString) => {
|
|
640
640
|
const date = new Date(dateString);
|