@innovastudio/contentbuilder 1.5.190 → 1.5.192
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/index.d.ts +3 -0
- package/package.json +1 -1
- package/public/contentbuilder/contentbuilder.css +0 -1
- package/public/contentbuilder/contentbuilder.esm.js +797 -12
- package/public/contentbuilder/contentbuilder.min.js +7 -7
- package/public/contentbuilder/lang/en.js +2 -2
- package/public/contentbuilder/lang/fr.js +2 -2
package/index.d.ts
CHANGED
|
@@ -234,6 +234,9 @@ interface ContentBuilderOptions {
|
|
|
234
234
|
systemModel?: string;
|
|
235
235
|
clearChatSettings?: boolean;
|
|
236
236
|
defaultChatSettings?: Record<string, any>;
|
|
237
|
+
demoMode?: boolean;
|
|
238
|
+
demoConversations?: any[];
|
|
239
|
+
startCodeChat?: boolean;
|
|
237
240
|
|
|
238
241
|
//-- Asset Manager
|
|
239
242
|
listFilesUrl?: string;
|
package/package.json
CHANGED
|
@@ -98,7 +98,6 @@ button:focus-visible {
|
|
|
98
98
|
}
|
|
99
99
|
.is-builder .cell-active .elm-active:not(button, table, [data-cb-type]) {
|
|
100
100
|
background: rgba(200, 200, 201, 0.11);
|
|
101
|
-
transition: none !important;
|
|
102
101
|
}
|
|
103
102
|
.is-builder .cell-active table.default td {
|
|
104
103
|
border: #cccccc 1px dashed;
|