platform-calendar-seatmap 1.0.37 → 1.0.38

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.
package/README.md CHANGED
@@ -23,4 +23,14 @@ const App = () => {
23
23
  export default App;
24
24
  ```
25
25
 
26
+ How to start project locally:
27
+
28
+ npm i in root directory
29
+
30
+ npm start in root directory
31
+
32
+ npm i in example folder
33
+
34
+ npm start in example folder
35
+
26
36
  Full documentation is on the way.
@@ -3,6 +3,7 @@ type T_Props = {
3
3
  rotateContainer: MutableRefObject<HTMLElement | null>;
4
4
  onRotateEnd: (angle: number) => void;
5
5
  initialAngle?: number;
6
+ dataHook?: string;
6
7
  };
7
8
  declare const Rotate: FC<PropsWithChildren<T_Props>>;
8
9
  export { Rotate };