@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
@@ -1,8 +1,10 @@
1
1
  import 'material-symbols/outlined.css';
2
2
  import { PropType } from 'vue';
3
3
  import { Status } from '../type';
4
- import { Aparencia } from './Botao.vue';
5
- declare const _default: import("vue").DefineComponent<{
4
+ import type { Aparencia } from '../atomos/Botao.types';
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
7
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
8
  aparencia: {
7
9
  type: PropType<Aparencia>;
8
10
  };
@@ -10,13 +12,13 @@ declare const _default: import("vue").DefineComponent<{
10
12
  type: PropType<Status>;
11
13
  default: string;
12
14
  };
13
- }, {
15
+ }>, {
14
16
  emitirClick: (mouseEvent: MouseEvent) => void;
15
17
  classes: import("vue").ComputedRef<{
16
18
  [x: string]: boolean;
17
19
  }>;
18
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
- click: (mouseEvent: MouseEvent) => true;
20
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
+ click: (_mouseEvent: MouseEvent) => true;
20
22
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
23
  aparencia: {
22
24
  type: PropType<Aparencia>;
@@ -25,9 +27,70 @@ declare const _default: import("vue").DefineComponent<{
25
27
  type: PropType<Status>;
26
28
  default: string;
27
29
  };
28
- }>> & {
29
- onClick?: ((mouseEvent: MouseEvent) => any) | undefined;
30
- }, {
30
+ }>> & Readonly<{
31
+ onClick?: ((_mouseEvent: MouseEvent) => any) | undefined;
32
+ }>, {
31
33
  status: Status;
32
- }, {}>;
33
- export default _default;
34
+ }, {}, {
35
+ Botao: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
36
+ titulo: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ icone: {
41
+ type: StringConstructor;
42
+ };
43
+ aparencia: {
44
+ type: PropType<Aparencia>;
45
+ default: Aparencia;
46
+ };
47
+ tamanho: {
48
+ type: PropType<import("../atomos/Botao.types").Tamanho>;
49
+ default: import("../atomos/Botao.types").Tamanho;
50
+ };
51
+ }>, {
52
+ handleClick: (_mouseEvent: MouseEvent) => void;
53
+ classes: import("vue").ComputedRef<{
54
+ [x: string]: boolean;
55
+ }>;
56
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
57
+ click: (_mouseEvent: MouseEvent) => true;
58
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
59
+ titulo: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ icone: {
64
+ type: StringConstructor;
65
+ };
66
+ aparencia: {
67
+ type: PropType<Aparencia>;
68
+ default: Aparencia;
69
+ };
70
+ tamanho: {
71
+ type: PropType<import("../atomos/Botao.types").Tamanho>;
72
+ default: import("../atomos/Botao.types").Tamanho;
73
+ };
74
+ }>> & Readonly<{
75
+ onClick?: ((_mouseEvent: MouseEvent) => any) | undefined;
76
+ }>, {
77
+ titulo: string;
78
+ aparencia: Aparencia;
79
+ tamanho: import("../atomos/Botao.types").Tamanho;
80
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
81
+ IconeStatus: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
82
+ status: {
83
+ required: true;
84
+ type: PropType<Status>;
85
+ };
86
+ }>, {
87
+ classes: import("vue").ComputedRef<{
88
+ [x: string]: boolean;
89
+ }>;
90
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
91
+ status: {
92
+ required: true;
93
+ type: PropType<Status>;
94
+ };
95
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
96
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -2,23 +2,206 @@ import 'material-symbols/outlined.css';
2
2
  import { PropType } from 'vue';
3
3
  import { EventoDetalhado } from '../typeDetalhado';
4
4
  import { Perfil } from '../type';
5
- declare const _default: import("vue").DefineComponent<{
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
7
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
8
  perfil: {
7
- required: true;
9
+ required: false;
8
10
  type: PropType<Perfil>;
9
11
  };
10
12
  evento: {
11
13
  required: true;
12
14
  type: PropType<EventoDetalhado>;
13
15
  };
14
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
16
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
17
  perfil: {
16
- required: true;
18
+ required: false;
17
19
  type: PropType<Perfil>;
18
20
  };
19
21
  evento: {
20
22
  required: true;
21
23
  type: PropType<EventoDetalhado>;
22
24
  };
23
- }>>, {}, {}>;
24
- export default _default;
25
+ }>> & Readonly<{}>, {}, {}, {
26
+ Botao: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
27
+ titulo: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ icone: {
32
+ type: StringConstructor;
33
+ };
34
+ aparencia: {
35
+ type: PropType<import("../atomos/Botao.types.js").Aparencia>;
36
+ default: import("../atomos/Botao.types.js").Aparencia;
37
+ };
38
+ tamanho: {
39
+ type: PropType<import("../atomos/Botao.types.js").Tamanho>;
40
+ default: import("../atomos/Botao.types.js").Tamanho;
41
+ };
42
+ }>, {
43
+ handleClick: (_mouseEvent: MouseEvent) => void;
44
+ classes: import("vue").ComputedRef<{
45
+ [x: string]: boolean;
46
+ }>;
47
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
48
+ click: (_mouseEvent: MouseEvent) => true;
49
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
50
+ titulo: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ icone: {
55
+ type: StringConstructor;
56
+ };
57
+ aparencia: {
58
+ type: PropType<import("../atomos/Botao.types.js").Aparencia>;
59
+ default: import("../atomos/Botao.types.js").Aparencia;
60
+ };
61
+ tamanho: {
62
+ type: PropType<import("../atomos/Botao.types.js").Tamanho>;
63
+ default: import("../atomos/Botao.types.js").Tamanho;
64
+ };
65
+ }>> & Readonly<{
66
+ onClick?: ((_mouseEvent: MouseEvent) => any) | undefined;
67
+ }>, {
68
+ titulo: string;
69
+ aparencia: import("../atomos/Botao.types.js").Aparencia;
70
+ tamanho: import("../atomos/Botao.types.js").Tamanho;
71
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
72
+ PerfilTimeline: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
73
+ imagemPerfil: {
74
+ type: StringConstructor;
75
+ };
76
+ nomePerfil: {
77
+ type: StringConstructor;
78
+ };
79
+ iconePerfil: {
80
+ type: StringConstructor;
81
+ };
82
+ formatoReduzido: {
83
+ type: BooleanConstructor;
84
+ default: boolean;
85
+ };
86
+ }>, {
87
+ classes: import("vue").ComputedRef<{
88
+ 'formato-reduzido': boolean;
89
+ 'formato-normal': boolean;
90
+ }>;
91
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
92
+ imagemPerfil: {
93
+ type: StringConstructor;
94
+ };
95
+ nomePerfil: {
96
+ type: StringConstructor;
97
+ };
98
+ iconePerfil: {
99
+ type: StringConstructor;
100
+ };
101
+ formatoReduzido: {
102
+ type: BooleanConstructor;
103
+ default: boolean;
104
+ };
105
+ }>> & Readonly<{}>, {
106
+ formatoReduzido: boolean;
107
+ }, {}, {
108
+ AvatarTimeline: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
109
+ imagem: {
110
+ type: StringConstructor;
111
+ };
112
+ icone: {
113
+ type: StringConstructor;
114
+ };
115
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
116
+ imagem: {
117
+ type: StringConstructor;
118
+ };
119
+ icone: {
120
+ type: StringConstructor;
121
+ };
122
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
123
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
124
+ IconeCategoria: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
125
+ iconeCategoria: {
126
+ type: StringConstructor;
127
+ required: true;
128
+ };
129
+ categoria: {
130
+ type: StringConstructor;
131
+ };
132
+ escuro: {
133
+ type: BooleanConstructor;
134
+ default: boolean;
135
+ };
136
+ tipo: {
137
+ type: StringConstructor;
138
+ };
139
+ borderColor: {
140
+ type: StringConstructor;
141
+ };
142
+ backgroundColor: {
143
+ type: StringConstructor;
144
+ };
145
+ }>, {
146
+ classes: import("vue").ComputedRef<{
147
+ [x: string]: boolean;
148
+ 'bg-escuro': boolean;
149
+ 'bg-claro': boolean;
150
+ }>;
151
+ style: import("vue").ComputedRef<{
152
+ borderColor: string | undefined;
153
+ backgroundColor: string | undefined;
154
+ }>;
155
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
156
+ iconeCategoria: {
157
+ type: StringConstructor;
158
+ required: true;
159
+ };
160
+ categoria: {
161
+ type: StringConstructor;
162
+ };
163
+ escuro: {
164
+ type: BooleanConstructor;
165
+ default: boolean;
166
+ };
167
+ tipo: {
168
+ type: StringConstructor;
169
+ };
170
+ borderColor: {
171
+ type: StringConstructor;
172
+ };
173
+ backgroundColor: {
174
+ type: StringConstructor;
175
+ };
176
+ }>> & Readonly<{}>, {
177
+ escuro: boolean;
178
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
179
+ Hora: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
180
+ hora: {
181
+ required: true;
182
+ type: DateConstructor;
183
+ };
184
+ aparencia: {
185
+ type: StringConstructor;
186
+ default: string;
187
+ validator(aparencia: string): boolean;
188
+ };
189
+ }>, {
190
+ horas: import("vue").Ref<Date, Date>;
191
+ classes: import("vue").ComputedRef<{
192
+ [x: string]: boolean;
193
+ }>;
194
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
195
+ hora: {
196
+ required: true;
197
+ type: DateConstructor;
198
+ };
199
+ aparencia: {
200
+ type: StringConstructor;
201
+ default: string;
202
+ validator(aparencia: string): boolean;
203
+ };
204
+ }>> & Readonly<{}>, {
205
+ aparencia: string;
206
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
207
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -1,4 +1,6 @@
1
- declare const _default: import("vue").DefineComponent<{
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
4
  titulo: {
3
5
  required: true;
4
6
  type: StringConstructor;
@@ -7,7 +9,7 @@ declare const _default: import("vue").DefineComponent<{
7
9
  required: false;
8
10
  type: StringConstructor;
9
11
  };
10
- }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
13
  titulo: {
12
14
  required: true;
13
15
  type: StringConstructor;
@@ -16,5 +18,27 @@ declare const _default: import("vue").DefineComponent<{
16
18
  required: false;
17
19
  type: StringConstructor;
18
20
  };
19
- }>>, {}, {}>;
20
- export default _default;
21
+ }>> & Readonly<{}>, {}, {}, {
22
+ TituloEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
23
+ titulo: {
24
+ required: true;
25
+ type: StringConstructor;
26
+ };
27
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
+ titulo: {
29
+ required: true;
30
+ type: StringConstructor;
31
+ };
32
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
33
+ SubtituloEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
34
+ subtitulo: {
35
+ required: true;
36
+ type: StringConstructor;
37
+ };
38
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
39
+ subtitulo: {
40
+ required: true;
41
+ type: StringConstructor;
42
+ };
43
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
44
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -1,6 +1,8 @@
1
1
  import { PropType } from 'vue';
2
2
  import { Categoria, Status, Criticidade } from '../type';
3
- declare const _default: import("vue").DefineComponent<{
3
+ declare const _default: typeof __VLS_export;
4
+ export default _default;
5
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
6
  status: {
5
7
  required: true;
6
8
  type: PropType<Status>;
@@ -43,14 +45,14 @@ declare const _default: import("vue").DefineComponent<{
43
45
  type: BooleanConstructor;
44
46
  default: boolean;
45
47
  };
46
- }, {
47
- handleClick: (mouseEvent: MouseEvent) => void;
48
+ }>, {
49
+ handleClick: (_mouseEvent: MouseEvent) => void;
48
50
  eventoSelecionado: import("vue").ComputedRef<{
49
51
  atual: boolean;
50
52
  padrao: boolean;
51
53
  }>;
52
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
53
- click: (mouseEvent: MouseEvent) => true;
54
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
55
+ click: (_mouseEvent: MouseEvent) => true;
54
56
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
55
57
  status: {
56
58
  required: true;
@@ -94,10 +96,179 @@ declare const _default: import("vue").DefineComponent<{
94
96
  type: BooleanConstructor;
95
97
  default: boolean;
96
98
  };
97
- }>> & {
98
- onClick?: ((mouseEvent: MouseEvent) => any) | undefined;
99
- }, {
99
+ }>> & Readonly<{
100
+ onClick?: ((_mouseEvent: MouseEvent) => any) | undefined;
101
+ }>, {
100
102
  ehAtual: boolean;
101
103
  clicavel: boolean;
102
- }, {}>;
103
- export default _default;
104
+ }, {}, {
105
+ IconeStatus: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
106
+ status: {
107
+ required: true;
108
+ type: PropType<Status>;
109
+ };
110
+ }>, {
111
+ classes: import("vue").ComputedRef<{
112
+ [x: string]: boolean;
113
+ }>;
114
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
115
+ status: {
116
+ required: true;
117
+ type: PropType<Status>;
118
+ };
119
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
120
+ IconeCategoria: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
121
+ iconeCategoria: {
122
+ type: StringConstructor;
123
+ required: true;
124
+ };
125
+ categoria: {
126
+ type: StringConstructor;
127
+ };
128
+ escuro: {
129
+ type: BooleanConstructor;
130
+ default: boolean;
131
+ };
132
+ tipo: {
133
+ type: StringConstructor;
134
+ };
135
+ borderColor: {
136
+ type: StringConstructor;
137
+ };
138
+ backgroundColor: {
139
+ type: StringConstructor;
140
+ };
141
+ }>, {
142
+ classes: import("vue").ComputedRef<{
143
+ [x: string]: boolean;
144
+ 'bg-escuro': boolean;
145
+ 'bg-claro': boolean;
146
+ }>;
147
+ style: import("vue").ComputedRef<{
148
+ borderColor: string | undefined;
149
+ backgroundColor: string | undefined;
150
+ }>;
151
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
152
+ iconeCategoria: {
153
+ type: StringConstructor;
154
+ required: true;
155
+ };
156
+ categoria: {
157
+ type: StringConstructor;
158
+ };
159
+ escuro: {
160
+ type: BooleanConstructor;
161
+ default: boolean;
162
+ };
163
+ tipo: {
164
+ type: StringConstructor;
165
+ };
166
+ borderColor: {
167
+ type: StringConstructor;
168
+ };
169
+ backgroundColor: {
170
+ type: StringConstructor;
171
+ };
172
+ }>> & Readonly<{}>, {
173
+ escuro: boolean;
174
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
175
+ HoraEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
176
+ horaPrevista: {
177
+ type: DateConstructor;
178
+ required: true;
179
+ };
180
+ horaRealizada: {
181
+ required: false;
182
+ type: PropType<Date | null>;
183
+ };
184
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
185
+ horaPrevista: {
186
+ type: DateConstructor;
187
+ required: true;
188
+ };
189
+ horaRealizada: {
190
+ required: false;
191
+ type: PropType<Date | null>;
192
+ };
193
+ }>> & Readonly<{}>, {}, {}, {
194
+ Hora: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
195
+ hora: {
196
+ required: true;
197
+ type: DateConstructor;
198
+ };
199
+ aparencia: {
200
+ type: StringConstructor;
201
+ default: string;
202
+ validator(aparencia: string): boolean;
203
+ };
204
+ }>, {
205
+ horas: import("vue").Ref<Date, Date>;
206
+ classes: import("vue").ComputedRef<{
207
+ [x: string]: boolean;
208
+ }>;
209
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
210
+ hora: {
211
+ required: true;
212
+ type: DateConstructor;
213
+ };
214
+ aparencia: {
215
+ type: StringConstructor;
216
+ default: string;
217
+ validator(aparencia: string): boolean;
218
+ };
219
+ }>> & Readonly<{}>, {
220
+ aparencia: string;
221
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
222
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
223
+ DescricaoEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
224
+ titulo: {
225
+ required: true;
226
+ type: StringConstructor;
227
+ };
228
+ subtitulo: {
229
+ required: false;
230
+ type: StringConstructor;
231
+ };
232
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
233
+ titulo: {
234
+ required: true;
235
+ type: StringConstructor;
236
+ };
237
+ subtitulo: {
238
+ required: false;
239
+ type: StringConstructor;
240
+ };
241
+ }>> & Readonly<{}>, {}, {}, {
242
+ TituloEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
243
+ titulo: {
244
+ required: true;
245
+ type: StringConstructor;
246
+ };
247
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
248
+ titulo: {
249
+ required: true;
250
+ type: StringConstructor;
251
+ };
252
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
253
+ SubtituloEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
254
+ subtitulo: {
255
+ required: true;
256
+ type: StringConstructor;
257
+ };
258
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
259
+ subtitulo: {
260
+ required: true;
261
+ type: StringConstructor;
262
+ };
263
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
264
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
265
+ Destaque: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
266
+ texto: {
267
+ type: StringConstructor;
268
+ };
269
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
270
+ texto: {
271
+ type: StringConstructor;
272
+ };
273
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
274
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -1,5 +1,7 @@
1
- import { PropType } from "vue";
2
- declare const _default: import("vue").DefineComponent<{
1
+ import { PropType } from 'vue';
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
4
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
5
  horaPrevista: {
4
6
  type: DateConstructor;
5
7
  required: true;
@@ -8,7 +10,7 @@ declare const _default: import("vue").DefineComponent<{
8
10
  required: false;
9
11
  type: PropType<Date | null>;
10
12
  };
11
- }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
13
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
14
  horaPrevista: {
13
15
  type: DateConstructor;
14
16
  required: true;
@@ -17,5 +19,33 @@ declare const _default: import("vue").DefineComponent<{
17
19
  required: false;
18
20
  type: PropType<Date | null>;
19
21
  };
20
- }>>, {}, {}>;
21
- export default _default;
22
+ }>> & Readonly<{}>, {}, {}, {
23
+ Hora: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
24
+ hora: {
25
+ required: true;
26
+ type: DateConstructor;
27
+ };
28
+ aparencia: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ validator(aparencia: string): boolean;
32
+ };
33
+ }>, {
34
+ horas: import("vue").Ref<Date, Date>;
35
+ classes: import("vue").ComputedRef<{
36
+ [x: string]: boolean;
37
+ }>;
38
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
39
+ hora: {
40
+ required: true;
41
+ type: DateConstructor;
42
+ };
43
+ aparencia: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ validator(aparencia: string): boolean;
47
+ };
48
+ }>> & Readonly<{}>, {
49
+ aparencia: string;
50
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
51
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;