@devix-tecnologia/timeline-vue 3.0.0 → 3.2.1

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 +2 -2
  3. package/dist/components/timeline/atomos/AvatarTimeline.vue.d.ts +3 -3
  4. package/dist/components/timeline/atomos/Botao.types.d.ts +14 -0
  5. package/dist/components/timeline/atomos/Botao.vue.d.ts +49 -0
  6. package/dist/components/timeline/atomos/Destaque.vue.d.ts +3 -3
  7. package/dist/components/timeline/atomos/Hora.vue.d.ts +7 -69
  8. package/dist/components/timeline/atomos/IconeCategoria.vue.d.ts +9 -9
  9. package/dist/components/timeline/atomos/IconeStatus.vue.d.ts +5 -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 +7 -7
  16. package/dist/components/timeline/moleculas/AreaSalvamento.vue.d.ts +55 -8
  17. package/dist/components/timeline/moleculas/BotaoStatus.vue.d.ts +73 -11
  18. package/dist/components/timeline/moleculas/CabecalhoEventoDetalhado.vue.d.ts +187 -5
  19. package/dist/components/timeline/moleculas/DescricaoEvento.vue.d.ts +26 -3
  20. package/dist/components/timeline/moleculas/EventoTimeline.vue.d.ts +181 -11
  21. package/dist/components/timeline/moleculas/HoraEvento.vue.d.ts +33 -4
  22. package/dist/components/timeline/moleculas/Observacoes.vue.d.ts +56 -9
  23. package/dist/components/timeline/moleculas/PerfilTimeline.vue.d.ts +24 -8
  24. package/dist/components/timeline/moleculas/SeparadorPeriodo.vue.d.ts +30 -4
  25. package/dist/components/timeline/moleculas/StatusEvento.vue.d.ts +2 -31
  26. package/dist/components/timeline/moleculas/Topo.vue.d.ts +11 -11
  27. package/dist/components/timeline/organismos/EditarEvento.vue.d.ts +71 -13
  28. package/dist/components/timeline/organismos/EventoDetalhado.vue.d.ts +2 -31
  29. package/dist/components/timeline/organismos/Timeline.vue.d.ts +371 -9
  30. package/dist/components/timeline/templates/AdiantarHorario.vue.d.ts +155 -0
  31. package/dist/components/timeline/templates/AdicionarObservacao.vue.d.ts +97 -14
  32. package/dist/components/timeline/templates/EditarStatus.vue.d.ts +197 -13
  33. package/dist/components/timeline/templates/TemplateTimeline.mock.d.ts +2 -2
  34. package/dist/components/timeline/templates/TemplateTimeline.vue.d.ts +2 -347
  35. package/dist/components/timeline/typeDetalhado.d.ts +1 -1
  36. package/dist/index.css +1 -0
  37. package/dist/index.d.ts +2 -2
  38. package/dist/timeline-vue.es.js +387 -404
  39. package/dist/timeline-vue.umd.js +2 -1
  40. package/dist/types/components/timeline/EventoDetalhado.mock.d.ts +2 -2
  41. package/dist/types/components/timeline/atomos/AvatarTimeline.vue.d.ts +5 -4
  42. package/dist/types/components/timeline/atomos/Botao.types.d.ts +14 -0
  43. package/dist/types/components/timeline/{moleculas → atomos}/Botao.vue.d.ts +18 -18
  44. package/dist/types/components/timeline/atomos/Destaque.vue.d.ts +5 -4
  45. package/dist/types/components/timeline/atomos/Hora.vue.d.ts +8 -69
  46. package/dist/types/components/timeline/atomos/IconeCategoria.vue.d.ts +10 -9
  47. package/dist/types/components/timeline/atomos/IconeStatus.vue.d.ts +6 -5
  48. package/dist/types/components/timeline/atomos/SubtituloEvento.vue.d.ts +5 -4
  49. package/dist/types/components/timeline/atomos/TituloEvento.vue.d.ts +5 -4
  50. package/dist/types/components/timeline/atomos/box-data/BoxData.types.d.ts +6 -0
  51. package/dist/types/components/timeline/atomos/box-data/BoxData.vue.d.ts +29 -0
  52. package/dist/types/components/timeline/atomos/box-data/index.d.ts +3 -0
  53. package/dist/types/components/timeline/index.d.ts +7 -7
  54. package/dist/types/components/timeline/moleculas/AreaSalvamento.vue.d.ts +56 -8
  55. package/dist/types/components/timeline/moleculas/BotaoStatus.vue.d.ts +74 -11
  56. package/dist/types/components/timeline/moleculas/CabecalhoEventoDetalhado.vue.d.ts +189 -6
  57. package/dist/types/components/timeline/moleculas/DescricaoEvento.vue.d.ts +28 -4
  58. package/dist/types/components/timeline/moleculas/EventoTimeline.vue.d.ts +182 -11
  59. package/dist/types/components/timeline/moleculas/HoraEvento.vue.d.ts +35 -5
  60. package/dist/types/components/timeline/moleculas/Observacoes.vue.d.ts +58 -10
  61. package/dist/types/components/timeline/moleculas/PerfilTimeline.vue.d.ts +26 -9
  62. package/dist/types/components/timeline/moleculas/SeparadorPeriodo.vue.d.ts +32 -5
  63. package/dist/types/components/timeline/moleculas/StatusEvento.vue.d.ts +2 -31
  64. package/dist/types/components/timeline/moleculas/Topo.vue.d.ts +12 -11
  65. package/dist/types/components/timeline/organismos/EditarEvento.vue.d.ts +73 -14
  66. package/dist/types/components/timeline/organismos/EventoDetalhado.vue.d.ts +2 -31
  67. package/dist/types/components/timeline/organismos/Timeline.vue.d.ts +372 -9
  68. package/dist/types/components/timeline/templates/AdiantarHorario.vue.d.ts +137 -135
  69. package/dist/types/components/timeline/templates/AdicionarObservacao.vue.d.ts +99 -15
  70. package/dist/types/components/timeline/templates/EditarStatus.vue.d.ts +198 -13
  71. package/dist/types/components/timeline/templates/TemplateEvento.vue.d.ts +3 -23
  72. package/dist/types/components/timeline/templates/TemplateTimeline.mock.d.ts +2 -2
  73. package/dist/types/components/timeline/templates/TemplateTimeline.vue.d.ts +2 -347
  74. package/dist/types/components/timeline/typeDetalhado.d.ts +1 -1
  75. package/dist/types/index.d.ts +3 -3
  76. package/package.json +95 -42
  77. package/dist/components/timeline/atomos/BoxData.vue.d.ts +0 -22
  78. package/dist/components/timeline/moleculas/Botao.vue.d.ts +0 -50
  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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.