@digipair/skill-web-chatbot 0.38.3 → 0.38.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/index.cjs2.js CHANGED
@@ -37342,14 +37342,14 @@ function indent(str, spaces) {
37342
37342
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
37343
37343
  // match is required
37344
37344
  if (!match) {
37345
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
37345
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
37346
37346
  v: nextMatch1
37347
37347
  };
37348
37348
  }
37349
37349
  var token = match.token, offset = match.offset;
37350
37350
  i1 += offset;
37351
37351
  if (token === " ") {
37352
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
37352
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
37353
37353
  }
37354
37354
  tokens1 = _to_consumable_array$c(tokens1).concat([
37355
37355
  token
@@ -37368,7 +37368,7 @@ function indent(str, spaces) {
37368
37368
  if (contextKeys.some(function(el) {
37369
37369
  return el.startsWith(name);
37370
37370
  })) {
37371
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
37371
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
37372
37372
  }
37373
37373
  if (dateTimeIdentifiers.some(function(el) {
37374
37374
  return el === name;
@@ -37387,9 +37387,9 @@ function indent(str, spaces) {
37387
37387
  if (dateTimeIdentifiers.some(function(el) {
37388
37388
  return el.startsWith(name);
37389
37389
  })) {
37390
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
37390
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
37391
37391
  }
37392
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
37392
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
37393
37393
  v: nextMatch1
37394
37394
  };
37395
37395
  };
@@ -57391,7 +57391,7 @@ class ChatElement extends s$3 {
57391
57391
  ></digipair-chatbot-inputs>
57392
57392
 
57393
57393
  ${!this.loading ? T : x`<section class="loading">
57394
- <span class="step">${this.loadingStep}</span><img src=${WRITTING_IMAGE} />
57394
+ <img src=${WRITTING_IMAGE} /><span class="step">${this.loadingStep}</span>
57395
57395
  </section>`}
57396
57396
  </section>
57397
57397
 
@@ -57641,7 +57641,7 @@ ChatElement.styles = [
57641
57641
  }
57642
57642
 
57643
57643
  .loading {
57644
- overflow: visible;
57644
+ overflow: visible !important;
57645
57645
  }
57646
57646
 
57647
57647
  .loading .step {
@@ -59199,7 +59199,7 @@ class ChatbotElement extends s$3 {
59199
59199
  }
59200
59200
  const data = JSON.parse(message.data);
59201
59201
  if (data.type === 'step') {
59202
- this.loadingStep = message.content.step;
59202
+ this.loadingStep = data.content;
59203
59203
  }
59204
59204
  if (data.type === 'message') {
59205
59205
  this.pushMessage(data.content);
@@ -59419,7 +59419,7 @@ class ChatbotElement extends s$3 {
59419
59419
  config: this.metadata.config,
59420
59420
  variables: this.metadata.variables
59421
59421
  }}
59422
- currentStep=${this.loadingStep}
59422
+ loadingStep=${this.loadingStep}
59423
59423
  @prompt=${(event)=>this.execute(this.currentBoost, event.detail.prompt)}
59424
59424
  @boost=${(event)=>this.setBoost(event.detail)}
59425
59425
  ></digipair-chatbot-chat>
@@ -59700,7 +59700,7 @@ class DigipairFullElement extends s$3 {
59700
59700
  }
59701
59701
  const data = JSON.parse(message.data);
59702
59702
  if (data.type === 'step') {
59703
- this.loadingStep = message.content.step;
59703
+ this.loadingStep = data.content;
59704
59704
  }
59705
59705
  if (data.type === 'message') {
59706
59706
  this.pushMessage(data.content);
@@ -59885,7 +59885,7 @@ class DigipairFullElement extends s$3 {
59885
59885
  config: this.metadata.config,
59886
59886
  variables: this.metadata.variables
59887
59887
  }}
59888
- currentStep=${this.loadingStep}
59888
+ loadingStep=${this.loadingStep}
59889
59889
  @prompt=${(event)=>this.execute(this.currentBoost, event.detail.prompt)}
59890
59890
  @boost=${(event)=>this.setBoost(event.detail)}
59891
59891
  ></digipair-chatbot-chat>
package/index.esm2.js CHANGED
@@ -37322,14 +37322,14 @@ function indent(str, spaces) {
37322
37322
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
37323
37323
  // match is required
37324
37324
  if (!match) {
37325
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
37325
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
37326
37326
  v: nextMatch1
37327
37327
  };
37328
37328
  }
37329
37329
  var token = match.token, offset = match.offset;
37330
37330
  i1 += offset;
37331
37331
  if (token === " ") {
37332
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
37332
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
37333
37333
  }
37334
37334
  tokens1 = _to_consumable_array$c(tokens1).concat([
37335
37335
  token
@@ -37348,7 +37348,7 @@ function indent(str, spaces) {
37348
37348
  if (contextKeys.some(function(el) {
37349
37349
  return el.startsWith(name);
37350
37350
  })) {
37351
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
37351
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
37352
37352
  }
37353
37353
  if (dateTimeIdentifiers.some(function(el) {
37354
37354
  return el === name;
@@ -37367,9 +37367,9 @@ function indent(str, spaces) {
37367
37367
  if (dateTimeIdentifiers.some(function(el) {
37368
37368
  return el.startsWith(name);
37369
37369
  })) {
37370
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
37370
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
37371
37371
  }
37372
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
37372
+ return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
37373
37373
  v: nextMatch1
37374
37374
  };
37375
37375
  };
@@ -57371,7 +57371,7 @@ class ChatElement extends s$3 {
57371
57371
  ></digipair-chatbot-inputs>
57372
57372
 
57373
57373
  ${!this.loading ? T : x`<section class="loading">
57374
- <span class="step">${this.loadingStep}</span><img src=${WRITTING_IMAGE} />
57374
+ <img src=${WRITTING_IMAGE} /><span class="step">${this.loadingStep}</span>
57375
57375
  </section>`}
57376
57376
  </section>
57377
57377
 
@@ -57621,7 +57621,7 @@ ChatElement.styles = [
57621
57621
  }
57622
57622
 
57623
57623
  .loading {
57624
- overflow: visible;
57624
+ overflow: visible !important;
57625
57625
  }
57626
57626
 
57627
57627
  .loading .step {
@@ -59179,7 +59179,7 @@ class ChatbotElement extends s$3 {
59179
59179
  }
59180
59180
  const data = JSON.parse(message.data);
59181
59181
  if (data.type === 'step') {
59182
- this.loadingStep = message.content.step;
59182
+ this.loadingStep = data.content;
59183
59183
  }
59184
59184
  if (data.type === 'message') {
59185
59185
  this.pushMessage(data.content);
@@ -59399,7 +59399,7 @@ class ChatbotElement extends s$3 {
59399
59399
  config: this.metadata.config,
59400
59400
  variables: this.metadata.variables
59401
59401
  }}
59402
- currentStep=${this.loadingStep}
59402
+ loadingStep=${this.loadingStep}
59403
59403
  @prompt=${(event)=>this.execute(this.currentBoost, event.detail.prompt)}
59404
59404
  @boost=${(event)=>this.setBoost(event.detail)}
59405
59405
  ></digipair-chatbot-chat>
@@ -59680,7 +59680,7 @@ class DigipairFullElement extends s$3 {
59680
59680
  }
59681
59681
  const data = JSON.parse(message.data);
59682
59682
  if (data.type === 'step') {
59683
- this.loadingStep = message.content.step;
59683
+ this.loadingStep = data.content;
59684
59684
  }
59685
59685
  if (data.type === 'message') {
59686
59686
  this.pushMessage(data.content);
@@ -59865,7 +59865,7 @@ class DigipairFullElement extends s$3 {
59865
59865
  config: this.metadata.config,
59866
59866
  variables: this.metadata.variables
59867
59867
  }}
59868
- currentStep=${this.loadingStep}
59868
+ loadingStep=${this.loadingStep}
59869
59869
  @prompt=${(event)=>this.execute(this.currentBoost, event.detail.prompt)}
59870
59870
  @boost=${(event)=>this.setBoost(event.detail)}
59871
59871
  ></digipair-chatbot-chat>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web-chatbot",
3
- "version": "0.38.3",
3
+ "version": "0.38.5",
4
4
  "dependencies": {},
5
5
  "typings": "./index.d.ts",
6
6
  "main": "./index.cjs.js",