@vanduo-oss/vd3-cbun 1.0.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 (45) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/LICENSE +22 -0
  3. package/README.md +160 -0
  4. package/SKILL.md +119 -0
  5. package/dist/charts/core.d.ts +273 -0
  6. package/dist/charts/index.cjs +1828 -0
  7. package/dist/charts/index.cjs.map +7 -0
  8. package/dist/charts/index.d.ts +65 -0
  9. package/dist/charts/index.js +1805 -0
  10. package/dist/charts/index.js.map +7 -0
  11. package/dist/charts/vd3-charts.css +51 -0
  12. package/dist/charts/vue.d.ts +86 -0
  13. package/dist/flowchart/core.d.ts +288 -0
  14. package/dist/flowchart/index.cjs +3447 -0
  15. package/dist/flowchart/index.cjs.map +7 -0
  16. package/dist/flowchart/index.d.ts +54 -0
  17. package/dist/flowchart/index.js +3424 -0
  18. package/dist/flowchart/index.js.map +7 -0
  19. package/dist/flowchart/vd3-flowchart.css +600 -0
  20. package/dist/flowchart/vue.d.ts +66 -0
  21. package/dist/hex-grid/core.d.ts +200 -0
  22. package/dist/hex-grid/hex-math.cjs +162 -0
  23. package/dist/hex-grid/hex-math.cjs.map +7 -0
  24. package/dist/hex-grid/hex-math.d.ts +119 -0
  25. package/dist/hex-grid/hex-math.js +141 -0
  26. package/dist/hex-grid/hex-math.js.map +7 -0
  27. package/dist/hex-grid/index.cjs +915 -0
  28. package/dist/hex-grid/index.cjs.map +7 -0
  29. package/dist/hex-grid/index.d.ts +15 -0
  30. package/dist/hex-grid/index.js +894 -0
  31. package/dist/hex-grid/index.js.map +7 -0
  32. package/dist/hex-grid/vue.d.ts +14 -0
  33. package/dist/index.d.ts +13 -0
  34. package/dist/index.js +11 -0
  35. package/dist/index.js.map +7 -0
  36. package/dist/meta.json +551 -0
  37. package/dist/music-player/core.d.ts +88 -0
  38. package/dist/music-player/index.cjs +1227 -0
  39. package/dist/music-player/index.cjs.map +7 -0
  40. package/dist/music-player/index.d.ts +12 -0
  41. package/dist/music-player/index.js +1204 -0
  42. package/dist/music-player/index.js.map +7 -0
  43. package/dist/music-player/vd3-music-player.css +829 -0
  44. package/dist/music-player/vue.d.ts +32 -0
  45. package/package.json +105 -0
@@ -0,0 +1,54 @@
1
+ // Hand-written declarations for the ./flowchart subpath entry.
2
+ // The Vue wrapper VdFlowchart is the primary export; the framework-agnostic
3
+ // editor core is re-exported as VdFlowchartCore. Named exports only.
4
+
5
+ export {
6
+ VdFlowchart,
7
+ type VdFlowchartDocument,
8
+ type VdFlowchartProps,
9
+ type VdFlowchartEmits,
10
+ type VdFlowchartExposed,
11
+ } from './vue';
12
+
13
+ export {
14
+ VdFlowchart as VdFlowchartCore,
15
+ computeLayout,
16
+ LAYOUT_MODES,
17
+ VD_FLOWCHART_VERSION,
18
+ FLOWCHART_NODE_TYPES,
19
+ FLOWCHART_PORTS,
20
+ FLOWCHART_EDGE_MARKERS,
21
+ FLOWCHART_EDGE_ROUTES,
22
+ } from './core';
23
+
24
+ export type {
25
+ FlowchartNodeType,
26
+ FlowchartPort,
27
+ FlowchartEdgeMarker,
28
+ FlowchartEdgeRoute,
29
+ FlowchartEdgeKind,
30
+ FlowchartDirection,
31
+ LayoutMode,
32
+ FlowchartViewport,
33
+ FlowchartNode,
34
+ FlowchartEndpoint,
35
+ FlowchartEdge,
36
+ FlowchartDocument,
37
+ FlowchartSelection,
38
+ FlowchartRelativeTo,
39
+ FlowchartNodeInput,
40
+ FlowchartEndpointInput,
41
+ FlowchartEdgeInput,
42
+ AddChildNodeOptions,
43
+ LayoutOptions,
44
+ MutationOptions,
45
+ LoadOptions,
46
+ RemoveNodeOptions,
47
+ FlowchartChangeEvent,
48
+ FlowchartSelectEvent,
49
+ FlowchartViewportEvent,
50
+ FlowchartConnectEvent,
51
+ FlowchartHistoryEvent,
52
+ FlowchartEventMap,
53
+ VdFlowchartOptions,
54
+ } from './core';