qcell-react 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 (35) hide show
  1. package/dist/13ed1c65978f4020fa6a.png +0 -0
  2. package/dist/1b1e25d6e625a94444f7.png +0 -0
  3. package/dist/1b3e50ff32fd8cd301f8.png +0 -0
  4. package/dist/1e4ab48d0ebabfe3d60c.png +0 -0
  5. package/dist/2063e67670eabbe08666.png +0 -0
  6. package/dist/262f7047c15f67938eb0.png +0 -0
  7. package/dist/278ab06fc1417e702a7e.png +0 -0
  8. package/dist/2d6f55fd9854663f7aa0.png +0 -0
  9. package/dist/3332fcf7e2e919a02b8d.png +0 -0
  10. package/dist/5b35a39c5f877ba43637.png +0 -0
  11. package/dist/5bc8277cf199d850ab1a.png +0 -0
  12. package/dist/64a176ed8c98be3354b3.png +0 -0
  13. package/dist/669597e9324aec578be1.gif +0 -0
  14. package/dist/7461bf5c81f039b5349d.png +0 -0
  15. package/dist/82f655c470657e263722.png +0 -0
  16. package/dist/8b0fe626ee1f018a8d0f.png +0 -0
  17. package/dist/9b9e5601b8e92cfc15ed.png +0 -0
  18. package/dist/ae8a9da394dac0b9613c.png +0 -0
  19. package/dist/b332c225924811955b70.png +0 -0
  20. package/dist/bdff706f5f3c937e20c8.png +0 -0
  21. package/dist/c0a2f0a86ad43bccd6d6.png +0 -0
  22. package/dist/c60516270777bee173fe.png +0 -0
  23. package/dist/cde3eb37d2e1d732a7e3.png +0 -0
  24. package/dist/cf17885bda2090955715.png +0 -0
  25. package/dist/deb42a8f9bdab8258db4.png +0 -0
  26. package/dist/e06bce03725e8eae52ff.png +0 -0
  27. package/dist/e4949d095544f9f6339d.png +0 -0
  28. package/dist/f5b9e4600b993d7c15a3.png +0 -0
  29. package/dist/f7f48d547e176aef16e5.png +0 -0
  30. package/dist/index.js +1 -0
  31. package/package.json +41 -0
  32. package/src/QCELL/css/qcell.css +735 -0
  33. package/src/QCELL/css/qcell_layout.css +1 -0
  34. package/src/QCELL/css/qcell_scrollbar.css +1328 -0
  35. package/src/types/index.d.ts +41 -0
@@ -0,0 +1,41 @@
1
+ declare module 'qcell-react' {
2
+ import React from 'react';
3
+
4
+ // QCELL 관련 타입 정의
5
+ interface QCELLType {
6
+ create: (property: ObjPropertyType) => void;
7
+ getInstance: (id: string) => QCELLInstance | null;
8
+ deleteInstance: (id: string) => void;
9
+ }
10
+
11
+ interface QCELLInstance {
12
+ // QCELL 인스턴스의 메서드 및 프로퍼티 정의
13
+ destroy?: () => void;
14
+ }
15
+
16
+ interface ObjPropertyType {
17
+ id: string;
18
+ parentid?: string;
19
+ [key: string]: any; // 동적 프로퍼티 지원
20
+ }
21
+
22
+ // Props 타입 정의
23
+ interface QCELLReactProps {
24
+ width?: string;
25
+ height?: string;
26
+ objProperty: ObjPropertyType;
27
+ }
28
+
29
+ // Ref 타입 정의
30
+ export interface QCELLReactRef {
31
+ getQCELLInstance: () => QCELLInstance | null;
32
+ getQCELL: () => QCELLType;
33
+ }
34
+
35
+ // React 컴포넌트 타입 정의
36
+ const QCELLReact: React.ForwardRefExoticComponent<
37
+ React.PropsWithoutRef<QCELLReactProps> & React.RefAttributes<QCELLReactRef>
38
+ >;
39
+
40
+ export default QCELLReact;
41
+ }