ep-lib-ts 0.1.8 → 0.1.9

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.
Files changed (85) hide show
  1. package/dist/BgAudio-ca141b0f.js +5 -0
  2. package/dist/DisplayBox-38b3a1bd.js +5 -0
  3. package/dist/EpAlert-d5dcf3f1.js +5 -0
  4. package/dist/EpAudio-09920ab1.js +5 -0
  5. package/dist/EpBadge-d7da4b82.js +5 -0
  6. package/dist/EpBarChart-aa2d3bd3.js +5 -0
  7. package/dist/EpBtn-584a5fcb.js +5 -0
  8. package/dist/EpCard-522528d2.js +5 -0
  9. package/dist/EpCheckbox-fe632df9.js +36 -0
  10. package/dist/EpChip-524340fe.js +5 -0
  11. package/dist/EpDivider-88c6be66.js +5 -0
  12. package/dist/EpEdu-bfd8a980.js +5 -0
  13. package/dist/EpFlex-560567d3.js +5 -0
  14. package/dist/EpHeader-48f9a232.js +5 -0
  15. package/dist/EpIcon-2ba52cd4.js +5 -0
  16. package/dist/EpIframe-6c4453bb.js +5 -0
  17. package/dist/EpImg-99724654.js +5 -0
  18. package/dist/EpInput-f7992e3f.js +1171 -0
  19. package/dist/EpLineChart-655565a3.js +5 -0
  20. package/dist/EpLink-ab36acb1.js +5 -0
  21. package/dist/EpModal-d2df0421.js +5 -0
  22. package/dist/EpNothing-08f5601f.js +10 -0
  23. package/dist/EpQuestion-f9baa3e7.js +5 -0
  24. package/dist/EpQuote-8be6e8eb.js +5 -0
  25. package/dist/EpRadio-4f83a512.js +5 -0
  26. package/dist/EpReading-4b8eb5bf.js +5 -0
  27. package/dist/EpResource-42e0f1e3.js +5 -0
  28. package/dist/EpScope-609f5fbe.js +5 -0
  29. package/dist/EpSection-eaf62d9e.js +5 -0
  30. package/dist/EpSelect-ed79294a.js +31 -0
  31. package/dist/EpSoftware-0ca2b2d9.js +5 -0
  32. package/dist/EpSpinner-b50b86fd.js +5 -0
  33. package/dist/EpSwitch-1eaf9d3f.js +44 -0
  34. package/dist/EpTable-4eaf84c7.js +5 -0
  35. package/dist/EpTerm-dfd79f23.js +5 -0
  36. package/dist/EpText-deac2bec.js +5 -0
  37. package/dist/EpTextarea-67f751e9.js +41 -0
  38. package/dist/EpToggle-9755056a.js +44 -0
  39. package/dist/EpVideo-1d585085.js +5 -0
  40. package/dist/EpVideoPanopto-cb5441d9.js +5 -0
  41. package/dist/components/basics/EpText.vue.d.ts +13 -9
  42. package/dist/components/educationals/EpEdu.vue.d.ts +3 -2
  43. package/dist/components/educationals/EpReading.vue.d.ts +5 -4
  44. package/dist/components/educationals/EpResource.vue.d.ts +34 -1
  45. package/dist/components/educationals/EpScope.vue.d.ts +9 -0
  46. package/dist/components/forms/EpCheckbox.vue.d.ts +72 -0
  47. package/dist/components/forms/EpInput.vue.d.ts +98 -0
  48. package/dist/components/forms/EpRadio.vue.d.ts +69 -0
  49. package/dist/components/forms/EpSelect.vue.d.ts +83 -0
  50. package/dist/components/forms/EpSwitch.vue.d.ts +81 -0
  51. package/dist/components/forms/EpTextarea.vue.d.ts +90 -0
  52. package/dist/components/forms/EpToggle.vue.d.ts +81 -0
  53. package/dist/components/interactions/EpQuestion.vue.d.ts +90 -1
  54. package/dist/components/medias/EpAudio.vue.d.ts +3 -8
  55. package/dist/components/medias/EpLink.vue.d.ts +3 -2
  56. package/dist/components/medias/EpSoftware.vue.d.ts +3 -2
  57. package/dist/components/medias/EpVideo.vue.d.ts +3 -2
  58. package/dist/components/medias/EpVideoPanopto.vue.d.ts +3 -2
  59. package/dist/components/signages/EpAlert.vue.d.ts +10 -3
  60. package/dist/components/signages/EpNothing.vue.d.ts +2 -0
  61. package/dist/components/signages/EpQuote.vue.d.ts +9 -9
  62. package/dist/composables/useComponent.d.ts +6 -0
  63. package/dist/ep-lib-ts.js +41 -18489
  64. package/dist/ep-lib-ts.umd.cjs +42 -38
  65. package/dist/index-41c8e591.js +18790 -0
  66. package/dist/types/Answer.d.ts +15 -0
  67. package/dist/types/MandateLevel.d.ts +5 -0
  68. package/package.json +3 -2
  69. package/src/components/basics/EpCard.vue +1 -1
  70. package/src/components/basics/EpImg.vue +70 -40
  71. package/src/components/basics/EpText.vue +19 -5
  72. package/src/components/educationals/EpEdu.vue +11 -3
  73. package/src/components/educationals/EpReading.vue +10 -7
  74. package/src/components/educationals/EpResource.vue +66 -3
  75. package/src/components/educationals/EpScope.vue +14 -2
  76. package/src/components/forms/EpRadio.vue +2 -1
  77. package/src/components/interactions/EpQuestion.vue +176 -4
  78. package/src/components/medias/EpAudio.vue +2 -2
  79. package/src/components/medias/EpLink.vue +2 -1
  80. package/src/components/medias/EpSoftware.vue +4 -4
  81. package/src/components/medias/EpVideo.vue +7 -3
  82. package/src/components/medias/EpVideoPanopto.vue +2 -1
  83. package/src/components/signages/EpAlert.vue +19 -4
  84. package/src/components/signages/EpNothing.vue +5 -0
  85. package/src/components/signages/EpQuote.vue +23 -19
