inline-chat-kit 0.55.0 → 0.55.2
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/CHANGELOG.md +50 -0
- package/dist/{ChatExperience-CRtVStGQ.js → ChatExperience-BwjmNCvw.js} +768 -770
- package/dist/ChatExperience-BwjmNCvw.js.map +1 -0
- package/dist/demo/ChatExperienceDemo.d.ts +4 -1
- package/dist/demo.js +170 -168
- package/dist/demo.js.map +1 -1
- package/dist/inline-chat-kit.css +1 -1
- package/dist/inline-chat-kit.js +3 -3
- package/dist/theme/useThemeAttribute.d.ts +16 -0
- package/package.json +1 -1
- package/dist/ChatExperience-CRtVStGQ.js.map +0 -1
|
@@ -16,7 +16,10 @@ export interface ChatExperienceDemoProps {
|
|
|
16
16
|
/** The theme, if the host keeps it. Left off, the header's own toggle does. */
|
|
17
17
|
theme?: "light" | "dark" | null;
|
|
18
18
|
onThemeChange?: (theme: "light" | "dark") => void;
|
|
19
|
-
/**
|
|
19
|
+
/** The pointer-following cursor — the pencil in marker mode, the text beam
|
|
20
|
+
in precise. On unless turned off: it is not development chrome, it is the
|
|
21
|
+
only thing on screen that says which of the two modes you are in. Only
|
|
22
|
+
ever drawn where there is a pointer to replace. */
|
|
20
23
|
cursor?: boolean;
|
|
21
24
|
/** Motion, opened up so a tuning panel can reach it. */
|
|
22
25
|
animationConfig?: InlineAnimConfig;
|