@oliasoft-open-source/react-ui-library 3.9.2-beta-1 → 3.9.2-beta-2

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/dist/index.js CHANGED
@@ -27526,6 +27526,14 @@ const Select = (props) => {
27526
27526
  enableAutoScroll,
27527
27527
  checkNonExistentValues
27528
27528
  );
27529
+ console.group("standardizeInputs");
27530
+ console.log(multi);
27531
+ console.log(simpleInputs);
27532
+ console.log(options);
27533
+ console.log(selectedOptions);
27534
+ console.log(firstSelectedOptionIndex);
27535
+ console.log(hasNonExistentValue);
27536
+ console.groupEnd();
27529
27537
  const canUseNative = !multi;
27530
27538
  const useNative = native && canUseNative;
27531
27539
  if (native && !canUseNative) {
@@ -27566,6 +27574,7 @@ const Select = (props) => {
27566
27574
  console.log("DEPRECATED ELSE");
27567
27575
  const isSyntheticEvent = !(evt instanceof Event);
27568
27576
  const value = multi ? selectedOptions2 : selectedOptions2.value;
27577
+ console.log("VALUE", value);
27569
27578
  if (isSyntheticEvent) {
27570
27579
  console.log("SYNTHETIC");
27571
27580
  evt.target.name = name2;