@devix-tecnologia/timeline-vue 3.1.0 → 3.2.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 (86) hide show
  1. package/README.md +87 -24
  2. package/dist/components/timeline/EventoDetalhado.mock.d.ts +0 -1
  3. package/dist/components/timeline/atomos/AvatarTimeline.vue.d.ts +3 -4
  4. package/dist/components/timeline/atomos/Botao.types.d.ts +14 -0
  5. package/dist/components/timeline/{moleculas → atomos}/Botao.vue.d.ts +11 -23
  6. package/dist/components/timeline/atomos/Destaque.vue.d.ts +3 -3
  7. package/dist/components/timeline/atomos/Hora.vue.d.ts +6 -6
  8. package/dist/components/timeline/atomos/IconeCategoria.vue.d.ts +7 -8
  9. package/dist/components/timeline/atomos/IconeStatus.vue.d.ts +4 -5
  10. package/dist/components/timeline/atomos/SubtituloEvento.vue.d.ts +3 -3
  11. package/dist/components/timeline/atomos/TituloEvento.vue.d.ts +3 -3
  12. package/dist/components/timeline/atomos/box-data/BoxData.types.d.ts +6 -0
  13. package/dist/components/timeline/atomos/box-data/BoxData.vue.d.ts +28 -0
  14. package/dist/components/timeline/atomos/box-data/index.d.ts +3 -0
  15. package/dist/components/timeline/index.d.ts +2 -3
  16. package/dist/components/timeline/moleculas/AreaSalvamento.vue.d.ts +53 -7
  17. package/dist/components/timeline/moleculas/BotaoStatus.vue.d.ts +71 -10
  18. package/dist/components/timeline/moleculas/CabecalhoEventoDetalhado.vue.d.ts +187 -6
  19. package/dist/components/timeline/moleculas/DescricaoEvento.vue.d.ts +26 -3
  20. package/dist/components/timeline/moleculas/EventoTimeline.vue.d.ts +179 -10
  21. package/dist/components/timeline/moleculas/HoraEvento.vue.d.ts +32 -4
  22. package/dist/components/timeline/moleculas/Observacoes.vue.d.ts +55 -9
  23. package/dist/components/timeline/moleculas/PerfilTimeline.vue.d.ts +23 -8
  24. package/dist/components/timeline/moleculas/SeparadorPeriodo.vue.d.ts +30 -4
  25. package/dist/components/timeline/moleculas/StatusEvento.vue.d.ts +2 -32
  26. package/dist/components/timeline/moleculas/Topo.vue.d.ts +9 -10
  27. package/dist/components/timeline/organismos/EditarEvento.vue.d.ts +70 -13
  28. package/dist/components/timeline/organismos/EventoDetalhado.vue.d.ts +2 -32
  29. package/dist/components/timeline/organismos/Timeline.mock.d.ts +0 -1
  30. package/dist/components/timeline/organismos/Timeline.vue.d.ts +369 -8
  31. package/dist/components/timeline/templates/AdiantarHorario.vue.d.ts +155 -0
  32. package/dist/components/timeline/templates/AdicionarObservacao.vue.d.ts +95 -13
  33. package/dist/components/timeline/templates/EditarStatus.vue.d.ts +195 -12
  34. package/dist/components/timeline/templates/TemplateTimeline.mock.d.ts +0 -1
  35. package/dist/components/timeline/templates/TemplateTimeline.vue.d.ts +2 -99
  36. package/dist/components/timeline/typeDetalhado.d.ts +0 -1
  37. package/dist/index.css +1 -0
  38. package/dist/index.d.ts +0 -1
  39. package/dist/timeline-vue.es.js +337 -341
  40. package/dist/timeline-vue.umd.js +2 -1
  41. package/dist/types/components/timeline/EventoDetalhado.mock.d.ts +2 -2
  42. package/dist/types/components/timeline/atomos/AvatarTimeline.vue.d.ts +5 -4
  43. package/dist/types/components/timeline/atomos/Botao.types.d.ts +14 -0
  44. package/dist/types/components/timeline/{moleculas → atomos}/Botao.vue.d.ts +12 -22
  45. package/dist/types/components/timeline/atomos/Destaque.vue.d.ts +5 -4
  46. package/dist/types/components/timeline/atomos/Hora.vue.d.ts +8 -7
  47. package/dist/types/components/timeline/atomos/IconeCategoria.vue.d.ts +10 -9
  48. package/dist/types/components/timeline/atomos/IconeStatus.vue.d.ts +6 -5
  49. package/dist/types/components/timeline/atomos/SubtituloEvento.vue.d.ts +5 -4
  50. package/dist/types/components/timeline/atomos/TituloEvento.vue.d.ts +5 -4
  51. package/dist/types/components/timeline/atomos/box-data/BoxData.types.d.ts +6 -0
  52. package/dist/types/components/timeline/atomos/box-data/BoxData.vue.d.ts +29 -0
  53. package/dist/types/components/timeline/atomos/box-data/index.d.ts +3 -0
  54. package/dist/types/components/timeline/index.d.ts +7 -7
  55. package/dist/types/components/timeline/moleculas/AreaSalvamento.vue.d.ts +56 -8
  56. package/dist/types/components/timeline/moleculas/BotaoStatus.vue.d.ts +73 -10
  57. package/dist/types/components/timeline/moleculas/CabecalhoEventoDetalhado.vue.d.ts +189 -6
  58. package/dist/types/components/timeline/moleculas/DescricaoEvento.vue.d.ts +28 -4
  59. package/dist/types/components/timeline/moleculas/EventoTimeline.vue.d.ts +181 -10
  60. package/dist/types/components/timeline/moleculas/HoraEvento.vue.d.ts +35 -5
  61. package/dist/types/components/timeline/moleculas/Observacoes.vue.d.ts +57 -9
  62. package/dist/types/components/timeline/moleculas/PerfilTimeline.vue.d.ts +26 -9
  63. package/dist/types/components/timeline/moleculas/SeparadorPeriodo.vue.d.ts +32 -5
  64. package/dist/types/components/timeline/moleculas/StatusEvento.vue.d.ts +2 -31
  65. package/dist/types/components/timeline/moleculas/Topo.vue.d.ts +11 -10
  66. package/dist/types/components/timeline/organismos/EditarEvento.vue.d.ts +72 -13
  67. package/dist/types/components/timeline/organismos/EventoDetalhado.vue.d.ts +2 -31
  68. package/dist/types/components/timeline/organismos/Timeline.vue.d.ts +371 -8
  69. package/dist/types/components/timeline/templates/AdiantarHorario.vue.d.ts +135 -9
  70. package/dist/types/components/timeline/templates/AdicionarObservacao.vue.d.ts +98 -14
  71. package/dist/types/components/timeline/templates/EditarStatus.vue.d.ts +197 -12
  72. package/dist/types/components/timeline/templates/TemplateEvento.vue.d.ts +3 -23
  73. package/dist/types/components/timeline/templates/TemplateTimeline.mock.d.ts +2 -2
  74. package/dist/types/components/timeline/templates/TemplateTimeline.vue.d.ts +2 -99
  75. package/dist/types/components/timeline/typeDetalhado.d.ts +1 -1
  76. package/dist/types/index.d.ts +3 -3
  77. package/package.json +94 -37
  78. package/dist/components/timeline/atomos/BoxData.vue.d.ts +0 -22
  79. package/dist/components/timeline/organismos/MyComponent.test.d.ts +0 -1
  80. package/dist/style.css +0 -1
  81. package/dist/timeline-vue.cjs.js +0 -1
  82. package/dist/types/components/timeline/atomos/BoxData.vue.d.ts +0 -22
  83. package/dist/types/components/timeline/organismos/MyComponent.test.d.ts +0 -1
  84. package/dist/types/components/timeline/organismos/MyComponent.vue.d.ts +0 -11
  85. /package/dist/components/timeline/{moleculas → atomos}/Botao.test.d.ts +0 -0
  86. /package/dist/types/components/timeline/{moleculas → atomos}/Botao.test.d.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { Plugin } from 'vue';
2
-
3
2
  declare const Timeline: Plugin;
4
3
  export { Timeline };
5
4
  export * from './components/timeline';