@inploi/plugin-chatbot 3.28.0 → 3.28.1
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/cdn/index.js +5 -5
- package/dist/{chatbot-body-b6a50260.js → chatbot-body-373856bd.js} +3 -14
- package/dist/{chatbot-body-3ba65f33.cjs → chatbot-body-535477d0.cjs} +3 -14
- package/dist/{index-5f9d9b6a.cjs → index-0ccab8a1.cjs} +1 -1
- package/dist/{index-c4e1f2bb.js → index-71e0220a.js} +1 -1
- package/dist/plugin-chatbot.cjs +1 -1
- package/dist/plugin-chatbot.js +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { g as get$1, i as isString$2, k as kbToReadableSize, a as getHeadOrThrow, b as invariant, A as AbortedError, c as getFlowSubmissionsPayload, N, _, d as getDefaultExportFromCjs, h, e as _$1, p, F, o as o$1, f as clsx, y, s as store, j as a$2, l as k, m as k$1, n as getFormSubmitter, q as parse, r as picklist, t as isSubmissionOfType, C as Cn, u as parseAsync, V as ValiError, v as object, w as transform, x as cva, z as maxLength, B as minLength, D as record, E as boolean, G as number, H as minValue, I as maxValue, J as custom, K as string, L as regex, M as email, O as url, P as LoadingIndicator, Q as ERROR_MESSAGES } from "./index-
|
|
1
|
+
import { g as get$1, i as isString$2, k as kbToReadableSize, a as getHeadOrThrow, b as invariant, A as AbortedError, c as getFlowSubmissionsPayload, N, _, d as getDefaultExportFromCjs, h, e as _$1, p, F, o as o$1, f as clsx, y, s as store, j as a$2, l as k, m as k$1, n as getFormSubmitter, q as parse, r as picklist, t as isSubmissionOfType, C as Cn, u as parseAsync, V as ValiError, v as object, w as transform, x as cva, z as maxLength, B as minLength, D as record, E as boolean, G as number, H as minValue, I as maxValue, J as custom, K as string, L as regex, M as email, O as url, P as LoadingIndicator, Q as ERROR_MESSAGES } from "./index-71e0220a.js";
|
|
2
2
|
import "@inploi/sdk";
|
|
3
3
|
const isIfBlockConditionMet = (ifBlock, {
|
|
4
4
|
context,
|
|
@@ -425,21 +425,10 @@ async function interpret(params) {
|
|
|
425
425
|
}
|
|
426
426
|
}
|
|
427
427
|
async function interpretJumpNode({
|
|
428
|
-
chat,
|
|
429
428
|
next,
|
|
430
|
-
node
|
|
431
|
-
submissions,
|
|
432
|
-
context
|
|
429
|
+
node
|
|
433
430
|
}) {
|
|
434
|
-
|
|
435
|
-
author: "bot",
|
|
436
|
-
type: "text",
|
|
437
|
-
text: interpolateWithData(node.data.targetId, {
|
|
438
|
-
submissions,
|
|
439
|
-
context
|
|
440
|
-
})
|
|
441
|
-
});
|
|
442
|
-
next(node.nextId);
|
|
431
|
+
next(node.data.targetId);
|
|
443
432
|
}
|
|
444
433
|
async function interpretAddSubmissionNode({
|
|
445
434
|
next,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index-
|
|
3
|
+
const index = require("./index-0ccab8a1.cjs");
|
|
4
4
|
require("@inploi/sdk");
|
|
5
5
|
const isIfBlockConditionMet = (ifBlock, {
|
|
6
6
|
context,
|
|
@@ -427,21 +427,10 @@ async function interpret(params) {
|
|
|
427
427
|
}
|
|
428
428
|
}
|
|
429
429
|
async function interpretJumpNode({
|
|
430
|
-
chat,
|
|
431
430
|
next,
|
|
432
|
-
node
|
|
433
|
-
submissions,
|
|
434
|
-
context
|
|
431
|
+
node
|
|
435
432
|
}) {
|
|
436
|
-
|
|
437
|
-
author: "bot",
|
|
438
|
-
type: "text",
|
|
439
|
-
text: interpolateWithData(node.data.targetId, {
|
|
440
|
-
submissions,
|
|
441
|
-
context
|
|
442
|
-
})
|
|
443
|
-
});
|
|
444
|
-
next(node.nextId);
|
|
433
|
+
next(node.data.targetId);
|
|
445
434
|
}
|
|
446
435
|
async function interpretAddSubmissionNode({
|
|
447
436
|
next,
|
|
@@ -5321,7 +5321,7 @@ const StatusBar = ({
|
|
|
5321
5321
|
};
|
|
5322
5322
|
function noop() {
|
|
5323
5323
|
}
|
|
5324
|
-
const ChatbotBody = M(() => Promise.resolve().then(() => require("./chatbot-body-
|
|
5324
|
+
const ChatbotBody = M(() => Promise.resolve().then(() => require("./chatbot-body-535477d0.cjs")).then((module2) => module2.ChatbotBody));
|
|
5325
5325
|
const chatbotContentClass = cva("selection:bg-accent-4 selection:text-accent-12 fixed bottom-2 left-2 right-2 isolate mx-auto max-h-full max-w-[450px] focus:outline-none [&:has(.view-switch:active)]:scale-[0.98] transition-all duration-1000 ease-expo-out", {
|
|
5326
5326
|
variants: {
|
|
5327
5327
|
view: {
|
|
@@ -5320,7 +5320,7 @@ const StatusBar = ({
|
|
|
5320
5320
|
};
|
|
5321
5321
|
function noop() {
|
|
5322
5322
|
}
|
|
5323
|
-
const ChatbotBody = M(() => import("./chatbot-body-
|
|
5323
|
+
const ChatbotBody = M(() => import("./chatbot-body-373856bd.js").then((module) => module.ChatbotBody));
|
|
5324
5324
|
const chatbotContentClass = cva("selection:bg-accent-4 selection:text-accent-12 fixed bottom-2 left-2 right-2 isolate mx-auto max-h-full max-w-[450px] focus:outline-none [&:has(.view-switch:active)]:scale-[0.98] transition-all duration-1000 ease-expo-out", {
|
|
5325
5325
|
variants: {
|
|
5326
5326
|
view: {
|
package/dist/plugin-chatbot.cjs
CHANGED
package/dist/plugin-chatbot.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inploi/plugin-chatbot",
|
|
3
|
-
"version": "3.28.
|
|
3
|
+
"version": "3.28.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/plugin-chatbot.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"vite-plugin-dts": "^3.7.0",
|
|
69
69
|
"vite-tsconfig-paths": "^4.2.1",
|
|
70
70
|
"@inploi/core": "1.14.4",
|
|
71
|
-
"@inploi/sdk": "1.14.6",
|
|
72
71
|
"@inploi/design-tokens": "0.2.1",
|
|
72
|
+
"@inploi/sdk": "1.14.7",
|
|
73
73
|
"eslint-config-custom": "0.1.0",
|
|
74
74
|
"tsconfig": "0.1.0"
|
|
75
75
|
},
|