@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
@@ -14,7 +14,9 @@ type TipoEventoTimeline = {
14
14
  valor: Evento[];
15
15
  key: number;
16
16
  };
17
- declare const _default: import("vue").DefineComponent<{
17
+ declare const _default: typeof __VLS_export;
18
+ export default _default;
19
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
18
20
  perfilTimeline: {
19
21
  required: false;
20
22
  type: PropType<Perfil>;
@@ -23,13 +25,13 @@ declare const _default: import("vue").DefineComponent<{
23
25
  required: true;
24
26
  type: PropType<Evento[]>;
25
27
  };
26
- }, {
28
+ }>, {
27
29
  eventosPorTipo: import("vue").ComputedRef<TipoEventoTimeline[]>;
28
30
  scrollParaItemAtual: () => void;
29
31
  handleEventoClick: (evento: Evento, mouseEvent: MouseEvent) => void;
30
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
31
- eventoClick: (evento: Evento, mouseEvent: MouseEvent) => true;
32
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
32
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
33
+ eventoClick: (_evento: Evento, _mouseEvent: MouseEvent) => true;
34
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
33
35
  perfilTimeline: {
34
36
  required: false;
35
37
  type: PropType<Perfil>;
@@ -38,7 +40,368 @@ declare const _default: import("vue").DefineComponent<{
38
40
  required: true;
39
41
  type: PropType<Evento[]>;
40
42
  };
41
- }>> & {
42
- onEventoClick?: ((evento: Evento, mouseEvent: MouseEvent) => any) | undefined;
43
- }, {}, {}>;
44
- export default _default;
43
+ }>> & Readonly<{
44
+ onEventoClick?: ((_evento: Evento, _mouseEvent: MouseEvent) => any) | undefined;
45
+ }>, {}, {}, {
46
+ PerfilTimeline: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
47
+ imagemPerfil: {
48
+ type: StringConstructor;
49
+ };
50
+ nomePerfil: {
51
+ type: StringConstructor;
52
+ };
53
+ iconePerfil: {
54
+ type: StringConstructor;
55
+ };
56
+ formatoReduzido: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ }>, {
61
+ classes: import("vue").ComputedRef<{
62
+ 'formato-reduzido': boolean;
63
+ 'formato-normal': boolean;
64
+ }>;
65
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
66
+ imagemPerfil: {
67
+ type: StringConstructor;
68
+ };
69
+ nomePerfil: {
70
+ type: StringConstructor;
71
+ };
72
+ iconePerfil: {
73
+ type: StringConstructor;
74
+ };
75
+ formatoReduzido: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
79
+ }>> & Readonly<{}>, {
80
+ formatoReduzido: boolean;
81
+ }, {}, {
82
+ AvatarTimeline: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
83
+ imagem: {
84
+ type: StringConstructor;
85
+ };
86
+ icone: {
87
+ type: StringConstructor;
88
+ };
89
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
90
+ imagem: {
91
+ type: StringConstructor;
92
+ };
93
+ icone: {
94
+ type: StringConstructor;
95
+ };
96
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
97
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
98
+ SeparadorPeriodo: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
99
+ dataSeparador: {
100
+ required: true;
101
+ type: DateConstructor;
102
+ };
103
+ }>, {
104
+ mesCorrente: (mes: number) => any;
105
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
106
+ dataSeparador: {
107
+ required: true;
108
+ type: DateConstructor;
109
+ };
110
+ }>> & Readonly<{}>, {}, {}, {
111
+ BoxData: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
112
+ dataNumero: {
113
+ required: true;
114
+ type: NumberConstructor;
115
+ };
116
+ aparencia: {
117
+ type: PropType<import("../atomos/box-data/BoxData.types.js").Aparencia>;
118
+ default: string;
119
+ };
120
+ }>, {
121
+ classes: import("vue").ComputedRef<{
122
+ [x: string]: boolean;
123
+ }>;
124
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
125
+ dataNumero: {
126
+ required: true;
127
+ type: NumberConstructor;
128
+ };
129
+ aparencia: {
130
+ type: PropType<import("../atomos/box-data/BoxData.types.js").Aparencia>;
131
+ default: string;
132
+ };
133
+ }>> & Readonly<{}>, {
134
+ aparencia: import("../atomos/box-data/BoxData.types.js").Aparencia;
135
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
136
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
137
+ EventoTimeline: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
138
+ status: {
139
+ required: true;
140
+ type: PropType<import("../type").Status>;
141
+ };
142
+ criticidade: {
143
+ required: true;
144
+ type: PropType<import("../type").Criticidade>;
145
+ };
146
+ ehAtual: {
147
+ required: false;
148
+ type: BooleanConstructor;
149
+ default: boolean;
150
+ };
151
+ previstoPara: {
152
+ required: true;
153
+ type: DateConstructor;
154
+ };
155
+ realizadoEm: {
156
+ required: false;
157
+ type: PropType<Date | null>;
158
+ };
159
+ categoria: {
160
+ required: true;
161
+ type: PropType<import("../type").Categoria>;
162
+ };
163
+ titulo: {
164
+ required: true;
165
+ type: StringConstructor;
166
+ };
167
+ subtitulo: {
168
+ required: false;
169
+ type: StringConstructor;
170
+ };
171
+ textoDestaque: {
172
+ required: false;
173
+ type: StringConstructor;
174
+ };
175
+ clicavel: {
176
+ required: false;
177
+ type: BooleanConstructor;
178
+ default: boolean;
179
+ };
180
+ }>, {
181
+ handleClick: (_mouseEvent: MouseEvent) => void;
182
+ eventoSelecionado: import("vue").ComputedRef<{
183
+ atual: boolean;
184
+ padrao: boolean;
185
+ }>;
186
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
187
+ click: (_mouseEvent: MouseEvent) => true;
188
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
189
+ status: {
190
+ required: true;
191
+ type: PropType<import("../type").Status>;
192
+ };
193
+ criticidade: {
194
+ required: true;
195
+ type: PropType<import("../type").Criticidade>;
196
+ };
197
+ ehAtual: {
198
+ required: false;
199
+ type: BooleanConstructor;
200
+ default: boolean;
201
+ };
202
+ previstoPara: {
203
+ required: true;
204
+ type: DateConstructor;
205
+ };
206
+ realizadoEm: {
207
+ required: false;
208
+ type: PropType<Date | null>;
209
+ };
210
+ categoria: {
211
+ required: true;
212
+ type: PropType<import("../type").Categoria>;
213
+ };
214
+ titulo: {
215
+ required: true;
216
+ type: StringConstructor;
217
+ };
218
+ subtitulo: {
219
+ required: false;
220
+ type: StringConstructor;
221
+ };
222
+ textoDestaque: {
223
+ required: false;
224
+ type: StringConstructor;
225
+ };
226
+ clicavel: {
227
+ required: false;
228
+ type: BooleanConstructor;
229
+ default: boolean;
230
+ };
231
+ }>> & Readonly<{
232
+ onClick?: ((_mouseEvent: MouseEvent) => any) | undefined;
233
+ }>, {
234
+ ehAtual: boolean;
235
+ clicavel: boolean;
236
+ }, {}, {
237
+ IconeStatus: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
238
+ status: {
239
+ required: true;
240
+ type: PropType<import("../type").Status>;
241
+ };
242
+ }>, {
243
+ classes: import("vue").ComputedRef<{
244
+ [x: string]: boolean;
245
+ }>;
246
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
247
+ status: {
248
+ required: true;
249
+ type: PropType<import("../type").Status>;
250
+ };
251
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
252
+ IconeCategoria: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
253
+ iconeCategoria: {
254
+ type: StringConstructor;
255
+ required: true;
256
+ };
257
+ categoria: {
258
+ type: StringConstructor;
259
+ };
260
+ escuro: {
261
+ type: BooleanConstructor;
262
+ default: boolean;
263
+ };
264
+ tipo: {
265
+ type: StringConstructor;
266
+ };
267
+ borderColor: {
268
+ type: StringConstructor;
269
+ };
270
+ backgroundColor: {
271
+ type: StringConstructor;
272
+ };
273
+ }>, {
274
+ classes: import("vue").ComputedRef<{
275
+ [x: string]: boolean;
276
+ 'bg-escuro': boolean;
277
+ 'bg-claro': boolean;
278
+ }>;
279
+ style: import("vue").ComputedRef<{
280
+ borderColor: string | undefined;
281
+ backgroundColor: string | undefined;
282
+ }>;
283
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
284
+ iconeCategoria: {
285
+ type: StringConstructor;
286
+ required: true;
287
+ };
288
+ categoria: {
289
+ type: StringConstructor;
290
+ };
291
+ escuro: {
292
+ type: BooleanConstructor;
293
+ default: boolean;
294
+ };
295
+ tipo: {
296
+ type: StringConstructor;
297
+ };
298
+ borderColor: {
299
+ type: StringConstructor;
300
+ };
301
+ backgroundColor: {
302
+ type: StringConstructor;
303
+ };
304
+ }>> & Readonly<{}>, {
305
+ escuro: boolean;
306
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
307
+ HoraEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
308
+ horaPrevista: {
309
+ type: DateConstructor;
310
+ required: true;
311
+ };
312
+ horaRealizada: {
313
+ required: false;
314
+ type: PropType<Date | null>;
315
+ };
316
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
317
+ horaPrevista: {
318
+ type: DateConstructor;
319
+ required: true;
320
+ };
321
+ horaRealizada: {
322
+ required: false;
323
+ type: PropType<Date | null>;
324
+ };
325
+ }>> & Readonly<{}>, {}, {}, {
326
+ Hora: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
327
+ hora: {
328
+ required: true;
329
+ type: DateConstructor;
330
+ };
331
+ aparencia: {
332
+ type: StringConstructor;
333
+ default: string;
334
+ validator(aparencia: string): boolean;
335
+ };
336
+ }>, {
337
+ horas: import("vue").Ref<Date, Date>;
338
+ classes: import("vue").ComputedRef<{
339
+ [x: string]: boolean;
340
+ }>;
341
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
342
+ hora: {
343
+ required: true;
344
+ type: DateConstructor;
345
+ };
346
+ aparencia: {
347
+ type: StringConstructor;
348
+ default: string;
349
+ validator(aparencia: string): boolean;
350
+ };
351
+ }>> & Readonly<{}>, {
352
+ aparencia: string;
353
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
354
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
355
+ DescricaoEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
356
+ titulo: {
357
+ required: true;
358
+ type: StringConstructor;
359
+ };
360
+ subtitulo: {
361
+ required: false;
362
+ type: StringConstructor;
363
+ };
364
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
365
+ titulo: {
366
+ required: true;
367
+ type: StringConstructor;
368
+ };
369
+ subtitulo: {
370
+ required: false;
371
+ type: StringConstructor;
372
+ };
373
+ }>> & Readonly<{}>, {}, {}, {
374
+ TituloEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
375
+ titulo: {
376
+ required: true;
377
+ type: StringConstructor;
378
+ };
379
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
380
+ titulo: {
381
+ required: true;
382
+ type: StringConstructor;
383
+ };
384
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
385
+ SubtituloEvento: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
386
+ subtitulo: {
387
+ required: true;
388
+ type: StringConstructor;
389
+ };
390
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
391
+ subtitulo: {
392
+ required: true;
393
+ type: StringConstructor;
394
+ };
395
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
396
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
397
+ Destaque: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
398
+ texto: {
399
+ type: StringConstructor;
400
+ };
401
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
402
+ texto: {
403
+ type: StringConstructor;
404
+ };
405
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
406
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
407
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;