typings.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import { CompUI } from "./components/CompUI";
  2. export type ICompKeys = keyof typeof CompUI;
  3. export type EditorMode = "editPage" | "editComp" | "preview" | "display";
  4. export type Layout = {
  5. position?: "absolute";
  6. visible?: boolean;
  7. size: [number, number, { unit?: "px" | "%" }?]; // width height wUnit hUnit
  8. direction?: "top" | "bottom"; // 默认top
  9. mask?: string;
  10. alignSelf?: string;
  11. transform?: {
  12. r?: number; // rotate
  13. x?: number; // translateX
  14. y?: number; // marginTop
  15. s?: number; // scale
  16. };
  17. border?: {
  18. style?: string;
  19. width?: number;
  20. color?: string;
  21. radius?: number;
  22. radius2?: number;
  23. };
  24. zIndex?: number;
  25. margin?: string;
  26. padding?: string;
  27. transformMatrix?: string;
  28. opacity?: number;
  29. radius?: number;
  30. locked?: boolean;
  31. background?: Background;
  32. anim?: string;
  33. };
  34. export type Background = {
  35. color?: string;
  36. image?: string;
  37. imageStyle?: string;
  38. position?:
  39. | "bottom"
  40. | "center"
  41. | "left"
  42. | "left-bottom"
  43. | "left-top"
  44. | "right"
  45. | "right-bottom"
  46. | "right-top"
  47. | "top";
  48. repeat?:
  49. | "repeat"
  50. | "no-repeat"
  51. | "repeat-x"
  52. | "repeat-y"
  53. | "repeat-round"
  54. | "repeat-space";
  55. size?: "auto" | "cover" | "contain";
  56. clipPath?: string;
  57. // origin?: "border" | "padding" | "content";
  58. };