@axiom-lattice/react-sdk 2.1.13 → 2.1.15
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/dist/index.d.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +398 -371
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +356 -329
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -763,6 +763,14 @@ interface LatticeChatShellContextValue {
|
|
|
763
763
|
* Reset configuration to defaults
|
|
764
764
|
*/
|
|
765
765
|
resetConfig: () => void;
|
|
766
|
+
/**
|
|
767
|
+
* Whether the settings modal is open
|
|
768
|
+
*/
|
|
769
|
+
settingsModalOpen: boolean;
|
|
770
|
+
/**
|
|
771
|
+
* Set the settings modal open state
|
|
772
|
+
*/
|
|
773
|
+
setSettingsModalOpen: (open: boolean) => void;
|
|
766
774
|
}
|
|
767
775
|
/**
|
|
768
776
|
* Lattice Chat Shell context
|
package/dist/index.d.ts
CHANGED
|
@@ -763,6 +763,14 @@ interface LatticeChatShellContextValue {
|
|
|
763
763
|
* Reset configuration to defaults
|
|
764
764
|
*/
|
|
765
765
|
resetConfig: () => void;
|
|
766
|
+
/**
|
|
767
|
+
* Whether the settings modal is open
|
|
768
|
+
*/
|
|
769
|
+
settingsModalOpen: boolean;
|
|
770
|
+
/**
|
|
771
|
+
* Set the settings modal open state
|
|
772
|
+
*/
|
|
773
|
+
setSettingsModalOpen: (open: boolean) => void;
|
|
766
774
|
}
|
|
767
775
|
/**
|
|
768
776
|
* Lattice Chat Shell context
|