lisichatbot 2.3.1 → 2.3.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +12 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisichatbot",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "exports": {
package/src/index.js CHANGED
@@ -4058,10 +4058,20 @@ function injectStyles() {
4058
4058
 
4059
4059
  [data-chat-element="text-input"] {
4060
4060
  margin-bottom: 20px;
4061
+ margin-left: 1.5rem;
4061
4062
  }
4062
4063
 
4063
4064
  [data-chat-element="number-input"] {
4064
4065
  margin-bottom: 20px;
4066
+ margin-left: 1.5rem;
4067
+ }
4068
+
4069
+ [data-chat-element="range-wrapper"] {
4070
+ margin-left: 1.5rem;
4071
+ }
4072
+
4073
+ [data-chat-element="multi-select-dropdown"] {
4074
+ margin-left: 1.5rem;
4065
4075
  }
4066
4076
 
4067
4077
  [data-chat-element="bot-edit-icon"] {
@@ -4104,7 +4114,7 @@ function displayMessage(message) {
4104
4114
  // console.log('💬 Message displayed:', message);
4105
4115
  }
4106
4116
 
4107
- module.exports = {
4117
+ export {
4108
4118
  init,
4109
4119
  getState,
4110
4120
  reset,
@@ -4112,4 +4122,4 @@ module.exports = {
4112
4122
  editStep,
4113
4123
  displayMessage,
4114
4124
  startEditPath // ✅ NEW: Export edit path function
4115
- };
4125
+ };