@coreui/vue-pro 4.8.0-next.0 → 4.8.0

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 (44) hide show
  1. package/README.md +1 -1
  2. package/dist/components/form/CFormCheck.d.ts +13 -0
  3. package/dist/components/form/CFormSwitch.d.ts +13 -0
  4. package/dist/components/index.d.ts +1 -0
  5. package/dist/components/multi-select/CMultiSelect.d.ts +35 -44
  6. package/dist/components/multi-select/CMultiSelectNativeSelect.d.ts +1 -1
  7. package/dist/components/multi-select/CMultiSelectOptions.d.ts +13 -11
  8. package/dist/components/multi-select/CMultiSelectSelection.d.ts +1 -1
  9. package/dist/components/multi-select/types.d.ts +14 -0
  10. package/dist/components/multi-select/utils.d.ts +6 -0
  11. package/dist/components/smart-table/CSmartTable.d.ts +1 -1
  12. package/dist/components/smart-table/CSmartTableHead.d.ts +1 -1
  13. package/dist/components/virtual-scroller/CVirtualScroller.d.ts +23 -0
  14. package/dist/components/virtual-scroller/index.d.ts +6 -0
  15. package/dist/index.es.js +249 -135
  16. package/dist/index.es.js.map +1 -1
  17. package/dist/index.js +249 -133
  18. package/dist/index.js.map +1 -1
  19. package/dist/utils/index.d.ts +1 -3
  20. package/package.json +1 -1
  21. package/src/components/carousel/CCarousel.ts +36 -34
  22. package/src/components/form/CFormCheck.ts +7 -0
  23. package/src/components/form/CFormSwitch.ts +7 -0
  24. package/src/components/index.ts +1 -0
  25. package/src/components/multi-select/CMultiSelect.ts +33 -89
  26. package/src/components/multi-select/CMultiSelectNativeSelect.ts +2 -1
  27. package/src/components/multi-select/CMultiSelectOptions.ts +31 -17
  28. package/src/components/multi-select/CMultiSelectSelection.ts +2 -1
  29. package/src/components/multi-select/types.ts +15 -0
  30. package/src/components/multi-select/utils.ts +92 -0
  31. package/src/components/virtual-scroller/CVirtualScroller.ts +109 -0
  32. package/src/components/virtual-scroller/index.ts +10 -0
  33. package/src/utils/index.ts +1 -3
  34. package/dist/components/accordion/CAccordionCollapse.d.ts +0 -22
  35. package/dist/components/multi-select/CMultiSelect copy.d.ts +0 -305
  36. package/dist/components/pagination/CSmartPagination.d.ts +0 -257
  37. package/dist/utils/calendar.d.ts +0 -23
  38. package/dist/utils/getNextSibling.d.ts +0 -2
  39. package/dist/utils/getPreviousSibling.d.ts +0 -2
  40. package/dist/utils/isObjectInArray.d.ts +0 -2
  41. package/dist/utils/isVisible.d.ts +0 -2
  42. package/dist/utils/time.d.ts +0 -21
  43. package/src/utils/getNextSibling.ts +0 -18
  44. package/src/utils/getPreviousSibling.ts +0 -18
package/README.md CHANGED
@@ -46,7 +46,7 @@
46
46
 
47
47
  Several quick start options are available:
48
48
 
