@devix-tecnologia/timeline-vue 1.1.1 → 1.1.2

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 (41) hide show
  1. package/README.md +41 -36
  2. package/dist/style.css +1 -1
  3. package/dist/timeline-vue.es.js +47 -47
  4. package/dist/types/components/timeline/organismos/Timeline.vue.d.ts +1 -0
  5. package/package.json +2 -2
  6. package/src/assets/vue.svg +0 -1
  7. package/src/components/timeline/atomos/AvatarTimeline.stories.ts +0 -32
  8. package/src/components/timeline/atomos/AvatarTimeline.vue +0 -51
  9. package/src/components/timeline/atomos/BoxData.stories.ts +0 -41
  10. package/src/components/timeline/atomos/BoxData.vue +0 -57
  11. package/src/components/timeline/atomos/Destaque.stories.ts +0 -24
  12. package/src/components/timeline/atomos/Destaque.vue +0 -39
  13. package/src/components/timeline/atomos/Hora.stories.ts +0 -36
  14. package/src/components/timeline/atomos/Hora.vue +0 -50
  15. package/src/components/timeline/atomos/IconeCategoria.stories.ts +0 -60
  16. package/src/components/timeline/atomos/IconeCategoria.vue +0 -110
  17. package/src/components/timeline/atomos/IconeStatus.stories.ts +0 -38
  18. package/src/components/timeline/atomos/IconeStatus.vue +0 -73
  19. package/src/components/timeline/atomos/SubtituloEvento.stories.ts +0 -24
  20. package/src/components/timeline/atomos/SubtituloEvento.vue +0 -33
  21. package/src/components/timeline/atomos/TituloEvento.stories.ts +0 -24
  22. package/src/components/timeline/atomos/TituloEvento.vue +0 -32
  23. package/src/components/timeline/index.ts +0 -7
  24. package/src/components/timeline/moleculas/DescricaoEvento.stories.ts +0 -31
  25. package/src/components/timeline/moleculas/DescricaoEvento.vue +0 -59
  26. package/src/components/timeline/moleculas/EventoTimeline.stories.ts +0 -94
  27. package/src/components/timeline/moleculas/EventoTimeline.vue +0 -158
  28. package/src/components/timeline/moleculas/HoraEvento.stories.ts +0 -37
  29. package/src/components/timeline/moleculas/HoraEvento.vue +0 -74
  30. package/src/components/timeline/moleculas/PerfilTimeline.stories.ts +0 -40
  31. package/src/components/timeline/moleculas/PerfilTimeline.vue +0 -76
  32. package/src/components/timeline/moleculas/SeparadorPeriodo.stories.ts +0 -42
  33. package/src/components/timeline/moleculas/SeparadorPeriodo.vue +0 -100
  34. package/src/components/timeline/moleculas/Topo.vue +0 -38
  35. package/src/components/timeline/organismos/Timeline.mock.ts +0 -311
  36. package/src/components/timeline/organismos/Timeline.stories.ts +0 -48
  37. package/src/components/timeline/organismos/Timeline.vue +0 -217
  38. package/src/components/timeline/type.ts +0 -34
  39. package/src/global.css +0 -98
  40. package/src/index.ts +0 -16
  41. package/src/vite-env.d.ts +0 -1
package/src/index.ts DELETED
@@ -1,16 +0,0 @@
1
- import { Plugin } from "vue";
2
- import * as components from "./components/timeline";
3
- import "./global.css";
4
-
5
- const Timeline: Plugin = {
6
- install(app, ...options) {
7
- for (const key in components) {
8
- // @ts-expect-error
9
- app.component(key, components[key]);
10
- }
11
- },
12
- };
13
-
14
- export default Timeline;
15
-
16
- export * from "./components/timeline";
package/src/vite-env.d.ts DELETED
@@ -1 +0,0 @@
1
- /// <reference types="vite/client" />