Skip to content

Commit ac5e459

Browse files
authored
Merge pull request #210 from graphieros/ft-package-optimization
Ft package optimization
2 parents fa9bafd + 6626cdc commit ac5e459

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-data-ui",
33
"private": false,
4-
"version": "2.11.2",
4+
"version": "2.11.3-beta.0",
55
"type": "module",
66
"description": "A user-empowering data visualization Vue 3 components library for eloquent data storytelling",
77
"keywords": [
@@ -75,7 +75,6 @@
7575
},
7676
"./style.css": "./dist/style.css"
7777
},
78-
"main": "dist/vue-data-ui.cjs",
7978
"module": "dist/vue-data-ui.js",
8079
"types": "dist/types/vue-data-ui.d.ts",
8180
"scripts": {

src/components/vue-ui-chord.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ import { throttle } from '../canvas-lib';
4242
import { useResponsive } from '../useResponsive';
4343
import themes from "../themes.json";
4444
45-
// TODO: patterns
45+
/**
46+
*
47+
* - Diplay percentages per group (#donut)
48+
* - Add grab cursor when mousedown
49+
*
50+
*/
4651
4752
const { vue_ui_chord: DEFAULT_CONFIG } = useConfig();
4853

vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default defineConfig({
3131
name: "VueDataUi",
3232
// the name of the output files when the build is run
3333
fileName: "vue-data-ui",
34-
formats: ['es', 'cjs']
34+
formats: ['es']
3535
},
3636
rollupOptions: {
3737
// make sure to externalize deps that shouldn't be bundled

0 commit comments

Comments
 (0)