@devix-tecnologia/timeline-vue 3.1.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 +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/package.json CHANGED
@@ -1,53 +1,91 @@
1
1
  {
2
2
  "name": "@devix-tecnologia/timeline-vue",
3
3
  "private": false,
4
- "version": "3.1.0",
4
+ "version": "3.2.1",
5
5
  "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/devix-tecnologia/timeline-vue"
10
+ },
11
+ "keywords": [
12
+ "timeline",
13
+ "vue",
14
+ "timeline-vue",
15
+ "timeline-component",
16
+ "devix",
17
+ "linha-do-tempo"
18
+ ],
6
19
  "scripts": {
7
20
  "dev": "vite",
8
- "test:unit": "vitest",
9
- "build": "vue-tsc && vite build",
21
+ "test": "vitest run",
22
+ "test:dev": "vitest",
23
+ "build": "cross-env STORYBOOK=false vue-tsc && vite build",
10
24
  "preview": "vite preview",
11
- "storybook": "storybook dev -p 6006",
12
- "build-storybook": "storybook build",
13
- "semantic-release": "semantic-release"
25
+ "storybook": "cross-env STORYBOOK=true storybook dev -p 6006",
26
+ "build:storybook": "cross-env STORYBOOK=true storybook build",
27
+ "semantic-release": "semantic-release",
28
+ "lint": "eslint .",
29
+ "format": "prettier --write .",
30
+ "lint:fix": "eslint --fix .",
31
+ "typecheck": "vue-tsc --noEmit"
14
32
  },
15
33
  "dependencies": {
16
- "@fontsource/material-icons": "^5.0.18",
17
- "date-fns": "^3.6.0",
18
- "material-symbols": "^0.18.0",
19
- "storybook": "^8.1.4",
20
- "vue": "^3.0.0",
21
- "wrap-ansi": "npm:wrap-ansi@^9.0.0"
34
+ "@chromatic-com/storybook": "^4.1.3",
35
+ "@fontsource/material-icons": "^5.2.7",
36
+ "date-fns": "^4.1.0",
37
+ "material-symbols": "^0.40.2",
38
+ "vue": "^3.5.26",
39
+ "wrap-ansi": "^9.0.2"
22
40
  },
23
41
  "devDependencies": {
24
- "@semantic-release/git": "^10.0.1",
25
- "@semantic-release/github": "^10.0.5",
26
- "@semantic-release/npm": "^12.0.1",
27
- "@storybook/addon-a11y": "^8.1.4",
28
- "@storybook/addon-designs": "^8.0.2",
29
- "@storybook/addon-essentials": "^8.1.4",
30
- "@storybook/addon-interactions": "^8.1.4",
31
- "@storybook/addon-links": "^8.1.4",
32
- "@storybook/blocks": "^8.1.4",
33
- "@storybook/test": "^8.1.4",
34
- "@storybook/vue3": "^8.1.4",
35
- "@storybook/vue3-vite": "^8.1.4",
42
+ "@fullhuman/postcss-purgecss": "^7.0.2",
43
+ "@semantic-release/git": "10.0.1",
44
+ "@semantic-release/github": "12.0.2",
45
+ "@semantic-release/npm": "13.1.3",
46
+ "@storybook/addon-a11y": "^10.1.10",
47
+ "@storybook/addon-docs": "^10.1.10",
48
+ "@storybook/addon-links": "^10.1.10",
49
+ "@storybook/addon-vitest": "^10.1.10",
50
+ "@storybook/test-runner": "^0.24.2",
51
+ "@storybook/vue3": "^10.1.10",
52
+ "@storybook/vue3-vite": "^10.1.10",
36
53
  "@testing-library/vue": "^8.1.0",
37
- "@vitejs/plugin-vue": "^5.0.4",
38
- "@vitest/coverage-v8": "^1.6.0",
39
- "@vue/test-utils": "^2.4.1",
40
- "add": "^2.0.6",
41
- "happy-dom": "^14.11.2",
42
- "semantic-release": "^23.1.1",
43
- "typescript": "^5.0.2",
44
- "vite": "^5.2.12",
45
- "vite-plugin-dts": "^3.6.4",
46
- "vitest": "^1.6.0",
47
- "vue-tsc": "^2.0.19"
54
+ "@typescript-eslint/eslint-plugin": "^8.50.1",
55
+ "@typescript-eslint/parser": "^8.50.1",
56
+ "@vitejs/plugin-vue": "^6.0.3",
57
+ "@vitest/coverage-v8": "^4.0.16",
58
+ "@vue/test-utils": "^2.4.6",
59
+ "autoprefixer": "^10.4.23",
60
+ "cross-env": "^10.1.0",
61
+ "cssnano": "^7.1.2",
62
+ "eslint": "^9.39.2",
63
+ "globals": "^14.0.0",
64
+ "eslint-config-prettier": "^10.1.8",
65
+ "eslint-plugin-import": "^2.32.0",
66
+ "eslint-plugin-prettier": "^5.5.4",
67
+ "eslint-plugin-storybook": "^10.1.10",
68
+ "eslint-plugin-unused-imports": "^4.3.0",
69
+ "eslint-plugin-vue": "^10.6.2",
70
+ "happy-dom": "^20.0.11",
71
+ "postcss": "^8.5.6",
72
+ "postcss-load-config": "^6.0.1",
73
+ "postcss-plugin": "^1.0.0",
74
+ "prettier": "^3.7.4",
75
+ "rollup-plugin-visualizer": "^6.0.5",
76
+ "semantic-release": "25.0.2",
77
+ "storybook": "^10.1.10",
78
+ "typescript": "^5.9.3",
79
+ "vite": "^7.3.0",
80
+ "vite-plugin-dts": "^4.5.4",
81
+ "vitest": "^4.0.16",
82
+ "vue-eslint-parser": "^10.2.0",
83
+ "vue-tsc": "^3.2.1",
84
+ "playwright": "^1.57.0",
85
+ "@vitest/browser-playwright": "^4.0.16"
48
86
  },
49
87
  "resolutions": {
50
- "wrap-ansi": "npm:wrap-ansi@^9.0.0"
88
+ "wrap-ansi": "^9.0.0"
51
89
  },
52
90
  "files": [
53
91
  "dist"
@@ -62,5 +100,24 @@
62
100
  },
63
101
  "publishConfig": {
64
102
  "access": "public"
65
- }
103
+ },
104
+ "postcss": {
105
+ "map": false,
106
+ "plugins": {
107
+ "autoprefixer": {}
108
+ }
109
+ },
110
+ "author": "Devix Tecnologia",
111
+ "contributors": [
112
+ {
113
+ "name": "Sidarta Veloso",
114
+ "github": "https://github.com/sidartaveloso",
115
+ "linkedin": "https://www.linkedin.com/in/sidartaveloso"
116
+ },
117
+ {
118
+ "name": "Fernando Gatti",
119
+ "github": "https://github.com/gattifernando",
120
+ "linkedin": "https://www.linkedin.com/in/gattifernando/"
121
+ }
122
+ ]
66
123
  }
@@ -1,22 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<{
2
- dataNumero: {
3
- required: true;
4
- type: NumberConstructor;
5
- };
6
- aparencia: {
7
- type: StringConstructor;
8
- };
9
- }, {
10
- classes: import('vue').ComputedRef<{
11
- [x: string]: boolean;
12
- }>;
13
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
14
- dataNumero: {
15
- required: true;
16
- type: NumberConstructor;
17
- };
18
- aparencia: {
19
- type: StringConstructor;
20
- };
21
- }>>, {}, {}>;
22
- export default _default;