@nlxai/touchpoint-ui 1.2.4-alpha.3 → 1.2.4-alpha.5
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 +3 -1
- package/docs/@nlxai/namespaces/React/README.md +221390 -0
- package/docs/@nlxai/namespaces/React/namespaces/JSX.md +3050 -0
- package/lib/index.js +801 -804
- package/lib/index.umd.js +29 -29
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -646,6 +646,7 @@ const CustomCardRow: FC<{
|
|
|
646
646
|
left: ReactNode;
|
|
647
647
|
right: ReactNode;
|
|
648
648
|
icon?: Icon;
|
|
649
|
+
className?: string;
|
|
649
650
|
}>;
|
|
650
651
|
```
|
|
651
652
|
|
|
@@ -718,7 +719,7 @@ Represents the different types of icon buttons available in the application.
|
|
|
718
719
|
|
|
719
720
|
```ts
|
|
720
721
|
const IconButton: FC<{
|
|
721
|
-
onClick?:
|
|
722
|
+
onClick?: MouseEventHandler<HTMLButtonElement>;
|
|
722
723
|
label: string;
|
|
723
724
|
className?: string;
|
|
724
725
|
type: IconButtonType;
|
|
@@ -861,6 +862,7 @@ type CustomModalityComponent<Data> = ComponentType<{
|
|
|
861
862
|
data: Data;
|
|
862
863
|
conversationHandler: ConversationHandler;
|
|
863
864
|
className?: string;
|
|
865
|
+
renderedAsOverlay?: boolean;
|
|
864
866
|
}>;
|
|
865
867
|
```
|
|
866
868
|
|