49
- - [Download the latest release](https://github.com/coreui/coreui-vue-pro/archive/v4.7.0.zip)
49
+ - [Download the latest release](https://github.com/coreui/coreui-vue-pro/archive/v4.8.0.zip)
50
50
  - Clone the repo: `git clone https://github.com/coreui/coreui-vue-pro.git`
51
51
  - Install with [npm](https://www.npmjs.com/): `npm install @coreui/vue-pro`
52
52
  - Install with [yarn](https://yarnpkg.com/): `yarn add @coreui/vue-pro`
@@ -71,6 +71,12 @@ declare const CFormCheck: import("vue").DefineComponent<{
71
71
  type: (StringConstructor | BooleanConstructor)[];
72
72
  value: undefined;
73
73
  };
74
+ /**
75
+ * Put checkboxes or radios on the opposite side.
76
+ *
77
+ * @sinve 4.8.0
78
+ */
79
+ reverse: BooleanConstructor;
74
80
  /**
75
81
  * Display validation feedback in a styled tooltip.
76
82
  *
@@ -169,6 +175,12 @@ declare const CFormCheck: import("vue").DefineComponent<{
169
175
  type: (StringConstructor | BooleanConstructor)[];
170
176
  value: undefined;
171
177
  };
178
+ /**
179
+ * Put checkboxes or radios on the opposite side.
180
+ *
181
+ * @sinve 4.8.0
182
+ */
183
+ reverse: BooleanConstructor;
172
184
  /**
173
185
  * Display validation feedback in a styled tooltip.
174
186
  *
@@ -194,6 +206,7 @@ declare const CFormCheck: import("vue").DefineComponent<{
194
206
  onChange?: ((...args: any[]) => any) | undefined;
195
207
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
196
208
  }, {
209
+ reverse: boolean;
197
210
  type: string;
198
211
  invalid: boolean;
199
212
  valid: boolean;
@@ -24,6 +24,12 @@ declare const CFormSwitch: import("vue").DefineComponent<{
24
24
  type: (StringConstructor | BooleanConstructor)[];
25
25
  value: undefined;
26
26
  };
27
+ /**
28
+ * Put checkboxes or radios on the opposite side.
29
+ *
30
+ * @sinve 4.8.0
31
+ */
32
+ reverse: BooleanConstructor;
27
33
  /**
28
34
  * Size the component large or extra large. Works only with `switch`.
29
35
  *
@@ -76,6 +82,12 @@ declare const CFormSwitch: import("vue").DefineComponent<{
76
82
  type: (StringConstructor | BooleanConstructor)[];
77
83
  value: undefined;
78
84
  };
85
+ /**
86
+ * Put checkboxes or radios on the opposite side.
87
+ *
88
+ * @sinve 4.8.0
89
+ */
90
+ reverse: BooleanConstructor;
79
91
  /**
80
92
  * Size the component large or extra large. Works only with `switch`.
81
93
  *
@@ -104,6 +116,7 @@ declare const CFormSwitch: import("vue").DefineComponent<{
104
116
  onChange?: ((...args: any[]) => any) | undefined;
105
117
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
106
118
  }, {
119
+ reverse: boolean;
107
120
  type: string;
108
121
  invalid: boolean;
109
122
  valid: boolean;
@@ -43,4 +43,5 @@ export * from './tabs';
43
43
  export * from './time-picker';
44
44
  export * from './toast';
45
45
  export * from './tooltip';
46
+ export * from './virtual-scroller';
46
47
  export * from './widgets';
@@ -1,18 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- export interface Option {
3
- disabled?: boolean;
4
- label?: string;
5
- options?: Option[];
6
- order?: number;
7
- selected?: boolean;
8
- text: string;
9
- value: number | string;
10
- }
11
- export interface SelectedOption {
12
- disabled?: boolean;
13
- text: string;
14
- value: number | string;
15
- }
2
+ import type { Option } from './types';
16
3
  declare const CMultiSelect: import("vue").DefineComponent<{
17
4
  /**
18
5
  * Enables selection cleaner element.
@@ -21,7 +8,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
21
8
  */
22
9
  cleaner: {
23
10
  type: BooleanConstructor;
24
- required: false;
25
11
  default: boolean;
26
12
  };
27
13
  /**
@@ -29,7 +15,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
29
15
  */
30
16
  disabled: {
31
17
  type: BooleanConstructor;
32
- required: false;
33
18
  default: boolean;
34
19
  };
35
20
  /**
@@ -84,7 +69,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
84
69
  multiple: {
85
70
  type: BooleanConstructor;
86
71
  default: boolean;
87
- required: false;
88
72
  };
89
73
  /**
90
74
  * List of option elements.
@@ -92,7 +76,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
92
76
  options: {
93
77
  type: PropType<Option[]>;
94
78
  default: () => never[];
95
- required: false;
96
79
  };
97
80
  /**
98
81
  * Sets maxHeight of options list.
@@ -102,7 +85,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
102
85
  optionsMaxHeight: {
103
86
  type: (NumberConstructor | StringConstructor)[];
104
87
  default: string;
105
- required: false;
106
88
  };
107
89
  /**
108
90
  * Sets option style.
@@ -113,7 +95,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
113
95
  optionsStyle: {
114
96
  type: StringConstructor;
115
97
  default: string;
116
- required: false;
117
98
  validator: (value: string) => boolean;
118
99
  };
119
100
  /**
@@ -124,7 +105,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
124
105
  placeholder: {
125
106
  type: StringConstructor;
126
107
  default: string;
127
- required: false;
128
108
  };
129
109
  /**
130
110
  * Enables search input element.
@@ -132,7 +112,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
132
112
  search: {
133
113
  type: (StringConstructor | BooleanConstructor)[];
134
114
  default: boolean;
135
- required: false;
136
115
  validator: (value: boolean | string) => boolean;
137
116
  };
138
117
  /**
@@ -141,7 +120,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
141
120
  searchNoResultsLabel: {
142
121
  type: StringConstructor;
143
122
  default: string;
144
- required: false;
145
123
  };
146
124
  /**
147
125
  * Enables select all button.
@@ -150,7 +128,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
150
128
  */
151
129
  selectAll: {
152
130
  type: BooleanConstructor;
153
- required: false;
154
131
  default: boolean;
155
132
  };
156
133
  /**
@@ -160,7 +137,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
160
137
  */
161
138
  selectAllLabel: {
162
139
  type: StringConstructor;
163
- required: false;
164
140
  default: string;
165
141
  };
166
142
  /**
@@ -172,7 +148,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
172
148
  selectionType: {
173
149
  type: StringConstructor;
174
150
  default: string;
175
- required: false;
176
151
  validator: (value: string) => boolean;
177
152
  };
178
153
  /**
@@ -183,7 +158,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
183
158
  selectionTypeCounterText: {
184
159
  type: StringConstructor;
185
160
  default: string;
186
- required: false;
187
161
  };
188
162
  /**
189
163
  * Size the component small or large.
@@ -192,7 +166,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
192
166
  */
193
167
  size: {
194
168
  type: StringConstructor;
195
- required: false;
196
169
  validator: (value: string) => boolean;
197
170
  };
198
171
  /**
@@ -215,6 +188,12 @@ declare const CMultiSelect: import("vue").DefineComponent<{
215
188
  * @since 4.6.0
216
189
  */
217
190
  valid: BooleanConstructor;
191
+ /**
192
+ * Enable virtual scroller for the options list.
193
+ *
194
+ * @since 4.8.0
195
+ */
196
+ virtualScroller: BooleanConstructor;
218
197
  /**
219
198
  * Toggle the visibility of multi select dropdown.
220
199
  *
@@ -223,7 +202,16 @@ declare const CMultiSelect: import("vue").DefineComponent<{
223
202
  visible: {
224
203
  type: BooleanConstructor;
225
204
  default: boolean;
226
- required: false;
205
+ };
206
+ /**
207
+ *
208
+ * Amount of visible items when virtualScroller is set to `true`.
209
+ *
210
+ * @since 4.8.0
211
+ */
212
+ visibleItems: {
213
+ type: NumberConstructor;
214
+ default: number;
227
215
  };
228
216
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
229
217
  [key: string]: any;
@@ -235,7 +223,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
235
223
  */
236
224
  cleaner: {
237
225
  type: BooleanConstructor;
238
- required: false;
239
226
  default: boolean;
240
227
  };
241
228
  /**
@@ -243,7 +230,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
243
230
  */
244
231
  disabled: {
245
232
  type: BooleanConstructor;
246
- required: false;
247
233
  default: boolean;
248
234
  };
249
235
  /**
@@ -298,7 +284,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
298
284
  multiple: {
299
285
  type: BooleanConstructor;
300
286
  default: boolean;
301
- required: false;
302
287
  };
303
288
  /**
304
289
  * List of option elements.
@@ -306,7 +291,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
306
291
  options: {
307
292
  type: PropType<Option[]>;
308
293
  default: () => never[];
309
- required: false;
310
294
  };
311
295
  /**
312
296
  * Sets maxHeight of options list.
@@ -316,7 +300,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
316
300
  optionsMaxHeight: {
317
301
  type: (NumberConstructor | StringConstructor)[];
318
302
  default: string;
319
- required: false;
320
303
  };
321
304
  /**
322
305
  * Sets option style.
@@ -327,7 +310,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
327
310
  optionsStyle: {
328
311
  type: StringConstructor;
329
312
  default: string;
330
- required: false;
331
313
  validator: (value: string) => boolean;
332
314
  };
333
315
  /**
@@ -338,7 +320,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
338
320
  placeholder: {
339
321
  type: StringConstructor;
340
322
  default: string;
341
- required: false;
342
323
  };
343
324
  /**
344
325
  * Enables search input element.
@@ -346,7 +327,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
346
327
  search: {
347
328
  type: (StringConstructor | BooleanConstructor)[];
348
329
  default: boolean;
349
- required: false;
350
330
  validator: (value: boolean | string) => boolean;
351
331
  };
352
332
  /**
@@ -355,7 +335,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
355
335
  searchNoResultsLabel: {
356
336
  type: StringConstructor;
357
337
  default: string;
358
- required: false;
359
338
  };
360
339
  /**
361
340
  * Enables select all button.
@@ -364,7 +343,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
364
343
  */
365
344
  selectAll: {
366
345
  type: BooleanConstructor;
367
- required: false;
368
346
  default: boolean;
369
347
  };
370
348
  /**
@@ -374,7 +352,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
374
352
  */
375
353
  selectAllLabel: {
376
354
  type: StringConstructor;
377
- required: false;
378
355
  default: string;
379
356
  };
380
357
  /**
@@ -386,7 +363,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
386
363
  selectionType: {
387
364
  type: StringConstructor;
388
365
  default: string;
389
- required: false;
390
366
  validator: (value: string) => boolean;
391
367
  };
392
368
  /**
@@ -397,7 +373,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
397
373
  selectionTypeCounterText: {
398
374
  type: StringConstructor;
399
375
  default: string;
400
- required: false;
401
376
  };
402
377
  /**
403
378
  * Size the component small or large.
@@ -406,7 +381,6 @@ declare const CMultiSelect: import("vue").DefineComponent<{
406
381
  */
407
382
  size: {
408
383
  type: StringConstructor;
409
- required: false;
410
384
  validator: (value: string) => boolean;
411
385
  };
412
386
  /**
@@ -429,6 +403,12 @@ declare const CMultiSelect: import("vue").DefineComponent<{
429
403
  * @since 4.6.0
430
404
  */
431
405
  valid: BooleanConstructor;
406
+ /**
407
+ * Enable virtual scroller for the options list.
408
+ *
409
+ * @since 4.8.0
410
+ */
411
+ virtualScroller: BooleanConstructor;
432
412
  /**
433
413
  * Toggle the visibility of multi select dropdown.
434
414
  *
@@ -437,7 +417,16 @@ declare const CMultiSelect: import("vue").DefineComponent<{
437
417
  visible: {
438
418
  type: BooleanConstructor;
439
419
  default: boolean;
440
- required: false;
420
+ };
421
+ /**
422
+ *
423
+ * Amount of visible items when virtualScroller is set to `true`.
424
+ *
425
+ * @since 4.8.0
426
+ */
427
+ visibleItems: {
428
+ type: NumberConstructor;
429
+ default: number;
441
430
  };
442
431
  }>> & {
443
432
  onChange?: ((...args: any[]) => any) | undefined;
@@ -453,9 +442,11 @@ declare const CMultiSelect: import("vue").DefineComponent<{
453
442
  options: Option[];
454
443
  cleaner: boolean;
455
444
  placeholder: string;
445
+ visibleItems: number;
456
446
  optionsMaxHeight: string | number;
457
447
  optionsStyle: string;
458
448
  searchNoResultsLabel: string;
449
+ virtualScroller: boolean;
459
450
  selectionType: string;
460
451
  selectionTypeCounterText: string;
461
452
  selectAll: boolean;
@@ -1,5 +1,5 @@
1
1
  import { PropType, VNode } from 'vue';
2
- import { Option } from './CMultiSelect';
2
+ import type { Option } from './types';
3
3
  declare const CMultiSelectNativeSelect: import("vue").DefineComponent<{
4
4
  /**
5
5
  * It specifies that multiple options can be selected at once.
@@ -1,5 +1,5 @@
1
1
  import { PropType, VNode } from 'vue';
2
- import { Option } from './CMultiSelect';
2
+ import type { Option } from './types';
3
3
  declare const CMultiSelectOptions: import("vue").DefineComponent<{
4
4
  /**
5
5
  * List of option elements.
@@ -7,7 +7,6 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
7
7
  options: {
8
8
  type: PropType<Option[]>;
9
9
  default: () => never[];
10
- required: false;
11
10
  };
12
11
  /**
13
12
  * Sets maxHeight of options list.
@@ -17,7 +16,6 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
17
16
  optionsMaxHeight: {
18
17
  type: (NumberConstructor | StringConstructor)[];
19
18
  default: string;
20
- required: false;
21
19
  };
22
20
  /**
23
21
  * Sets option style.
@@ -28,7 +26,6 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
28
26
  optionsStyle: {
29
27
  type: StringConstructor;
30
28
  default: string;
31
- required: false;
32
29
  validator: (value: string) => boolean;
33
30
  };
34
31
  /**
@@ -37,12 +34,15 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
37
34
  searchNoResultsLabel: {
38
35
  type: StringConstructor;
39
36
  default: string;
40
- required: false;
41
37
  };
42
38
  selected: {
43
39
  type: PropType<Option[]>;
44
40
  default: () => never[];
45
- required: false;
41
+ };
42
+ virtualScroller: BooleanConstructor;
43
+ visibleItems: {
44
+ type: NumberConstructor;
45
+ default: number;
46
46
  };
47
47
  }, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
48
48
  [key: string]: any;
@@ -53,7 +53,6 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
53
53
  options: {
54
54
  type: PropType<Option[]>;
55
55
  default: () => never[];
56
- required: false;
57
56
  };
58
57
  /**
59
58
  * Sets maxHeight of options list.
@@ -63,7 +62,6 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
63
62
  optionsMaxHeight: {
64
63
  type: (NumberConstructor | StringConstructor)[];
65
64
  default: string;
66
- required: false;
67
65
  };
68
66
  /**
69
67
  * Sets option style.
@@ -74,7 +72,6 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
74
72
  optionsStyle: {
75
73
  type: StringConstructor;
76
74
  default: string;
77
- required: false;
78
75
  validator: (value: string) => boolean;
79
76
  };
80
77
  /**
@@ -83,20 +80,25 @@ declare const CMultiSelectOptions: import("vue").DefineComponent<{
83
80
  searchNoResultsLabel: {
84
81
  type: StringConstructor;
85
82
  default: string;
86
- required: false;
87
83
  };
88
84
  selected: {
89
85
  type: PropType<Option[]>;
90
86
  default: () => never[];
91
- required: false;
87
+ };
88
+ virtualScroller: BooleanConstructor;
89
+ visibleItems: {
90
+ type: NumberConstructor;
91
+ default: number;
92
92
  };
93
93
  }>> & {
94
94
  onOptionClick?: ((...args: any[]) => any) | undefined;
95
95
  }, {
96
96
  options: Option[];
97
97
  selected: Option[];
98
+ visibleItems: number;
98
99
  optionsMaxHeight: string | number;
99
100
  optionsStyle: string;
100
101
  searchNoResultsLabel: string;
102
+ virtualScroller: boolean;
101
103
  }>;
102
104
  export { CMultiSelectOptions };
@@ -1,5 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- import { Option } from './CMultiSelect';
2
+ import type { Option } from './types';
3
3
  declare const CMultiSelectSelection: import("vue").DefineComponent<{
4
4
  /**
5
5
  * It specifies that multiple options can be selected at once.
@@ -0,0 +1,14 @@
1
+ export type Option = {
2
+ disabled?: boolean;
3
+ label?: string;
4
+ options?: Option[];
5
+ order?: number;
6
+ selected?: boolean;
7
+ text: string;
8
+ value: number | string;
9
+ };
10
+ export type SelectedOption = {
11
+ disabled?: boolean;
12
+ text: string;
13
+ value: number | string;
14
+ };
@@ -0,0 +1,6 @@
1
+ import type { Option, SelectedOption } from './types';
2
+ export declare const filterOptionsList: (search: string, _options: Option[]) => Option[];
3
+ export declare const flattenArray: (options: Option[]) => Option[];
4
+ export declare const getNextSibling: (elem: HTMLElement, selector?: string) => Element | null | undefined;
5
+ export declare const getPreviousSibling: (elem: HTMLElement, selector?: string) => Element | null | undefined;
6
+ export declare const selectOptions: (options: Option[], selected: SelectedOption[], deselected?: Option[]) => SelectedOption[];
@@ -501,12 +501,12 @@ declare const CSmartTable: import("vue").DefineComponent<{
501
501
  onSorterChange?: ((...args: any[]) => any) | undefined;
502
502
  onTableFilterChange?: ((...args: any[]) => any) | undefined;
503
503
  }, {
504
- items: Item[];
505
504
  selected: Item[];
506
505
  header: boolean;
507
506
  cleaner: boolean;
508
507
  loading: boolean;
509
508
  activePage: number;
509
+ items: Item[];
510
510
  clickableRows: boolean;
511
511
  noItemsLabel: string;
512
512
  selectable: boolean;
@@ -54,8 +54,8 @@ declare const CSmartTableHead: import("vue").DefineComponent<{
54
54
  onSortClick?: ((...args: any[]) => any) | undefined;
55
55
  }, {
56
56
  component: string;
57
- items: Item[];
58
57
  columns: (string | Column)[];
58
+ items: Item[];
59
59
  selectable: boolean;
60
60
  }>;
61
61
  export { CSmartTableHead };
@@ -0,0 +1,23 @@
1
+ import { VNode } from 'vue';
2
+ declare const CVirtualScroller: import("vue").DefineComponent<{
3
+ /**
4
+ * Amount of visible items
5
+ */
6
+ visibleItems: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ }, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
11
+ [key: string]: any;
12
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
+ /**
14
+ * Amount of visible items
15
+ */
16
+ visibleItems: {
17
+ type: NumberConstructor;
18
+ default: number;
19
+ };
20
+ }>>, {
21
+ visibleItems: number;
22
+ }>;
23
+ export { CVirtualScroller };
@@ -0,0 +1,6 @@
1
+ import { App } from 'vue';
2
+ import { CVirtualScroller } from './CVirtualScroller';
3
+ declare const CVirtualScrollerPlugin: {
4
+ install: (app: App) => void;
5
+ };
6
+ export { CVirtualScroller, CVirtualScrollerPlugin };