constant.d.ts 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. export declare const HANDLE_ICON_DEFAULT_CFG: {
  2. readonly fill: "#fff";
  3. readonly lineWidth: 1;
  4. readonly radius: 2;
  5. readonly size: 10;
  6. readonly stroke: "#bfbfbf";
  7. readonly strokeOpacity: 1;
  8. readonly zIndex: 0;
  9. };
  10. export declare const HANDLE_LABEL_DEFAULT_CFG: {
  11. readonly fill: "#000";
  12. readonly fillOpacity: 0.45;
  13. readonly fontSize: 12;
  14. readonly textAlign: "center";
  15. readonly textBaseline: "middle";
  16. readonly zIndex: 1;
  17. };
  18. export declare const HANDLE_DEFAULT_CFG: {
  19. readonly orientation: "horizontal";
  20. readonly showLabel: true;
  21. readonly type: "start";
  22. };
  23. export declare const CLASS_NAMES: {
  24. foreground: {
  25. name: string;
  26. class: string;
  27. id: string;
  28. };
  29. handle: {
  30. name: string;
  31. class: string;
  32. id: string;
  33. };
  34. selection: {
  35. name: string;
  36. class: string;
  37. id: string;
  38. };
  39. sparkline: {
  40. name: string;
  41. class: string;
  42. id: string;
  43. };
  44. sparklineGroup: {
  45. name: string;
  46. class: string;
  47. id: string;
  48. };
  49. track: {
  50. name: string;
  51. class: string;
  52. id: string;
  53. };
  54. };