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
|
@@ -663,7 +663,7 @@ var formatTimeSpent = (seconds) => {
|
|
|
663
663
|
};
|
|
664
664
|
var formatQuestionNumbers = (numbers) => {
|
|
665
665
|
if (numbers.length === 0) return "-";
|
|
666
|
-
return numbers.map((n) => String(n
|
|
666
|
+
return numbers.map((n) => String(n).padStart(2, "0")).join(", ");
|
|
667
667
|
};
|
|
668
668
|
var formatDateToBrazilian = (dateString) => {
|
|
669
669
|
const date = new Date(dateString);
|