[READ-ONLY] Mirror of https://github.com/graphieros/vue-data-ui. An open source user-empowering data visualization Vue 3 components library for eloquent data storytelling vue-data-ui.graphieros.com/
charts components-library dashboard data-storytelling data-visualization donut gauge heatmap quadrant radar rating-stars scatter screenshot skeleton-loader sparkline table vue-data-ui vue3 vuejs vuejs3
3

Configure Feed

Select the types of activity you want to include in your feed.

chore(VueUiCarouselTable): add type defs for emits

graphieros (May 19, 2026, 5:20 PM +0200) 958077bb 67ddb334

+41 -5
+2 -2
manual-testing/backend/database.json
··· 1447 1447 "VueUiBullet": true, 1448 1448 "VueUiBump": true, 1449 1449 "VueUiCandlestick": true, 1450 - "VueUiCarouselTable": false, 1450 + "VueUiCarouselTable": true, 1451 1451 "VueUiChestnut": false, 1452 1452 "VueUiChord": false, 1453 1453 "VueUiCirclePack": false, ··· 1509 1509 "customCheckList": {}, 1510 1510 "id": "4b423dba-9fc5-45b8-9dca-20e1f2678b9e", 1511 1511 "createdAt": 1779169675598, 1512 - "updatedAt": 1779203112027 1512 + "updatedAt": 1779204006890 1513 1513 } 1514 1514 ] 1515 1515 }
+19 -1
types/vue-data-ui.d.ts
··· 12057 12057 dataset: VueUiCarouselTableDataset; 12058 12058 }; 12059 12059 12060 - const VueUiCarouselTableBase: DefineComponent<VueUiCarouselTableProps>; 12060 + export type VueUiCarouselTableEmitCopyAlt = { 12061 + dataset: VueUiCarouselTableDataset; 12062 + config: VueUiCarouselTableConfig; 12063 + }; 12064 + 12065 + export type VueUiCarouselTableEmits = { 12066 + copyAlt: (payload: VueUiCarouselTableEmitCopyAlt) => void; 12067 + }; 12068 + 12069 + const VueUiCarouselTableBase: DefineComponent< 12070 + VueUiCarouselTableProps, 12071 + {}, 12072 + {}, 12073 + {}, 12074 + {}, 12075 + {}, 12076 + {}, 12077 + VueUiCarouselTableEmits 12078 + >; 12061 12079 12062 12080 export const VueUiCarouselTable: typeof VueUiCarouselTableBase & { 12063 12081 new (): {