ep-lib-ts 1.0.70 → 1.0.72
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/components/basics/EpDivider.vue.js +2 -1
- package/dist/components/basics/EpDivider.vue.js.map +1 -1
- package/dist/components/basics/EpTable.vue.js +1 -1
- package/dist/components/basics/EpTable.vue.js.map +1 -1
- package/dist/components/basics/EpText.vue.js +1 -1
- package/dist/components/basics/EpText.vue.js.map +1 -1
- package/dist/components/educationals/EpBranchingScenario.vue2.js +2 -2
- package/dist/components/educationals/EpConclusion.vue.js +16 -18
- package/dist/components/educationals/EpConclusion.vue.js.map +1 -1
- package/dist/components/educationals/EpDescription.vue.js +3 -4
- package/dist/components/educationals/EpDescription.vue.js.map +1 -1
- package/dist/components/educationals/EpEdu.vue.js +1 -1
- package/dist/components/educationals/EpEdu.vue.js.map +1 -1
- package/dist/components/educationals/EpInstructions.vue.js +4 -3
- package/dist/components/educationals/EpInstructions.vue.js.map +1 -1
- package/dist/components/educationals/EpIntroduction.vue.js +3 -4
- package/dist/components/educationals/EpIntroduction.vue.js.map +1 -1
- package/dist/components/educationals/EpResource.vue.js +1 -1
- package/dist/components/educationals/EpResource.vue.js.map +1 -1
- package/dist/components/interactions/EpAccordeon.vue.js +1 -1
- package/dist/components/interactions/EpAccordeon.vue2.js +17 -14
- package/dist/components/interactions/EpAccordeon.vue2.js.map +1 -1
- package/dist/components/interactions/EpContentSlider.vue.js +172 -65
- package/dist/components/interactions/EpContentSlider.vue.js.map +1 -1
- package/dist/components/interactions/EpQuestion.vue.js +3 -2
- package/dist/components/interactions/EpQuestion.vue.js.map +1 -1
- package/dist/components/interactions/EpSummativeTable.vue.js +1 -1
- package/dist/components/interactions/EpSummativeTable.vue.js.map +1 -1
- package/dist/components/medias/EpCarousel.vue.js +2 -2
- package/dist/components/medias/EpCarousel.vue.js.map +1 -1
- package/dist/components/medias/EpTerm.vue.js +1 -1
- package/dist/components/medias/EpTerm.vue.js.map +1 -1
- package/dist/components/medias/EpWordDef.vue.js +3 -6
- package/dist/components/medias/EpWordDef.vue.js.map +1 -1
- package/dist/components/signages/EpQuote.vue.js +1 -1
- package/dist/components/signages/EpQuote.vue.js.map +1 -1
- package/dist/components/tools/Details.vue.js +55 -1
- package/dist/components/tools/Details.vue.js.map +1 -1
- package/dist/components/tools/Details.vue2.js +1 -55
- package/dist/components/tools/Details.vue2.js.map +1 -1
- package/dist/components/tools/TextMedia.vue.js +49 -1
- package/dist/components/tools/TextMedia.vue.js.map +1 -1
- package/dist/components/tools/TextMedia.vue2.js +1 -49
- package/dist/components/tools/TextMedia.vue2.js.map +1 -1
- package/dist/components/tools/TimelineItem.vue.js +1 -1
- package/dist/components/tools/TimelineItem.vue2.js +1 -1
- package/dist/components/tools/TimelineItem.vue2.js.map +1 -1
- package/dist/components/tools/TwoColsMedia.vue2.js +2 -2
- package/dist/components/tools/TwoColsMedia.vue2.js.map +1 -1
- package/dist/composables/useColors.js +8 -4
- package/dist/composables/useColors.js.map +1 -1
- package/dist/style.css +66 -66
- package/dist/types/Accordeon.js +11 -11
- package/dist/types/Accordeon.js.map +1 -1
- package/dist/types/Alert.js +16 -16
- package/dist/types/Alert.js.map +1 -1
- package/dist/types/Btn.js +15 -15
- package/dist/types/Btn.js.map +1 -1
- package/dist/types/Chip.js +8 -8
- package/dist/types/Chip.js.map +1 -1
- package/dist/types/Medias.js +2 -2
- package/dist/types/Medias.js.map +1 -1
- package/dist/types/Slides.d.ts +3 -1
- package/dist/types/TimeLine.js +1 -1
- package/dist/types/TimeLine.js.map +1 -1
- package/dist/types/educationals/EpInstructions.d.ts +1 -0
- package/dist/types/interactions/EpContentSlider.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimelineItem.vue2.js","sources":["../../../src/components/tools/TimelineItem.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport {\n ref,\n toRefs,\n onMounted,\n computed,\n watch,\n nextTick,\n watchEffect,\n} from \"vue\";\nimport { useRenderText } from \"~/composables/useRenderText\";\nimport EpImg from \"~/components/basics/EpImg.vue\";\nimport {\n type EventTimeLine,\n type TimeLineDate,\n colorsTimeLine,\n} from \"~/types/TimeLine\";\n\ninterface Props {\n title?: string | null;\n date?: string;\n event: EventTimeLine;\n collapse?: boolean;\n}\n\nconst props = withDefaults(defineProps<Props>(), {\n title: \"En savoir plus\",\n type: \"base\",\n collapse: false,\n});\n\nconst ready = ref(false);\nconst first = ref(true);\n\nconst showDiv = ref(false);\n\nconst collapsible = ref<HTMLElement | null>(null);\n\nconst { event } = toRefs(props);\n\nconst updateMaxHeight = async () => {\n await nextTick();\n if (collapsible.value) {\n collapsible.value.style.maxHeight = showDiv.value\n ? collapsible.value.scrollHeight + \"px\"\n : \"0px\";\n }\n};\n\nonMounted(() => {\n updateMaxHeight();\n});\n\nwatch([() => event.value.text.text, () => props.event.media.url], () => {\n updateMaxHeight();\n});\n\nfunction toggleDivVisibility() {\n showDiv.value = !showDiv.value;\n updateMaxHeight();\n if (collapsible.value && !collapsible.value.style.transition) {\n collapsible.value.style.transition = \"max-height 0.2s ease-out\";\n }\n}\n\n// Make sure the image is loaded before opening the div\nconst epImg = ref<{ imgEl: HTMLImageElement | null } | null>(null);\n\nwatchEffect(() => {\n const img = epImg.value?.imgEl;\n if (img) {\n img.addEventListener(\"load\", () => {\n ready.value = true;\n });\n }\n});\n\nwatchEffect(() => {\n if (!showDiv.value && first.value && ready.value) {\n toggleDivVisibility();\n first.value = false;\n }\n});\n\nconst start_date = computed(() => {\n if (props.event.start_date) return parseTimeline(props.event.start_date);\n return null;\n});\n\nconst end_date = computed(() => {\n if (props.event.end_date) return parseTimeline(props.event.end_date);\n return null;\n});\n\nconst src = computed(() => {\n return props.event.media.url?.trim() ? props.event.media.url : null;\n});\n\nconst colorEvent = computed(() => {\n if (props.event.tag) return colorsTimeLine[props.event.tag.color];\n return colorsTimeLine.noTag;\n});\n\nconst parseTimeline = (timeDate: TimeLineDate) => {\n const { day, month, year, hour } = timeDate;\n const hoursStr = hour || \"\";\n const minutesStr = timeDate.minute ? `:${timeDate.minute}` : \"\";\n if (!day && !month && !year)\n return hoursStr ? { date: null, hour: hoursStr + minutesStr } : null;\n const dayStr = day ? `${day}/` : \"\";\n const monthStr = month ? `${month}/` : \"\";\n const yearStr = year || \"\";\n return { date: dayStr + monthStr + yearStr, hour: hoursStr + minutesStr };\n};\n</script>\n\n<template>\n <div\n :class=\"`cursor-pointer ml-10 relative flex items-center p-2 ${colorEvent.border} border-2 rounded-r-lg mb-8 flex-col md:flex-row space-y-4 md:space-y-0`\"\n @click=\"toggleDivVisibility\"\n >\n <!-- Dot -->\n <div\n :class=\"`w-5 h-5 bg-
|
|
1
|
+
{"version":3,"file":"TimelineItem.vue2.js","sources":["../../../src/components/tools/TimelineItem.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport {\n ref,\n toRefs,\n onMounted,\n computed,\n watch,\n nextTick,\n watchEffect,\n} from \"vue\";\nimport { useRenderText } from \"~/composables/useRenderText\";\nimport EpImg from \"~/components/basics/EpImg.vue\";\nimport {\n type EventTimeLine,\n type TimeLineDate,\n colorsTimeLine,\n} from \"~/types/TimeLine\";\n\ninterface Props {\n title?: string | null;\n date?: string;\n event: EventTimeLine;\n collapse?: boolean;\n}\n\nconst props = withDefaults(defineProps<Props>(), {\n title: \"En savoir plus\",\n type: \"base\",\n collapse: false,\n});\n\nconst ready = ref(false);\nconst first = ref(true);\n\nconst showDiv = ref(false);\n\nconst collapsible = ref<HTMLElement | null>(null);\n\nconst { event } = toRefs(props);\n\nconst updateMaxHeight = async () => {\n await nextTick();\n if (collapsible.value) {\n collapsible.value.style.maxHeight = showDiv.value\n ? collapsible.value.scrollHeight + \"px\"\n : \"0px\";\n }\n};\n\nonMounted(() => {\n updateMaxHeight();\n});\n\nwatch([() => event.value.text.text, () => props.event.media.url], () => {\n updateMaxHeight();\n});\n\nfunction toggleDivVisibility() {\n showDiv.value = !showDiv.value;\n updateMaxHeight();\n if (collapsible.value && !collapsible.value.style.transition) {\n collapsible.value.style.transition = \"max-height 0.2s ease-out\";\n }\n}\n\n// Make sure the image is loaded before opening the div\nconst epImg = ref<{ imgEl: HTMLImageElement | null } | null>(null);\n\nwatchEffect(() => {\n const img = epImg.value?.imgEl;\n if (img) {\n img.addEventListener(\"load\", () => {\n ready.value = true;\n });\n }\n});\n\nwatchEffect(() => {\n if (!showDiv.value && first.value && ready.value) {\n toggleDivVisibility();\n first.value = false;\n }\n});\n\nconst start_date = computed(() => {\n if (props.event.start_date) return parseTimeline(props.event.start_date);\n return null;\n});\n\nconst end_date = computed(() => {\n if (props.event.end_date) return parseTimeline(props.event.end_date);\n return null;\n});\n\nconst src = computed(() => {\n return props.event.media.url?.trim() ? props.event.media.url : null;\n});\n\nconst colorEvent = computed(() => {\n if (props.event.tag) return colorsTimeLine[props.event.tag.color];\n return colorsTimeLine.noTag;\n});\n\nconst parseTimeline = (timeDate: TimeLineDate) => {\n const { day, month, year, hour } = timeDate;\n const hoursStr = hour || \"\";\n const minutesStr = timeDate.minute ? `:${timeDate.minute}` : \"\";\n if (!day && !month && !year)\n return hoursStr ? { date: null, hour: hoursStr + minutesStr } : null;\n const dayStr = day ? `${day}/` : \"\";\n const monthStr = month ? `${month}/` : \"\";\n const yearStr = year || \"\";\n return { date: dayStr + monthStr + yearStr, hour: hoursStr + minutesStr };\n};\n</script>\n\n<template>\n <div\n :class=\"`cursor-pointer ml-10 relative flex items-center p-2 ${colorEvent.border} border-2 rounded-r-lg mb-8 flex-col md:flex-row space-y-4 md:space-y-0`\"\n @click=\"toggleDivVisibility\"\n >\n <!-- Dot -->\n <div\n :class=\"`w-5 h-5 bg-white dark:bg-neutral-900 border-2 ${colorEvent.border} absolute -left-12 transform -translate-x-2/4 rounded-full z-10 mt-2 md:mt-0`\"\n />\n <!-- Line -->\n <div :class=\"`w-10 border ${colorEvent.border} absolute -left-10 z-0`\" />\n <div>\n <div :class=\"`${colorEvent.text} text-sm`\">\n <!-- sur protheus on est trop laxes ... mais on peut avoir plusieurs cas :/ -->\n <span v-if=\"start_date?.date\" class=\"font-bold\">{{\n start_date.date\n }}</span>\n <span v-if=\"start_date?.hour\" class=\"text-xs ml-1\">{{\n start_date.hour\n }}</span>\n <span v-if=\"end_date?.date\" class=\"mx-4\">-</span>\n <span v-if=\"end_date?.date\" class=\"font-bold\">{{ end_date.date }}</span>\n <span v-if=\"end_date?.hour\" class=\"text-xs ml-1\">\n {{ end_date.hour }}</span\n >\n </div>\n <h2 :class=\"`text-2xl ${colorEvent.text}`\">\n {{ event.text?.headline }}\n </h2>\n <!-- Content -->\n <div ref=\"collapsible\" class=\"ep-content-timeline-item\">\n <div :class=\"`${src ? 'flex' : ''} py-4`\">\n <div v-if=\"src\" class=\"flex-1\">\n <EpImg\n noModal\n cols=\"8\"\n :src=\"src\"\n :alt=\"event.text?.headline\"\n ref=\"epImg\"\n ></EpImg>\n </div>\n <div class=\"flex-1\" v-html=\"useRenderText(event.text.text)\" />\n </div>\n </div>\n </div>\n </div>\n</template>\n\n<style scoped>\n.ep-content-timeline-item {\n max-height: 0;\n overflow: hidden;\n}\n</style>\n"],"names":["_createElementBlock","_normalizeClass","_createElementVNode","_openBlock","_toDisplayString","_unref","_createVNode","EpImg"],"mappings":"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"}
|
|
@@ -23,7 +23,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
23
23
|
if (props.mediaLeft) {
|
|
24
24
|
const componentToLoad = useComponent(props.mediaLeft.type);
|
|
25
25
|
return defineAsyncComponent(
|
|
26
|
-
() => __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "../basics/EpAvatar.vue": () => import("../basics/EpAvatar.vue.js"), "../basics/EpBadge.vue": () => import("../basics/EpBadge.vue.js"), "../basics/EpBtn.vue": () => import("../basics/EpBtn.vue2.js"), "../basics/EpCard.vue": () => import("../basics/EpCard.vue2.js"), "../basics/EpChip.vue": () => import("../basics/EpChip.vue2.js"), "../basics/EpDivider.vue": () => import("../basics/EpDivider.vue2.js"), "../basics/EpFlex.vue": () => import("../basics/EpFlex.vue2.js"), "../basics/EpHover.vue": () => import("../basics/EpHover.vue2.js"), "../basics/EpHoverCard.vue": () => import("../basics/EpHoverCard.vue2.js"), "../basics/EpIcon.vue": () => import("../basics/EpIcon.vue2.js"), "../basics/EpImg.vue": () => import("../basics/EpImg.vue2.js"), "../basics/EpImgCarousel.vue": () => import("../basics/EpImgCarousel.vue2.js"), "../basics/EpList.vue": () => import("../basics/EpList.vue.js"), "../basics/EpListItem.vue": () => import("../basics/EpListItem.vue2.js"), "../basics/EpSection.vue": () => import("../basics/EpSection.vue2.js"), "../basics/EpSectionCols.vue": () => import("../basics/EpSectionCols.vue2.js"), "../basics/EpSpinner.vue": () => import("../basics/EpSpinner.vue2.js"), "../basics/EpStackedList.vue": () => import("../basics/EpStackedList.vue2.js"), "../basics/EpTable.vue": () => import("../basics/EpTable.vue2.js"), "../basics/EpText.vue": () => import("../basics/EpText.vue2.js"), "../charts/EpBarChart.vue": () => import("../charts/EpBarChart.vue2.js"), "../charts/EpFunnelChart.vue": () => import("../charts/EpFunnelChart.vue2.js"), "../charts/EpLineChart.vue": () => import("../charts/EpLineChart.vue2.js"), "../charts/EpPieChart.vue": () => import("../charts/EpPieChart.vue2.js"), "../educationals/EpBranchingScenario.vue": () => import("../educationals/EpBranchingScenario.vue.js"), "../educationals/EpCodeblock.vue": () => import("../educationals/EpCodeblock.vue3.js"), "../educationals/EpConclusion.vue": () => import("../educationals/EpConclusion.vue2.js"), "../educationals/EpDescription.vue": () => import("../educationals/EpDescription.vue2.js"), "../educationals/EpDocument.vue": () => import("../educationals/EpDocument.vue2.js"), "../educationals/EpEdu.vue": () => import("../educationals/EpEdu.vue2.js"), "../educationals/EpInstructions.vue": () => import("../educationals/EpInstructions.vue2.js"), "../educationals/EpIntroduction.vue": () => import("../educationals/EpIntroduction.vue2.js"), "../educationals/EpObjective.vue": () => import("../educationals/EpObjective.vue2.js"), "../educationals/EpReading.vue": () => import("../educationals/EpReading.vue2.js"), "../educationals/EpResource.vue": () => import("../educationals/EpResource.vue2.js"), "../educationals/EpScope.vue": () => import("../educationals/EpScope.vue2.js"), "../educationals/EpSpecificObjective.vue": () => import("../educationals/EpSpecificObjective.vue2.js"), "../forms/EpCheckbox.vue": () => import("../forms/EpCheckbox.vue.js"), "../forms/EpInput.vue": () => import("../forms/EpInput.vue.js"), "../forms/EpRadio.vue": () => import("../forms/EpRadio.vue.js"), "../forms/EpRadioSummative.vue": () => import("../forms/EpRadioSummative.vue.js"), "../forms/EpSelect.vue": () => import("../forms/EpSelect.vue.js"), "../forms/EpSwitch.vue": () => import("../forms/EpSwitch.vue.js"), "../forms/EpTextarea.vue": () => import("../forms/EpTextarea.vue.js"), "../forms/EpToggle.vue": () => import("../forms/EpToggle.vue.js"), "../interactions/Ep360Image.vue": () => import("../interactions/Ep360Image.vue.js"), "../interactions/Ep360Video.vue": () => import("../interactions/Ep360Video.vue.js"), "../interactions/EpAccordeon.vue": () => import("../interactions/EpAccordeon.vue.js"), "../interactions/EpContentSlider.vue": () => import("../interactions/EpContentSlider.vue2.js"), "../interactions/EpDarkMode.vue": () => import("../interactions/EpDarkMode.vue2.js"), "../interactions/EpDraggable.vue": () => import("../interactions/EpDraggable.vue2.js"), "../interactions/EpHotSpot.vue": () => import("../interactions/EpHotSpot.vue2.js"), "../interactions/EpModal.vue": () => import("../interactions/EpModal.vue3.js"), "../interactions/EpQuestion.vue": () => import("../interactions/EpQuestion.vue2.js"), "../interactions/EpSummativeTable.vue": () => import("../interactions/EpSummativeTable.vue2.js"), "../interactions/EpSvgShow.vue": () => import("../interactions/EpSvgShow.vue2.js"), "../interactions/EpTabs.vue": () => import("../interactions/EpTabs.vue.js"), "../interactions/EpTooltip.vue": () => import("../interactions/EpTooltip.vue2.js"), "../medias/EpAudio.vue": () => import("../medias/EpAudio.vue2.js"), "../medias/EpCardLink.vue": () => import("../medias/EpCardLink.vue2.js"), "../medias/EpCarousel.vue": () => import("../medias/EpCarousel.vue2.js"), "../medias/EpHierarchy.vue": () => import("../medias/EpHierarchy.vue.js"), "../medias/EpIframe.vue": () => import("../medias/EpIframe.vue2.js"), "../medias/EpKatex.vue": () => import("../medias/EpKatex.vue.js"), "../medias/EpLink.vue": () => import("../medias/EpLink.vue2.js"), "../medias/EpLinkVersion.vue": () => import("../medias/EpLinkVersion.vue2.js"), "../medias/EpLottieSvg.vue": () => import("../medias/EpLottieSvg.vue2.js"), "../medias/EpSensibleImage.vue": () => import("../medias/EpSensibleImage.vue.js"), "../medias/EpSoftware.vue": () => import("../medias/EpSoftware.vue2.js"), "../medias/EpSvg.vue": () => import("../medias/EpSvg.vue2.js"), "../medias/EpTerm.vue": () => import("../medias/EpTerm.vue2.js"), "../medias/EpTimeLine.vue": () => import("../medias/EpTimeLine.vue.js"), "../medias/EpVideo.vue": () => import("../medias/EpVideo.vue2.js"), "../medias/EpVideoPanopto.vue": () => import("../medias/EpVideoPanopto.vue2.js"), "../medias/EpWordDef.vue": () => import("../medias/EpWordDef.vue2.js"), "../signages/EpAlert.vue": () => import("../signages/EpAlert.vue.js"), "../signages/EpBadge.vue": () => import("../signages/EpBadge.vue2.js"), "../signages/EpHeader.vue": () => import("../signages/EpHeader.vue2.js"), "../signages/EpNothing.vue": () => import("../signages/EpNothing.vue.js"), "../signages/EpQuote.vue": () => import("../signages/EpQuote.vue2.js"), "../signages/EpSkeleton.vue": () => import("../signages/EpSkeleton.vue.js"), "./BgAudio.vue": () => import("./BgAudio.vue2.js"), "./Details.vue": () => import("./Details.
|
|
26
|
+
() => __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "../basics/EpAvatar.vue": () => import("../basics/EpAvatar.vue.js"), "../basics/EpBadge.vue": () => import("../basics/EpBadge.vue.js"), "../basics/EpBtn.vue": () => import("../basics/EpBtn.vue2.js"), "../basics/EpCard.vue": () => import("../basics/EpCard.vue2.js"), "../basics/EpChip.vue": () => import("../basics/EpChip.vue2.js"), "../basics/EpDivider.vue": () => import("../basics/EpDivider.vue2.js"), "../basics/EpFlex.vue": () => import("../basics/EpFlex.vue2.js"), "../basics/EpHover.vue": () => import("../basics/EpHover.vue2.js"), "../basics/EpHoverCard.vue": () => import("../basics/EpHoverCard.vue2.js"), "../basics/EpIcon.vue": () => import("../basics/EpIcon.vue2.js"), "../basics/EpImg.vue": () => import("../basics/EpImg.vue2.js"), "../basics/EpImgCarousel.vue": () => import("../basics/EpImgCarousel.vue2.js"), "../basics/EpList.vue": () => import("../basics/EpList.vue.js"), "../basics/EpListItem.vue": () => import("../basics/EpListItem.vue2.js"), "../basics/EpSection.vue": () => import("../basics/EpSection.vue2.js"), "../basics/EpSectionCols.vue": () => import("../basics/EpSectionCols.vue2.js"), "../basics/EpSpinner.vue": () => import("../basics/EpSpinner.vue2.js"), "../basics/EpStackedList.vue": () => import("../basics/EpStackedList.vue2.js"), "../basics/EpTable.vue": () => import("../basics/EpTable.vue2.js"), "../basics/EpText.vue": () => import("../basics/EpText.vue2.js"), "../charts/EpBarChart.vue": () => import("../charts/EpBarChart.vue2.js"), "../charts/EpFunnelChart.vue": () => import("../charts/EpFunnelChart.vue2.js"), "../charts/EpLineChart.vue": () => import("../charts/EpLineChart.vue2.js"), "../charts/EpPieChart.vue": () => import("../charts/EpPieChart.vue2.js"), "../educationals/EpBranchingScenario.vue": () => import("../educationals/EpBranchingScenario.vue.js"), "../educationals/EpCodeblock.vue": () => import("../educationals/EpCodeblock.vue3.js"), "../educationals/EpConclusion.vue": () => import("../educationals/EpConclusion.vue2.js"), "../educationals/EpDescription.vue": () => import("../educationals/EpDescription.vue2.js"), "../educationals/EpDocument.vue": () => import("../educationals/EpDocument.vue2.js"), "../educationals/EpEdu.vue": () => import("../educationals/EpEdu.vue2.js"), "../educationals/EpInstructions.vue": () => import("../educationals/EpInstructions.vue2.js"), "../educationals/EpIntroduction.vue": () => import("../educationals/EpIntroduction.vue2.js"), "../educationals/EpObjective.vue": () => import("../educationals/EpObjective.vue2.js"), "../educationals/EpReading.vue": () => import("../educationals/EpReading.vue2.js"), "../educationals/EpResource.vue": () => import("../educationals/EpResource.vue2.js"), "../educationals/EpScope.vue": () => import("../educationals/EpScope.vue2.js"), "../educationals/EpSpecificObjective.vue": () => import("../educationals/EpSpecificObjective.vue2.js"), "../forms/EpCheckbox.vue": () => import("../forms/EpCheckbox.vue.js"), "../forms/EpInput.vue": () => import("../forms/EpInput.vue.js"), "../forms/EpRadio.vue": () => import("../forms/EpRadio.vue.js"), "../forms/EpRadioSummative.vue": () => import("../forms/EpRadioSummative.vue.js"), "../forms/EpSelect.vue": () => import("../forms/EpSelect.vue.js"), "../forms/EpSwitch.vue": () => import("../forms/EpSwitch.vue.js"), "../forms/EpTextarea.vue": () => import("../forms/EpTextarea.vue.js"), "../forms/EpToggle.vue": () => import("../forms/EpToggle.vue.js"), "../interactions/Ep360Image.vue": () => import("../interactions/Ep360Image.vue.js"), "../interactions/Ep360Video.vue": () => import("../interactions/Ep360Video.vue.js"), "../interactions/EpAccordeon.vue": () => import("../interactions/EpAccordeon.vue.js"), "../interactions/EpContentSlider.vue": () => import("../interactions/EpContentSlider.vue2.js"), "../interactions/EpDarkMode.vue": () => import("../interactions/EpDarkMode.vue2.js"), "../interactions/EpDraggable.vue": () => import("../interactions/EpDraggable.vue2.js"), "../interactions/EpHotSpot.vue": () => import("../interactions/EpHotSpot.vue2.js"), "../interactions/EpModal.vue": () => import("../interactions/EpModal.vue3.js"), "../interactions/EpQuestion.vue": () => import("../interactions/EpQuestion.vue2.js"), "../interactions/EpSummativeTable.vue": () => import("../interactions/EpSummativeTable.vue2.js"), "../interactions/EpSvgShow.vue": () => import("../interactions/EpSvgShow.vue2.js"), "../interactions/EpTabs.vue": () => import("../interactions/EpTabs.vue.js"), "../interactions/EpTooltip.vue": () => import("../interactions/EpTooltip.vue2.js"), "../medias/EpAudio.vue": () => import("../medias/EpAudio.vue2.js"), "../medias/EpCardLink.vue": () => import("../medias/EpCardLink.vue2.js"), "../medias/EpCarousel.vue": () => import("../medias/EpCarousel.vue2.js"), "../medias/EpHierarchy.vue": () => import("../medias/EpHierarchy.vue.js"), "../medias/EpIframe.vue": () => import("../medias/EpIframe.vue2.js"), "../medias/EpKatex.vue": () => import("../medias/EpKatex.vue.js"), "../medias/EpLink.vue": () => import("../medias/EpLink.vue2.js"), "../medias/EpLinkVersion.vue": () => import("../medias/EpLinkVersion.vue2.js"), "../medias/EpLottieSvg.vue": () => import("../medias/EpLottieSvg.vue2.js"), "../medias/EpSensibleImage.vue": () => import("../medias/EpSensibleImage.vue.js"), "../medias/EpSoftware.vue": () => import("../medias/EpSoftware.vue2.js"), "../medias/EpSvg.vue": () => import("../medias/EpSvg.vue2.js"), "../medias/EpTerm.vue": () => import("../medias/EpTerm.vue2.js"), "../medias/EpTimeLine.vue": () => import("../medias/EpTimeLine.vue.js"), "../medias/EpVideo.vue": () => import("../medias/EpVideo.vue2.js"), "../medias/EpVideoPanopto.vue": () => import("../medias/EpVideoPanopto.vue2.js"), "../medias/EpWordDef.vue": () => import("../medias/EpWordDef.vue2.js"), "../signages/EpAlert.vue": () => import("../signages/EpAlert.vue.js"), "../signages/EpBadge.vue": () => import("../signages/EpBadge.vue2.js"), "../signages/EpHeader.vue": () => import("../signages/EpHeader.vue2.js"), "../signages/EpNothing.vue": () => import("../signages/EpNothing.vue.js"), "../signages/EpQuote.vue": () => import("../signages/EpQuote.vue2.js"), "../signages/EpSkeleton.vue": () => import("../signages/EpSkeleton.vue.js"), "./BgAudio.vue": () => import("./BgAudio.vue2.js"), "./Details.vue": () => import("./Details.vue2.js"), "./DisplayBox.vue": () => import("./DisplayBox.vue.js"), "./SvgFilter.vue": () => import("./SvgFilter.vue.js"), "./TextMedia.vue": () => import("./TextMedia.vue2.js"), "./TimelineItem.vue": () => import("./TimelineItem.vue.js"), "./TwoColsMedia.vue": () => import("./TwoColsMedia.vue.js") }), `../${componentToLoad.path}/${componentToLoad.name}.vue`, 3)
|
|
27
27
|
);
|
|
28
28
|
}
|
|
29
29
|
return null;
|
|
@@ -32,7 +32,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
32
32
|
if (props.mediaRight) {
|
|
33
33
|
const componentToLoad = useComponent(props.mediaRight.type);
|
|
34
34
|
return defineAsyncComponent(
|
|
35
|
-
() => __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "../basics/EpAvatar.vue": () => import("../basics/EpAvatar.vue.js"), "../basics/EpBadge.vue": () => import("../basics/EpBadge.vue.js"), "../basics/EpBtn.vue": () => import("../basics/EpBtn.vue2.js"), "../basics/EpCard.vue": () => import("../basics/EpCard.vue2.js"), "../basics/EpChip.vue": () => import("../basics/EpChip.vue2.js"), "../basics/EpDivider.vue": () => import("../basics/EpDivider.vue2.js"), "../basics/EpFlex.vue": () => import("../basics/EpFlex.vue2.js"), "../basics/EpHover.vue": () => import("../basics/EpHover.vue2.js"), "../basics/EpHoverCard.vue": () => import("../basics/EpHoverCard.vue2.js"), "../basics/EpIcon.vue": () => import("../basics/EpIcon.vue2.js"), "../basics/EpImg.vue": () => import("../basics/EpImg.vue2.js"), "../basics/EpImgCarousel.vue": () => import("../basics/EpImgCarousel.vue2.js"), "../basics/EpList.vue": () => import("../basics/EpList.vue.js"), "../basics/EpListItem.vue": () => import("../basics/EpListItem.vue2.js"), "../basics/EpSection.vue": () => import("../basics/EpSection.vue2.js"), "../basics/EpSectionCols.vue": () => import("../basics/EpSectionCols.vue2.js"), "../basics/EpSpinner.vue": () => import("../basics/EpSpinner.vue2.js"), "../basics/EpStackedList.vue": () => import("../basics/EpStackedList.vue2.js"), "../basics/EpTable.vue": () => import("../basics/EpTable.vue2.js"), "../basics/EpText.vue": () => import("../basics/EpText.vue2.js"), "../charts/EpBarChart.vue": () => import("../charts/EpBarChart.vue2.js"), "../charts/EpFunnelChart.vue": () => import("../charts/EpFunnelChart.vue2.js"), "../charts/EpLineChart.vue": () => import("../charts/EpLineChart.vue2.js"), "../charts/EpPieChart.vue": () => import("../charts/EpPieChart.vue2.js"), "../educationals/EpBranchingScenario.vue": () => import("../educationals/EpBranchingScenario.vue.js"), "../educationals/EpCodeblock.vue": () => import("../educationals/EpCodeblock.vue3.js"), "../educationals/EpConclusion.vue": () => import("../educationals/EpConclusion.vue2.js"), "../educationals/EpDescription.vue": () => import("../educationals/EpDescription.vue2.js"), "../educationals/EpDocument.vue": () => import("../educationals/EpDocument.vue2.js"), "../educationals/EpEdu.vue": () => import("../educationals/EpEdu.vue2.js"), "../educationals/EpInstructions.vue": () => import("../educationals/EpInstructions.vue2.js"), "../educationals/EpIntroduction.vue": () => import("../educationals/EpIntroduction.vue2.js"), "../educationals/EpObjective.vue": () => import("../educationals/EpObjective.vue2.js"), "../educationals/EpReading.vue": () => import("../educationals/EpReading.vue2.js"), "../educationals/EpResource.vue": () => import("../educationals/EpResource.vue2.js"), "../educationals/EpScope.vue": () => import("../educationals/EpScope.vue2.js"), "../educationals/EpSpecificObjective.vue": () => import("../educationals/EpSpecificObjective.vue2.js"), "../forms/EpCheckbox.vue": () => import("../forms/EpCheckbox.vue.js"), "../forms/EpInput.vue": () => import("../forms/EpInput.vue.js"), "../forms/EpRadio.vue": () => import("../forms/EpRadio.vue.js"), "../forms/EpRadioSummative.vue": () => import("../forms/EpRadioSummative.vue.js"), "../forms/EpSelect.vue": () => import("../forms/EpSelect.vue.js"), "../forms/EpSwitch.vue": () => import("../forms/EpSwitch.vue.js"), "../forms/EpTextarea.vue": () => import("../forms/EpTextarea.vue.js"), "../forms/EpToggle.vue": () => import("../forms/EpToggle.vue.js"), "../interactions/Ep360Image.vue": () => import("../interactions/Ep360Image.vue.js"), "../interactions/Ep360Video.vue": () => import("../interactions/Ep360Video.vue.js"), "../interactions/EpAccordeon.vue": () => import("../interactions/EpAccordeon.vue.js"), "../interactions/EpContentSlider.vue": () => import("../interactions/EpContentSlider.vue2.js"), "../interactions/EpDarkMode.vue": () => import("../interactions/EpDarkMode.vue2.js"), "../interactions/EpDraggable.vue": () => import("../interactions/EpDraggable.vue2.js"), "../interactions/EpHotSpot.vue": () => import("../interactions/EpHotSpot.vue2.js"), "../interactions/EpModal.vue": () => import("../interactions/EpModal.vue3.js"), "../interactions/EpQuestion.vue": () => import("../interactions/EpQuestion.vue2.js"), "../interactions/EpSummativeTable.vue": () => import("../interactions/EpSummativeTable.vue2.js"), "../interactions/EpSvgShow.vue": () => import("../interactions/EpSvgShow.vue2.js"), "../interactions/EpTabs.vue": () => import("../interactions/EpTabs.vue.js"), "../interactions/EpTooltip.vue": () => import("../interactions/EpTooltip.vue2.js"), "../medias/EpAudio.vue": () => import("../medias/EpAudio.vue2.js"), "../medias/EpCardLink.vue": () => import("../medias/EpCardLink.vue2.js"), "../medias/EpCarousel.vue": () => import("../medias/EpCarousel.vue2.js"), "../medias/EpHierarchy.vue": () => import("../medias/EpHierarchy.vue.js"), "../medias/EpIframe.vue": () => import("../medias/EpIframe.vue2.js"), "../medias/EpKatex.vue": () => import("../medias/EpKatex.vue.js"), "../medias/EpLink.vue": () => import("../medias/EpLink.vue2.js"), "../medias/EpLinkVersion.vue": () => import("../medias/EpLinkVersion.vue2.js"), "../medias/EpLottieSvg.vue": () => import("../medias/EpLottieSvg.vue2.js"), "../medias/EpSensibleImage.vue": () => import("../medias/EpSensibleImage.vue.js"), "../medias/EpSoftware.vue": () => import("../medias/EpSoftware.vue2.js"), "../medias/EpSvg.vue": () => import("../medias/EpSvg.vue2.js"), "../medias/EpTerm.vue": () => import("../medias/EpTerm.vue2.js"), "../medias/EpTimeLine.vue": () => import("../medias/EpTimeLine.vue.js"), "../medias/EpVideo.vue": () => import("../medias/EpVideo.vue2.js"), "../medias/EpVideoPanopto.vue": () => import("../medias/EpVideoPanopto.vue2.js"), "../medias/EpWordDef.vue": () => import("../medias/EpWordDef.vue2.js"), "../signages/EpAlert.vue": () => import("../signages/EpAlert.vue.js"), "../signages/EpBadge.vue": () => import("../signages/EpBadge.vue2.js"), "../signages/EpHeader.vue": () => import("../signages/EpHeader.vue2.js"), "../signages/EpNothing.vue": () => import("../signages/EpNothing.vue.js"), "../signages/EpQuote.vue": () => import("../signages/EpQuote.vue2.js"), "../signages/EpSkeleton.vue": () => import("../signages/EpSkeleton.vue.js"), "./BgAudio.vue": () => import("./BgAudio.vue2.js"), "./Details.vue": () => import("./Details.
|
|
35
|
+
() => __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "../basics/EpAvatar.vue": () => import("../basics/EpAvatar.vue.js"), "../basics/EpBadge.vue": () => import("../basics/EpBadge.vue.js"), "../basics/EpBtn.vue": () => import("../basics/EpBtn.vue2.js"), "../basics/EpCard.vue": () => import("../basics/EpCard.vue2.js"), "../basics/EpChip.vue": () => import("../basics/EpChip.vue2.js"), "../basics/EpDivider.vue": () => import("../basics/EpDivider.vue2.js"), "../basics/EpFlex.vue": () => import("../basics/EpFlex.vue2.js"), "../basics/EpHover.vue": () => import("../basics/EpHover.vue2.js"), "../basics/EpHoverCard.vue": () => import("../basics/EpHoverCard.vue2.js"), "../basics/EpIcon.vue": () => import("../basics/EpIcon.vue2.js"), "../basics/EpImg.vue": () => import("../basics/EpImg.vue2.js"), "../basics/EpImgCarousel.vue": () => import("../basics/EpImgCarousel.vue2.js"), "../basics/EpList.vue": () => import("../basics/EpList.vue.js"), "../basics/EpListItem.vue": () => import("../basics/EpListItem.vue2.js"), "../basics/EpSection.vue": () => import("../basics/EpSection.vue2.js"), "../basics/EpSectionCols.vue": () => import("../basics/EpSectionCols.vue2.js"), "../basics/EpSpinner.vue": () => import("../basics/EpSpinner.vue2.js"), "../basics/EpStackedList.vue": () => import("../basics/EpStackedList.vue2.js"), "../basics/EpTable.vue": () => import("../basics/EpTable.vue2.js"), "../basics/EpText.vue": () => import("../basics/EpText.vue2.js"), "../charts/EpBarChart.vue": () => import("../charts/EpBarChart.vue2.js"), "../charts/EpFunnelChart.vue": () => import("../charts/EpFunnelChart.vue2.js"), "../charts/EpLineChart.vue": () => import("../charts/EpLineChart.vue2.js"), "../charts/EpPieChart.vue": () => import("../charts/EpPieChart.vue2.js"), "../educationals/EpBranchingScenario.vue": () => import("../educationals/EpBranchingScenario.vue.js"), "../educationals/EpCodeblock.vue": () => import("../educationals/EpCodeblock.vue3.js"), "../educationals/EpConclusion.vue": () => import("../educationals/EpConclusion.vue2.js"), "../educationals/EpDescription.vue": () => import("../educationals/EpDescription.vue2.js"), "../educationals/EpDocument.vue": () => import("../educationals/EpDocument.vue2.js"), "../educationals/EpEdu.vue": () => import("../educationals/EpEdu.vue2.js"), "../educationals/EpInstructions.vue": () => import("../educationals/EpInstructions.vue2.js"), "../educationals/EpIntroduction.vue": () => import("../educationals/EpIntroduction.vue2.js"), "../educationals/EpObjective.vue": () => import("../educationals/EpObjective.vue2.js"), "../educationals/EpReading.vue": () => import("../educationals/EpReading.vue2.js"), "../educationals/EpResource.vue": () => import("../educationals/EpResource.vue2.js"), "../educationals/EpScope.vue": () => import("../educationals/EpScope.vue2.js"), "../educationals/EpSpecificObjective.vue": () => import("../educationals/EpSpecificObjective.vue2.js"), "../forms/EpCheckbox.vue": () => import("../forms/EpCheckbox.vue.js"), "../forms/EpInput.vue": () => import("../forms/EpInput.vue.js"), "../forms/EpRadio.vue": () => import("../forms/EpRadio.vue.js"), "../forms/EpRadioSummative.vue": () => import("../forms/EpRadioSummative.vue.js"), "../forms/EpSelect.vue": () => import("../forms/EpSelect.vue.js"), "../forms/EpSwitch.vue": () => import("../forms/EpSwitch.vue.js"), "../forms/EpTextarea.vue": () => import("../forms/EpTextarea.vue.js"), "../forms/EpToggle.vue": () => import("../forms/EpToggle.vue.js"), "../interactions/Ep360Image.vue": () => import("../interactions/Ep360Image.vue.js"), "../interactions/Ep360Video.vue": () => import("../interactions/Ep360Video.vue.js"), "../interactions/EpAccordeon.vue": () => import("../interactions/EpAccordeon.vue.js"), "../interactions/EpContentSlider.vue": () => import("../interactions/EpContentSlider.vue2.js"), "../interactions/EpDarkMode.vue": () => import("../interactions/EpDarkMode.vue2.js"), "../interactions/EpDraggable.vue": () => import("../interactions/EpDraggable.vue2.js"), "../interactions/EpHotSpot.vue": () => import("../interactions/EpHotSpot.vue2.js"), "../interactions/EpModal.vue": () => import("../interactions/EpModal.vue3.js"), "../interactions/EpQuestion.vue": () => import("../interactions/EpQuestion.vue2.js"), "../interactions/EpSummativeTable.vue": () => import("../interactions/EpSummativeTable.vue2.js"), "../interactions/EpSvgShow.vue": () => import("../interactions/EpSvgShow.vue2.js"), "../interactions/EpTabs.vue": () => import("../interactions/EpTabs.vue.js"), "../interactions/EpTooltip.vue": () => import("../interactions/EpTooltip.vue2.js"), "../medias/EpAudio.vue": () => import("../medias/EpAudio.vue2.js"), "../medias/EpCardLink.vue": () => import("../medias/EpCardLink.vue2.js"), "../medias/EpCarousel.vue": () => import("../medias/EpCarousel.vue2.js"), "../medias/EpHierarchy.vue": () => import("../medias/EpHierarchy.vue.js"), "../medias/EpIframe.vue": () => import("../medias/EpIframe.vue2.js"), "../medias/EpKatex.vue": () => import("../medias/EpKatex.vue.js"), "../medias/EpLink.vue": () => import("../medias/EpLink.vue2.js"), "../medias/EpLinkVersion.vue": () => import("../medias/EpLinkVersion.vue2.js"), "../medias/EpLottieSvg.vue": () => import("../medias/EpLottieSvg.vue2.js"), "../medias/EpSensibleImage.vue": () => import("../medias/EpSensibleImage.vue.js"), "../medias/EpSoftware.vue": () => import("../medias/EpSoftware.vue2.js"), "../medias/EpSvg.vue": () => import("../medias/EpSvg.vue2.js"), "../medias/EpTerm.vue": () => import("../medias/EpTerm.vue2.js"), "../medias/EpTimeLine.vue": () => import("../medias/EpTimeLine.vue.js"), "../medias/EpVideo.vue": () => import("../medias/EpVideo.vue2.js"), "../medias/EpVideoPanopto.vue": () => import("../medias/EpVideoPanopto.vue2.js"), "../medias/EpWordDef.vue": () => import("../medias/EpWordDef.vue2.js"), "../signages/EpAlert.vue": () => import("../signages/EpAlert.vue.js"), "../signages/EpBadge.vue": () => import("../signages/EpBadge.vue2.js"), "../signages/EpHeader.vue": () => import("../signages/EpHeader.vue2.js"), "../signages/EpNothing.vue": () => import("../signages/EpNothing.vue.js"), "../signages/EpQuote.vue": () => import("../signages/EpQuote.vue2.js"), "../signages/EpSkeleton.vue": () => import("../signages/EpSkeleton.vue.js"), "./BgAudio.vue": () => import("./BgAudio.vue2.js"), "./Details.vue": () => import("./Details.vue2.js"), "./DisplayBox.vue": () => import("./DisplayBox.vue.js"), "./SvgFilter.vue": () => import("./SvgFilter.vue.js"), "./TextMedia.vue": () => import("./TextMedia.vue2.js"), "./TimelineItem.vue": () => import("./TimelineItem.vue.js"), "./TwoColsMedia.vue": () => import("./TwoColsMedia.vue.js") }), `../${componentToLoad.path}/${componentToLoad.name}.vue`, 3)
|
|
36
36
|
);
|
|
37
37
|
}
|
|
38
38
|
return null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TwoColsMedia.vue2.js","sources":["../../../src/components/tools/TwoColsMedia.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport { computed, defineAsyncComponent } from \"vue\";\nimport { useComponent } from \"~/composables/useComponent\";\nimport type { NestedComponents } from \"~/types/Component\";\n\ninterface Props {\n mediaLeft: NestedComponents;\n mediaRight: NestedComponents;\n cols?: boolean;\n textLeft?: boolean;\n}\n\nconst props = withDefaults(defineProps<Props>(), {});\n\nconst leftComponent = computed(() => {\n if (props.mediaLeft) {\n const componentToLoad = useComponent(props.mediaLeft.type);\n return defineAsyncComponent(\n () => import(`../${componentToLoad.path}/${componentToLoad.name}.vue`)\n );\n }\n return null;\n});\n\nconst rightComponent = computed(() => {\n if (props.mediaRight) {\n const componentToLoad = useComponent(props.mediaRight.type);\n return defineAsyncComponent(\n () => import(`../${componentToLoad.path}/${componentToLoad.name}.vue`)\n );\n }\n return null;\n});\n\nconst colsStyle = computed(() => {\n return props.cols ? \"flex items-center justify-center gap-1\" : \"\";\n});\n</script>\n\n<template>\n <div :class=\"colsStyle\">\n <div class=\"w-full\" v-if=\"leftComponent && mediaLeft\">\n <component :is=\"leftComponent\" v-bind=\"{ ...mediaLeft.data }\" />\n </div>\n <div class=\"w-full\" v-if=\"rightComponent && rightComponent\">\n <component :is=\"rightComponent\" v-bind=\"{ ...rightComponent.data }\" />\n </div>\n </div>\n</template>\n"],"names":["_createElementBlock","mediaLeft","_openBlock","_createBlock","_resolveDynamicComponent","_normalizeProps","_guardReactiveProps"],"mappings":"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
|
|
1
|
+
{"version":3,"file":"TwoColsMedia.vue2.js","sources":["../../../src/components/tools/TwoColsMedia.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport { computed, defineAsyncComponent } from \"vue\";\nimport { useComponent } from \"~/composables/useComponent\";\nimport type { NestedComponents } from \"~/types/Component\";\n\ninterface Props {\n mediaLeft: NestedComponents;\n mediaRight: NestedComponents;\n cols?: boolean;\n textLeft?: boolean;\n}\n\nconst props = withDefaults(defineProps<Props>(), {});\n\nconst leftComponent = computed(() => {\n if (props.mediaLeft) {\n const componentToLoad = useComponent(props.mediaLeft.type);\n return defineAsyncComponent(\n () => import(`../${componentToLoad.path}/${componentToLoad.name}.vue`)\n );\n }\n return null;\n});\n\nconst rightComponent = computed(() => {\n if (props.mediaRight) {\n const componentToLoad = useComponent(props.mediaRight.type);\n return defineAsyncComponent(\n () => import(`../${componentToLoad.path}/${componentToLoad.name}.vue`)\n );\n }\n return null;\n});\n\nconst colsStyle = computed(() => {\n return props.cols ? \"flex items-center justify-center gap-1\" : \"\";\n});\n</script>\n\n<template>\n <div :class=\"colsStyle\">\n <div class=\"w-full\" v-if=\"leftComponent && mediaLeft\">\n <component :is=\"leftComponent\" v-bind=\"{ ...mediaLeft.data }\" />\n </div>\n <div class=\"w-full\" v-if=\"rightComponent && rightComponent\">\n <component :is=\"rightComponent\" v-bind=\"{ ...rightComponent.data }\" />\n </div>\n </div>\n</template>\n"],"names":["_createElementBlock","mediaLeft","_openBlock","_createBlock","_resolveDynamicComponent","_normalizeProps","_guardReactiveProps"],"mappings":"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"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
const colorMap = {
|
|
2
2
|
neutral: {
|
|
3
|
+
bg: "bg-neutral-800",
|
|
4
|
+
border: "border border-solid border-neutral-800 dark:border-neutral-300"
|
|
5
|
+
},
|
|
6
|
+
base: {
|
|
3
7
|
bg: "bg-neutral",
|
|
4
|
-
border: "border border-solid border-neutral"
|
|
8
|
+
border: "border border-solid border-neutral-800 dark:border-neutral-300"
|
|
5
9
|
},
|
|
6
10
|
primary: {
|
|
7
11
|
bg: "bg-primary",
|
|
@@ -32,8 +36,8 @@ const colorMap = {
|
|
|
32
36
|
border: "border border-solid border-tip"
|
|
33
37
|
},
|
|
34
38
|
surface: {
|
|
35
|
-
bg: "bg-
|
|
36
|
-
border: "border border-solid border-
|
|
39
|
+
bg: "bg-white",
|
|
40
|
+
border: "border border-solid border-neutral-800"
|
|
37
41
|
},
|
|
38
42
|
"surface-2": {
|
|
39
43
|
bg: "bg-surface-2",
|
|
@@ -41,7 +45,7 @@ const colorMap = {
|
|
|
41
45
|
},
|
|
42
46
|
"surface-dark": {
|
|
43
47
|
bg: "bg-surface-dark",
|
|
44
|
-
border: "border border-solid border-
|
|
48
|
+
border: "border border-solid border-neutral-800"
|
|
45
49
|
},
|
|
46
50
|
"surface-2-dark": {
|
|
47
51
|
bg: "bg-surface-2-dark",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useColors.js","sources":["../../src/composables/useColors.ts"],"sourcesContent":["type Style = \"bg\" | \"border\";\n\ninterface TailwindColorMap {\n [key: string]: {\n bg: string;\n border: string;\n };\n}\n\nconst colorMap: TailwindColorMap = {\n neutral: {\n bg: \"bg-neutral\",\n border: \"border border-solid border-neutral\",\n },\n primary: {\n bg: \"bg-primary\",\n border: \"border border-solid border-primary\",\n },\n error: {\n bg: \"bg-error\",\n border: \"border border-solid border-error\",\n },\n warning: {\n bg: \"bg-warning\",\n border: \"border border-solid border-warning\",\n },\n success: {\n bg: \"bg-success\",\n border: \"border border-solid border-success\",\n },\n info: {\n bg: \"bg-info\",\n border: \"border border-solid border-info\",\n },\n question: {\n bg: \"bg-question\",\n border: \"border border-solid border-question\",\n },\n tip: {\n bg: \"bg-tip\",\n border: \"border border-solid border-tip\",\n },\n surface: {\n bg: \"bg-
|
|
1
|
+
{"version":3,"file":"useColors.js","sources":["../../src/composables/useColors.ts"],"sourcesContent":["type Style = \"bg\" | \"border\";\n\ninterface TailwindColorMap {\n [key: string]: {\n bg: string;\n border: string;\n };\n}\n\nconst colorMap: TailwindColorMap = {\n neutral: {\n bg: \"bg-neutral-800\",\n border: \"border border-solid border-neutral-800 dark:border-neutral-300\",\n },\n base: {\n bg: \"bg-neutral\",\n border: \"border border-solid border-neutral-800 dark:border-neutral-300\",\n },\n primary: {\n bg: \"bg-primary\",\n border: \"border border-solid border-primary\",\n },\n error: {\n bg: \"bg-error\",\n border: \"border border-solid border-error\",\n },\n warning: {\n bg: \"bg-warning\",\n border: \"border border-solid border-warning\",\n },\n success: {\n bg: \"bg-success\",\n border: \"border border-solid border-success\",\n },\n info: {\n bg: \"bg-info\",\n border: \"border border-solid border-info\",\n },\n question: {\n bg: \"bg-question\",\n border: \"border border-solid border-question\",\n },\n tip: {\n bg: \"bg-tip\",\n border: \"border border-solid border-tip\",\n },\n surface: {\n bg: \"bg-white\",\n border: \"border border-solid border-neutral-800\",\n },\n \"surface-2\": {\n bg: \"bg-surface-2\",\n border: \"border border-solid border-surface-2\",\n },\n \"surface-dark\": {\n bg: \"bg-surface-dark\",\n border: \"border border-solid border-neutral-800\",\n },\n \"surface-2-dark\": {\n bg: \"bg-surface-2-dark\",\n border: \"border border-solid border-surface-2-dark\",\n },\n};\n\nexport default function useColors(color: string, type: Style = \"bg\"): string {\n return colorMap[color]?.[type] || \"\";\n}\n"],"names":[],"mappings":"AASA,MAAM,WAA6B;AAAA,EACjC,SAAS;AAAA,IACP,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,MAAM;AAAA,IACJ,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,SAAS;AAAA,IACP,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,OAAO;AAAA,IACL,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,SAAS;AAAA,IACP,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,SAAS;AAAA,IACP,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,MAAM;AAAA,IACJ,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,UAAU;AAAA,IACR,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,KAAK;AAAA,IACH,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,SAAS;AAAA,IACP,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,aAAa;AAAA,IACX,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,gBAAgB;AAAA,IACd,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAAA,EAEV,kBAAkB;AAAA,IAChB,IAAI;AAAA,IACJ,QAAQ;AAAA,EAAA;AAEZ;AAEA,SAAwB,UAAU,OAAe,OAAc,MAAc;AAvD7E;AAwDE,WAAO,cAAS,KAAK,MAAd,mBAAkB,UAAS;AACpC;"}
|
package/dist/style.css
CHANGED
|
@@ -1,50 +1,53 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
font-weight: 500;
|
|
2
|
+
pre {
|
|
3
|
+
white-space: break-spaces;
|
|
5
4
|
}
|
|
6
5
|
|
|
7
6
|
|
|
8
|
-
.ep-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
.ep-tree-container[data-v-819ce9ba] {
|
|
13
|
-
width: 100%;
|
|
14
|
-
overflow-x: auto;
|
|
7
|
+
.ep-accordeon-content[data-v-9a4f2570] {
|
|
8
|
+
transition: max-height 0.2s ease-out;
|
|
9
|
+
overflow: hidden;
|
|
15
10
|
}
|
|
16
11
|
/*$vite$:1*/
|
|
17
12
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
13
|
+
@keyframes fade-352aec5b {
|
|
14
|
+
0% {
|
|
15
|
+
opacity: 0;
|
|
21
16
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
.katex[data-v-a9b6227c] {
|
|
25
|
-
font-size: 1.6em;
|
|
17
|
+
100% {
|
|
18
|
+
opacity: 1;
|
|
26
19
|
}
|
|
27
|
-
/*$vite$:1*/
|
|
28
|
-
|
|
29
|
-
.eptimeline-list-enter-active[data-v-6ad2fc60],
|
|
30
|
-
.eptimeline-list-leave-active[data-v-6ad2fc60] {
|
|
31
|
-
transition: all 0.5s ease;
|
|
32
20
|
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
21
|
+
@keyframes scale-352aec5b {
|
|
22
|
+
0% {
|
|
23
|
+
transform: scale(0.5);
|
|
24
|
+
opacity: 0;
|
|
25
|
+
}
|
|
26
|
+
100% {
|
|
27
|
+
transform: scale(1);
|
|
28
|
+
opacity: 1;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
@keyframes slideY-352aec5b {
|
|
32
|
+
0% {
|
|
33
|
+
transform: translateY(-100%);
|
|
34
|
+
opacity: 0;
|
|
35
|
+
}
|
|
36
|
+
100% {
|
|
37
|
+
transform: translateY(0);
|
|
38
|
+
opacity: 1;
|
|
37
39
|
}
|
|
38
|
-
/*$vite$:1*/
|
|
39
|
-
|
|
40
|
-
pre {
|
|
41
|
-
white-space: break-spaces;
|
|
42
40
|
}
|
|
43
|
-
/*$vite$:1*/
|
|
44
41
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
42
|
+
/* Transition animation */
|
|
43
|
+
.fade[data-v-352aec5b] {
|
|
44
|
+
animation: fade-352aec5b 1s;
|
|
45
|
+
}
|
|
46
|
+
.scale[data-v-352aec5b] {
|
|
47
|
+
animation: scale-352aec5b 1s;
|
|
48
|
+
}
|
|
49
|
+
.slideY[data-v-352aec5b] {
|
|
50
|
+
animation: slideY-352aec5b 1s;
|
|
48
51
|
}
|
|
49
52
|
/*$vite$:1*/
|
|
50
53
|
|
|
@@ -87,44 +90,41 @@ pre {
|
|
|
87
90
|
}
|
|
88
91
|
/*$vite$:1*/
|
|
89
92
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
opacity: 0;
|
|
93
|
-
}
|
|
94
|
-
100% {
|
|
95
|
-
opacity: 1;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
@keyframes scale-352aec5b {
|
|
99
|
-
0% {
|
|
100
|
-
transform: scale(0.5);
|
|
101
|
-
opacity: 0;
|
|
102
|
-
}
|
|
103
|
-
100% {
|
|
104
|
-
transform: scale(1);
|
|
105
|
-
opacity: 1;
|
|
106
|
-
}
|
|
93
|
+
.katex[data-v-a9b6227c] {
|
|
94
|
+
font-size: 1.6em;
|
|
107
95
|
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
96
|
+
/*$vite$:1*/
|
|
97
|
+
|
|
98
|
+
.ep-tree-wrapper[data-v-819ce9ba] {
|
|
99
|
+
overflow: auto;
|
|
100
|
+
border: 1px solid #ddd;
|
|
112
101
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
102
|
+
.ep-tree-container[data-v-819ce9ba] {
|
|
103
|
+
width: 100%;
|
|
104
|
+
overflow-x: auto;
|
|
116
105
|
}
|
|
106
|
+
/*$vite$:1*/
|
|
107
|
+
|
|
108
|
+
.ep-info-box[data-v-64f3d0d8] a {
|
|
109
|
+
text-decoration: underline;
|
|
110
|
+
font-weight: 500;
|
|
117
111
|
}
|
|
112
|
+
/*$vite$:1*/
|
|
118
113
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
114
|
+
.shape[data-v-4a99873e] {
|
|
115
|
+
height: var(--e4ec2c0a);
|
|
116
|
+
width: var(--3f346a72);
|
|
122
117
|
}
|
|
123
|
-
|
|
124
|
-
|
|
118
|
+
/*$vite$:1*/
|
|
119
|
+
|
|
120
|
+
.eptimeline-list-enter-active[data-v-6ad2fc60],
|
|
121
|
+
.eptimeline-list-leave-active[data-v-6ad2fc60] {
|
|
122
|
+
transition: all 0.5s ease;
|
|
125
123
|
}
|
|
126
|
-
.
|
|
127
|
-
|
|
124
|
+
.eptimeline-list-enter-from[data-v-6ad2fc60],
|
|
125
|
+
.eptimeline-list-leave-to[data-v-6ad2fc60] {
|
|
126
|
+
opacity: 0;
|
|
127
|
+
transform: translateX(30px);
|
|
128
128
|
}
|
|
129
129
|
/*$vite$:1*/
|
|
130
130
|
|
|
@@ -135,7 +135,7 @@ pre {
|
|
|
135
135
|
}
|
|
136
136
|
/*$vite$:1*/
|
|
137
137
|
|
|
138
|
-
.ep-content-timeline-item[data-v-
|
|
138
|
+
.ep-content-timeline-item[data-v-7430d42f] {
|
|
139
139
|
max-height: 0;
|
|
140
140
|
overflow: hidden;
|
|
141
141
|
}
|
package/dist/types/Accordeon.js
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
const typeAccordeon = {
|
|
2
2
|
base: {
|
|
3
|
-
default: "bg-neutral text-white dark:text-
|
|
4
|
-
outlined: "text-
|
|
3
|
+
default: "bg-neutral dark:bg-neutral-500 text-white dark:text-neutral-900",
|
|
4
|
+
outlined: "text-neutral-900 dark:text-white border-neutral-800 dark:border-neutral-300 border"
|
|
5
5
|
},
|
|
6
6
|
primary: {
|
|
7
|
-
default: "bg-primary text-white dark:text-
|
|
7
|
+
default: "bg-primary text-white dark:text-neutral-900",
|
|
8
8
|
outlined: "text-primary border-primary border"
|
|
9
9
|
},
|
|
10
10
|
secondary: {
|
|
11
|
-
default: "bg-secondary text-white dark:text-
|
|
11
|
+
default: "bg-secondary text-white dark:text-neutral-900",
|
|
12
12
|
outlined: "text-secondary border-secondary border"
|
|
13
13
|
},
|
|
14
14
|
warning: {
|
|
15
|
-
default: "bg-warning text-white dark:text-
|
|
15
|
+
default: "bg-warning text-white dark:text-neutral-900",
|
|
16
16
|
outlined: "text-warning border-warning border"
|
|
17
17
|
},
|
|
18
18
|
success: {
|
|
19
|
-
default: "bg-success text-white dark:text-
|
|
19
|
+
default: "bg-success text-white dark:text-neutral-900",
|
|
20
20
|
outlined: "text-success border-success border"
|
|
21
21
|
},
|
|
22
22
|
error: {
|
|
23
|
-
default: "bg-error text-white dark:text-
|
|
23
|
+
default: "bg-error text-white dark:text-neutral-900",
|
|
24
24
|
outlined: "text-error border-error border"
|
|
25
25
|
},
|
|
26
26
|
/* this types is only for ptsAlert */
|
|
27
27
|
info: {
|
|
28
|
-
default: "bg-info text-white dark:text-
|
|
28
|
+
default: "bg-info text-white dark:text-neutral-900",
|
|
29
29
|
outlined: "text-info border-info border"
|
|
30
30
|
},
|
|
31
31
|
question: {
|
|
32
|
-
default: "bg-question text-white dark:text-
|
|
32
|
+
default: "bg-question text-white dark:text-neutral-900",
|
|
33
33
|
outlined: "text-question border-question border"
|
|
34
34
|
},
|
|
35
35
|
/*NETTOYER DB*/
|
|
36
36
|
Question: {
|
|
37
|
-
default: "bg-question text-white dark:text-
|
|
37
|
+
default: "bg-question text-white dark:text-neutral-900",
|
|
38
38
|
outlined: "text-question border-question border"
|
|
39
39
|
},
|
|
40
40
|
tip: {
|
|
41
|
-
default: "bg-tip text-white dark:text-
|
|
41
|
+
default: "bg-tip text-white dark:text-neutral-900",
|
|
42
42
|
outlined: "text-tip border-tip border"
|
|
43
43
|
}
|
|
44
44
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accordeon.js","sources":["../../src/types/Accordeon.ts"],"sourcesContent":["export const typeAccordeon = {\n base:{\n default:'bg-neutral text-white dark:text-
|
|
1
|
+
{"version":3,"file":"Accordeon.js","sources":["../../src/types/Accordeon.ts"],"sourcesContent":["export const typeAccordeon = {\n base:{\n default:'bg-neutral dark:bg-neutral-500 text-white dark:text-neutral-900',\n outlined:'text-neutral-900 dark:text-white border-neutral-800 dark:border-neutral-300 border'\n },\n primary:{\n default:'bg-primary text-white dark:text-neutral-900',\n outlined:'text-primary border-primary border'\n },\n secondary:{\n default:'bg-secondary text-white dark:text-neutral-900',\n outlined:'text-secondary border-secondary border'\n },\n warning:{\n default:'bg-warning text-white dark:text-neutral-900',\n outlined:'text-warning border-warning border'\n },\n success:{\n default:'bg-success text-white dark:text-neutral-900',\n outlined:'text-success border-success border'\n },\n error:{\n default:'bg-error text-white dark:text-neutral-900',\n outlined:'text-error border-error border'\n },\n /* this types is only for ptsAlert */\n info:{\n default:'bg-info text-white dark:text-neutral-900',\n outlined:'text-info border-info border'\n },\n question:{\n default:'bg-question text-white dark:text-neutral-900',\n outlined:'text-question border-question border'\n },\n /*NETTOYER DB*/\n Question:{\n default:'bg-question text-white dark:text-neutral-900',\n outlined:'text-question border-question border'\n },\n tip:{\n default:'bg-tip text-white dark:text-neutral-900',\n outlined:'text-tip border-tip border'\n },\n}\n\n\nexport type TypeAccordeon = keyof typeof typeAccordeon\n\n"],"names":[],"mappings":"AAAO,MAAM,gBAAgB;AAAA,EACzB,MAAK;AAAA,IACD,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA,EAEb,SAAQ;AAAA,IACJ,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA,EAEb,WAAU;AAAA,IACN,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA,EAEb,SAAQ;AAAA,IACJ,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA,EAEb,SAAQ;AAAA,IACJ,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA,EAEb,OAAM;AAAA,IACF,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA;AAAA,EAGb,MAAK;AAAA,IACD,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA,EAEb,UAAS;AAAA,IACL,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA;AAAA,EAGb,UAAS;AAAA,IACL,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAAA,EAEb,KAAI;AAAA,IACA,SAAQ;AAAA,IACR,UAAS;AAAA,EAAA;AAEjB;"}
|
package/dist/types/Alert.js
CHANGED
|
@@ -1,72 +1,72 @@
|
|
|
1
1
|
const typeAlert = {
|
|
2
2
|
base: {
|
|
3
|
-
default: "bg-neutral text-white dark:text-
|
|
3
|
+
default: "bg-neutral text-white dark:text-neutral-900",
|
|
4
4
|
outlined: "border-neutral border"
|
|
5
5
|
},
|
|
6
6
|
warning: {
|
|
7
|
-
default: "bg-warning text-white dark:text-
|
|
7
|
+
default: "bg-warning text-white dark:text-neutral-900",
|
|
8
8
|
outlined: "border-warning border text-warning"
|
|
9
9
|
},
|
|
10
10
|
success: {
|
|
11
|
-
default: "bg-success text-white dark:text-
|
|
11
|
+
default: "bg-success text-white dark:text-neutral-900",
|
|
12
12
|
outlined: "border-success border text-success"
|
|
13
13
|
},
|
|
14
14
|
error: {
|
|
15
|
-
default: "bg-error text-white dark:text-
|
|
15
|
+
default: "bg-error text-white dark:text-neutral-900",
|
|
16
16
|
outlined: "border-error border text-error"
|
|
17
17
|
},
|
|
18
18
|
/* this types is only for ptsAlert */
|
|
19
19
|
info: {
|
|
20
|
-
default: "bg-info text-white dark:text-
|
|
20
|
+
default: "bg-info text-white dark:text-neutral-900",
|
|
21
21
|
outlined: "border-info border text-info"
|
|
22
22
|
},
|
|
23
23
|
question: {
|
|
24
|
-
default: "bg-question text-white dark:text-
|
|
24
|
+
default: "bg-question text-white dark:text-neutral-900",
|
|
25
25
|
outlined: "border-question border text-question"
|
|
26
26
|
},
|
|
27
27
|
/* TO CLEAN IN STRAPI */
|
|
28
28
|
Question: {
|
|
29
|
-
default: "bg-question text-white dark:text-
|
|
29
|
+
default: "bg-question text-white dark:text-neutral-900",
|
|
30
30
|
outlined: "border-question border text-question"
|
|
31
31
|
},
|
|
32
32
|
tip: {
|
|
33
|
-
default: "bg-tip text-white dark:text-
|
|
33
|
+
default: "bg-tip text-white dark:text-neutral-900",
|
|
34
34
|
outlined: "border-tip border text-tip"
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
const typeDivider = {
|
|
38
38
|
base: {
|
|
39
|
-
default: "border dark:border-
|
|
39
|
+
default: "border dark:border-neutral-800",
|
|
40
40
|
outlined: "border-neutral"
|
|
41
41
|
},
|
|
42
42
|
warning: {
|
|
43
|
-
default: "border dark:border-
|
|
43
|
+
default: "border dark:border-neutral-800",
|
|
44
44
|
outlined: "border-warning"
|
|
45
45
|
},
|
|
46
46
|
success: {
|
|
47
|
-
default: "border dark:border-
|
|
47
|
+
default: "border dark:border-neutral-800",
|
|
48
48
|
outlined: "border-success"
|
|
49
49
|
},
|
|
50
50
|
error: {
|
|
51
|
-
default: "border dark:border-
|
|
51
|
+
default: "border dark:border-neutral-800",
|
|
52
52
|
outlined: "border-error"
|
|
53
53
|
},
|
|
54
54
|
/* this types is only for ptsAlert */
|
|
55
55
|
info: {
|
|
56
|
-
default: "border dark:border-
|
|
56
|
+
default: "border dark:border-neutral-800",
|
|
57
57
|
outlined: "border-info"
|
|
58
58
|
},
|
|
59
59
|
question: {
|
|
60
|
-
default: "border dark:border-
|
|
60
|
+
default: "border dark:border-neutral-800",
|
|
61
61
|
outlined: "border-question"
|
|
62
62
|
},
|
|
63
63
|
/* TO CLEAN IN STRAPI */
|
|
64
64
|
Question: {
|
|
65
|
-
default: "border dark:border-
|
|
65
|
+
default: "border dark:border-neutral-800",
|
|
66
66
|
outlined: "border-question"
|
|
67
67
|
},
|
|
68
68
|
tip: {
|
|
69
|
-
default: "border dark:border-
|
|
69
|
+
default: "border dark:border-neutral-800",
|
|
70
70
|
outlined: "border-tip"
|
|
71
71
|
}
|
|
72
72
|
};
|
package/dist/types/Alert.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.js","sources":["../../src/types/Alert.ts"],"sourcesContent":["export const typeAlert = {\n base: {\n default: 'bg-neutral text-white dark:text-
|
|
1
|
+
{"version":3,"file":"Alert.js","sources":["../../src/types/Alert.ts"],"sourcesContent":["export const typeAlert = {\n base: {\n default: 'bg-neutral text-white dark:text-neutral-900',\n outlined: 'border-neutral border'\n },\n warning: {\n default: 'bg-warning text-white dark:text-neutral-900',\n outlined: 'border-warning border text-warning'\n },\n success: {\n default: 'bg-success text-white dark:text-neutral-900',\n outlined: 'border-success border text-success'\n },\n error: {\n default: 'bg-error text-white dark:text-neutral-900',\n outlined: 'border-error border text-error'\n },\n /* this types is only for ptsAlert */\n info: {\n default: 'bg-info text-white dark:text-neutral-900',\n outlined: 'border-info border text-info'\n },\n question: {\n default: 'bg-question text-white dark:text-neutral-900',\n outlined: 'border-question border text-question'\n },\n /* TO CLEAN IN STRAPI */\n Question: {\n default: 'bg-question text-white dark:text-neutral-900',\n outlined: 'border-question border text-question'\n },\n tip: {\n default: 'bg-tip text-white dark:text-neutral-900',\n outlined: 'border-tip border text-tip'\n },\n}\n\nexport type TypeAlert = keyof typeof typeAlert\n\n\nexport const typeDivider = {\n base: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-neutral'\n },\n warning: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-warning'\n },\n success: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-success'\n },\n error: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-error'\n },\n /* this types is only for ptsAlert */\n info: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-info'\n },\n question: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-question'\n },\n /* TO CLEAN IN STRAPI */\n Question: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-question'\n },\n tip: {\n default: 'border dark:border-neutral-800',\n outlined: 'border-tip'\n },\n}\n\n\n"],"names":[],"mappings":"AAAO,MAAM,YAAY;AAAA,EACrB,MAAM;AAAA,IACF,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,SAAS;AAAA,IACL,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,SAAS;AAAA,IACL,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,OAAO;AAAA,IACH,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA;AAAA,EAGd,MAAM;AAAA,IACF,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,UAAU;AAAA,IACN,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA;AAAA,EAGd,UAAU;AAAA,IACP,SAAS;AAAA,IACR,UAAU;AAAA,EAAA;AAAA,EAEd,KAAK;AAAA,IACD,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAElB;AAKO,MAAM,cAAc;AAAA,EACvB,MAAM;AAAA,IACF,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,SAAS;AAAA,IACL,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,SAAS;AAAA,IACL,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,OAAO;AAAA,IACH,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA;AAAA,EAGd,MAAM;AAAA,IACF,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,UAAU;AAAA,IACN,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA;AAAA,EAGd,UAAU;AAAA,IACN,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAAA,EAEd,KAAK;AAAA,IACD,SAAS;AAAA,IACT,UAAU;AAAA,EAAA;AAElB;"}
|