lisichatbot 1.8.5 → 1.8.6

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 +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisichatbot",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "exports": {
package/src/index.js CHANGED
@@ -587,7 +587,7 @@ function renderOptions(options, field, isSingleSelect = true) {
587
587
  const optionsWrapper = document.createElement('div');
588
588
  optionsWrapper.setAttribute('data-chat-element', 'options-wrapper');
589
589
  optionsWrapper.style.display = 'flex';
590
- optionsWrapper.style.flexDirection = 'column';
590
+ optionsWrapper.style.flexWrap = 'wrap';
591
591
  optionsWrapper.style.alignItems = 'flex-start';
592
592
  optionsWrapper.style.gap = '8px';
593
593
 
@@ -726,7 +726,7 @@ function renderColorOptions(options, field) {
726
726
  const optionsWrapper = document.createElement('div');
727
727
  optionsWrapper.setAttribute('data-chat-element', 'options-wrapper');
728
728
  optionsWrapper.style.display = 'flex';
729
- optionsWrapper.style.flexDirection = 'column';
729
+ optionsWrapper.style.flexWrap = 'wrap';
730
730
  optionsWrapper.style.alignItems = 'flex-start';
731
731
  optionsWrapper.style.gap = '8px';
732
732
 
@@ -862,7 +862,7 @@ function renderCustomSelectOptions(options, field, customConfig) {
862
862
  const optionsWrapper = document.createElement('div');
863
863
  optionsWrapper.setAttribute('data-chat-element', 'options-wrapper');
864
864
  optionsWrapper.style.display = 'flex';
865
- optionsWrapper.style.flexDirection = 'column';
865
+ optionsWrapper.style.flexWrap = 'wrap';
866
866
  optionsWrapper.style.alignItems = 'flex-start';
867
867
  optionsWrapper.style.gap = '8px';
868
868