@@ -0,0 +1,5 @@
1
+ import { G as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { H as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { D as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { w as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { b as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { n as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { c as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { d as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,36 @@
1
+ import { defineComponent as u, toRefs as p, openBlock as f, createElementBlock as b, createElementVNode as a, unref as e, toDisplayString as m } from "vue";
2
+ const y = ["id", "type", "value", "disabled", "readonly", "checked"], h = ["for", "disabled"], B = /* @__PURE__ */ u({
3
+ __name: "EpCheckbox",
4
+ props: {
5
+ id: { default: "0" },
6
+ label: { default: "check" },
7
+ modelValue: { default: "" },
8
+ type: { default: "checkbox" },
9
+ disabled: { type: Boolean, default: !1 },
10
+ readonly: { type: Boolean, default: !1 },
11
+ checked: { type: Boolean, default: !1 }
12
+ },
13
+ emits: ["update:modelValue"],
14
+ setup(o, { emit: k }) {
15
+ const t = o, { id: l, label: n, type: c, modelValue: s, disabled: d, readonly: r, checked: i } = p(t);
16
+ return (_, x) => (f(), b("div", null, [
17
+ a("input", {
18
+ id: e(l),
19
+ type: e(c),
20
+ value: e(s),
21
+ class: "form-checkbox rounded border-neutral-300 text-blue-600 h-[1.125rem] w-[1.125rem] mr-2 disabled:opacity-40 disabled:cursor-not-allowed",
22
+ disabled: e(d),
23
+ readonly: e(r),
24
+ checked: e(i)
25
+ }, null, 8, y),
26
+ a("label", {
27
+ for: e(l),
28
+ class: "disabled:opacity-40 hover:pointer-events-none",
29
+ disabled: e(d)
30
+ }, m(e(n)), 9, h)
31
+ ]));
32
+ }
33
+ });
34
+ export {
35
+ B as default
36
+ };
@@ -0,0 +1,5 @@
1
+ import { e as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { f } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ f as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { p as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { g as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { E as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { h as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { x as m } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ m as default
5
+ };
@@ -0,0 +1,5 @@
1
+ import { i } from "./index-41c8e591.js";
2
+ import "vue";
3
+ export {
4
+ i as default
5
+ };