@sikka/hawa 0.0.231 → 0.0.232

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.
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type ComponentTypes = {
3
+ foo?: string;
4
+ };
5
+ export declare const FloatingCommentCE: React.FunctionComponent<ComponentTypes>;
6
+ export {};
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import { BaseEditor } from "slate";
3
+ import { ReactEditor } from "slate-react";
4
+ type CustomElement = {
5
+ type: "paragraph";
6
+ children: CustomText[];
7
+ };
8
+ type CustomText = {
9
+ text: string;
10
+ };
11
+ declare module "slate" {
12
+ interface CustomTypes {
13
+ Editor: BaseEditor & ReactEditor;
14
+ Element: CustomElement;
15
+ Text: CustomText;
16
+ }
17
+ }
18
+ export declare const FloatingCommentSlate: () => React.JSX.Element;
19
+ export {};
@@ -33,6 +33,8 @@ export * from "./HawaDatepicker";
33
33
  export * from "./UserFeedback";
34
34
  export * from "./ArrowCarousel";
35
35
  export * from "./FloatingComment";
36
+ export * from "./FloatingCommentCE";
37
+ export * from "./FloatingCommentSlate";
36
38
  export * from "./HawaTextField";
37
39
  export * from "./HawaCardInput";
38
40
  export * from "./HawaPinInput";